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.
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.
// Install StoicDreams.BlazorUI as a Cake Addin
#addin nuget:?package=StoicDreams.BlazorUI&version=1.13.0

// Install StoicDreams.BlazorUI as a Cake Tool
#tool nuget:?package=StoicDreams.BlazorUI&version=1.13.0

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. 
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 723 4/1/2023
1.12.7 669 3/19/2023
1.12.6 686 3/19/2023
1.12.5 727 3/4/2023
1.12.3 758 3/3/2023
1.11.19 1,014 9/24/2022
1.11.17 943 9/24/2022
1.11.15 887 9/23/2022
1.11.13 912 9/23/2022
1.11.9 921 9/23/2022
1.11.7 908 9/23/2022
1.11.3 916 9/21/2022
1.11.1 871 9/21/2022
1.10.200 934 9/21/2022
1.10.199 874 9/21/2022
1.10.176 955 9/21/2022
1.10.173 918 9/20/2022
1.10.162 879 9/20/2022
1.10.155 906 9/19/2022
1.10.153 936 9/18/2022
1.10.144 966 9/17/2022
1.10.143 888 9/17/2022
1.10.141 915 9/17/2022
1.10.135 923 9/17/2022
1.10.121 900 9/16/2022
1.10.119 941 9/12/2022
1.10.116 860 9/11/2022
1.10.112 880 9/11/2022
1.10.106 855 9/11/2022
1.10.103 919 9/10/2022
1.10.100 928 9/8/2022
1.10.97 869 9/7/2022
1.10.93 936 9/7/2022
1.10.91 847 9/7/2022
1.10.87 909 9/7/2022
1.10.82 897 9/6/2022
1.10.81 916 9/6/2022
1.10.79 868 9/6/2022
1.10.73 883 9/6/2022
1.10.72 862 9/6/2022
1.10.71 893 9/6/2022
1.10.68 857 9/5/2022
1.10.67 896 9/5/2022
1.10.66 869 9/5/2022
1.10.65 869 9/4/2022
1.10.47 872 9/4/2022
1.10.40 897 9/4/2022
1.10.38 942 9/3/2022
1.10.30 927 9/3/2022
1.10.29 861 9/2/2022
1.10.27 893 9/2/2022
1.10.26 903 9/2/2022
1.10.24 838 9/2/2022
1.10.19 867 9/2/2022
1.10.17 883 9/1/2022
1.10.16 873 8/31/2022
1.10.11 871 8/31/2022
1.10.7 869 8/31/2022
1.10.4 885 8/31/2022
1.9.272 903 8/30/2022
1.9.266 901 8/30/2022
1.9.265 854 8/29/2022
1.9.264 860 8/28/2022
1.9.263 967 8/25/2022
1.9.262 875 8/24/2022
1.9.260 868 8/24/2022
1.9.252 914 8/24/2022
1.9.242 884 8/23/2022
1.9.241 877 8/23/2022
1.9.237 921 8/23/2022
1.9.234 860 8/23/2022
1.9.206 903 8/22/2022
1.9.205 874 8/22/2022
1.9.204 932 8/21/2022
1.9.203 882 8/21/2022
1.9.200 889 8/21/2022
1.9.197 910 8/21/2022
1.9.196 861 8/21/2022
1.9.195 880 8/21/2022
1.9.193 858 8/20/2022
1.9.190 865 8/20/2022
1.9.175 879 8/20/2022
1.9.172 855 8/20/2022
1.9.167 848 8/20/2022
1.9.160 860 8/19/2022
1.9.159 918 8/19/2022
1.9.158 854 8/19/2022
1.9.157 891 8/19/2022
1.9.155 873 8/19/2022
1.9.132 852 8/18/2022
1.9.131 918 8/18/2022
1.9.129 867 8/18/2022
1.9.128 815 8/18/2022
1.9.126 865 8/18/2022
1.9.116 847 8/18/2022
1.9.115 866 8/18/2022
1.9.113 914 8/18/2022
1.9.84 868 8/17/2022
1.9.83 876 8/17/2022
1.9.82 861 8/17/2022
1.9.81 855 8/16/2022
1.9.79 845 8/15/2022
1.9.72 894 8/15/2022
1.9.69 878 8/15/2022
1.9.67 875 8/14/2022
1.9.57 894 8/14/2022
1.9.56 886 8/13/2022
1.9.53 886 8/13/2022
1.9.48 883 8/13/2022
1.9.47 874 8/13/2022
1.9.45 877 8/12/2022
1.9.41 883 8/12/2022
1.9.36 900 8/12/2022
1.9.19 861 8/12/2022
1.9.18 864 8/12/2022
1.9.16 885 8/12/2022
1.9.15 880 8/11/2022
1.9.2 863 8/11/2022
1.8.73 847 8/10/2022
1.8.59 905 8/8/2022
1.8.45 882 8/7/2022
1.8.44 897 8/7/2022
1.8.40 836 8/7/2022
1.8.33 882 8/6/2022
1.8.20 888 8/6/2022
1.8.10 899 8/6/2022
1.8.9 890 8/5/2022
1.8.2 875 8/5/2022
1.7.4 913 8/2/2022
1.7.3 880 8/1/2022
1.7.2 887 8/1/2022
1.7.1 865 8/1/2022
1.6.50 918 7/31/2022
1.6.48 863 7/31/2022
1.6.47 906 7/31/2022
1.6.46 891 7/31/2022
1.6.40 899 7/31/2022
1.6.34 912 7/31/2022
1.6.33 906 7/31/2022
1.6.32 927 7/31/2022
1.6.30 896 7/31/2022
1.6.29 916 7/31/2022
1.6.28 853 7/31/2022
1.6.27 901 7/31/2022
1.6.25 920 7/31/2022
1.6.16 880 7/31/2022
1.6.15 904 7/31/2022
1.6.13 867 7/31/2022
1.6.12 873 7/31/2022
1.6.9 852 7/30/2022
1.6.1 905 7/30/2022
1.5.1 878 7/30/2022
1.4.1 919 7/30/2022
1.3.56 857 7/29/2022
1.3.50 897 7/29/2022
1.3.41 898 7/29/2022
1.3.25 906 7/28/2022
1.3.23 870 7/28/2022
1.3.19 909 7/28/2022
1.3.16 913 7/28/2022
1.3.12 930 7/28/2022
1.3.10 946 7/28/2022
1.3.6 895 7/28/2022
1.2.101 913 7/27/2022
1.2.98 899 7/27/2022
1.2.97 888 7/27/2022
1.2.89 860 7/27/2022
1.2.87 898 7/27/2022
1.2.86 901 7/27/2022
1.2.84 876 7/27/2022
1.2.83 879 7/27/2022
1.2.80 871 7/27/2022
1.2.79 891 7/27/2022
1.2.60 899 7/26/2022
1.2.57 864 7/26/2022
1.2.29 897 7/26/2022
1.2.25 881 7/25/2022
1.2.21 877 7/25/2022
1.2.15 872 7/25/2022
1.2.1 925 7/25/2022
1.1.160 938 7/24/2022
1.1.95 906 7/24/2022
1.1.87 842 7/24/2022
1.1.68 902 7/24/2022
1.1.0 890 7/23/2022
1.0.96 877 7/21/2022
1.0.95 887 7/21/2022
1.0.94 866 7/21/2022
1.0.76 883 7/21/2022
1.0.74 893 7/20/2022
1.0.73 904 7/20/2022
1.0.72 891 7/20/2022
1.0.60 896 7/20/2022
1.0.59 884 7/19/2022
1.0.52 874 7/18/2022
1.0.51 881 7/18/2022
1.0.50 887 7/18/2022
1.0.49 906 7/18/2022
1.0.48 877 7/18/2022
1.0.47 878 7/18/2022
1.0.46 885 7/18/2022
1.0.45 861 7/18/2022
1.0.44 880 7/18/2022
1.0.39 944 7/18/2022
1.0.38 876 7/18/2022

Development Release