StoicDreams.BlazorUI 1.13.0

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

Stoic Dreams Blazor UI

GitHub: GitHub.com/StoicDreams/BlazorUI
Nuget: NuGet.org/packages/StoicDreams.BlazorUI
Demo & Docs: blazorui.stoicdreams.com

UI Framework and component library for Blazor based Websites and Maui projects.

Notice: This project is on hold indefinitely!

I do not expect much continuing work, if any, to be done on Blazor UI at this point, as we have switched our interests to Rust-language projects, including our new WebUI framework built in Rust that we are using to convert our Blazor-built websites to Rust-built websites.

Notice: This project is very early in development!

This project should technically have all the functionality to build a complete website, but at this stage there is a lot of experimental work being done and breaking changes could be introduced with each update.

If you do decide to use it please provide us feedback on our website at www.stoicdreams.com.

Demo & Documentation

blazorui.stoicdreams.com - Our live Demo and Documentation website deployed directly from the sample website StoicDreams.SampleWebsite which is built from Blazor UI.

Project Goals

This Blazor UI framework is targeting a developer experience that will allow developers to be able to develop websites and Maui Blazor app (Desktop & Mobile) without needing to know or touch any html, css, or javascript.

Where component frameworks such as MudBlazor typically give you a bunch of smaller components that need to be stitched together with countless options for doing so, Blazor UI's goal is to get rid of boilerplate coding such as index.html files, and package together these smaller components into larger components, including the MUIApp which replaces the normal App component that a developer would normally have to create and manage for each new app.

As an example here is the Program.cs contenxt taken from our Sample Website:

using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using StoicDreams.SampleWebsite.Shared;

WebAssemblyHostBuilder builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<BUIApp>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");

builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
builder.Services.AddStoicDreamsBlazorUI(options =>
{
	options.AppName = "Stoic Dreams Blazor UI Sample App";
	options.CssFiles.Add("css/app.css");
	options.CssFiles.Add("StoicDreams.SampleWebsite.styles.css");
	options.HeadElements.Add(ElementDetail.Create("link", ("rel", "manifest")));
	options.HeadElements.Add(ElementDetail.Create("link", ("rel", "apple-touch-icon"), ("sizes", "512x512"), ("href", "icon-512.png")));
	options.HeadElements.Add(ElementDetail.Create("link", ("rel", "apple-touch-icon"), ("sizes", "192x192"), ("href", "icon-192.png")));
	options.BodyElements.Add(ElementDetail.Create("script", ("body", "navigator.serviceWorker.register('service-worker.js');"), ("type", "text/javascript")));
});

And while our DefaultLayout is being designed to provide a ton of flexability through simple config changes, we recognize some developers will want to do layouts that follow their own standards, so we allow a simple mechanism to set your own layout.

```csharp
builder.Services.AddStoicDreamsBlazorUI(options =>
{
	options.AppName = "Stoic Dreams Blazor UI Sample App";
	options.SetLayout<MainLayout>();
	...
});

While this project will take some inspiration from and is expected to share some features from design frameworks such as Material and Fluent design systems, it is not in our interest to strictly follow any other frameworks or design patterns. We like a lot of what they do and provide, but we also thing they do some things wrong.

We have developed and are evolving our own design patterns, and those will be reflected in this UI framework.

MudBlazor - www.MudBlazor.com

Library Docs - MudBlazor.com/docs/overview

Due to its sheer awesomeness we have decided to use MudBlazor as a base for our component library. We will do our best to update this project to keep it up to date with MudBlazor updates. And we'll do our best to make sure our integrations and components do not conflict with expected behavior from MudBlazor components.

Not only is it hands down the best component framework we've see or tried in any language, but it's also free. It has a focus on being rooted in Material design, and their components, documentation, and templates are much more developer friendly in our opinion than most other design frameworks we've seen or tried.

Restrictions

Blazor UI is currently being designed to target Maui Blazor and Wasm focused projects. Specifically projects that use an index.html file, which Blazor UI is including from its collection of static files. Server-side Blazor projects are not expected to work.

Project Setup

See the Blazor UI Sample Website for details on how to setup a new website project.

A Maui Blazor sample project will be added later after that framework and toolchain has become generally available for production use.

Author

Erik Gassler - Stoic Dreams - Just a simpleton who likes making stuff with bits and bytes.

Support - Visit Stoic Dreams' GitHub Sponsor page if you would like to provide support to Stoic Dreams. Also make sure to share your support to the team at MudBlazor for the awesome work they're doing.

Software Development Standards - Check out my Simple-Holistic-Agile Software Engineering Standards website to see my standards for developing software.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 was computed.  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.13.0 851 4/1/2023
1.12.7 755 3/19/2023
1.12.6 772 3/19/2023
1.12.5 808 3/4/2023
1.12.3 845 3/3/2023
1.11.19 1,112 9/24/2022
1.11.17 1,060 9/24/2022
1.11.15 977 9/23/2022
1.11.13 1,006 9/23/2022
1.11.9 1,026 9/23/2022
1.11.7 1,015 9/23/2022
1.11.3 1,012 9/21/2022
1.11.1 971 9/21/2022
1.10.200 1,039 9/21/2022
1.10.199 970 9/21/2022
1.10.176 1,057 9/21/2022
1.10.173 1,008 9/20/2022
1.10.162 986 9/20/2022
1.10.155 1,005 9/19/2022
1.10.153 1,031 9/18/2022
1.10.144 1,060 9/17/2022
1.10.143 982 9/17/2022
1.10.141 1,028 9/17/2022
1.10.135 1,024 9/17/2022
1.10.121 993 9/16/2022
1.10.119 1,042 9/12/2022
1.10.116 953 9/11/2022
1.10.112 970 9/11/2022
1.10.106 944 9/11/2022
1.10.103 1,007 9/10/2022
1.10.100 1,045 9/8/2022
1.10.97 959 9/7/2022
1.10.93 1,026 9/7/2022
1.10.91 945 9/7/2022
1.10.87 1,005 9/7/2022
1.10.82 983 9/6/2022
1.10.81 1,010 9/6/2022
1.10.79 963 9/6/2022
1.10.73 988 9/6/2022
1.10.72 953 9/6/2022
1.10.71 978 9/6/2022
1.10.68 962 9/5/2022
1.10.67 997 9/5/2022
1.10.66 960 9/5/2022
1.10.65 965 9/4/2022
1.10.47 964 9/4/2022
1.10.40 989 9/4/2022
1.10.38 1,037 9/3/2022
1.10.30 1,021 9/3/2022
1.10.29 948 9/2/2022
1.10.27 984 9/2/2022
1.10.26 1,014 9/2/2022
1.10.24 954 9/2/2022
1.10.19 958 9/2/2022
1.10.17 988 9/1/2022
1.10.16 968 8/31/2022
1.10.11 978 8/31/2022
1.10.7 963 8/31/2022
1.10.4 992 8/31/2022
1.9.272 1,023 8/30/2022
1.9.266 995 8/30/2022
1.9.265 948 8/29/2022
1.9.264 964 8/28/2022
1.9.263 1,063 8/25/2022
1.9.262 970 8/24/2022
1.9.260 973 8/24/2022
1.9.252 1,006 8/24/2022
1.9.242 976 8/23/2022
1.9.241 974 8/23/2022
1.9.237 1,011 8/23/2022
1.9.234 953 8/23/2022
1.9.206 999 8/22/2022
1.9.205 971 8/22/2022
1.9.204 1,023 8/21/2022
1.9.203 971 8/21/2022
1.9.200 988 8/21/2022
1.9.197 1,013 8/21/2022
1.9.196 952 8/21/2022
1.9.195 972 8/21/2022
1.9.193 951 8/20/2022
1.9.190 971 8/20/2022
1.9.175 971 8/20/2022
1.9.172 952 8/20/2022
1.9.167 939 8/20/2022
1.9.160 957 8/19/2022
1.9.159 1,012 8/19/2022
1.9.158 949 8/19/2022
1.9.157 988 8/19/2022
1.9.155 971 8/19/2022
1.9.132 949 8/18/2022
1.9.131 1,012 8/18/2022
1.9.129 961 8/18/2022
1.9.128 907 8/18/2022
1.9.126 958 8/18/2022
1.9.116 941 8/18/2022
1.9.115 959 8/18/2022
1.9.113 1,010 8/18/2022
1.9.84 969 8/17/2022
1.9.83 971 8/17/2022
1.9.82 978 8/17/2022
1.9.81 948 8/16/2022
1.9.79 939 8/15/2022
1.9.72 987 8/15/2022
1.9.69 992 8/15/2022
1.9.67 970 8/14/2022
1.9.57 1,007 8/14/2022
1.9.56 999 8/13/2022
1.9.53 983 8/13/2022
1.9.48 997 8/13/2022
1.9.47 984 8/13/2022
1.9.45 970 8/12/2022
1.9.41 991 8/12/2022
1.9.36 993 8/12/2022
1.9.19 974 8/12/2022
1.9.18 956 8/12/2022
1.9.16 980 8/12/2022
1.9.15 987 8/11/2022
1.9.2 955 8/11/2022
1.8.73 957 8/10/2022
1.8.59 995 8/8/2022
1.8.45 976 8/7/2022
1.8.44 1,004 8/7/2022
1.8.40 934 8/7/2022
1.8.33 978 8/6/2022
1.8.20 993 8/6/2022
1.8.10 991 8/6/2022
1.8.9 1,002 8/5/2022
1.8.2 965 8/5/2022
1.7.4 1,013 8/2/2022
1.7.3 971 8/1/2022
1.7.2 983 8/1/2022
1.7.1 962 8/1/2022
1.6.50 1,032 7/31/2022
1.6.48 956 7/31/2022
1.6.47 1,000 7/31/2022
1.6.46 986 7/31/2022
1.6.40 994 7/31/2022
1.6.34 1,012 7/31/2022
1.6.33 1,008 7/31/2022
1.6.32 1,022 7/31/2022
1.6.30 990 7/31/2022
1.6.29 1,023 7/31/2022
1.6.28 947 7/31/2022
1.6.27 998 7/31/2022
1.6.25 1,014 7/31/2022
1.6.16 1,013 7/31/2022
1.6.15 1,000 7/31/2022
1.6.13 981 7/31/2022
1.6.12 966 7/31/2022
1.6.9 948 7/30/2022
1.6.1 1,001 7/30/2022
1.5.1 970 7/30/2022
1.4.1 1,016 7/30/2022
1.3.56 953 7/29/2022
1.3.50 994 7/29/2022
1.3.41 995 7/29/2022
1.3.25 1,002 7/28/2022
1.3.23 965 7/28/2022
1.3.19 1,006 7/28/2022
1.3.16 1,004 7/28/2022
1.3.12 1,040 7/28/2022
1.3.10 1,044 7/28/2022
1.3.6 1,009 7/28/2022
1.2.101 1,015 7/27/2022
1.2.98 1,017 7/27/2022
1.2.97 995 7/27/2022
1.2.89 994 7/27/2022
1.2.87 992 7/27/2022
1.2.86 998 7/27/2022
1.2.84 976 7/27/2022
1.2.83 973 7/27/2022
1.2.80 971 7/27/2022
1.2.79 986 7/27/2022
1.2.60 996 7/26/2022
1.2.57 959 7/26/2022
1.2.29 996 7/26/2022
1.2.25 980 7/25/2022
1.2.21 966 7/25/2022
1.2.15 970 7/25/2022
1.2.1 1,021 7/25/2022
1.1.160 1,034 7/24/2022
1.1.95 1,001 7/24/2022
1.1.87 942 7/24/2022
1.1.68 1,016 7/24/2022
1.1.0 985 7/23/2022
1.0.96 970 7/21/2022
1.0.95 986 7/21/2022
1.0.94 969 7/21/2022
1.0.76 1,011 7/21/2022
1.0.74 988 7/20/2022
1.0.73 1,001 7/20/2022
1.0.72 986 7/20/2022
1.0.60 990 7/20/2022
1.0.59 981 7/19/2022
1.0.52 969 7/18/2022
1.0.51 981 7/18/2022
1.0.50 1,004 7/18/2022
1.0.49 1,021 7/18/2022
1.0.48 974 7/18/2022
1.0.47 990 7/18/2022
1.0.46 978 7/18/2022
1.0.45 960 7/18/2022
1.0.44 983 7/18/2022
1.0.39 1,049 7/18/2022
1.0.38 977 7/18/2022

Development Release