StoicDreams.BlazorUI 1.0.39

There is a newer version of this package available.
See the version list below for details.
dotnet add package StoicDreams.BlazorUI --version 1.0.39                
NuGet\Install-Package StoicDreams.BlazorUI -Version 1.0.39                
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.0.39" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StoicDreams.BlazorUI --version 1.0.39                
#r "nuget: StoicDreams.BlazorUI, 1.0.39"                
#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.0.39

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

Stoic Dreams Blazor UI

GitHub: GitHub.com/StoicDreams/BlazorUI
Nuget: NuGet.org/StoicDreams/BlazorUI

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

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.

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 the best Blazor framework I've see or tried, but it's also free. It has a focus on Material design, and their components, documentation, and templates are much more developer friendly in my opinion than the other design frameworks I've seen and tried.

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")));
	options.SetLayout<MainLayout>();
});

await builder.Build().RunAsync();

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.

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' Patreon 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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 777 4/1/2023
1.12.7 704 3/19/2023
1.12.6 722 3/19/2023
1.12.5 759 3/4/2023
1.12.3 794 3/3/2023
1.11.19 1,057 9/24/2022
1.11.17 1,002 9/24/2022
1.11.15 923 9/23/2022
1.11.13 952 9/23/2022
1.11.9 973 9/23/2022
1.11.7 959 9/23/2022
1.11.3 957 9/21/2022
1.11.1 914 9/21/2022
1.10.200 974 9/21/2022
1.10.199 916 9/21/2022
1.10.176 994 9/21/2022
1.10.173 952 9/20/2022
1.10.162 930 9/20/2022
1.10.155 948 9/19/2022
1.10.153 977 9/18/2022
1.10.144 1,005 9/17/2022
1.10.143 927 9/17/2022
1.10.141 956 9/17/2022
1.10.135 963 9/17/2022
1.10.121 941 9/16/2022
1.10.119 977 9/12/2022
1.10.116 901 9/11/2022
1.10.112 917 9/11/2022
1.10.106 891 9/11/2022
1.10.103 954 9/10/2022
1.10.100 990 9/8/2022
1.10.97 904 9/7/2022
1.10.93 972 9/7/2022
1.10.91 887 9/7/2022
1.10.87 948 9/7/2022
1.10.82 932 9/6/2022
1.10.81 956 9/6/2022
1.10.79 904 9/6/2022
1.10.73 920 9/6/2022
1.10.72 898 9/6/2022
1.10.71 925 9/6/2022
1.10.68 906 9/5/2022
1.10.67 939 9/5/2022
1.10.66 907 9/5/2022
1.10.65 909 9/4/2022
1.10.47 909 9/4/2022
1.10.40 936 9/4/2022
1.10.38 976 9/3/2022
1.10.30 965 9/3/2022
1.10.29 892 9/2/2022
1.10.27 926 9/2/2022
1.10.26 958 9/2/2022
1.10.24 875 9/2/2022
1.10.19 902 9/2/2022
1.10.17 921 9/1/2022
1.10.16 911 8/31/2022
1.10.11 907 8/31/2022
1.10.7 907 8/31/2022
1.10.4 936 8/31/2022
1.9.272 965 8/30/2022
1.9.266 940 8/30/2022
1.9.265 894 8/29/2022
1.9.264 906 8/28/2022
1.9.263 1,007 8/25/2022
1.9.262 914 8/24/2022
1.9.260 911 8/24/2022
1.9.252 951 8/24/2022
1.9.242 920 8/23/2022
1.9.241 918 8/23/2022
1.9.237 957 8/23/2022
1.9.234 897 8/23/2022
1.9.206 942 8/22/2022
1.9.205 915 8/22/2022
1.9.204 969 8/21/2022
1.9.203 917 8/21/2022
1.9.200 927 8/21/2022
1.9.197 958 8/21/2022
1.9.196 896 8/21/2022
1.9.195 917 8/21/2022
1.9.193 896 8/20/2022
1.9.190 917 8/20/2022
1.9.175 916 8/20/2022
1.9.172 897 8/20/2022
1.9.167 884 8/20/2022
1.9.160 899 8/19/2022
1.9.159 957 8/19/2022
1.9.158 895 8/19/2022
1.9.157 926 8/19/2022
1.9.155 913 8/19/2022
1.9.132 892 8/18/2022
1.9.131 953 8/18/2022
1.9.129 904 8/18/2022
1.9.128 847 8/18/2022
1.9.126 899 8/18/2022
1.9.116 881 8/18/2022
1.9.115 902 8/18/2022
1.9.113 951 8/18/2022
1.9.84 910 8/17/2022
1.9.83 911 8/17/2022
1.9.82 919 8/17/2022
1.9.81 892 8/16/2022
1.9.79 882 8/15/2022
1.9.72 932 8/15/2022
1.9.69 936 8/15/2022
1.9.67 915 8/14/2022
1.9.57 930 8/14/2022
1.9.56 925 8/13/2022
1.9.53 925 8/13/2022
1.9.48 942 8/13/2022
1.9.47 910 8/13/2022
1.9.45 914 8/12/2022
1.9.41 920 8/12/2022
1.9.36 937 8/12/2022
1.9.19 914 8/12/2022
1.9.18 898 8/12/2022
1.9.16 924 8/12/2022
1.9.15 918 8/11/2022
1.9.2 899 8/11/2022
1.8.73 884 8/10/2022
1.8.59 937 8/8/2022
1.8.45 921 8/7/2022
1.8.44 948 8/7/2022
1.8.40 879 8/7/2022
1.8.33 921 8/6/2022
1.8.20 923 8/6/2022
1.8.10 934 8/6/2022
1.8.9 929 8/5/2022
1.8.2 907 8/5/2022
1.7.4 957 8/2/2022
1.7.3 914 8/1/2022
1.7.2 924 8/1/2022
1.7.1 905 8/1/2022
1.6.50 955 7/31/2022
1.6.48 898 7/31/2022
1.6.47 941 7/31/2022
1.6.46 928 7/31/2022
1.6.40 938 7/31/2022
1.6.34 949 7/31/2022
1.6.33 949 7/31/2022
1.6.32 963 7/31/2022
1.6.30 933 7/31/2022
1.6.29 955 7/31/2022
1.6.28 888 7/31/2022
1.6.27 934 7/31/2022
1.6.25 955 7/31/2022
1.6.16 935 7/31/2022
1.6.15 942 7/31/2022
1.6.13 904 7/31/2022
1.6.12 907 7/31/2022
1.6.9 891 7/30/2022
1.6.1 945 7/30/2022
1.5.1 914 7/30/2022
1.4.1 960 7/30/2022
1.3.56 894 7/29/2022
1.3.50 932 7/29/2022
1.3.41 935 7/29/2022
1.3.25 943 7/28/2022
1.3.23 908 7/28/2022
1.3.19 946 7/28/2022
1.3.16 947 7/28/2022
1.3.12 984 7/28/2022
1.3.10 988 7/28/2022
1.3.6 949 7/28/2022
1.2.101 956 7/27/2022
1.2.98 960 7/27/2022
1.2.97 938 7/27/2022
1.2.89 916 7/27/2022
1.2.87 934 7/27/2022
1.2.86 939 7/27/2022
1.2.84 911 7/27/2022
1.2.83 914 7/27/2022
1.2.80 912 7/27/2022
1.2.79 926 7/27/2022
1.2.60 937 7/26/2022
1.2.57 903 7/26/2022
1.2.29 938 7/26/2022
1.2.25 921 7/25/2022
1.2.21 909 7/25/2022
1.2.15 912 7/25/2022
1.2.1 963 7/25/2022
1.1.160 975 7/24/2022
1.1.95 942 7/24/2022
1.1.87 878 7/24/2022
1.1.68 958 7/24/2022
1.1.0 926 7/23/2022
1.0.96 913 7/21/2022
1.0.95 926 7/21/2022
1.0.94 900 7/21/2022
1.0.76 941 7/21/2022
1.0.74 931 7/20/2022
1.0.73 943 7/20/2022
1.0.72 928 7/20/2022
1.0.60 931 7/20/2022
1.0.59 924 7/19/2022
1.0.52 909 7/18/2022
1.0.51 922 7/18/2022
1.0.50 947 7/18/2022
1.0.49 962 7/18/2022
1.0.48 915 7/18/2022
1.0.47 932 7/18/2022
1.0.46 921 7/18/2022
1.0.45 902 7/18/2022
1.0.44 926 7/18/2022
1.0.39 991 7/18/2022
1.0.38 920 7/18/2022

Development Release