Meziantou.AspNetCore.Components
3.0.3
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Meziantou.AspNetCore.Components --version 3.0.3
NuGet\Install-Package Meziantou.AspNetCore.Components -Version 3.0.3
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="3.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meziantou.AspNetCore.Components" Version="3.0.3" />
<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 3.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Meziantou.AspNetCore.Components, 3.0.3"
#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@3.0.3
#: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=3.0.3
#tool nuget:?package=Meziantou.AspNetCore.Components&version=3.0.3
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 | 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.10)
- Microsoft.AspNetCore.Components.Web (>= 10.0.10)
-
net11.0
- Microsoft.AspNetCore.Components (>= 11.0.0-preview.6.26359.118)
- Microsoft.AspNetCore.Components.Web (>= 11.0.0-preview.6.26359.118)
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 |
|---|---|---|
| 3.0.6 | 72 | 9/6/2026 |
| 3.0.5 | 119 | 8/29/2026 |
| 3.0.4 | 276 | 8/16/2026 |
| 3.0.3 | 115 | 8/9/2026 |
| 3.0.2 | 1,085 | 7/17/2026 |
| 3.0.1 | 125 | 7/8/2026 |
| 3.0.0 | 103 | 7/5/2026 |
| 2.0.40 | 161 | 6/28/2026 |
| 2.0.39 | 134 | 6/22/2026 |
| 2.0.38 | 491 | 6/13/2026 |
| 2.0.37 | 86 | 6/13/2026 |
| 2.0.36 | 287 | 5/31/2026 |
| 2.0.35 | 2,667 | 5/24/2026 |
| 2.0.34 | 128 | 5/23/2026 |
| 2.0.33 | 182 | 5/14/2026 |
| 2.0.32 | 270 | 4/25/2026 |
| 2.0.31 | 1,083 | 3/29/2026 |
| 2.0.30 | 361 | 3/15/2026 |
| 2.0.29 | 218 | 2/22/2026 |
| 2.0.28 | 265 | 1/18/2026 |
Loading failed