StoicDreams.BlazorUI 1.10.71

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

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

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

Development Release