BlazorTabs 1.5.0

dotnet add package BlazorTabs --version 1.5.0
NuGet\Install-Package BlazorTabs -Version 1.5.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="BlazorTabs" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorTabs --version 1.5.0
#r "nuget: BlazorTabs, 1.5.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 BlazorTabs as a Cake Addin
#addin nuget:?package=BlazorTabs&version=1.5.0

// Install BlazorTabs as a Cake Tool
#tool nuget:?package=BlazorTabs&version=1.5.0

License Package Version

Breaking changes If you were using version 1.4.0, you must replace the using BlazorTabsComponent by BlazorNtabsin in _Imports.razor.

BlazorNTab

Tab component for Blazor

Installation

After you have installed the package add the following line in the _Imports.razor file

@using BlazorNtabs

Paramètres

The Tab component accepts following parameters:

  • Title : tab title

It is possible to define a more complex title with styles by placing it in the tag TabHeader then place the content in the tag ChildContent

Example of use:

<BlazorTabs>
    <Tab Title="Onglet 1">
    Contenu 1
    </Tab>
    <Tab>
        <TabHeader>
            <strong>onglet 2</strong>
        </TabHeader>
        <ChildContent>
            Contenu 2
        </ChildContent>
    </Tab>
</BlazorTabs>
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.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

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.5.0 665 10/13/2020
1.4.0 2,463 9/23/2019
1.3.0 286 9/6/2019
1.2.0 290 8/13/2019
1.1.0 289 8/7/2019
1.0.0 297 8/7/2019

breaking change : replace @using BlazorTabsComponent by  @using BlazorNtabs in _imports.razor