Noundry.UI 1.53.0

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

Noundry UI

A modern C# ASP.NET TagHelper library that provides server-side components with Alpine.js and Tailwind CSS integration for building beautiful, interactive web applications.

Features

  • 73 UI TagHelpers - Complete set of interactive components
  • Full Model Binding - Seamless ASP.NET model binding support
  • Accessibility Ready - ARIA attributes and keyboard navigation
  • Tailwind CSS Integration - Beautiful, consistent styling
  • Alpine.js Powered - Lightweight client-side interactivity
  • Tailbreeze Compatible - Automatic CSS compilation integration

Quick Start

Installation

dotnet add package Noundry.UI
dotnet add package Noundry.Tailbreeze

Program.cs:

using Noundry.UI.Extensions;
using Tailbreeze.Extensions;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddRazorPages();
builder.Services.AddNoundryUI();
builder.Services.AddTailbreeze();  // Handles all Tailwind CSS compilation

var app = builder.Build();

app.UseStaticFiles();
app.UseTailbreeze();
app.MapRazorPages();

app.Run();

_ViewImports.cshtml:

@addTagHelper *, Noundry.UI
@addTagHelper *, Tailbreeze

_Layout.cshtml:

<!DOCTYPE html>
<html>
<head>
    <tailwind-link />
    
    
    <script defer src="https://unpkg.com/@alpinejs/collapse@3.x.x/dist/cdn.min.js"></script>
    <script defer src="https://unpkg.com/@alpinejs/focus@3.x.x/dist/cdn.min.js"></script>
    <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
    
    <style>[x-cloak] { display: none !important; }</style>
</head>
<body>
    @RenderBody()
</body>
</html>

That's it! Tailbreeze automatically detects Noundry.UI's safelist and includes all component styles.

Tailwind CSS Integration

Noundry.UI components use dynamic Tailwind CSS classes that are generated at runtime. For these to work:

Tailbreeze automatically detects noundry-ui-safelist.html (copied to your project during build) and includes all component classes in the compiled CSS.

No manual configuration required!

Without Tailbreeze (Manual Setup)

If not using Tailbreeze, add the safelist to your tailwind.config.js:

export default {
  content: [
    "./Pages/**/*.{cshtml,razor}",
    "./Views/**/*.cshtml",
    "./noundry-ui-safelist.html"  // Add this line
  ],
}

Disabling Automatic Safelist Copy


<PropertyGroup>
  <NoundryUICopyClassFiles>false</NoundryUICopyClassFiles>
</PropertyGroup>

Basic Usage

Buttons

<noundry-button variant="primary">Primary</noundry-button>
<noundry-button variant="secondary">Secondary</noundry-button>
<noundry-button variant="danger">Delete</noundry-button>

Alerts

<noundry-alert type="success" dismissible="true" title="Success!">
    Your action was completed successfully.
</noundry-alert>

Form Controls

<noundry-text-input asp-for="Name" label="Full Name" />
<noundry-text-input asp-for="Email" type="email" />
<noundry-switch asp-for="EnableNotifications" label="Enable Notifications" />
<noundry-select asp-for="Country" items="Model.Countries" />

Interactive Components


<noundry-modal title="Confirm" button-text="Open">
    <p>Are you sure?</p>
</noundry-modal>


<noundry-accordion>
    <noundry-accordion-item title="Section 1">Content here</noundry-accordion-item>
</noundry-accordion>


<noundry-tabs>
    <noundry-tab-item title="Tab 1">Tab content</noundry-tab-item>
</noundry-tabs>

Available Components

Layout & Navigation

  • Accordion, Tabs, Dropdown Menu, Breadcrumbs, Navigation Menu

Feedback & Status

  • Alert, Badge, Toast, Progress, Banner

Form Controls

  • Button, Text Input, Textarea, Select, Multi-Select, Checkbox, Radio Group, Switch, Date Picker, Range Slider, File Upload

Overlays & Modals

  • Modal, Slide Over, Tooltip, Popover, Hover Card

Data Display

  • Table, Data Table, Card, Stat Card, Chart, Image Gallery, Skeleton

Advanced

  • Command Palette, Copy to Clipboard, Combobox, Context Menu

Documentation

License

MIT License - see LICENSE.md

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

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.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.53.0 132 3/4/2026