BxBlazor 0.0.1-CI-20200319-002552

This is a prerelease version of BxBlazor.
There is a newer prerelease version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package BxBlazor --version 0.0.1-CI-20200319-002552
NuGet\Install-Package BxBlazor -Version 0.0.1-CI-20200319-002552
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="BxBlazor" Version="0.0.1-CI-20200319-002552" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BxBlazor --version 0.0.1-CI-20200319-002552
#r "nuget: BxBlazor, 0.0.1-CI-20200319-002552"
#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 BxBlazor as a Cake Addin
#addin nuget:?package=BxBlazor&version=0.0.1-CI-20200319-002552&prerelease

// Install BxBlazor as a Cake Tool
#tool nuget:?package=BxBlazor&version=0.0.1-CI-20200319-002552&prerelease

BxBlazor (Carbon Design System) Components

Build Status

Blazor components using IBM's Carbon Design System components <p align="center"><img src="img/carbon_design_system_white.png" width="250"></p>

🔎 you can use dotnet new template to generate a starter project BxBlazor Wasm-Hosted a starter project using the blazor hosted template, and implementing sample Mediatr commands and queries.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

  • dotnetcore 3.1 sdk
  • aspnetcore 3.1 runtime

Installing

A step by step series of examples that tell you how to get a development env running

First we need to install the BxBlazor component in our project:

$: dotnet add package BxBlazor

Next we add tags to our index.html in web assembly project or _Host.cshtml in a server project:

.....

<link href="_content/BxBlazor/carbon-custom.css" rel="stylesheet"/>
<link href="_content/BxBlazor/carbon-components.min.css" rel="stylesheet"/>

<script src="_content/BxBlazor/carbon-components.min.js"></script>
<script src="_content/BxBlazor/carbon-init.js"></script>

<script src="_framework/blazor.server.js"></script>

Finally adding the using sections to _imports.razor:

@using BxBlazor
@using BxBlazor.Components
@using BxBlazor.navigation
@using BxBlazor.Models

the last step is to compose our layout page using header, navigation panel etc...

@inherits LayoutComponentBase
@inject IJSRuntime jsRuntime

    <div id="root">
        <Header>
            <Content>
                <LeftPanel Sections="NavigationSections"></LeftPanel>
                <RightPanel></RightPanel>
            </Content>
        </Header>
        <main class="bx--content">
            @Body
        </main>
    </div>
@code {
    private Dictionary<string, SidenavItem[]> NavigationSections = new Dictionary<string, SidenavItem[]>()
    {
        {
            "Demos",
            new SidenavItem[] {
                new SidenavItem {
                    DisplayText = "Home",
                    Expanded = false,
                    HasChilds = false,
                    Link = "/"
                },
                new SidenavItem {
                    DisplayText = "Fetch Data",
                    Expanded = false,
                    HasChilds = false,
                    Link = "/fetchdata"
                },
                new SidenavItem {
                    DisplayText = "Counter",
                    Expanded = false,
                    HasChilds = false,
                    Link = "/counter"
                },
                new SidenavItem {
                    DisplayText = "Components",
                    Expanded = false,
                    HasChilds = true,
                    ChildItems = new SidenavItem[]
                {
                        new SidenavItem {
                            DisplayText = "BxAccordion",
                            Link = "components/bx-accordion"
                        },
                        new SidenavItem {
                            DisplayText = "BxDataTable",
                            Link = "components/bx-datatable"
                        },
                        new SidenavItem {
                            DisplayText = "BxModal",
                            Link = "components/bx-modal"
                        },
                        new SidenavItem {
                            DisplayText = "BxTabs",
                            Link = "components/bx-tabs"
                        },
                        new SidenavItem {
                            DisplayText = "BxStructuredList",
                            Link = "components/bx-structuredlist"
                        }
                    }
                }
            }
        }
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        await base.OnAfterRenderAsync(firstRender);
    }
}

Running the project

we can the project locally jsut using dotnet cli:

$: dotnet run

also you can host your application whther on azure storage public websites "preview", or for example in gh-pages this article explains steps to publish your application on gh-pages:

hosting-blazor-webassembly-app-on-github-pages

Components

  • BxAccordion
  • BxModal
  • BxTabs
  • BxCheckbox
  • BxDatatable
  • BxStructuredList
  • BxOverflowMenu

Deployment

azure-pipelines.yml

Built With

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.1.0-pre-01 51 3/31/2024