AugusteVN.Razor.Components.Bootstrap 1.1.0

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

Bootstrap Components for Blazor

A reusable Razor component library for .NET 10 / Blazor built on Bootstrap 5. Bootstrap CSS/JS and Bootstrap Icons ship inside the package's wwwroot, so consuming apps reference everything locally — no CDNs.

Getting Started

Install the package:

dotnet add package AugusteVN.Razor.Components.Bootstrap

Reference the bundled assets in index.html (Blazor WebAssembly) or _Host.cshtml (Blazor Server):

<link href="_content/AugusteVN.Razor.Components.Bootstrap/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="_content/AugusteVN.Razor.Components.Bootstrap/css/bootstrap-icons-1.10.5/font/bootstrap-icons.min.css" rel="stylesheet" />
<link href="_content/AugusteVN.Razor.Components.Bootstrap/css/utilities.css" rel="stylesheet" />

<script src="_content/AugusteVN.Razor.Components.Bootstrap/js/bootstrap.bundle.min.js"></script>

Usage Example

@using AugusteVN.Razor.Components.Bootstrap.Components.Layout.Cards

<ThumbnailCard Accent="AccentColor.Warning"
               Icon="bi bi-heart-fill"
               OnClick="@(() => NavigateToDetail(item))">
    <Image>
        <img class="card-thumbnail-img" src="@coverUrl" alt="@title" />
    </Image>
    <Footer>
        <h6 class="card-title text-truncate">@title</h6>
    </Footer>
</ThumbnailCard>

Add an "add new" tile with an overlay:

<ThumbnailCard OnClick="@HandleAddClicked">
    <Image>
        <img class="card-thumbnail-img" src="@coverUrl" alt="Add item" />
    </Image>
    <Overlay>
        <div class="placeholder-overlay">
            <h2 class="bi bi-plus-circle mb-2"></h2>
            <h6>Add item</h6>
        </div>
    </Overlay>
</ThumbnailCard>

Components

Layout

  • Cards: ThumbnailCard, CompactCard, HorizontalCard, NarrowCard, FeaturedCard, ProductCard, ReviewCard, AccentOverlay
  • Navbars: TopBar, TopBarNav, BackBar, CloseBar, PageHeaderNav
  • Panels: PanelLayout, PanelPrevNextButtons
  • Accordion: AccordionLayout, AccordionItemLayout
  • Tabs: TabsLayout, TabLayout, TabPaneLayout
  • HScroll: HScrollLayout, HScrollThumbnails
  • Content layouts: ContentDetailDescription, ContentDetailContactInfo, ContentDetailSocialInfo, ProfilePageCard, AddressLink, SocialIcons
  • Layout helpers: Section, StickySidebar, DesktopOnly, MobileOnly
  • Template layouts: NoResultsLayout, StatusMessageLayout

Functionals

  • Buttons: BackButton, CloseButton
  • Content: ContentDetailImagesCarousel
  • Filters: CoordinatesFilterLayout, CurrentLocationPicker, MonthPicker, NumericRangeSlider
  • Forms: FormLabel
  • Modals: CancelModal, RemoveModal, OfferModal, SearchModal, TosModal, TosLayout
  • Navigation: CollapsibleSidebar, PanelsFlow, UpDownButtons, UpDownScrollingButtons
  • SEO: MetaTagsLayout
  • Share: ContentShareLayout, ShareLayout, ShareModal
  • Standalone: CaptchaLayout, FiveStarLayout, ToastLayout

Extensions & Models

  • JSRuntimeExtensions
  • PanelSelector, ShareData

Brought to you by: kiss-code.com.

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.

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.1.0 63 9/2/2026
1.0.9 96 8/26/2026
1.0.8 88 8/26/2026
1.0.7 90 8/21/2026
1.0.6 85 8/21/2026
1.0.5 94 8/19/2026
1.0.4 96 8/19/2026
1.0.3 100 8/11/2026
1.0.2 91 8/10/2026
1.0.1 96 8/10/2026
1.0.0 98 8/8/2026

Add more CSS to utilities.css.