Marquitos.AspNetCore.Components 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Marquitos.AspNetCore.Components --version 1.0.7
NuGet\Install-Package Marquitos.AspNetCore.Components -Version 1.0.7
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="Marquitos.AspNetCore.Components" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Marquitos.AspNetCore.Components --version 1.0.7
#r "nuget: Marquitos.AspNetCore.Components, 1.0.7"
#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 Marquitos.AspNetCore.Components as a Cake Addin
#addin nuget:?package=Marquitos.AspNetCore.Components&version=1.0.7

// Install Marquitos.AspNetCore.Components as a Cake Tool
#tool nuget:?package=Marquitos.AspNetCore.Components&version=1.0.7

NuGet Badge

Marquitos.Blazor

Marquitos Blazor Components is an open source library designed for WebAssembly. The main goal of this library is to create simple and usefull components. Some of them are based just on Bootstrap 5 CSS but enriched with animation motions to make a nice fluid user experience.

Marquitos Blazor Components library is composed by the following components.

Components

Usage

Add the latest Marquitos.AspNetCore.Components nuget package to your project references:

<ItemGroup>
    ...
    <PackageReference Include="Marquitos.AspNetCore.Components" Version="1.0.x" />
</ItemGroup>

On configure method add the AddMarquitosComponents() to your pipeline:

        public static async Task Main(string[] args)
        {
            var builder = WebAssemblyHostBuilder.CreateDefault(args);
            builder.RootComponents.Add<App>("#app");

            ...
            builder.Services.AddMarquitosComponents(o => {
                o.GlobalTheme = AspNetCore.Components.Enums.Theme.Bootstrap;
            });

            await builder.Build().RunAsync();
        }

On _Imports.razor add the following using clauses:

...
@using Marquitos.AspNetCore.Components.Enums
@using Marquitos.AspNetCore.Components.Web

Then you are ready to go:

<NavigationView IsBackButtonVisible="true">
    <MenuItems>
        <NavMenu/>
    </MenuItems>

    <Frame>
        <div class="content px-4">
            @Body
        </div>
    </Frame>
</NavigationView>
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.0.12 165 3/10/2024
1.0.11 234 11/17/2023
1.0.10 85 11/17/2023
1.0.9 83 11/17/2023
1.0.8 85 11/17/2023
1.0.7 383 8/21/2022
1.0.6 352 8/6/2022
1.0.5 359 8/3/2022
1.0.4 377 7/22/2022
1.0.3 380 7/21/2022
1.0.2 422 1/18/2022
1.0.1 241 1/2/2022
1.0.0 296 11/11/2021
1.0.0-alpha4 190 9/7/2021