AntDesign 1.2.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package AntDesign --version 1.2.0                
NuGet\Install-Package AntDesign -Version 1.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AntDesign" Version="1.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AntDesign --version 1.2.0                
#r "nuget: AntDesign, 1.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AntDesign as a Cake Addin
#addin nuget:?package=AntDesign&version=1.2.0

// Install AntDesign as a Cake Tool
#tool nuget:?package=AntDesign&version=1.2.0                

<p align="center"> <a href="https://yangshunjie.com/ant-design-blazor/"> <img src="https://raw.githubusercontent.com/ant-design-blazor/ant-design-blazor/master/logo.svg?sanitize=true"> </a> </p>

<h1 align="center">Ant Design Blazor</h1>

<div align="center">

A rich set of enterprise-class UI components based on Ant Design and Blazor.

Build AntDesign AntDesign AntDesign.Templates codecov AntDesign Ding Talk Group Discord Server

</div>

alternate text is missing from this package README image

English | 简体中文

✨ Features

  • 🌈 Enterprise-class UI designed for web applications.
  • 📦 A set of high-quality Blazor components out of the box.
  • 💕 Supports WebAssembly-based client-side and SignalR-based server-side UI event interaction.
  • 🎨 Supports Progressive Web Applications (PWA).
  • 🛡 Build with C#, a multi-paradigm static language for an efficient development experience.
  • 🌍 Internationalization support for dozens of languages.
  • 🎁 Seamless integration with existing ASP.NET Core MVC and Razor Pages projects.

🌈 Online Examples

WebAssembly static hosting on:

🖥 Environment Support

  • Supports .NET Core 3.1 / .NET 5 / .NET 6 / .Net 7 / .NET 8 / .NET 9 .
  • Supports WebAssembly static file deployment.
  • Supports 4 major browsers engines, and Internet Explorer 11+ (Blazor Server only)
  • Supports .NET MAUI / WPF / Windows Forms and other Blazor Hybrid workloads.
  • Supports Electron and other Web standards-based environments.

Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation.

From .NET 5, IE 11 is no longer officially supported. See Blazor: Updated browser support. Unofficial support is provided by Blazor.Polyfill community project.

💿 Current Version

🎨 Design Specification

Regularly synchronize with Official Ant Design specifications, you can check the sync logs online.

Therefore, you can use the custom theme styles of Ant Design directly.

Before the 1.0 release, we will only sync antd 4.x styles.

📦 Installation Guide

Prerequirement

Option 1: Create a new project from the dotnet new template AntDesign.Templates

We have provided the dotnet new template to create a Boilerplate project out of the box:

Pro Template

  • Install the template

    $ dotnet new --install AntDesign.Templates
    
  • Create the Boilerplate project with the template

    $ dotnet new antdesign -o MyAntDesignApp
    

Options for the template:

Options Description Type Default
-f | --full If specified, generates all pages of Ant Design Pro bool false
-ho | --host Specify the hosting model 'webapp' | 'wasm' | 'server' 'webapp'
--styles Whether use NodeJS and Less to compile your custom themes. css | less css
--no-restore If specified, skips the automatic restore of the project on create bool false

Option 2: Import Ant Design Blazor into an existing project

  • Go to the project folder of the application and install the Nuget package reference

    $ dotnet add package AntDesign
    
  • Register the services in Program.cs

    builder.Services.AddAntDesign();
    

    or Startup.cs

    services.AddAntDesign();
    
  • Add namespace in _Imports.razor

    @using AntDesign
    
  • Introduce CSS and JS files in appropriate places. The WebApp project was introduced in App.razor, and the WebAssembly project was introduced in index.html

      <link href="_content/AntDesign/css/ant-design-blazor.css" rel="stylesheet">
      <script src="_content/AntDesign/js/ant-design-blazor.js"></script>
    
  • To display the pop-up component dynamically, you need to add the <AntContainer /> component in App.razor.

    • For Blazor WebApp, you also need to specify render mode to <Routes /> for interactivity.
    <Routes @rendermode="RenderMode.InteractiveAuto" />            <-- specify the rendermode ✨
    + <AntContainer @rendermode="RenderMode.InteractiveAuto" />    <-- add this component ✨
    
    • For legacy blazor apps just add a line of code:
    <Router AppAssembly="@typeof(MainLayout).Assembly">
        <Found Context="routeData">
            <RouteView RouteData="routeData" DefaultLayout="@typeof(MainLayout)" />
        </Found>
        <NotFound>
            <LayoutView Layout="@typeof(MainLayout)">
                <Result Status="404" />
            </LayoutView>
        </NotFound>
    </Router>
    
    +  <AntContainer />   <-- add this component ✨
    
  • Finally, it can be referenced in the .razor component!

    <Button Type="@ButtonType.Primary">Hello World!</Button>
    

🔨 Development

Gitpod

Click the button below to start a new workspace for development for free.

Open in Gitpod

Local

  • Install .NET Core SDK 9.0.100 or later.

  • Install Node.js (only for building style files and interoperable TypeScript files)

  • Clone to local development

    $ git clone https://github.com/ant-design-blazor/ant-design-blazor.git
    $ cd ant-design-blazor
    $ npm install
    $ dotnet build ./site/AntDesign.Docs.Build/AntDesign.Docs.Build.csproj
    $ npm start
    
  • Visit https://localhost:5001 in your supported browser and check local development documentation for details.

    Visual Studio 2022 is recommended for development.

🗺 Roadmap

Check out this issue to learn about our development plans for the 1.0 release.

You can also find the latest news about the features we will implement in the future with antd5.0 style.

🤝 Contributing

PRs Welcome

If you would like to contribute, feel free to create a Pull Request, or give us Bug Report.

💕 Donation

This project is an MIT-licensed open source project. In order to achieve better and sustainable development of the project, we expect to gain more backers. We will use the proceeds for community operations and promotion. You can support us in any of the following ways:

We will put the detailed donation records on the backer list.

❓ Community Support

If you encounter any problems in the process, feel free to ask for help via following channels. We also encourage experienced users to help newcomers.

  • Discord Server

  • 钉钉群

    <details> <summary>Scan QR Code with DingTalk</summary> <img src="https://raw.githubusercontent.com/ant-design-blazor/ant-design-blazor/master/docs/assets/dingtalk.jpg" width="300"> </details>

Contributors

This project exists thanks to all the people who contribute.

<a href="https://github.com/ant-design-blazor/ant-design-blazor/graphs/contributors"> <img src="https://contrib.rocks/image?repo=ant-design-blazor/ant-design-blazor&max=1000&columns=15&anon=1" /> </a>

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

☀️ License

AntDesign

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (33)

Showing the top 5 NuGet packages that depend on AntDesign:

Package Downloads
Sitko.Core.Blazor.AntDesign

Sitko.Core is a set of libraries to help build .NET Core applications fast

AntDesign.ProLayout

Ant Design Pro components for Blazor

AntDesign.TestKit

Package Description

Egea.Extensions.Razor

Package Description

AntDesign.Components.Authentication

🌈 An authentication extensions components for Ant Design Blazor library.

GitHub repositories (15)

Showing the top 5 popular GitHub repositories that depend on AntDesign:

Repository Stars
dashiell-zhang/NetEngine
基于 .Net 框架搭建的一个基础项目结构
chunliu/AzureDesignStudio
A web app that helps you create the architecture design diagram for your Azure solutions and automatically generate IaC code from it.
YukiCoco/CheapSteam
Cheap Steam 为您提供 STEAM 与 BUFF 的饰品价格对比数据.
LANCommander/LANCommander
known/Known
Known 是基于 Blazor 轻量级、跨平台、低代码、易扩展的插件开发框架。
Version Downloads Last updated
2.0.0-nightly-250108132511 195 1/8/2025
2.0.0-nightly-250106135007 83 1/6/2025
2.0.0-nightly-250105150802 79 1/5/2025
2.0.0-nightly-250105140746 69 1/5/2025
2.0.0-nightly-250104091551 104 1/4/2025
2.0.0-nightly-250103062426 103 1/3/2025
2.0.0-nightly-241229083035 95 12/29/2024
2.0.0-nightly-241225173525 108 12/25/2024
2.0.0-nightly-241223160948 119 12/23/2024
1.2.0 2,128 2/2/2025
1.1.4 2,380 1/24/2025
1.1.3 1,792 1/15/2025
1.1.2 1,540 1/8/2025
1.1.1 1,150 1/2/2025
1.1.0 872 12/31/2024
1.0.1 16,735 11/18/2024
1.0.0 7,701 11/1/2024
1.0.0-rc.3 1,782 10/22/2024
1.0.0-rc.2 586 10/9/2024
1.0.0-rc.1 1,544 9/18/2024
0.20.4.2 20,679 9/10/2024
0.20.4.1 594 9/10/2024
0.20.3 9,194 9/2/2024
0.20.2.1 7,242 8/22/2024
0.20.2 2,881 8/21/2024
0.20.1 2,200 8/15/2024
0.20.0.2 1,759 8/12/2024
0.20.0.1 529 8/10/2024
0.20.0 3,447 8/7/2024
0.20.0-beta.1 61 8/6/2024
0.19.7 5,126 7/31/2024
0.19.6.2 4,952 7/26/2024
0.19.6.1 475 7/25/2024
0.19.6 2,286 7/21/2024
0.19.5.1 2,504 7/15/2024
0.19.5 871 7/15/2024
0.19.4 8,772 7/3/2024
0.19.3 3,638 6/25/2024
0.19.2.1-hotfix 104 6/24/2024
0.19.2.1-beta.1 78 6/24/2024
0.19.2 2,105 6/23/2024
0.19.1 20,866 5/27/2024
0.19.0 11,488 5/9/2024
0.19.0-rc.7 150 4/30/2024
0.19.0-rc.6 136 4/25/2024
0.19.0-rc.5 88 4/24/2024
0.19.0-rc.4 75 4/24/2024
0.19.0-rc.3 74 4/23/2024
0.19.0-rc.2 97 4/23/2024
0.19.0-rc.1 68 4/23/2024
0.18.3 23,394 4/8/2024
0.18.2 6,595 4/2/2024
0.18.1 6,066 3/21/2024
0.18.0 29,521 2/29/2024
0.17.4 23,407 1/31/2024
0.17.3.1 11,674 1/17/2024
0.17.3 1,791 1/14/2024
0.17.2 2,077 1/8/2024
0.17.1 8,298 12/26/2023
0.17.0 616 12/25/2023
0.16.4-beta2 181 12/19/2023
0.16.4-beta 195 12/11/2023
0.16.3 9,327 12/3/2023
0.16.2 17,951 11/16/2023
0.16.1 7,031 10/29/2023
0.16.0 10,534 10/24/2023
0.15.5 29,889 9/10/2023
0.15.5-net8 856 9/15/2023
0.15.4 28,558 7/30/2023
0.15.3 15,882 7/13/2023
0.15.2 10,180 7/2/2023
0.15.1 15,290 6/18/2023
0.15.0 21,312 5/21/2023
0.15.0-alpha.4 145 5/20/2023
0.15.0-alpha.3 134 5/17/2023
0.15.0-alpha.2 131 5/16/2023
0.15.0-alpha.1 152 5/12/2023
0.14.4 63,302 3/1/2023
0.14.4-alpha.1 145 2/26/2023
0.14.3 7,313 2/19/2023
0.14.3-alpha.1 130 2/19/2023
0.14.3-alpha 711 2/19/2023
0.14.2 10,004 2/6/2023
0.14.1 6,748 2/1/2023
0.14.0 8,022 1/26/2023
0.14.0-alpha.1 239 1/20/2023
0.13.3 21,858 1/8/2023
0.13.2 8,476 12/31/2022
0.13.1 52,039 11/29/2022
0.13.0 11,471 11/22/2022
0.13.0-alpha.2 217 11/16/2022
0.13.0-alpha.1 133 11/16/2022
0.12.7 10,549 11/7/2022
0.12.6 32,135 10/11/2022
0.12.5 1,591 10/10/2022
0.12.4 30,353 9/14/2022
0.12.3 2,283 9/13/2022
0.12.2 2,565 9/8/2022
0.12.1 2,803 9/4/2022
0.12.0.1 18,519 8/29/2022
0.12.0.1-docfix 662 9/2/2022
0.12.0-alpha.3 123 8/29/2022
0.12.0-alpha.2 243 8/26/2022
0.11.0 63,572 6/15/2022
0.11.0-beta.1 1,574 5/29/2022
0.11.0-alpha.6 221 5/22/2022
0.11.0-alpha.5 135 5/21/2022
0.11.0-alpha.4 144 5/21/2022
0.11.0-alpha.3 212 5/17/2022
0.11.0-alpha.2 148 5/17/2022
0.11.0-alpha.1 270 5/12/2022
0.10.7 20,287 5/22/2022
0.10.6 16,389 5/10/2022
0.10.6-alpha.6 153 5/9/2022
0.10.6-alpha.5 148 5/9/2022
0.10.6-alpha.4 157 5/7/2022
0.10.6-alpha.3 178 5/4/2022
0.10.6-alpha.2 1,981 3/31/2022
0.10.6-alpha.1 153 3/30/2022
0.10.5 37,349 3/15/2022
0.10.4 8,059 2/27/2022
0.10.4-alpha.1 155 2/26/2022
0.10.3.1 59,315 12/22/2021
0.10.2 43,623 11/4/2021
0.10.1 27,788 10/15/2021
0.10.1-alpha.1 204 10/15/2021
0.10.0 19,396 9/16/2021
0.10.0-alpha.5 196 9/16/2021
0.10.0-alpha.3 200 9/16/2021
0.10.0-alpha.2 192 9/15/2021
0.10.0-alpha.1 179 9/15/2021
0.9.4 10,249 9/12/2021
0.9.3 27,108 8/29/2021
0.9.2 5,355 8/18/2021
0.9.1.1 18,425 8/11/2021
0.9.1 3,995 8/11/2021
0.9.0 18,099 7/26/2021
0.8.4 5,797 7/14/2021
0.8.2 26,576 6/17/2021
0.8.1 29,170 5/13/2021
0.8.0 19,735 4/16/2021
0.7.4 5,627 4/8/2021
0.7.3 5,822 3/29/2021
0.7.2 4,140 3/14/2021
0.7.1 2,552 3/5/2021
0.7.0 1,418 3/2/2021
0.7.0-nightly-2102281452 266 2/28/2021
0.7.0-nightly-2102280501 222 2/28/2021
0.7.0-nightly-2102271622 220 2/27/2021
0.7.0-nightly-2102271606 199 2/27/2021
0.7.0-nightly-2102241614 656 2/24/2021
0.7.0-nightly-2102231609 230 2/23/2021
0.7.0-nightly-2102230743 211 2/23/2021
0.7.0-nightly-2102230725 202 2/23/2021
0.7.0-nightly-2102230553 201 2/23/2021
0.7.0-nightly-2102230508 202 2/23/2021
0.7.0-nightly-2102220638 261 2/22/2021
0.7.0-nightly-2102220510 201 2/22/2021
0.7.0-nightly-2102220344 189 2/22/2021
0.7.0-nightly-2102201005 257 2/20/2021
0.7.0-nightly-2102201000 203 2/20/2021
0.7.0-nightly-2102190349 237 2/19/2021
0.7.0-nightly-2102141227 352 2/14/2021
0.7.0-nightly-2102140957 221 2/14/2021
0.7.0-nightly-2102140941 222 2/14/2021
0.7.0-nightly-2102090212 359 2/9/2021
0.7.0-nightly-2102081642 278 2/8/2021
0.7.0-nightly-2102071028 241 2/7/2021
0.7.0-nightly-2102061227 223 2/6/2021
0.7.0-nightly-2102061138 214 2/6/2021
0.7.0-nightly-2102051706 238 2/5/2021
0.7.0-nightly-2102051433 209 2/5/2021
0.7.0-nightly-2102050901 429 2/5/2021
0.7.0-nightly-2102050719 206 2/5/2021
0.7.0-nightly-2102050643 208 2/5/2021
0.7.0-nightly-2102050239 196 2/5/2021
0.7.0-nightly-2102041550 209 2/4/2021
0.7.0-nightly-2102040834 205 2/4/2021
0.7.0-nightly-2102040826 196 2/4/2021
0.6.0 8,812 2/1/2021
0.6.0-nightly-2102040130 210 2/4/2021
0.6.0-nightly-2102031544 213 2/3/2021
0.6.0-nightly-2102031051 188 2/3/2021
0.6.0-nightly-2102030802 208 2/3/2021
0.6.0-nightly-2102030742 188 2/3/2021
0.6.0-nightly-2102030652 209 2/3/2021
0.6.0-nightly-2102011648 209 2/1/2021
0.6.0-nightly-2102011554 188 2/1/2021
0.6.0-nightly-2102011529 201 2/1/2021
0.6.0-nightly-2101301739 328 1/30/2021
0.6.0-nightly-2101301549 239 1/30/2021
0.6.0-nightly-2101301454 199 1/30/2021
0.6.0-nightly-2101301431 196 1/30/2021
0.6.0-nightly-2101271025 989 1/27/2021
0.6.0-nightly-2101271005 214 1/27/2021
0.6.0-nightly-2101270937 224 1/27/2021
0.6.0-nightly-2101270917 215 1/27/2021
0.6.0-nightly-2101270903 206 1/27/2021
0.6.0-nightly-2101270554 263 1/27/2021
0.6.0-nightly-2101270535 245 1/27/2021
0.6.0-nightly-2101250638 370 1/25/2021
0.6.0-nightly-2101250507 200 1/25/2021
0.6.0-nightly-2101250045 233 1/25/2021
0.6.0-nightly-2101241818 213 1/24/2021
0.6.0-nightly-2101241507 246 1/24/2021
0.6.0-nightly-2101241437 255 1/24/2021
0.6.0-nightly-2101240611 294 1/24/2021
0.6.0-nightly-2101240609 289 1/24/2021
0.6.0-nightly-2101221736 271 1/22/2021
0.6.0-nightly-2101221730 226 1/22/2021
0.6.0-nightly-2101220722 300 1/22/2021
0.6.0-nightly-2101220229 255 1/22/2021
0.6.0-nightly-2101220214 265 1/22/2021
0.6.0-nightly-2101210934 297 1/21/2021
0.6.0-nightly-2101210708 276 1/21/2021
0.6.0-nightly-2101201552 303 1/20/2021
0.6.0-nightly-2101201217 291 1/20/2021
0.6.0-nightly-2101201213 273 1/20/2021
0.6.0-nightly-2101201038 232 1/20/2021
0.6.0-nightly-2101200808 241 1/20/2021
0.6.0-nightly-2101200753 235 1/20/2021
0.6.0-nightly-2101191340 252 1/19/2021
0.6.0-nightly-2101191308 220 1/19/2021
0.6.0-nightly-2101170756 373 1/17/2021
0.6.0-nightly-2101170736 234 1/17/2021
0.6.0-nightly-2101161412 224 1/16/2021
0.6.0-nightly-2101140256 407 1/14/2021
0.6.0-nightly-2101131537 265 1/13/2021
0.6.0-nightly-2101120507 448 1/12/2021
0.6.0-nightly-2101111654 292 1/11/2021
0.6.0-nightly-2101111518 228 1/11/2021
0.6.0-nightly-2101111451 246 1/11/2021
0.5.3 5,529 1/11/2021
0.5.2 1,733 1/11/2021
0.5.0-nightly-2101110634 214 1/11/2021
0.5.0-nightly-2101110554 213 1/11/2021
0.5.0-nightly-2101110537 206 1/11/2021
0.5.0-nightly-2101101547 299 1/10/2021
0.5.0-nightly-2101101456 212 1/10/2021
0.5.0-nightly-2101101358 227 1/10/2021
0.5.0-nightly-2101101106 281 1/10/2021
0.5.0-nightly-2101100754 268 1/10/2021
0.5.0-nightly-2101100535 294 1/10/2021
0.5.0-nightly-2101091708 240 1/9/2021
0.5.0-nightly-2101091610 245 1/9/2021
0.5.0-nightly-2101070221 436 1/7/2021
0.5.0-nightly-2012300110 646 12/30/2020
0.5.0-nightly-2012291552 207 12/29/2020
0.5.0-nightly-2012261732 798 12/26/2020
0.5.0-nightly-2012261555 261 12/26/2020
0.5.0-nightly-2012261420 284 12/26/2020
0.5.0-nightly-2012261418 285 12/26/2020
0.5.0-nightly-2012261353 294 12/26/2020
0.5.0-nightly-2012250545 327 12/25/2020
0.5.0-nightly-2012250542 260 12/25/2020
0.5.0-nightly-2012250505 269 12/25/2020
0.5.0-nightly-2012240613 299 12/24/2020
0.5.0-nightly-2012240320 277 12/24/2020
0.5.0-nightly-2012240313 230 12/24/2020
0.5.0-nightly-2012221700 415 12/22/2020
0.5.0-nightly-2012210946 629 12/21/2020
0.5.0-nightly-2012210848 296 12/21/2020
0.5.0-nightly-2012210625 288 12/21/2020
0.5.0-nightly-2012200555 417 12/20/2020
0.5.0-nightly-2012180814 433 12/18/2020
0.5.0-nightly-2012180813 292 12/18/2020
0.5.0-nightly-2012160954 408 12/16/2020
0.5.0-nightly-2012160614 318 12/16/2020
0.5.0-nightly-2012160541 303 12/16/2020
0.5.0-nightly-2012101444 627 12/10/2020
0.5.0-nightly-2012081156 657 12/8/2020
0.5.0-nightly-2012081020 298 12/8/2020
0.5.0-nightly-2012080215 314 12/8/2020
0.5.0-nightly-2012071452 319 12/7/2020
0.5.0-nightly-2012051054 921 12/5/2020
0.5.0-nightly-2012050934 281 12/5/2020
0.5.0-nightly-2012030553 531 12/3/2020
0.5.0-nightly-2012030437 289 12/3/2020
0.5.0-nightly-2012020739 392 12/2/2020
0.5.0-nightly-2012020725 261 12/2/2020
0.5.0-nightly-2012011145 333 12/1/2020
0.5.0-nightly-2012010644 345 12/1/2020
0.5.0-nightly-2012010311 309 12/1/2020
0.5.0-nightly-2011300301 349 11/30/2020
0.5.0-nightly-2011281001 584 11/28/2020
0.5.0-nightly-2011280745 280 11/28/2020
0.5.0-nightly-2011280211 400 11/28/2020
0.5.0-nightly-2011271751 272 11/27/2020
0.5.0-nightly-2011271744 257 11/27/2020
0.5.0-nightly-2011270850 321 11/27/2020
0.5.0-nightly-2011270522 1,061 11/27/2020
0.5.0-nightly-2011250346 459 11/25/2020
0.5.0-nightly-2011241057 331 11/24/2020
0.5.0-nightly-2011240428 312 11/24/2020
0.5.0-nightly-2011231518 283 11/23/2020
0.5.0-nightly-2011231509 261 11/23/2020
0.5.0-nightly-2011230543 334 11/23/2020
0.5.0-nightly-2011221341 494 11/22/2020
0.5.0-nightly-2011200501 374 11/20/2020
0.5.0-nightly-2011200449 275 11/20/2020
0.5.0-nightly-2011191515 293 11/19/2020
0.5.0-nightly-2011191047 328 11/19/2020
0.5.0-nightly-2011191031 329 11/19/2020
0.5.0-nightly-2011190925 305 11/19/2020
0.5.0-nightly-2011190828 330 11/19/2020
0.5.0-nightly-2011180919 372 11/18/2020
0.5.0-nightly-2011180810 2,229 11/18/2020
0.5.0-nightly-2011180251 307 11/18/2020
0.5.0-nightly-2011170847 304 11/17/2020
0.5.0-nightly-2011161453 317 11/16/2020
0.5.0-nightly-2011160506 332 11/16/2020
0.5.0-nightly-2011160229 273 11/16/2020
0.5.0-nightly-2011150911 329 11/15/2020
0.5.0-nightly-2011150529 382 11/15/2020
0.4.1 20,281 11/12/2020
0.4.0-nightly-2011120859 294 11/12/2020
0.4.0-nightly-2011120746 273 11/12/2020
0.4.0-nightly-2011120611 282 11/12/2020
0.4.0-nightly-2011101445 876 11/10/2020
0.4.0-nightly-2011091423 423 11/9/2020
0.4.0-nightly-2011081534 424 11/8/2020
0.4.0-nightly-2011080901 310 11/8/2020
0.4.0-nightly-2011050941 541 11/5/2020
0.4.0-nightly-2011030538 1,558 11/3/2020
0.4.0-nightly-2011021655 349 11/2/2020
0.4.0-nightly-2011021511 280 11/2/2020
0.4.0-nightly-2011011445 455 11/1/2020
0.4.0-nightly-2011011430 289 11/1/2020
0.4.0-nightly-2011011426 294 11/1/2020
0.4.0-nightly-2011010806 307 11/1/2020
0.4.0-nightly-2010310627 317 10/31/2020
0.4.0-nightly-2010310248 352 10/31/2020
0.4.0-nightly-2010301446 270 10/30/2020
0.4.0-nightly-2010291024 335 10/29/2020
0.4.0-nightly-2010281726 335 10/28/2020
0.4.0-nightly-2010251512 511 10/25/2020
0.4.0-nightly-2010251508 265 10/25/2020
0.4.0-nightly-2010251127 272 10/25/2020
0.4.0-nightly-2010251117 266 10/25/2020
0.4.0-nightly-2010251113 279 10/25/2020
0.4.0-nightly-2010251109 270 10/25/2020
0.4.0-nightly-2010251106 277 10/25/2020
0.4.0-nightly-2010251101 255 10/25/2020
0.4.0-nightly-2010251037 272 10/25/2020
0.4.0-nightly-2010250704 348 10/25/2020
0.4.0-nightly-2010240544 399 10/24/2020
0.4.0-nightly-2010231358 283 10/23/2020
0.4.0-nightly-2010220454 414 10/22/2020
0.4.0-nightly-2010210557 354 10/21/2020
0.4.0-nightly-2010190410 462 10/19/2020
0.4.0-nightly-2010180954 344 10/18/2020
0.4.0-nightly-2010160515 395 10/16/2020
0.4.0-nightly-2010150334 377 10/15/2020
0.4.0-nightly-2010150319 274 10/15/2020
0.4.0-nightly-2010141603 304 10/14/2020
0.4.0-nightly-2010141409 254 10/14/2020
0.4.0-nightly-2010140950 325 10/14/2020
0.4.0-nightly-2010140941 298 10/14/2020
0.4.0-nightly-2010140933 311 10/14/2020
0.4.0-nightly-2010140717 295 10/14/2020
0.4.0-nightly-2010140604 310 10/14/2020
0.4.0-nightly-2010140538 301 10/14/2020
0.4.0-nightly-2010140536 305 10/14/2020
0.4.0-nightly-2010111628 828 10/11/2020
0.4.0-nightly-2010101427 372 10/10/2020
0.4.0-nightly-2010100739 303 10/10/2020
0.4.0-nightly-2010090840 322 10/9/2020
0.4.0-nightly-2010090721 296 10/9/2020
0.4.0-nightly-2010090618 292 10/9/2020
0.4.0-nightly-2010090340 317 10/9/2020
0.4.0-nightly-2010090308 351 10/9/2020
0.4.0-nightly-2010060709 419 10/6/2020
0.4.0-nightly-2009281553 544 9/28/2020
0.4.0-nightly-2009280850 308 9/28/2020
0.4.0-nightly-2009280815 263 9/28/2020
0.4.0-nightly-2009280813 281 9/28/2020
0.4.0-nightly-2009271512 347 9/27/2020
0.4.0-nightly-2009271409 348 9/27/2020
0.4.0-nightly-2009230808 466 9/23/2020
0.4.0-nightly-2009230403 335 9/23/2020
0.4.0-nightly-2009220233 329 9/22/2020
0.4.0-nightly-2009210930 385 9/21/2020
0.4.0-nightly-2009201708 425 9/20/2020
0.4.0-nightly-2009200700 339 9/20/2020
0.4.0-nightly-2009200352 376 9/20/2020
0.4.0-nightly-2009200251 393 9/20/2020
0.4.0-nightly-2009200248 404 9/20/2020
0.4.0-nightly-2009190141 371 9/19/2020
0.4.0-nightly-2009190122 299 9/19/2020
0.4.0-nightly-2009180936 395 9/18/2020
0.4.0-nightly-2009171610 331 9/17/2020
0.4.0-nightly-2009170850 327 9/17/2020
0.4.0-nightly-2009170710 309 9/17/2020
0.4.0-nightly-2009170620 322 9/17/2020
0.4.0-nightly-2009170319 408 9/17/2020
0.4.0-nightly-2009170244 368 9/17/2020
0.4.0-nightly-2009170215 372 9/17/2020
0.4.0-nightly-2009161213 425 9/16/2020
0.4.0-nightly-2009161148 351 9/16/2020
0.4.0-nightly-2009160605 359 9/16/2020
0.4.0-nightly-2009150710 346 9/15/2020
0.4.0-nightly-2009131422 518 9/13/2020
0.4.0-nightly-2009120205 507 9/12/2020
0.4.0-nightly-2009110751 390 9/11/2020
0.4.0-nightly-2009110646 337 9/11/2020
0.4.0-nightly-2009110643 340 9/11/2020
0.4.0-nightly-2009110548 356 9/11/2020
0.3.0 5,860 9/10/2020
0.3.0-nightly-2009101845 353 9/10/2020
0.3.0-nightly-2009100225 337 9/10/2020
0.3.0-nightly-2009100036 331 9/10/2020
0.3.0-nightly-2009091418 412 9/9/2020
0.3.0-nightly-2009090339 333 9/9/2020
0.3.0-nightly-2009081659 367 9/8/2020
0.3.0-nightly-2009080919 354 9/8/2020
0.3.0-nightly-2009080849 366 9/8/2020
0.3.0-nightly-2009080447 311 9/8/2020
0.3.0-nightly-2009071453 351 9/7/2020
0.3.0-nightly-2009060738 414 9/6/2020
0.3.0-nightly-2009051233 375 9/5/2020
0.3.0-nightly-2009050817 437 9/5/2020
0.3.0-nightly-2009050816 422 9/5/2020
0.3.0-nightly-2009041658 362 9/4/2020
0.3.0-nightly-2009040333 346 9/4/2020
0.3.0-nightly-2009022208 399 9/2/2020
0.3.0-nightly-2009020722 344 9/2/2020
0.3.0-nightly-2009020702 346 9/2/2020
0.3.0-nightly-2009020237 359 9/2/2020
0.3.0-nightly-2009010930 343 9/1/2020
0.3.0-nightly-2009010556 364 9/1/2020
0.3.0-nightly-2008311626 328 8/31/2020
0.3.0-nightly-2008311547 320 8/31/2020
0.3.0-nightly-2008310805 321 8/31/2020
0.3.0-nightly-2008310357 307 8/31/2020
0.3.0-nightly-2008310236 315 8/31/2020
0.3.0-nightly-2008280611 456 8/28/2020
0.3.0-nightly-2008280557 288 8/28/2020
0.3.0-nightly-2008271620 321 8/27/2020
0.3.0-nightly-2008261525 345 8/26/2020
0.3.0-nightly-2008261443 295 8/26/2020
0.3.0-nightly-2008260320 365 8/26/2020
0.3.0-nightly-2008252335 384 8/25/2020
0.3.0-nightly-2008250447 320 8/25/2020
0.3.0-nightly-2008250344 293 8/25/2020
0.3.0-nightly-2008231326 449 8/23/2020
0.3.0-nightly-2008230941 338 8/23/2020
0.3.0-nightly-2008230923 298 8/23/2020
0.3.0-nightly-2008230812 325 8/23/2020
0.3.0-nightly-2008230644 335 8/23/2020
0.3.0-nightly-2008220130 358 8/22/2020
0.3.0-nightly-2008201627 406 8/20/2020
0.3.0-nightly-2008181011 372 8/18/2020
0.3.0-nightly-2008161628 385 8/16/2020
0.3.0-nightly-2008161457 334 8/16/2020
0.3.0-nightly-2008140450 447 8/14/2020
0.3.0-nightly-2008132319 436 8/13/2020
0.3.0-nightly-2008131541 397 8/13/2020
0.3.0-nightly-2008130810 350 8/13/2020
0.3.0-nightly-2008122248 403 8/12/2020
0.3.0-nightly-2008120705 328 8/12/2020
0.3.0-nightly-2008111433 424 8/11/2020
0.3.0-nightly-2008110936 342 8/11/2020
0.3.0-nightly-2008110832 311 8/11/2020
0.3.0-nightly-2008102147 334 8/10/2020
0.3.0-nightly-2008101604 333 8/10/2020
0.3.0-nightly-2008101544 348 8/10/2020
0.3.0-nightly-2008100811 313 8/10/2020
0.3.0-nightly-2008100630 349 8/10/2020
0.3.0-nightly-2008100627 329 8/10/2020
0.3.0-nightly-2008100529 298 8/10/2020
0.3.0-nightly-2008100334 337 8/10/2020
0.3.0-nightly-2008080350 345 8/8/2020
0.3.0-nightly-2008062258 368 8/6/2020
0.3.0-nightly-2008061521 376 8/6/2020
0.3.0-nightly-2008060551 309 8/6/2020
0.3.0-nightly-2008060519 307 8/6/2020
0.3.0-nightly-2008051442 372 8/5/2020
0.3.0-nightly-2008051001 329 8/5/2020
0.3.0-nightly-2008050911 332 8/5/2020
0.3.0-nightly-2008050318 402 8/5/2020
0.3.0-nightly-2008050227 408 8/5/2020
0.3.0-nightly-2008042352 334 8/4/2020
0.3.0-nightly-2008041054 308 8/4/2020
0.3.0-nightly-2008040714 322 8/4/2020
0.3.0-nightly-2008030447 386 8/3/2020
0.3.0-nightly-2008021416 455 8/2/2020
0.3.0-nightly-2008020839 387 8/2/2020
0.3.0-nightly-2008020718 413 8/2/2020
0.3.0-nightly-2008020712 424 8/2/2020
0.2.0 5,917 8/1/2020
0.2.0-nightly-200801155346 339 8/1/2020
0.2.0-nightly-200801155104 340 8/1/2020
0.2.0-nightly-200731044906 371 7/31/2020
0.2.0-nightly-200730171753 341 7/30/2020
0.2.0-nightly-200730165206 311 7/30/2020
0.2.0-nightly-200730155945 323 7/30/2020
0.2.0-nightly-200730011207 371 7/30/2020
0.2.0-nightly-200729162305 374 7/29/2020
0.2.0-nightly-200729044934 373 7/29/2020
0.2.0-nightly-200729033110 373 7/29/2020
0.2.0-nightly-200728083129 583 7/28/2020
0.2.0-nightly-200728031954 367 7/28/2020
0.2.0-nightly-200727063018 354 7/27/2020
0.2.0-nightly-200727060653 354 7/27/2020
0.2.0-nightly-200727032602 323 7/27/2020
0.2.0-nightly-200726155811 449 7/26/2020
0.2.0-nightly-200726154413 355 7/26/2020
0.2.0-nightly-200726152520 346 7/26/2020
0.2.0-nightly-200726112502 323 7/26/2020
0.2.0-nightly-200726055044 334 7/26/2020
0.2.0-nightly-200724150952 403 7/24/2020
0.2.0-nightly-200724122511 338 7/24/2020
0.2.0-nightly-200724092215 428 7/24/2020
0.2.0-nightly-200724091609 333 7/24/2020
0.2.0-nightly-200723145537 375 7/23/2020
0.2.0-nightly-200723075350 374 7/23/2020
0.2.0-nightly-200723064859 325 7/23/2020
0.2.0-nightly-200722165249 331 7/22/2020
0.2.0-nightly-200722162457 323 7/22/2020
0.2.0-nightly-200722145755 319 7/22/2020
0.2.0-nightly-200722090305 341 7/22/2020
0.2.0-nightly-200721163458 368 7/21/2020
0.2.0-nightly-200721155306 335 7/21/2020
0.2.0-nightly-200721143734 297 7/21/2020
0.2.0-nightly-200721075512 304 7/21/2020
0.2.0-nightly-200721065259 307 7/21/2020
0.2.0-nightly-200721061939 316 7/21/2020
0.2.0-nightly-200721045841 336 7/21/2020
0.2.0-nightly-200720162348 310 7/20/2020
0.2.0-nightly-200720162034 297 7/20/2020
0.2.0-nightly-200720145358 334 7/20/2020
0.2.0-nightly-200720143209 333 7/20/2020
0.2.0-nightly-200717054910 384 7/17/2020
0.2.0-nightly-200716103127 317 7/16/2020
0.2.0-nightly-200716090214 324 7/16/2020
0.2.0-nightly-200716063240 341 7/16/2020
0.2.0-nightly-200716060555 342 7/16/2020
0.2.0-nightly-200716050421 310 7/16/2020
0.2.0-nightly-200716010007 385 7/16/2020
0.2.0-nightly-200715120727 346 7/15/2020
0.2.0-nightly-200715053143 394 7/15/2020
0.2.0-nightly-200714170444 391 7/14/2020
0.2.0-nightly-200714143655 304 7/14/2020
0.2.0-nightly-200714091220 322 7/14/2020
0.2.0-nightly-200714055126 341 7/14/2020
0.2.0-nightly-200713153230 354 7/13/2020
0.2.0-nightly-200713151818 330 7/13/2020
0.2.0-nightly-200713124218 375 7/13/2020
0.2.0-nightly-200713043205 586 7/13/2020
0.2.0-nightly-200713035928 1,536 7/13/2020
0.2.0-nightly-200712152428 1,441 7/12/2020
0.2.0-nightly-200711163240 1,538 7/11/2020
0.2.0-nightly-200711162150 1,512 7/11/2020
0.2.0-nightly-200711154610 1,495 7/11/2020
0.2.0-nightly-200711150735 1,532 7/11/2020
0.2.0-nightly-200711145723 1,481 7/11/2020
0.2.0-nightly-200710175133 1,483 7/10/2020
0.2.0-nightly-200710162728 1,443 7/10/2020
0.2.0-nightly-200710100202 1,402 7/10/2020
0.2.0-nightly-200710093933 1,441 7/10/2020
0.2.0-nightly-200709081807 1,464 7/9/2020
0.2.0-nightly-200709062450 1,569 7/9/2020
0.2.0-nightly-200709023800 1,546 7/9/2020
0.2.0-nightly-200708150536 1,442 7/8/2020
0.2.0-nightly-200708081732 1,431 7/8/2020
0.2.0-nightly-200707144919 1,443 7/7/2020
0.2.0-nightly-200707143534 1,508 7/7/2020
0.2.0-nightly-200707111801 1,455 7/7/2020
0.2.0-nightly-200707044847 1,483 7/7/2020
0.2.0-nightly-200706112602 1,440 7/6/2020
0.2.0-nightly-200706111338 1,492 7/6/2020
0.2.0-nightly-200706063757 1,448 7/6/2020
0.2.0-nightly-200706061658 1,496 7/6/2020
0.2.0-nightly-200704161426 1,398 7/4/2020
0.2.0-nightly-200704161313 1,349 7/4/2020
0.2.0-nightly-200704161105 1,471 7/4/2020
0.2.0-nightly-200703054214 1,413 7/3/2020
0.2.0-nightly-200702152437 1,408 7/2/2020
0.2.0-nightly-200702123401 1,458 7/2/2020
0.2.0-nightly-200702094042 1,382 7/2/2020
0.2.0-nightly-200702061246 1,473 7/2/2020
0.2.0-nightly-200701235451 1,397 7/1/2020
0.2.0-nightly-200701134259 1,478 7/1/2020
0.2.0-nightly-200701022920 1,473 7/1/2020
0.1.0 4,860 6/30/2020
0.1.0-rc.4 464 6/29/2020
0.1.0-nightly-200630231315 1,440 6/30/2020
0.1.0-nightly-200630225406 1,394 6/30/2020
0.1.0-nightly-200630144520 1,378 6/30/2020
0.1.0-nightly-200630143704 1,356 6/30/2020
0.1.0-nightly-200630140805 1,350 6/30/2020
0.1.0-nightly-200630072942 1,439 6/30/2020
0.1.0-nightly-200630054520 1,404 6/30/2020
0.1.0-nightly-200629152842 1,520 6/29/2020
0.1.0-nightly-200629152400 1,380 6/29/2020
0.1.0-nightly-200629075702 1,354 6/29/2020
0.1.0-nightly-200629074334 1,344 6/29/2020
0.1.0-nightly-200629053510 1,443 6/29/2020
0.1.0-nightly-200629033515 1,459 6/29/2020
0.1.0-nightly-200629031330 1,451 6/29/2020
0.1.0-nightly-200629024953 1,441 6/29/2020
0.1.0-nightly-200628163029 1,508 6/28/2020
0.1.0-nightly-200628162010 1,432 6/28/2020
0.1.0-nightly-200628161922 1,521 6/28/2020
0.1.0-nightly-200628160411 1,367 6/28/2020
0.1.0-nightly-200628045921 1,366 6/28/2020
0.1.0-nightly-200628044909 1,425 6/28/2020
0.1.0-nightly-200628025847 1,480 6/28/2020
0.1.0-nightly-200627102830 1,473 6/27/2020
0.1.0-nightly-200627073214 1,372 6/27/2020
0.1.0-nightly-200626172510 1,465 6/26/2020
0.1.0-nightly-200626143748 1,450 6/26/2020
0.1.0-nightly-200625132454 1,422 6/25/2020
0.1.0-nightly-200625112711 1,457 6/25/2020
0.1.0-nightly-200624172811 1,445 6/24/2020
0.1.0-nightly-200624041834 1,678 6/24/2020
0.1.0-nightly-200623072337 1,425 6/23/2020
0.1.0-nightly-200621152058 2,125 6/21/2020
0.1.0-nightly-200619170826 1,468 6/19/2020
0.1.0-nightly-200619155624 1,444 6/19/2020
0.1.0-nightly-200619154908 1,343 6/19/2020
0.1.0-nightly-200619151059 1,389 6/19/2020
0.1.0-nightly-200619143949 1,463 6/19/2020
0.1.0-nightly-200617074142 1,496 6/17/2020
0.1.0-nightly-200617063140 1,497 6/17/2020
0.1.0-nightly-200616083042 1,482 6/16/2020
0.1.0-nightly-200616064823 1,367 6/16/2020
0.1.0-nightly-200616043639 1,419 6/16/2020
0.1.0-nightly-200615152848 1,520 6/15/2020
0.1.0-nightly-200615142729 1,428 6/15/2020
0.1.0-nightly-200614163350 1,494 6/14/2020
0.1.0-nightly-200614105811 1,427 6/14/2020
0.1.0-nightly-200613152549 1,486 6/13/2020
0.1.0-nightly-200612165050 1,441 6/12/2020
0.1.0-nightly-200612162715 1,436 6/12/2020
0.1.0-nightly-200611152834 1,414 6/11/2020
0.1.0-nightly-200611152145 1,510 6/11/2020
0.1.0-nightly-200611151556 1,459 6/11/2020
0.1.0-nightly-200611043249 1,545 6/11/2020
0.1.0-nightly-200611022204 1,397 6/11/2020
0.1.0-nightly-200610140050 1,342 6/10/2020
0.1.0-nightly-200610134841 1,364 6/10/2020
0.1.0-nightly-200610111716 1,421 6/10/2020
0.1.0-nightly-200610053849 1,455 6/10/2020
0.1.0-nightly-200609155213 1,429 6/9/2020
0.1.0-nightly-200608144216 1,356 6/8/2020
0.1.0-nightly-200608015853 1,451 6/8/2020
0.1.0-nightly-200607162943 1,345 6/7/2020
0.1.0-nightly-200607133912 1,437 6/7/2020
0.1.0-nightly-200607114442 1,426 6/7/2020
0.1.0-nightly-200606171357 1,444 6/6/2020
0.1.0-nightly-200606165116 1,430 6/6/2020
0.1.0-nightly-200606162437 1,420 6/6/2020
0.1.0-nightly-200605081153 1,466 6/5/2020
0.1.0-nightly-200605081029 1,369 6/5/2020
0.1.0-nightly-200604104953 1,487 6/4/2020
0.1.0-nightly-200604100433 1,453 6/4/2020
0.1.0-nightly-200604090726 1,391 6/4/2020
0.1.0-nightly-200604065201 1,544 6/4/2020
0.1.0-nightly-200604040627 1,507 6/4/2020
0.1.0-nightly-200603151452 1,474 6/3/2020
0.1.0-nightly-200603123346 1,436 6/3/2020
0.1.0-nightly-200603030556 1,477 6/3/2020
0.1.0-nightly-200603022801 1,431 6/3/2020
0.1.0-nightly-200603020151 1,390 6/3/2020
0.1.0-nightly-200602162626 1,334 6/2/2020
0.1.0-nightly-200602123218 1,413 6/2/2020
0.1.0-nightly-200602112115 1,418 6/2/2020
0.1.0-nightly-200602111933 1,420 6/2/2020
0.1.0-nightly-200602062940 1,398 6/2/2020
0.1.0-nightly-200602053811 1,447 6/2/2020
0.1.0-nightly-200602053038 1,403 6/2/2020
0.1.0-nightly-200601233150 1,431 6/1/2020
0.1.0-nightly-200601061327 1,396 6/1/2020
0.1.0-nightly-200531143024 1,464 5/31/2020
0.1.0-nightly-200531080446 1,494 5/31/2020
0.1.0-nightly-200529175034 1,414 5/29/2020
0.1.0-nightly-200529061436 1,405 5/29/2020
0.1.0-nightly-200529045912 1,309 5/29/2020
0.1.0-nightly-200529014616 1,460 5/29/2020
0.1.0-nightly-1 1,390 4/27/2020
0.0.1-v5-240727095728 111 7/27/2024
0.0.1-v5-240726173725 60 7/26/2024
0.0.1-v5-240721144708 83 7/21/2024
0.0.1-v5-240719081121 69 7/19/2024
0.0.1-v5-240718140256 72 7/18/2024
0.0.1-v5-240718134117 67 7/18/2024