Meziantou.AspNetCore.Components
2.0.36
Prefix Reserved
dotnet add package Meziantou.AspNetCore.Components --version 2.0.36
NuGet\Install-Package Meziantou.AspNetCore.Components -Version 2.0.36
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="Meziantou.AspNetCore.Components" Version="2.0.36" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meziantou.AspNetCore.Components" Version="2.0.36" />
<PackageReference Include="Meziantou.AspNetCore.Components" />
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 Meziantou.AspNetCore.Components --version 2.0.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Meziantou.AspNetCore.Components, 2.0.36"
#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.
#:package Meziantou.AspNetCore.Components@2.0.36
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Meziantou.AspNetCore.Components&version=2.0.36
#tool nuget:?package=Meziantou.AspNetCore.Components&version=2.0.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Meziantou.AspNetCore.Components
A collection of reusable Blazor components and services for common UI and browser-integration scenarios.
Features
- UI components:
DataGrid,Repeater,GenericForm,LoadingIndicator,AnchorNavigation,InfiniteScrolling - Input components:
InputDateTime<TValue>,InputEnumSelect<TEnum>,InputGuid<TValue>,InputUrl<TValue> - Browser services:
ClipboardService,QueryStringService,TimeZoneService
Installation
dotnet add package Meziantou.AspNetCore.Components
Usage
Add the package namespace in your app:
@using Meziantou.AspNetCore.Components
Register optional services:
using Meziantou.AspNetCore.Components;
builder.Services.AddClipboard();
builder.Services.AddQueryStringParameters();
builder.Services.AddTimeZoneServices();
Example: Repeater component
<Repeater Items="items">
<ItemTemplate Context="item">
<span>@item</span>
</ItemTemplate>
<ItemSeparatorTemplate>, </ItemSeparatorTemplate>
<EmptyTemplate><em>No item</em></EmptyTemplate>
<LoadingTemplate><em>Loading...</em></LoadingTemplate>
</Repeater>
@code {
private List<string>? items = new() { "A", "B", "C" };
}
Example: Query string synchronization
@inject QueryStringService QueryStringService
@code {
[Parameter]
[SupplyParameterFromQuery]
public string? Search { get; set; }
protected override void OnInitialized()
{
QueryStringService.SetParametersFromQueryString(this);
}
}
Additional resources
| Product | Versions 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 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. net10.0 is compatible. 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. net11.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.AspNetCore.Components (>= 10.0.8)
- Microsoft.AspNetCore.Components.Web (>= 10.0.8)
-
net11.0
- Microsoft.AspNetCore.Components (>= 11.0.0-preview.4.26230.115)
- Microsoft.AspNetCore.Components.Web (>= 11.0.0-preview.4.26230.115)
-
net8.0
- Microsoft.AspNetCore.Components (>= 8.0.27)
- Microsoft.AspNetCore.Components.Web (>= 8.0.27)
-
net9.0
- Microsoft.AspNetCore.Components (>= 9.0.16)
- Microsoft.AspNetCore.Components.Web (>= 9.0.16)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Meziantou.AspNetCore.Components:
| Package | Downloads |
|---|---|
|
Yamf.Authentication.Themed.Blazor
Package Description |
|
|
KingTech.Web.FormGenerator
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.0.36 | 49 | 5/31/2026 |
| 2.0.35 | 177 | 5/24/2026 |
| 2.0.34 | 103 | 5/23/2026 |
| 2.0.33 | 154 | 5/14/2026 |
| 2.0.32 | 250 | 4/25/2026 |
| 2.0.31 | 463 | 3/29/2026 |
| 2.0.30 | 342 | 3/15/2026 |
| 2.0.29 | 196 | 2/22/2026 |
| 2.0.28 | 246 | 1/18/2026 |
| 2.0.27 | 814 | 12/14/2025 |
| 2.0.26 | 625 | 11/16/2025 |
| 2.0.25 | 219 | 11/2/2025 |
| 2.0.24 | 382 | 10/19/2025 |
| 2.0.23 | 296 | 10/5/2025 |
| 2.0.22 | 249 | 9/21/2025 |
| 2.0.21 | 357 | 9/16/2025 |
| 2.0.20 | 239 | 9/3/2025 |
| 2.0.19 | 791 | 8/10/2025 |
| 2.0.18 | 1,693 | 7/13/2025 |
| 2.0.17 | 286 | 6/15/2025 |
Loading failed