SuperBlazorComponents 1.8.49

dotnet add package SuperBlazorComponents --version 1.8.49
                    
NuGet\Install-Package SuperBlazorComponents -Version 1.8.49
                    
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="SuperBlazorComponents" Version="1.8.49" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SuperBlazorComponents" Version="1.8.49" />
                    
Directory.Packages.props
<PackageReference Include="SuperBlazorComponents" />
                    
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 SuperBlazorComponents --version 1.8.49
                    
#r "nuget: SuperBlazorComponents, 1.8.49"
                    
#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 SuperBlazorComponents@1.8.49
                    
#: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=SuperBlazorComponents&version=1.8.49
                    
Install as a Cake Addin
#tool nuget:?package=SuperBlazorComponents&version=1.8.49
                    
Install as a Cake Tool

🚀 SuperBlazorComponents

NuGet License: MIT .NET 10

High-performance, open-source Blazor component library for admin and line-of-business applications — built with Bootstrap 5.3 and zero third-party JS dependencies (except Google Charts).


🖼️ Demo

SuperBlazorComponents demo website home page


✨ Components

Preview Component Description Docs
<img src="docs/images/components/superdatagrid.svg" width="88" alt="SuperDataGrid preview"> SuperDataGrid Virtualized data grid — frozen columns/rows, hierarchical lazy-loading rows, reordering, resizing, filtering, sorting, inline editing, row selection, settings persistence 📖 SUPERDATAGRID.md
<img src="docs/images/components/superlayout.svg" width="88" alt="SuperLayout preview"> SuperLayout Responsive app layout — header, sidebar, body, footer, chat panel with collapsible sidebar 📖 SUPERLAYOUT.md
<img src="docs/images/components/supertabs.svg" width="88" alt="SuperTabs preview"> SuperTabs Dynamic tabbed interface — badges, closable tabs, lazy loading, persistence (URL + localStorage), keyboard navigation, service-driven management 📖 SUPERTABS.md
<img src="docs/images/components/supersplitter.svg" width="88" alt="SuperSplitter preview"> SuperSplitter Resizable split panels — horizontal/vertical, collapsible, state persistence 📖 SuperSplitter.md
<img src="docs/images/components/superdaterangepicker.svg" width="88" alt="SuperDateRangePicker preview"> SuperDateRangePicker Calendar-based date range picker with presets 📖 SUPERDATERANGEPICKER.md
<img src="docs/images/components/supercolorpicker.svg" width="88" alt="SuperColorPicker preview"> SuperColorPicker Inline HSV color picker — hue/saturation/value canvas, alpha slider, HEX & RGB input modes 📖 SUPERCOLORPICKER.md
<img src="docs/images/components/superdropdowncolorpicker.svg" width="88" alt="SuperDropDownColorPicker preview"> SuperDropDownColorPicker Compact dropdown variant of SuperColorPicker — colored swatch trigger button with floating popup 📖 SUPERCOLORPICKER.md
<img src="docs/images/components/superhtmleditor.svg" width="88" alt="SuperHtmlEditor preview"> SuperHtmlEditor WYSIWYG HTML editor — toolbar (font, size, bold/italic/underline, colors, alignment, lists), lazy-loaded Monaco Editor for HTML source view 📖 SUPERHTMLEDITOR.md
<img src="docs/images/components/superbuttons.svg" width="88" alt="SuperButtons preview"> SuperButtons Buttons, split buttons, toggle buttons, link buttons, confirmation buttons 📖 SUPERBUTTONS.md
<img src="docs/images/components/supertristatecheckbox.svg" width="88" alt="SuperTriStateCheckbox preview"> SuperTriStateCheckbox Bootstrap-friendly checkbox for nullable boolean values (true, false, null) 📖 SuperTriStateCheckbox.md
<img src="docs/images/components/supertooltip.svg" width="88" alt="SuperTooltip preview"> SuperTooltip Tooltips for Blazor or HTML elements — text, HTML, Markdown, positions, delay, duration, click closing and manual control 📖 SuperTooltip.md
<img src="docs/images/components/superdialog.svg" width="88" alt="SuperDialog preview"> SuperDialog Modal dialog system with dynamic component rendering 📖 SUPERDIALOGS.md
<img src="docs/images/components/superconfirmdialog.svg" width="88" alt="SuperConfirmDialog preview"> SuperConfirmDialog Confirmation dialog with customizable buttons 📖 SUPERDIALOGS.md
<img src="docs/images/components/supernotifications.svg" width="88" alt="SuperNotifications preview"> SuperNotifications Toast notifications with auto-dismiss and severity levels 📖 SUPERNOTIFICATIONS.md
<img src="docs/images/components/superbreadcrumb.svg" width="88" alt="SuperBreadCrumb preview"> SuperBreadCrumb Breadcrumb navigation with back-navigation support 📖 SUPERBREADCRUMB.md
<img src="docs/images/components/supermenuitem.svg" width="88" alt="SuperMenuItem preview"> SuperMenuItem Sidebar menu items with icons, badges, and nested submenus 📖 SUPERMENUITEM.md
<img src="docs/images/components/themetoggle.svg" width="88" alt="ThemeToggle preview"> ThemeToggle Dark/light theme toggle with system preference detection and localStorage persistence 📖 THEMETOGGLE.md
<img src="docs/images/components/googlecharts.svg" width="88" alt="Google Charts preview"> Google Charts Combo charts, pie charts, and pure SVG time series charts 📖 GOOGLECHARTS.md

📦 Installation

dotnet add package SuperBlazorComponents

🔧 Setup

Register the services in your Program.cs:

builder.Services.AddSuperComponents();

🚀 Quick Start

@using SuperBlazorComponents.Components.SuperDataGrid

<SuperDataGrid TItem="Product"
               ItemsProvider="LoadProducts"
               Height="500px"
               AllowSorting="true"
               AllowFiltering="true"
               FreezeHeader="true"
               SelectionMode="SuperDataGridSelectionMode.Multiple"
               GridId="products-grid">
    <DataGridColumn Title="Name" For="@(c => c.Name)" />
    <DataGridColumn Title="Price" For="@(c => c.Price)" Width="120" />
    <DataGridColumn Title="Category" For="@(c => c.Category)" Width="150" />
</SuperDataGrid>

For tree-like datasets, enable Hierarchical="true" and branch inside ItemsProvider when request.IsHierarchyRequest is true. Parent and child rows use the same TItem type.


🤝 Contributing

Contributions are welcome! Feel free to open issues, suggest features, or submit pull requests.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License.


🌐 Live Demo

A live demo site is available at blazor.appliman.com


🤖 MCP Server

The demo site also exposes a public Model Context Protocol (MCP) server for AI-assisted development.

Use it when you want an MCP-compatible assistant to discover how to install and implement SuperBlazorComponents in another Blazor application.

  • MCP endpoint: https://blazor.appliman.com/mcp
  • Health check: https://blazor.appliman.com/mcp/health
  • Transport: Streamable HTTP
  • Authentication: none

The server exposes tools such as:

  • list_super_components
  • get_super_component_guide
  • get_super_data_grid_guide
  • get_super_datagrid_guide
  • get_super_buttons_guide
  • get_super_tabs_guide
  • get_super_layout_guide
  • get_super_dialogs_guide

Example prompts:

  • Use the SuperBlazorComponents MCP server and show me how to add SuperDataGrid to this Blazor app.
  • Get the SuperButtons guide and implement a confirmation delete button.
  • List the available SuperBlazorComponents guides.

VS Code

In VS Code, open Command PaletteMCP: Add Server, choose HTTP, and enter:

https://blazor.appliman.com/mcp

Or create .vscode/mcp.json in your workspace:

{
  "servers": {
    "superblazorcomponents": {
      "type": "http",
      "url": "https://blazor.appliman.com/mcp"
    }
  }
}

Then open Copilot Chat in Agent mode and ask for a component guide.

Visual Studio

Visual Studio can discover MCP server configuration from several locations, including:

  • %USERPROFILE%\.mcp.json
  • <SOLUTIONDIR>\.mcp.json
  • <SOLUTIONDIR>\.vs\mcp.json
  • <SOLUTIONDIR>\.vscode\mcp.json

Example .mcp.json:

{
  "servers": [
    {
      "name": "superblazorcomponents",
      "transport": "http",
      "url": "https://blazor.appliman.com/mcp"
    }
  ]
}

After saving the file, restart or reload GitHub Copilot Agent mode in Visual Studio so the MCP tools are discovered.

Docker Desktop MCP Toolkit

Docker Desktop MCP Toolkit can be used as a gateway between MCP clients and a profile of MCP servers.

  1. Enable Docker Desktop → Settings → Beta features → MCP Toolkit.
  2. Open Docker Desktop → MCP Toolkit → Profiles.
  3. Create a profile, for example superblazor-docs.
  4. Add a remote HTTP MCP server with this URL:
https://blazor.appliman.com/mcp
  1. Connect your client from the Clients tab, or configure the gateway manually.

Manual VS Code-style gateway configuration:

{
  "servers": {
    "MCP_DOCKER": {
      "type": "stdio",
      "command": "docker",
      "args": ["mcp", "gateway", "run", "--profile", "superblazor-docs"]
    }
  }
}

You can also run the gateway directly:

docker mcp gateway run --profile superblazor-docs

References


Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

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
1.8.49 38 5/16/2026
1.8.48 27 5/16/2026
1.8.47 32 5/16/2026
1.8.46 43 5/15/2026
1.8.45 39 5/14/2026
1.7.44 37 5/14/2026
1.6.43 104 5/11/2026
1.5.42 91 5/11/2026
1.5.41 85 5/11/2026
1.4.40.2 115 5/4/2026
1.4.39.2 123 4/30/2026
1.4.38.2 108 4/27/2026
1.4.37.2 109 4/27/2026
1.4.36.2 95 4/26/2026
1.4.36.1 100 4/26/2026
1.3.35.1 162 4/14/2026
1.3.34.1 96 4/10/2026
1.3.33.1 96 4/10/2026
1.3.32.1 94 4/10/2026
1.3.31 101 4/9/2026