This a public repository to receive incoming issues, feedback, and feature request from Blazority community.
Blazority is a Blazor component library based on Clarity UI. Our aim is to provide components that are easy to use, and built as purely as possibly using Blazor, with little to no JavaScript (less than 1KB). This libary is compatiable with both Blazor Server and Web Assembly modes.
- Visit https://blazority.com/ for most up-to-date demos and usage docs.
- Visit Blazority REPL to experiment, test drive, or create reproducible environment for issue reports.
Install Blazority using Nuget or Package Manager Console:
Install-Package Blazority
Add the using block for Blazority in your _Imports.razor file:
@using Blazority
Add the following stylesheets in the head section of your Index file (like _Host.cshtml):
<link rel="stylesheet" href="_content/Blazority/lib/clr/ui/clr-ui.min.css" />
<link rel="stylesheet" href="_content/Blazority/lib/clr/icons/clr-icons.min.css" />
<link rel="stylesheet" href="_content/Blazority/blazority.min.css" />
Add the following scripts in the bottom portion of body tag in the same Index file:
<script src="_content/Blazority/lib/webcomponents/custom-elements/custom-elements.min.js"></script>
<script src="_content/Blazority/lib/clr/icons/clr-icons.min.js"></script>
<script src="_content/Blazority/blazority.min.js"></script>