NimbleBlazor 17.2.0

dotnet add package NimbleBlazor --version 17.2.0
NuGet\Install-Package NimbleBlazor -Version 17.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="NimbleBlazor" Version="17.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NimbleBlazor --version 17.2.0
#r "nuget: NimbleBlazor, 17.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 NimbleBlazor as a Cake Addin
#addin nuget:?package=NimbleBlazor&version=17.2.0

// Install NimbleBlazor as a Cake Tool
#tool nuget:?package=NimbleBlazor&version=17.2.0

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.1.6+): 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. First, decide whether to create a Blazor Server or Blazor Client/WebAssembly application (see the Blazor hosting model documentation for more information on both models).

Visual Studio: Choose "New" >> "Project", and pick "Blazor Server app" or "Blazor WebAssembly app".
VS Code: Create a new folder, then open it in VS Code. Choose "View" >> "Terminal", and type dotnet new blazorserver -f net6.0 (for Blazor Server) or dotnet new blazorwasm -f net6.0 (for Blazor WebAssembly) and press Enter. 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 _Layout.cshtml (BlazorServer) / wwwroot/index.html (Blazor WebAssembly).
      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.

NimbleTable usage

The NimbleTable requires that its data be set via the SetDataAsync method. The appropriate place to call this method is either in the OnAfterRenderAsync override of the hosting component or after that method has been called for the first time.

As the NimbleTable is generic a client must supply its generic type in the markup using the TData property syntax. The following code represents a typical usage of the NimbleTable:

<NimbleTable TData="MyRecordType" @ref="_table">
@code {
    private NimbleTable<MyRecordType>? _table;
    private IEnumerable<MyRecordType> TableData { get; set; } = Enumerable.Empty<MyRecordType>();
    ...
    public override async Task OnAfterRenderAsync(bool firstRender)
    {
        await base.OnAfterRenderAsync(firstRender);
        await _table.SetDataAsync(TableData); // populate TableData before here
    }

    public class MyRecordType
    {
        ...
    }
}

For more information regarding the Blazor component lifecycle mechanisms (such as OnAfterRenderAsync), please consult the Microsoft Blazor docs.

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).

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

There is currently an issue in ASP.NET Core that prevents the necessary JavaScript that Nimble Blazor relies on from loading in a Blazor Hybrid application. The Demo.Hybrid project illustrates the current required steps for getting Nimble Blazor to work properly. This simply involves adding the script NimbleBlazor.HybridWorkaround.js in the index.html file in wwwroot:

wwwroot/index.html

    ...
    <script src="_framework/blazor.webview.js"></script>
    <script src="_content/NimbleBlazor/nimble-components/all-components-bundle.min.js"></script>
    
    <script src="_content/NimbleBlazor/NimbleBlazor.HybridWorkaround.js"></script>
</body>

Contributing

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

Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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 was computed.  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. 
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
17.2.0 43 5/10/2024
17.1.0 45 5/10/2024
17.0.1 46 5/9/2024
17.0.0 90 5/6/2024
16.1.1 47 5/2/2024
16.1.0 43 5/2/2024
16.0.10 47 5/1/2024
16.0.9 46 5/1/2024
16.0.8 42 5/1/2024
16.0.7 48 5/1/2024
16.0.6 67 4/30/2024
16.0.5 63 4/30/2024
16.0.4 84 4/26/2024
16.0.3 69 4/26/2024
16.0.2 71 4/26/2024
16.0.1 83 4/24/2024
16.0.0 88 4/22/2024
15.0.2 88 4/19/2024
15.0.1 85 4/18/2024
15.0.0 79 4/17/2024
14.7.14 74 4/15/2024
14.7.13 70 4/15/2024
14.7.12 93 4/10/2024
14.7.11 73 4/10/2024
14.7.10 73 4/10/2024
14.7.9 82 4/10/2024
14.7.8 83 4/9/2024
14.7.7 84 4/8/2024
14.7.6 86 4/4/2024
14.7.5 72 4/4/2024
14.7.4 89 4/4/2024
14.7.3 91 4/2/2024
14.7.2 87 4/2/2024
14.7.1 68 4/2/2024
14.7.0 86 3/29/2024
14.6.0 92 3/28/2024
14.5.9 86 3/28/2024
14.5.8 92 3/27/2024
14.5.7 95 3/27/2024
14.5.6 98 3/27/2024
14.5.5 63 3/27/2024
14.5.4 89 3/26/2024
14.5.3 100 3/25/2024
14.5.2 97 3/21/2024
14.5.1 102 3/20/2024
14.5.0 86 3/18/2024
14.4.1 80 3/14/2024
14.4.0 94 3/13/2024
14.3.20 95 3/12/2024
14.3.19 75 3/12/2024
14.3.18 95 3/7/2024
14.3.17 86 3/6/2024
14.3.16 71 3/5/2024
14.3.15 92 3/5/2024
14.3.14 90 3/4/2024
14.3.13 93 3/1/2024
14.3.12 73 2/29/2024
14.3.11 72 2/28/2024
14.3.10 62 2/28/2024
14.3.9 89 2/28/2024
14.3.8 85 2/27/2024
14.3.7 71 2/26/2024
14.3.6 73 2/23/2024
14.3.5 74 2/23/2024
14.3.4 77 2/23/2024
14.3.3 67 2/23/2024
14.3.2 85 2/22/2024
14.3.1 88 2/22/2024
14.2.5 89 2/21/2024
14.2.4 88 2/21/2024
14.2.3 90 2/21/2024
14.2.2 95 2/20/2024
14.2.1 82 2/19/2024
14.2.0 92 2/19/2024
14.1.7 82 2/19/2024
14.1.6 141 2/16/2024
14.1.5 87 2/15/2024
14.1.4 88 2/14/2024
14.1.3 83 2/13/2024
14.1.2 91 2/13/2024
14.1.1 85 2/12/2024
14.1.0 106 2/9/2024
14.0.2 91 2/8/2024
14.0.1 86 2/7/2024
14.0.0 81 2/7/2024
13.2.3 79 2/6/2024
13.2.2 89 2/2/2024
13.2.1 74 1/31/2024
13.2.0 83 1/29/2024
13.1.5 76 1/27/2024
13.1.4 80 1/25/2024
13.1.3 72 1/24/2024
13.1.2 73 1/24/2024
13.1.1 80 1/23/2024
13.1.0 76 1/23/2024
13.0.1 67 1/22/2024
13.0.0 82 1/22/2024
12.7.14 79 1/19/2024
12.7.13 80 1/18/2024
12.7.12 81 1/17/2024
12.7.11 77 1/17/2024
12.7.10 85 1/16/2024
12.7.9 86 1/16/2024
12.7.8 112 1/10/2024
12.7.7 101 1/8/2024
12.7.6 107 1/5/2024
12.7.5 98 1/5/2024
12.7.4 98 1/4/2024
12.7.3 96 1/4/2024
12.7.2 148 12/15/2023
12.7.1 96 12/13/2023
12.7.0 93 12/13/2023
12.6.2 94 12/11/2023
12.6.1 100 12/11/2023
12.6.0 92 12/7/2023
12.5.20 81 12/7/2023
12.5.19 91 12/5/2023
12.5.18 99 11/28/2023
12.5.17 94 11/27/2023
12.5.16 92 11/23/2023
12.5.15 72 11/21/2023
12.5.14 74 11/21/2023
12.5.13 93 11/17/2023
12.5.12 93 11/17/2023
12.5.11 93 11/15/2023
12.5.10 105 11/13/2023
12.5.9 73 11/11/2023
12.5.8 87 11/8/2023
12.5.7 81 11/6/2023
12.5.6 78 11/3/2023
12.5.5 95 11/2/2023
12.5.4 89 11/2/2023
12.5.3 96 11/1/2023
12.5.2 88 11/1/2023
12.5.1 92 11/1/2023
12.5.0 107 10/26/2023
12.4.1 96 10/26/2023
12.4.0 104 10/23/2023
12.3.16 110 10/19/2023
12.3.15 99 10/19/2023
12.3.14 109 10/18/2023
12.3.13 106 10/16/2023
12.3.12 121 10/4/2023
12.3.11 105 10/3/2023
12.3.10 100 9/28/2023
12.3.9 98 9/28/2023
12.3.8 103 9/26/2023
12.3.7 103 9/22/2023
12.3.6 91 9/22/2023
12.3.5 104 9/21/2023
12.3.4 103 9/20/2023
12.3.3 98 9/20/2023
12.3.2 104 9/20/2023
12.3.1 90 9/20/2023
12.3.0 99 9/19/2023
12.2.2 95 9/19/2023
12.2.1 107 9/15/2023
12.2.0 102 9/15/2023
12.1.43 110 9/15/2023
12.1.42 96 9/15/2023
12.1.41 117 9/14/2023
12.1.40 99 9/14/2023
12.1.39 103 9/14/2023
12.1.38 121 9/13/2023
12.1.37 103 9/13/2023
12.1.36 110 9/13/2023
12.1.35 106 9/13/2023
12.1.34 103 9/13/2023
12.1.33 98 9/12/2023
12.1.32 111 9/8/2023
12.1.31 109 9/7/2023
12.1.30 109 9/6/2023
12.1.29 107 9/6/2023
12.1.28 106 9/6/2023
12.1.27 117 9/6/2023
12.1.26 100 9/1/2023
12.1.25 106 9/1/2023
12.1.24 108 9/1/2023
12.1.23 113 9/1/2023
12.1.22 106 8/31/2023
12.1.21 108 8/31/2023
12.1.20 111 8/31/2023
12.1.19 119 8/30/2023
12.1.18 127 8/29/2023
12.1.17 121 8/28/2023
12.1.16 120 8/24/2023
12.1.15 110 8/22/2023
12.1.14 107 8/21/2023
12.1.13 104 8/21/2023
12.1.12 112 8/18/2023
12.1.11 104 8/17/2023
12.1.10 126 8/17/2023
12.1.9 131 8/15/2023
12.1.8 126 8/15/2023
12.1.7 114 8/14/2023
12.1.6 131 8/12/2023
12.1.5 129 8/11/2023
12.1.4 127 8/11/2023
12.1.3 117 8/10/2023
12.1.2 128 8/7/2023
12.1.1 5,422 8/3/2023
12.1.0 140 8/3/2023
12.0.6 128 8/2/2023
12.0.5 330 8/2/2023
12.0.4 126 8/1/2023
12.0.3 122 8/1/2023
12.0.2 123 8/1/2023
12.0.1 124 7/31/2023
12.0.0 131 7/26/2023
11.11.2 131 7/25/2023
11.11.1 136 7/25/2023
11.11.0 135 7/24/2023
11.10.7 140 7/24/2023
11.10.6 129 7/24/2023
11.10.5 129 7/21/2023
11.10.4 130 7/20/2023
11.10.3 127 7/20/2023
11.10.2 132 7/19/2023
11.10.1 135 7/18/2023
11.10.0 130 7/18/2023
11.9.20 141 7/17/2023
11.9.19 128 7/17/2023
11.9.18 123 7/17/2023
11.9.17 124 7/14/2023
11.9.16 123 7/14/2023
11.9.15 131 7/13/2023
11.9.14 128 7/13/2023
11.9.13 121 6/30/2023
11.9.12 121 6/28/2023
11.9.11 119 6/28/2023
11.9.10 117 6/27/2023
11.9.9 109 6/20/2023
11.9.8 113 6/16/2023
11.9.7 114 6/13/2023
11.9.6 119 6/12/2023
11.9.5 116 6/12/2023
11.9.4 128 6/6/2023
11.9.3 119 6/2/2023
11.9.2 117 6/1/2023
11.9.1 128 5/23/2023
11.9.0 128 5/23/2023
11.8.30 131 5/22/2023
11.8.29 131 5/17/2023
11.8.28 125 5/15/2023
11.8.27 127 5/12/2023
11.8.26 145 5/12/2023
11.8.25 137 5/11/2023
11.8.24 136 5/8/2023
11.8.23 135 5/8/2023
11.8.22 153 5/5/2023
11.8.21 153 5/5/2023
11.8.20 153 5/5/2023
11.8.19 164 5/2/2023
11.8.18 158 5/1/2023
11.8.17 160 4/28/2023
11.8.16 158 4/26/2023
11.8.15 167 4/25/2023
11.8.14 459 4/25/2023
11.8.13 160 4/21/2023
11.8.12 198 4/19/2023
11.8.11 193 4/18/2023
11.8.10 179 4/14/2023
11.8.9 179 4/11/2023
11.8.8 187 4/11/2023
11.8.7 195 4/10/2023
11.8.6 183 4/10/2023
11.8.5 174 4/7/2023
11.8.4 198 4/6/2023
11.8.3 193 4/6/2023
11.8.2 190 4/6/2023
11.8.1 169 4/5/2023
11.8.0 189 4/5/2023
11.7.1 191 4/5/2023
11.7.0 197 4/4/2023
11.6.2 201 4/4/2023
11.6.1 195 4/3/2023
11.6.0 192 4/3/2023
11.5.1 1,177 4/3/2023
11.5.0 205 4/1/2023
11.4.1 237 3/28/2023
11.4.0 214 3/22/2023
11.3.6 216 3/16/2023
11.3.5 208 3/15/2023
11.3.4 218 3/14/2023
11.3.3 229 3/10/2023
11.3.2 239 3/10/2023
11.3.1 234 3/10/2023
11.3.0 239 3/9/2023
11.2.7 661 3/2/2023
11.2.6 248 3/2/2023
11.2.5 245 3/1/2023
11.2.4 224 3/1/2023
11.2.3 225 3/1/2023
11.2.2 249 2/28/2023
11.2.1 268 2/21/2023
11.2.0 249 2/20/2023
11.1.16 257 2/20/2023
11.1.15 256 2/17/2023
11.1.14 238 2/17/2023
11.1.13 259 2/15/2023
11.1.12 260 2/14/2023
11.1.11 260 2/14/2023
11.1.10 265 2/14/2023
11.1.9 252 2/14/2023
11.1.8 255 2/14/2023
11.1.7 248 2/13/2023
11.1.6 254 2/10/2023
11.1.5 248 2/10/2023
11.1.4 244 2/10/2023
11.1.3 255 2/9/2023
11.1.2 258 2/9/2023
11.1.1 258 2/7/2023
11.1.0 259 2/6/2023
11.0.3 292 1/30/2023
11.0.2 297 1/27/2023
11.0.1 283 1/27/2023
11.0.0 270 1/26/2023
10.1.0 310 1/26/2023
10.0.11 310 1/25/2023
10.0.10 306 1/24/2023
10.0.9 307 1/20/2023
10.0.8 678 1/20/2023
10.0.7 315 1/19/2023
10.0.6 324 1/18/2023
10.0.5 312 1/18/2023
10.0.4 330 1/18/2023
10.0.3 315 1/18/2023
10.0.2 339 1/14/2023
10.0.1 329 1/13/2023
10.0.0 317 1/12/2023
9.4.4 313 1/11/2023
9.4.3 303 1/11/2023
9.4.2 308 1/9/2023
9.4.1 345 1/5/2023
9.4.0 335 1/5/2023
9.3.0 315 1/4/2023
9.2.0 319 1/4/2023
9.1.23 322 12/17/2022
9.1.22 322 12/16/2022
9.1.21 309 12/16/2022
9.1.20 309 12/16/2022
9.1.19 314 12/16/2022
9.1.18 314 12/13/2022
9.1.17 305 12/13/2022
9.1.16 284 12/12/2022
9.1.15 311 12/12/2022
9.1.14 329 12/9/2022
9.1.13 323 12/9/2022
9.1.12 325 12/7/2022
9.1.11 323 12/6/2022
9.1.10 324 12/6/2022
9.1.9 310 12/5/2022
9.1.8 349 11/29/2022
9.1.7 324 11/23/2022
9.1.6 315 11/22/2022
9.1.5 350 11/14/2022
9.1.4 359 11/14/2022
9.1.3 376 11/11/2022
9.1.2 375 11/11/2022
9.1.1 371 11/10/2022
9.1.0 425 10/25/2022
9.0.1 394 10/18/2022
9.0.0 391 10/18/2022
8.0.0 421 10/7/2022
7.0.0 404 10/6/2022
6.0.2 413 10/4/2022
6.0.1 401 10/3/2022
6.0.0 445 9/29/2022
5.8.0 438 9/29/2022
5.7.1 456 9/29/2022
5.7.0 463 9/15/2022
5.6.4 427 9/12/2022
5.6.3 427 9/12/2022
5.6.2 434 9/6/2022
5.6.1 423 9/2/2022
5.6.0 445 8/30/2022
5.5.6 444 8/30/2022
5.5.5 432 8/26/2022
5.5.4 444 8/24/2022
5.5.3 455 8/15/2022
5.5.2 451 8/12/2022
5.5.1 465 8/11/2022
5.5.0 461 8/11/2022
5.4.0 449 8/10/2022
5.3.7 447 8/10/2022
5.3.6 443 8/10/2022
5.3.5 444 8/9/2022
5.3.4 453 8/9/2022
5.3.3 459 8/9/2022
5.3.2 464 8/9/2022
5.3.1 441 8/9/2022
5.3.0 1,106 8/1/2022
5.2.6 464 8/1/2022
5.2.5 478 7/28/2022
5.2.4 461 7/28/2022
5.2.3 489 7/27/2022
5.2.2 475 7/27/2022
5.2.1 470 7/25/2022
5.2.0 484 7/22/2022
5.1.7 467 7/20/2022
5.1.6 478 7/18/2022
5.1.5 468 7/18/2022
5.1.4 482 7/15/2022
5.1.3 475 6/27/2022
5.1.2 487 6/24/2022
5.1.1 484 6/23/2022
5.1.0 506 6/20/2022
5.0.4 473 6/20/2022
5.0.3 465 6/16/2022
5.0.2 475 6/15/2022
5.0.1 458 6/13/2022
5.0.0 465 6/7/2022
4.0.0 483 6/2/2022
3.1.3 482 5/31/2022
3.1.2 489 5/27/2022
3.1.1 506 5/23/2022
3.0.1 504 5/19/2022
1.0.0-alpha.3 271 6/22/2021
1.0.0-alpha.2 208 4/1/2021
1.0.0-alpha.1 202 3/31/2021
1.0.0-alpha.0 225 3/31/2021