NimbleBlazor 20.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package NimbleBlazor --version 20.2.1
                    
NuGet\Install-Package NimbleBlazor -Version 20.2.1
                    
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="NimbleBlazor" Version="20.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NimbleBlazor" Version="20.2.1" />
                    
Directory.Packages.props
<PackageReference Include="NimbleBlazor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NimbleBlazor --version 20.2.1
                    
#r "nuget: NimbleBlazor, 20.2.1"
                    
#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.
#addin nuget:?package=NimbleBlazor&version=20.2.1
                    
Install NimbleBlazor as a Cake Addin
#tool nuget:?package=NimbleBlazor&version=20.2.1
                    
Install NimbleBlazor as a Cake Tool

Nimble Blazor

Nimble Nuget Version

Getting Started

Prerequisites

  1. IDE:
    • Windows with Visual Studio: For Blazor development on Windows, the suggested IDE is:
      • Visual Studio 2022 (Enterprise, if available): Choose the "ASP.NET and Web Development" Workload in the installer
      • Ensure Visual Studio is completely up to date (v17.11.2+): In Visual Studio click "Help" then "Check for Updates"
    • Mac with Visual Studio Code: Install Visual Studio Code and open it. Open the Extensions pane ("Preferences" >> "Extensions"), and search for / install the ms-dotnettools.csharp extension.
  2. .NET SDK: See the main contributing doc for the required version.

Creating a new Blazor project

The built-in Blazor template projects are good starting points. Starting with .NET 8, there's a unified Blazor Web App project type, which supports multiple render modes (see the Blazor render modes documentation for more information). Also see the "Supported Render Modes" section below.

Visual Studio: Choose "New" >> "Project", and pick "Blazor Web App". Choose the appropriate settings for Interactive Render Mode and Interactivity Location, based on your project's needs. VS Code: Create a new folder, then open it in VS Code. Choose "View" >> "Terminal", and type dotnet new blazor and press Enter, to create a new Blazor Web App. Open the Command Palette ("View" >> "Command Palette" or Ctrl-Shift-P), enter ".NET Generate Assets for Build and Debug" and press Enter.

Additional Resources: Microsoft tutorial: Build a web app with Blazor; dotnet new documentation

Reference NimbleBlazor in a Blazor project

  1. Add a PackageReference to the NimbleBlazor NuGet package:
    • Using the published NimbleBlazor NuGet package (recommended)
      • Visual Studio: "Project" >> "Manage NuGet Packages", pick "nuget.org" in the "Package Source" dropdown, and ensure "Include prerelease" is checked. Search for "NimbleBlazor", select it and click the "Install" button.
      • VS Code: Run the command dotnet add package NimbleBlazor --source https://api.nuget.org/v3/index.json --prerelease in the Terminal window.
    • For Nimble developers, with a locally built NimbleBlazor NuGet (built from the Nimble repo):
      • Run npm run build, and then npm run pack -w @ni/nimble-blazor from the root of the Nimble repo
      • Visual Studio: "Project" >> "Manage NuGet Packages". Click the gear/Settings button. Add a new Package Source ("NimbleBlazor") as [NimbleRepoDirectory]\packages\blazor-workspace\dist and commit/ close Settings. Pick "NimbleBlazor" in the "Package Source" dropdown, and ensure "Include prerelease" is checked. Search for "NimbleBlazor", select it and click the "Install" button.
      • VS Code: Run the command dotnet add package NimbleBlazor --source [NimbleRepoDirectory]\packages\blazor-workspace\dist in the Terminal window.
  2. Add required references to Blazor code
    • Open _Imports.razor, and add a new line at the bottom: @using NimbleBlazor
    • Open the HTML page (generally App.razor for Blazor Web Apps, or wwwroot/index.html for Blazor WebAssembly / Hybrid)
      At the bottom of the <head> section (right before </head>), add
      <link href="_content/NimbleBlazor/nimble-tokens/css/fonts.css" rel="stylesheet" />
      
      At the bottom of the <body> section (right before </body>), add
      <script src="_content/NimbleBlazor/nimble-components/all-components-bundle.min.js"></script>
      

Additional Resources: dotnet add package documentation

Use Nimble Blazor components

For a simple modification to the Blazor template project: open Index.razor and add the following code at the bottom, to add a Nimble text field that updates when a Nimble button is clicked:

<NimbleTextField Value="@ButtonClickStatus"></NimbleTextField>
<NimbleButton Appearance="ButtonAppearance.Outline" @onclick="OnButtonClicked">Click Me</NimbleButton>
@code {
    protected string ButtonClickStatus { get; set; } = string.Empty;
    private int _buttonClickCount = 0;

    private void OnButtonClicked(MouseEventArgs args)
    {
        _buttonClickCount++;
        ButtonClickStatus = $"Button Clicked {_buttonClickCount} times";
    }
}

To test out your changes, do "Debug" >> "Start without Debugging" in Visual Studio, or dotnet watch run in the VS Code Terminal.

More complete examples can be found in the Demo.Client/Server example projects.

Supported Render Modes

Nimble supports all of the Blazor render modes:

  • Interactive server-side rendering (interactive SSR) using Blazor Server: RenderMode.InteractiveServer
  • Interactive WebAssembly: Client-side rendering (CSR) using Blazor WebAssembly: RenderMode.InteractiveWebAssembly
  • Interactive Auto: Interactive SSR initially, then CSR on subsequent visits after the Blazor bundle is downloaded: RenderMode.InteractiveAuto
  • Static server-side rendering (static SSR): Default, when no render mode is specified
    • ⚠️Warning: This render mode is not recommended for most use cases with Nimble. As the page is just rendered once server-side and then no state is maintained, you're unable to use event handlers or call methods on components. This also means that for components like the Nimble Table / Wafer Map, setting data can't be done via the component methods (because they'll have no effect if called).
Prerendering

Blazor with .NET 8 uses prerendering by default for interactive render modes. With it enabled, components are initially rendered server-side without event handlers connected, which could cause unexpected behavior (no effect when users interact with controls immediately after page load).

See the Blazor prerendering docs for information on how to opt out of prerendering.

Theming and Design Tokens

To use Nimble's theme-aware design tokens in a Blazor app, you should have a <NimbleThemeProvider> element as an ancestor to all of the Nimble components you use. The app's default layout (MainLayout.razor in the examples) is a good place to put the theme provider (as the root content of the page).

Best practices

Custom Blazor components should provide their own scoped CSS file (in addition to a separate .cs file for the template-independent logic). Providing a separate CSS file is necessary to access other Blazor styling mechanisms that are helpful to use.

Styling Razor components

Often you will need to provide CSS for the Razor components to control things like layout behaviors within a parent container. To accomplish this, in the scoped CSS file for the component containing the Razor component (e.g. NimbleTextField), you must use the ::deep pseudo-selector to target that component.

MyComponent.razor

<div>
    <NimbleTextField class="text-field"></NimbleTextField>
</div>

MyComponent.razor.css

::deep .text-field {
    flex: 1;
}

Components must be wrapped in a containing element in order to work with the ::deep pseduo-selector. For more info see the Microsoft docs.

Using Nimble Design Tokens (CSS/SCSS)

Blazor doesn't have built-in support for using/ building SCSS files, however Nimble's design tokens can be used as CSS variables (var(--ni-nimble-...)) in Blazor apps without any additional work.
For a full list of supported variable names, see the Nimble Storybook, "Tokens" >> "Theme-aware tokens".

Experimental: Manually including Nimble Tokens SCSS files
There are currently extra manual steps required to use the Nimble design tokens as SCSS in Blazor projects (which results in better IntelliSense and compile-time checking for the Nimble tokens and variables):

  1. Copy the Nimble tokens SCSS files into your Blazor project: Include tokens.scss and tokens-internal.scss from the nimble-components in your Blazor project directory. The simplest way to get these files is via unpkg.com (latest versions: tokens.scss, tokens-internal.scss)
  2. In tokens.scss, add a file extension to the @import statement at the top ('./tokens-internal''./tokens-internal.scss')
  3. Add a NuGet package reference to a SASS/SCSS compiler to your Blazor project. Both LibSassBuilder and DartSassBuilder (latest/prerelease) have been tested with Blazor projects and work with no additional configuration required.
  4. Add new SCSS files for your Razor components (e.g. MyComponent.razor.scss), and @import 'tokens.scss' in it (updating the import relative path as needed).
  5. Use the $ni-nimble-... variables in your Blazor application SCSS.

The SCSS compilation happens before the rest of Blazor's compilation, so this approach works fine with Blazor CSS isolation.
Note: This approach requires periodically updating the Nimble tokens SCSS files manually (whenever the Nimble Blazor NuGet version is updated).

Localization (Optional)

Most user-visible strings displayed by Nimble components are provided by the client application and are expected to be localized by the application if necessary. However, some strings are built into Nimble components and are provided only in English.

To provide localized strings in a localized Blazor app:

  1. Add the label providers as children of your <NimbleThemeProvider>:
    • <NimbleLabelProviderCore>: Used for labels for all components besides the table
    • <NimbleLabelProviderTable>: Used for labels for the table (and table sub-components / column types)
  2. For each Nimble-provided label shown in the Label Provider Storybook documentation:
    • Add a new entry for the label in a resource file (.resx). You can either add to an existing resx file, or create a new one just for the Nimble strings. The resource value should be the Nimble-provided English default string shown in Storybook.
    • Follow standard Blazor localization patterns to localize the strings, and load the localized versions at runtime in your application.
    • Provide Nimble the localized strings with the label provider APIs. For example, to provide the popupDismiss label on NimbleLabelProviderCore, if you load your string resources with a .NET IStringLocalizer instance, your label provider may look like the following:
      <NimbleLabelProviderCore PopupDismiss="@LabelStringLocalizer["popupDismiss"]"></NimbleLabelProviderCore>
      

Using Nimble Blazor in a Blazor Hybrid app

Requirement: Microsoft.AspNetCore.Components.WebView v8.0.4+

This updated WebView package include a fix so that the JavaScript initialization code that Nimble/Spright Blazor uses gets loaded correctly. Note that if using the Microsoft.AspNetCore.Components.WebView.Wpf package, it only specifies a dependency of Microsoft.AspNetCore.Components.WebView v8.0+, so you may to add need an explicit dependency on Microsoft.AspNetCore.Components.WebView to ensure a recent enough version is included. The Demo.Hybrid project in the Blazor solution illustrates this setup.

Contributing

Follow the instructions in CONTRIBUTING.md to modify this library.

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
20.3.2 29 6/3/2025
20.3.1 133 5/29/2025
20.3.0 132 5/28/2025
20.2.1 65 5/23/2025
20.2.0 128 5/20/2025
20.1.8 130 5/20/2025
20.1.7 131 5/20/2025
20.1.6 221 5/14/2025
20.1.5 218 5/14/2025
20.1.4 141 5/6/2025
20.1.3 143 5/1/2025
20.1.2 179 4/2/2025
20.1.1 168 4/2/2025
20.1.0 136 3/28/2025
20.0.3 465 3/26/2025
20.0.2 470 3/26/2025
20.0.1 149 3/20/2025
20.0.0 164 3/10/2025
19.6.0 124 2/28/2025
19.5.2 108 2/26/2025
19.5.1 133 2/11/2025
19.5.0 101 2/7/2025
19.4.6 124 1/30/2025
19.4.5 113 1/30/2025
19.4.4 107 1/30/2025
19.4.3 101 1/29/2025
19.4.2 109 1/16/2025
19.4.1 95 1/10/2025
19.4.0 91 1/8/2025
19.3.4 88 1/8/2025
19.3.3 106 1/6/2025
19.3.2 129 1/3/2025
19.3.1 135 12/10/2024
19.3.0 116 12/9/2024
19.2.2 117 12/4/2024
19.2.1 114 12/4/2024
19.2.0 116 12/2/2024
19.1.4 102 11/22/2024
19.1.3 109 11/19/2024
19.1.2 98 11/18/2024
19.1.1 132 11/14/2024
19.1.0 107 11/14/2024
19.0.1 116 11/5/2024
19.0.0 125 11/1/2024
18.4.4 123 10/29/2024
18.4.3 107 10/29/2024
18.4.2 103 10/28/2024
18.4.1 123 10/24/2024
18.4.0 112 10/24/2024
18.3.4 96 10/23/2024
18.3.3 99 10/23/2024
18.3.2 137 10/18/2024
18.3.1 109 10/16/2024
18.3.0 106 10/16/2024
18.2.11 123 10/14/2024
18.2.10 117 10/9/2024
18.2.9 1,113 9/26/2024
18.2.8 119 9/26/2024
18.2.7 111 9/26/2024
18.2.6 117 9/25/2024
18.2.5 127 9/18/2024
18.2.4 135 9/11/2024
18.2.3 128 9/11/2024
18.2.2 151 9/11/2024
18.2.1 142 9/10/2024
18.2.0 159 9/5/2024
18.1.1 131 9/5/2024
18.1.0 125 9/5/2024
18.0.5 125 9/4/2024
18.0.4 123 9/3/2024
18.0.3 125 9/3/2024
18.0.2 121 9/3/2024
18.0.1 127 8/28/2024
18.0.0 137 8/23/2024
17.6.4 143 8/21/2024
17.6.3 138 8/20/2024
17.6.2 177 8/16/2024
17.6.1 116 8/1/2024
17.6.0 132 7/23/2024
17.5.0 315 7/17/2024
17.4.3 138 7/3/2024
17.4.2 207 6/13/2024
17.4.1 121 6/7/2024
17.4.0 128 6/6/2024
17.3.1 133 6/1/2024
17.3.0 132 5/21/2024
17.2.0 139 5/10/2024
17.1.0 138 5/10/2024
17.0.1 133 5/9/2024
17.0.0 144 5/6/2024
16.1.1 95 5/2/2024
16.1.0 92 5/2/2024
16.0.10 108 5/1/2024
16.0.9 98 5/1/2024
16.0.8 95 5/1/2024
16.0.7 102 5/1/2024
16.0.6 123 4/30/2024
16.0.5 107 4/30/2024
16.0.4 137 4/26/2024
16.0.3 122 4/26/2024
16.0.2 115 4/26/2024
16.0.1 134 4/24/2024
16.0.0 145 4/22/2024
15.0.2 135 4/19/2024
15.0.1 128 4/18/2024
15.0.0 124 4/17/2024
14.7.14 123 4/15/2024
14.7.13 133 4/15/2024
14.7.12 138 4/10/2024
14.7.11 113 4/10/2024
14.7.10 117 4/10/2024
14.7.9 131 4/10/2024
14.7.8 129 4/9/2024
14.7.7 125 4/8/2024
14.7.6 132 4/4/2024
14.7.5 115 4/4/2024
14.7.4 128 4/4/2024
14.7.3 136 4/2/2024
14.7.2 132 4/2/2024
14.7.1 108 4/2/2024
14.7.0 157 3/29/2024
14.6.0 139 3/28/2024
14.5.9 131 3/28/2024
14.5.8 134 3/27/2024
14.5.7 146 3/27/2024
14.5.6 146 3/27/2024
14.5.5 129 3/27/2024
14.5.4 132 3/26/2024
14.5.3 151 3/25/2024
14.5.2 140 3/21/2024
14.5.1 159 3/20/2024
14.5.0 149 3/18/2024
14.4.1 147 3/14/2024
14.4.0 144 3/13/2024
14.3.20 151 3/12/2024
14.3.19 145 3/12/2024
14.3.18 158 3/7/2024
14.3.17 149 3/6/2024
14.3.16 136 3/5/2024
14.3.15 135 3/5/2024
14.3.14 148 3/4/2024
14.3.13 153 3/1/2024
14.3.12 117 2/29/2024
14.3.11 124 2/28/2024
14.3.10 112 2/28/2024
14.3.9 138 2/28/2024
14.3.8 138 2/27/2024
14.3.7 124 2/26/2024
14.3.6 128 2/23/2024
14.3.5 144 2/23/2024
14.3.4 132 2/23/2024
14.3.3 121 2/23/2024
14.3.2 148 2/22/2024
14.3.1 138 2/22/2024
14.2.5 149 2/21/2024
14.2.4 146 2/21/2024
14.2.3 162 2/21/2024
14.2.2 147 2/20/2024
14.2.1 134 2/19/2024
14.2.0 147 2/19/2024
14.1.7 138 2/19/2024
14.1.6 197 2/16/2024
14.1.5 139 2/15/2024
14.1.4 142 2/14/2024
14.1.3 134 2/13/2024
14.1.2 145 2/13/2024
14.1.1 139 2/12/2024
14.1.0 152 2/9/2024
14.0.2 150 2/8/2024
14.0.1 133 2/7/2024
14.0.0 155 2/7/2024
13.2.3 126 2/6/2024
13.2.2 144 2/2/2024
13.2.1 124 1/31/2024
13.2.0 125 1/29/2024
13.1.5 120 1/27/2024
13.1.4 127 1/25/2024
13.1.3 129 1/24/2024
13.1.2 116 1/24/2024
13.1.1 124 1/23/2024
13.1.0 121 1/23/2024
13.0.1 143 1/22/2024
13.0.0 128 1/22/2024
12.7.14 143 1/19/2024
12.7.13 126 1/18/2024
12.7.12 131 1/17/2024
12.7.11 121 1/17/2024
12.7.10 134 1/16/2024
12.7.9 137 1/16/2024
12.7.8 161 1/10/2024
12.7.7 167 1/8/2024
12.7.6 149 1/5/2024
12.7.5 140 1/5/2024
12.7.4 172 1/4/2024
12.7.3 142 1/4/2024
12.7.2 192 12/15/2023
12.7.1 137 12/13/2023
12.7.0 137 12/13/2023
12.6.2 138 12/11/2023
12.6.1 140 12/11/2023
12.6.0 155 12/7/2023
12.5.20 145 12/7/2023
12.5.19 122 12/5/2023
12.5.18 133 11/28/2023
12.5.17 131 11/27/2023
12.5.16 128 11/23/2023
12.5.15 111 11/21/2023
12.5.14 126 11/21/2023
12.5.13 134 11/17/2023
12.5.12 128 11/17/2023
12.5.11 126 11/15/2023
12.5.10 140 11/13/2023
12.5.9 125 11/11/2023
12.5.8 126 11/8/2023
12.5.7 144 11/6/2023
12.5.6 113 11/3/2023
12.5.5 132 11/2/2023
12.5.4 123 11/2/2023
12.5.3 137 11/1/2023
12.5.2 123 11/1/2023
12.5.1 134 11/1/2023
12.5.0 142 10/26/2023
12.4.1 134 10/26/2023
12.4.0 138 10/23/2023
12.3.16 151 10/19/2023
12.3.15 141 10/19/2023
12.3.14 158 10/18/2023
12.3.13 146 10/16/2023
12.3.12 156 10/4/2023
12.3.11 141 10/3/2023
12.3.10 136 9/28/2023
12.3.9 132 9/28/2023
12.3.8 139 9/26/2023
12.3.7 141 9/22/2023
12.3.6 129 9/22/2023
12.3.5 140 9/21/2023
12.3.4 141 9/20/2023
12.3.3 134 9/20/2023
12.3.2 128 9/20/2023
12.3.1 122 9/20/2023
12.3.0 132 9/19/2023
12.2.2 120 9/19/2023
12.2.1 141 9/15/2023
12.2.0 134 9/15/2023
12.1.43 145 9/15/2023
12.1.42 127 9/15/2023
12.1.41 151 9/14/2023
12.1.40 132 9/14/2023
12.1.39 137 9/14/2023
12.1.38 155 9/13/2023
12.1.37 128 9/13/2023
12.1.36 147 9/13/2023
12.1.35 145 9/13/2023
12.1.34 128 9/13/2023
12.1.33 134 9/12/2023
12.1.32 150 9/8/2023
12.1.31 148 9/7/2023
12.1.30 151 9/6/2023
12.1.29 143 9/6/2023
12.1.28 145 9/6/2023
12.1.27 158 9/6/2023
12.1.26 136 9/1/2023
12.1.25 169 9/1/2023
12.1.24 155 9/1/2023
12.1.23 150 9/1/2023
12.1.22 153 8/31/2023
12.1.21 157 8/31/2023
12.1.20 150 8/31/2023
12.1.19 160 8/30/2023
12.1.18 170 8/29/2023
12.1.17 178 8/28/2023
12.1.16 158 8/24/2023
12.1.15 148 8/22/2023
12.1.14 145 8/21/2023
12.1.13 138 8/21/2023
12.1.12 148 8/18/2023
12.1.11 141 8/17/2023
12.1.10 163 8/17/2023
12.1.9 175 8/15/2023
12.1.8 167 8/15/2023
12.1.7 154 8/14/2023
12.1.6 167 8/12/2023
12.1.5 171 8/11/2023
12.1.4 164 8/11/2023
12.1.3 156 8/10/2023
12.1.2 171 8/7/2023
12.1.1 5,484 8/3/2023
12.1.0 190 8/3/2023
12.0.6 164 8/2/2023
12.0.5 368 8/2/2023
12.0.4 163 8/1/2023
12.0.3 157 8/1/2023
12.0.2 158 8/1/2023
12.0.1 163 7/31/2023
12.0.0 172 7/26/2023
11.11.2 173 7/25/2023
11.11.1 175 7/25/2023
11.11.0 176 7/24/2023
11.10.7 181 7/24/2023
11.10.6 172 7/24/2023
11.10.5 169 7/21/2023
11.10.4 169 7/20/2023
11.10.3 166 7/20/2023
11.10.2 170 7/19/2023
11.10.1 181 7/18/2023
11.10.0 168 7/18/2023
11.9.20 182 7/17/2023
11.9.19 167 7/17/2023
11.9.18 165 7/17/2023
11.9.17 162 7/14/2023
11.9.16 168 7/14/2023
11.9.15 175 7/13/2023
11.9.14 173 7/13/2023
11.9.13 161 6/30/2023
11.9.12 165 6/28/2023
11.9.11 158 6/28/2023
11.9.10 156 6/27/2023
11.9.9 147 6/20/2023
11.9.8 166 6/16/2023
11.9.7 164 6/13/2023
11.9.6 165 6/12/2023
11.9.5 157 6/12/2023
11.9.4 172 6/6/2023
11.9.3 171 6/2/2023
11.9.2 163 6/1/2023
11.9.1 175 5/23/2023
11.9.0 179 5/23/2023
11.8.30 171 5/22/2023
11.8.29 173 5/17/2023
11.8.28 170 5/15/2023
11.8.27 176 5/12/2023
11.8.26 188 5/12/2023
11.8.25 184 5/11/2023
11.8.24 185 5/8/2023
11.8.23 186 5/8/2023
11.8.22 197 5/5/2023
11.8.21 197 5/5/2023
11.8.20 196 5/5/2023
11.8.19 206 5/2/2023
11.8.18 221 5/1/2023
11.8.17 206 4/28/2023
11.8.16 207 4/26/2023
11.8.15 211 4/25/2023
11.8.14 523 4/25/2023
11.8.13 210 4/21/2023
11.8.12 250 4/19/2023
11.8.11 236 4/18/2023
11.8.10 234 4/14/2023
11.8.9 224 4/11/2023
11.8.8 262 4/11/2023
11.8.7 240 4/10/2023
11.8.6 228 4/10/2023
11.8.5 219 4/7/2023
11.8.4 243 4/6/2023
11.8.3 238 4/6/2023
11.8.2 234 4/6/2023
11.8.1 213 4/5/2023
11.8.0 234 4/5/2023
11.7.1 243 4/5/2023
11.7.0 242 4/4/2023
11.6.2 248 4/4/2023
11.6.1 243 4/3/2023
11.6.0 245 4/3/2023
11.5.1 1,235 4/3/2023
11.5.0 258 4/1/2023
11.4.1 290 3/28/2023
11.4.0 260 3/22/2023
11.3.6 261 3/16/2023
11.3.5 251 3/15/2023
11.3.4 260 3/14/2023
11.3.3 271 3/10/2023
11.3.2 281 3/10/2023
11.3.1 275 3/10/2023
11.3.0 284 3/9/2023
11.2.7 704 3/2/2023
11.2.6 288 3/2/2023
11.2.5 291 3/1/2023
11.2.4 269 3/1/2023
11.2.3 275 3/1/2023
11.2.2 313 2/28/2023
11.2.1 311 2/21/2023
11.2.0 293 2/20/2023
11.1.16 304 2/20/2023
11.1.15 308 2/17/2023
11.1.14 285 2/17/2023
11.1.13 310 2/15/2023
11.1.12 304 2/14/2023
11.1.11 303 2/14/2023
11.1.10 309 2/14/2023
11.1.9 299 2/14/2023
11.1.8 312 2/14/2023
11.1.7 300 2/13/2023
11.1.6 310 2/10/2023
11.1.5 301 2/10/2023
11.1.4 289 2/10/2023
11.1.3 305 2/9/2023
11.1.2 303 2/9/2023
11.1.1 304 2/7/2023
11.1.0 307 2/6/2023
11.0.3 353 1/30/2023
11.0.2 343 1/27/2023
11.0.1 330 1/27/2023
11.0.0 325 1/26/2023
10.1.0 358 1/26/2023
10.0.11 362 1/25/2023
10.0.10 351 1/24/2023
10.0.9 351 1/20/2023
10.0.8 729 1/20/2023
10.0.7 360 1/19/2023
10.0.6 369 1/18/2023
10.0.5 356 1/18/2023
10.0.4 376 1/18/2023
10.0.3 364 1/18/2023
10.0.2 385 1/14/2023
10.0.1 373 1/13/2023
10.0.0 370 1/12/2023
9.4.4 360 1/11/2023
9.4.3 352 1/11/2023
9.4.2 379 1/9/2023
9.4.1 394 1/5/2023
9.4.0 385 1/5/2023
9.3.0 363 1/4/2023
9.2.0 371 1/4/2023
9.1.23 372 12/17/2022
9.1.22 370 12/16/2022
9.1.21 360 12/16/2022
9.1.20 361 12/16/2022
9.1.19 377 12/16/2022
9.1.18 361 12/13/2022
9.1.17 352 12/13/2022
9.1.16 339 12/12/2022
9.1.15 360 12/12/2022
9.1.14 379 12/9/2022
9.1.13 370 12/9/2022
9.1.12 378 12/7/2022
9.1.11 370 12/6/2022
9.1.10 378 12/6/2022
9.1.9 361 12/5/2022
9.1.8 404 11/29/2022
9.1.7 380 11/23/2022
9.1.6 363 11/22/2022
9.1.5 401 11/14/2022
9.1.4 416 11/14/2022
9.1.3 428 11/11/2022
9.1.2 427 11/11/2022
9.1.1 430 11/10/2022
9.1.0 487 10/25/2022
9.0.1 446 10/18/2022
9.0.0 448 10/18/2022
8.0.0 474 10/7/2022
7.0.0 456 10/6/2022
6.0.2 469 10/4/2022
6.0.1 455 10/3/2022
6.0.0 508 9/29/2022
5.8.0 495 9/29/2022
5.7.1 513 9/29/2022
5.7.0 518 9/15/2022
5.6.4 503 9/12/2022
5.6.3 482 9/12/2022
5.6.2 487 9/6/2022
5.6.1 474 9/2/2022
5.6.0 499 8/30/2022
5.5.6 504 8/30/2022
5.5.5 490 8/26/2022
5.5.4 505 8/24/2022
5.5.3 514 8/15/2022
5.5.2 507 8/12/2022
5.5.1 508 8/11/2022
5.5.0 516 8/11/2022
5.4.0 504 8/10/2022
5.3.7 501 8/10/2022
5.3.6 497 8/10/2022
5.3.5 505 8/9/2022
5.3.4 505 8/9/2022
5.3.3 515 8/9/2022
5.3.2 521 8/9/2022
5.3.1 499 8/9/2022
5.3.0 1,185 8/1/2022
5.2.6 520 8/1/2022
5.2.5 533 7/28/2022
5.2.4 515 7/28/2022
5.2.3 546 7/27/2022
5.2.2 530 7/27/2022
5.2.1 527 7/25/2022
5.2.0 540 7/22/2022
5.1.7 525 7/20/2022
5.1.6 532 7/18/2022
5.1.5 514 7/18/2022
5.1.4 543 7/15/2022
5.1.3 538 6/27/2022
5.1.2 541 6/24/2022
5.1.1 538 6/23/2022
5.1.0 563 6/20/2022
5.0.4 528 6/20/2022
5.0.3 526 6/16/2022
5.0.2 536 6/15/2022
5.0.1 518 6/13/2022
5.0.0 521 6/7/2022
4.0.0 544 6/2/2022
3.1.3 538 5/31/2022
3.1.2 543 5/27/2022
3.1.1 571 5/23/2022
3.0.1 594 5/19/2022
1.0.0-alpha.3 328 6/22/2021
1.0.0-alpha.2 274 4/1/2021
1.0.0-alpha.1 264 3/31/2021
1.0.0-alpha.0 293 3/31/2021