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.
#addin nuget:?package=StoicDreams.BlazorUI&version=1.13.0
                    
Install StoicDreams.BlazorUI as a Cake Addin
#tool nuget:?package=StoicDreams.BlazorUI&version=1.13.0
                    
Install StoicDreams.BlazorUI 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. 
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 789 4/1/2023
1.12.7 713 3/19/2023
1.12.6 731 3/19/2023
1.12.5 768 3/4/2023
1.12.3 806 3/3/2023
1.11.19 1,070 9/24/2022
1.11.17 1,015 9/24/2022
1.11.15 935 9/23/2022
1.11.13 964 9/23/2022
1.11.9 986 9/23/2022
1.11.7 971 9/23/2022
1.11.3 970 9/21/2022
1.11.1 926 9/21/2022
1.10.200 996 9/21/2022
1.10.199 928 9/21/2022
1.10.176 1,016 9/21/2022
1.10.173 965 9/20/2022
1.10.162 943 9/20/2022
1.10.155 961 9/19/2022
1.10.153 990 9/18/2022
1.10.144 1,018 9/17/2022
1.10.143 939 9/17/2022
1.10.141 986 9/17/2022
1.10.135 982 9/17/2022
1.10.121 952 9/16/2022
1.10.119 989 9/12/2022
1.10.116 913 9/11/2022
1.10.112 929 9/11/2022
1.10.106 903 9/11/2022
1.10.103 966 9/10/2022
1.10.100 1,002 9/8/2022
1.10.97 916 9/7/2022
1.10.93 985 9/7/2022
1.10.91 900 9/7/2022
1.10.87 961 9/7/2022
1.10.82 943 9/6/2022
1.10.81 969 9/6/2022
1.10.79 917 9/6/2022
1.10.73 933 9/6/2022
1.10.72 910 9/6/2022
1.10.71 937 9/6/2022
1.10.68 918 9/5/2022
1.10.67 951 9/5/2022
1.10.66 919 9/5/2022
1.10.65 921 9/4/2022
1.10.47 921 9/4/2022
1.10.40 948 9/4/2022
1.10.38 994 9/3/2022
1.10.30 978 9/3/2022
1.10.29 906 9/2/2022
1.10.27 941 9/2/2022
1.10.26 971 9/2/2022
1.10.24 910 9/2/2022
1.10.19 914 9/2/2022
1.10.17 936 9/1/2022
1.10.16 925 8/31/2022
1.10.11 928 8/31/2022
1.10.7 920 8/31/2022
1.10.4 948 8/31/2022
1.9.272 978 8/30/2022
1.9.266 952 8/30/2022
1.9.265 906 8/29/2022
1.9.264 923 8/28/2022
1.9.263 1,020 8/25/2022
1.9.262 928 8/24/2022
1.9.260 929 8/24/2022
1.9.252 964 8/24/2022
1.9.242 934 8/23/2022
1.9.241 932 8/23/2022
1.9.237 970 8/23/2022
1.9.234 910 8/23/2022
1.9.206 954 8/22/2022
1.9.205 928 8/22/2022
1.9.204 981 8/21/2022
1.9.203 929 8/21/2022
1.9.200 942 8/21/2022
1.9.197 971 8/21/2022
1.9.196 908 8/21/2022
1.9.195 929 8/21/2022
1.9.193 910 8/20/2022
1.9.190 930 8/20/2022
1.9.175 928 8/20/2022
1.9.172 910 8/20/2022
1.9.167 897 8/20/2022
1.9.160 912 8/19/2022
1.9.159 969 8/19/2022
1.9.158 907 8/19/2022
1.9.157 943 8/19/2022
1.9.155 928 8/19/2022
1.9.132 905 8/18/2022
1.9.131 968 8/18/2022
1.9.129 917 8/18/2022
1.9.128 862 8/18/2022
1.9.126 914 8/18/2022
1.9.116 896 8/18/2022
1.9.115 915 8/18/2022
1.9.113 964 8/18/2022
1.9.84 924 8/17/2022
1.9.83 924 8/17/2022
1.9.82 931 8/17/2022
1.9.81 904 8/16/2022
1.9.79 896 8/15/2022
1.9.72 944 8/15/2022
1.9.69 949 8/15/2022
1.9.67 927 8/14/2022
1.9.57 962 8/14/2022
1.9.56 955 8/13/2022
1.9.53 939 8/13/2022
1.9.48 954 8/13/2022
1.9.47 940 8/13/2022
1.9.45 927 8/12/2022
1.9.41 941 8/12/2022
1.9.36 949 8/12/2022
1.9.19 928 8/12/2022
1.9.18 913 8/12/2022
1.9.16 936 8/12/2022
1.9.15 933 8/11/2022
1.9.2 911 8/11/2022
1.8.73 897 8/10/2022
1.8.59 951 8/8/2022
1.8.45 933 8/7/2022
1.8.44 960 8/7/2022
1.8.40 891 8/7/2022
1.8.33 934 8/6/2022
1.8.20 938 8/6/2022
1.8.10 947 8/6/2022
1.8.9 941 8/5/2022
1.8.2 921 8/5/2022
1.7.4 970 8/2/2022
1.7.3 926 8/1/2022
1.7.2 938 8/1/2022
1.7.1 918 8/1/2022
1.6.50 987 7/31/2022
1.6.48 910 7/31/2022
1.6.47 955 7/31/2022
1.6.46 941 7/31/2022
1.6.40 950 7/31/2022
1.6.34 967 7/31/2022
1.6.33 963 7/31/2022
1.6.32 977 7/31/2022
1.6.30 945 7/31/2022
1.6.29 967 7/31/2022
1.6.28 903 7/31/2022
1.6.27 953 7/31/2022
1.6.25 968 7/31/2022
1.6.16 965 7/31/2022
1.6.15 955 7/31/2022
1.6.13 937 7/31/2022
1.6.12 921 7/31/2022
1.6.9 903 7/30/2022
1.6.1 957 7/30/2022
1.5.1 926 7/30/2022
1.4.1 971 7/30/2022
1.3.56 907 7/29/2022
1.3.50 946 7/29/2022
1.3.41 948 7/29/2022
1.3.25 956 7/28/2022
1.3.23 921 7/28/2022
1.3.19 959 7/28/2022
1.3.16 959 7/28/2022
1.3.12 996 7/28/2022
1.3.10 1,000 7/28/2022
1.3.6 962 7/28/2022
1.2.101 968 7/27/2022
1.2.98 972 7/27/2022
1.2.97 950 7/27/2022
1.2.89 947 7/27/2022
1.2.87 947 7/27/2022
1.2.86 952 7/27/2022
1.2.84 924 7/27/2022
1.2.83 927 7/27/2022
1.2.80 925 7/27/2022
1.2.79 939 7/27/2022
1.2.60 949 7/26/2022
1.2.57 915 7/26/2022
1.2.29 951 7/26/2022
1.2.25 933 7/25/2022
1.2.21 921 7/25/2022
1.2.15 924 7/25/2022
1.2.1 976 7/25/2022
1.1.160 988 7/24/2022
1.1.95 954 7/24/2022
1.1.87 891 7/24/2022
1.1.68 970 7/24/2022
1.1.0 938 7/23/2022
1.0.96 925 7/21/2022
1.0.95 939 7/21/2022
1.0.94 912 7/21/2022
1.0.76 953 7/21/2022
1.0.74 943 7/20/2022
1.0.73 955 7/20/2022
1.0.72 940 7/20/2022
1.0.60 944 7/20/2022
1.0.59 935 7/19/2022
1.0.52 922 7/18/2022
1.0.51 935 7/18/2022
1.0.50 959 7/18/2022
1.0.49 974 7/18/2022
1.0.48 928 7/18/2022
1.0.47 944 7/18/2022
1.0.46 933 7/18/2022
1.0.45 914 7/18/2022
1.0.44 938 7/18/2022
1.0.39 1,003 7/18/2022
1.0.38 932 7/18/2022

Development Release