Skip to content

Commit 1e0168e

Browse files
authored
Merge pull request #10347 from bitfoundation/develop
Version 9.6.1 (#10337)
2 parents 7e30de7 + b161316 commit 1e0168e

File tree

121 files changed

+1445
-905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1445
-905
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![License](https://img.shields.io/github/license/bitfoundation/bitplatform.svg)
66
![CI Status](https://github.com/bitfoundation/bitplatform/actions/workflows/bit.ci.yml/badge.svg)
77
![NuGet version](https://img.shields.io/nuget/v/bit.blazorui.svg?logo=nuget)
8-
[![Nuget downloads](https://img.shields.io/badge/packages_download-6.0M-blue.svg?logo=nuget)](https://www.nuget.org/profiles/bit-foundation)
8+
[![Nuget downloads](https://img.shields.io/badge/packages_download-6.2M-blue.svg?logo=nuget)](https://www.nuget.org/profiles/bit-foundation)
99
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/bitfoundation/bitplatform.svg)](http://isitmaintained.com/project/bitfoundation/bitplatform "Average time to resolve an issue")
1010
[![Percentage of issues still open](http://isitmaintained.com/badge/open/bitfoundation/bitplatform.svg)](http://isitmaintained.com/project/bitfoundation/bitplatform "Percentage of issues still open")
1111

src/Besql/Bit.Besql/wwwroot/bit-besql.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var BitBesql = window.BitBesql || {};
2-
BitBesql.version = window['bit-besql version'] = '9.6.0';
2+
BitBesql.version = window['bit-besql version'] = '9.6.1';
33

44
BitBesql.persist = async function persist(fileName) {
55

src/Bit.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<PackageProjectUrl>https://github.com/bitfoundation/bitplatform</PackageProjectUrl>
2828

2929
<!-- Version -->
30-
<ReleaseVersion>9.6.0</ReleaseVersion>
30+
<ReleaseVersion>9.6.1</ReleaseVersion>
3131
<PackageVersion>$(ReleaseVersion)</PackageVersion>
3232
<PackageReleaseNotes>https://github.com/bitfoundation/bitplatform/releases/tag/v-$(ReleaseVersion)</PackageReleaseNotes>
3333
<Version Condition=" '$(Configuration)' == 'Release' ">$([System.String]::Copy($(ReleaseVersion)).Replace('-pre-', '.'))</Version>
+44-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,47 @@
1-
### bit BlazorUI Extras
1+
### bit BlazorUI Extras: The extra components package of bit BlazorUI
2+
[![NuGet Version](https://img.shields.io/nuget/v/Bit.BlazorUI.Extras.svg?style=flat)](https://www.nuget.org/packages/Bit.BlazorUI/) ![Nuget](https://img.shields.io/nuget/dt/Bit.BlazorUI.Extras.svg)
23

34

4-
**BitChart**: a fork from https://github.com/mariusmuntean/ChartJs.Blazor/
5+
**bit BlazorUI Extra** offers a set of extensive UI controls for Blazor.
56

6-
**BitDataGrid**: a fork from https://aspnet.github.io/quickgridsamples/
7+
**Why choose bit BlazorUI Extra components?**
8+
- **Free and Open Source**: Bit BlazorUI components come at no cost and are open to the community for contributions and improvements.
9+
- **Universal Support**: Compatible with all interactive Blazor modes — **Server**, **WASM**, and **Hybrid**.
10+
11+
### Getting Started
12+
13+
To use bit BlazorUI Extra components, follow these steps:
14+
15+
1. Install the `Bit.BlazorUI.Extras` nuget package.
16+
17+
using command line:
18+
19+
```
20+
dotnet add package Bit.BlazorUI.Extras
21+
```
22+
23+
or using Package Manager Console:
24+
25+
```
26+
Install-Package Bit.BlazorUI.Extras
27+
```
28+
29+
2. In the default document (`App.razor` or `index.html`), add the `Bit.BlazorUI.Extras` CSS file reference:
30+
31+
```
32+
<link rel="stylesheet" href="_content/Bit.BlazorUI.Extras/styles/bit.blazorui.extras.css" />
33+
```
34+
35+
3. In the default document (`App.razor` or `index.html`), add the `Bit.BlazorUI.Extras` JS file reference:
36+
37+
```
38+
<script src="_content/Bit.BlazorUI.Extras/scripts/bit.blazorui.extras.js"></script>
39+
```
40+
41+
4. In the `_Imports.razor`, add the using `Bit.BlazorUI` to make it available throughout the project.
42+
43+
```
44+
@using Bit.BlazorUI;
45+
```
46+
47+
5. Start using BlazorUI Extra components following its documents: https://blazorui.bitplatform.dev

src/BlazorUI/Bit.BlazorUI/Components/Inputs/DatePicker/BitDatePicker.razor.cs

+1-8
Original file line numberDiff line numberDiff line change
@@ -1305,18 +1305,11 @@ private async Task HandleOnTimeHourFocus()
13051305

13061306
private async Task HandleOnTimeMinuteFocus()
13071307
{
1308-
if (IsEnabled is false || ShowTimePicker is false) return;
1308+
if (IsEnabled is false || ShowTimePicker is false || ReadOnly) return;
13091309

13101310
await _js.BitUtilsSelectText(_inputTimeMinuteRef);
13111311
}
13121312

1313-
private void ToggleAmPmTime()
1314-
{
1315-
if (IsEnabled is false) return;
1316-
1317-
_hourView = _hour + (_hour >= 12 ? -12 : 12);
1318-
}
1319-
13201313
private async Task HandleOnAmClick()
13211314
{
13221315
if (ReadOnly) return;

src/BlazorUI/Bit.BlazorUI/Components/Notifications/Tag/BitTag.razor.cs

+17
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ public partial class BitTag : BitComponentBase
3636
/// </summary>
3737
[Parameter] public EventCallback<MouseEventArgs> OnDismiss { get; set; }
3838

39+
/// <summary>
40+
/// Reverses the direction flow of the content of the tag.
41+
/// </summary>
42+
[Parameter, ResetClassBuilder]
43+
public bool Reversed { get; set; }
44+
3945
/// <summary>
4046
/// The size of the tag.
4147
/// </summary>
@@ -76,9 +82,20 @@ protected override void RegisterCssClasses()
7682
BitColor.Warning => "bit-tag-wrn",
7783
BitColor.SevereWarning => "bit-tag-swr",
7884
BitColor.Error => "bit-tag-err",
85+
BitColor.PrimaryBackground => "bit-tag-pbg",
86+
BitColor.SecondaryBackground => "bit-tag-sbg",
87+
BitColor.TertiaryBackground => "bit-tag-tbg",
88+
BitColor.PrimaryForeground => "bit-tag-pfg",
89+
BitColor.SecondaryForeground => "bit-tag-sfg",
90+
BitColor.TertiaryForeground => "bit-tag-tfg",
91+
BitColor.PrimaryBorder => "bit-tag-pbr",
92+
BitColor.SecondaryBorder => "bit-tag-sbr",
93+
BitColor.TertiaryBorder => "bit-tag-tbr",
7994
_ => "bit-tag-pri"
8095
});
8196

97+
ClassBuilder.Register(() => Reversed ? "bit-tag-rvs" : string.Empty);
98+
8299
ClassBuilder.Register(() => Size switch
83100
{
84101
BitSize.Small => "bit-tag-sm",

src/BlazorUI/Bit.BlazorUI/Components/Notifications/Tag/BitTag.scss

+57-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@import "../../../Styles/functions.scss";
22

33
.bit-tag {
4+
line-height: 1;
45
gap: spacing(1);
56
overflow: hidden;
67
align-items: center;
@@ -10,8 +11,8 @@
1011
border-style: $shp-border-style;
1112
border-width: $shp-border-width;
1213
border-radius: $shp-border-radius;
13-
font-size: var(--bit-tag-fontsize);
1414
padding: var(--bit-tag-padding);
15+
font-size: var(--bit-tag-fontsize);
1516

1617
&.bit-dis {
1718
cursor: default;
@@ -21,6 +22,10 @@
2122
}
2223
}
2324

25+
.bit-tag-rvs {
26+
flex-direction: row-reverse;
27+
}
28+
2429
.bit-tag-cls {
2530
padding: 0;
2631
border: none;
@@ -29,6 +34,7 @@
2934
cursor: pointer;
3035
box-sizing: border-box;
3136
background-color: transparent;
37+
font-size: var(--bit-tag-fontsize);
3238
}
3339

3440

@@ -105,17 +111,63 @@
105111
--bit-tag-clr-txt: #{$clr-err-text};
106112
}
107113

114+
.bit-tag-pbg {
115+
--bit-tag-clr: #{$clr-bg-pri};
116+
--bit-tag-clr-txt: #{$clr-fg-pri};
117+
}
118+
119+
.bit-tag-sbg {
120+
--bit-tag-clr: #{$clr-bg-sec};
121+
--bit-tag-clr-txt: #{$clr-fg-pri};
122+
}
123+
124+
.bit-tag-tbg {
125+
--bit-tag-clr: #{$clr-bg-ter};
126+
--bit-tag-clr-txt: #{$clr-fg-pri};
127+
}
128+
129+
.bit-tag-pfg {
130+
--bit-tag-clr: #{$clr-fg-pri};
131+
--bit-tag-clr-txt: #{$clr-bg-pri};
132+
}
133+
134+
.bit-tag-sfg {
135+
--bit-tag-clr: #{$clr-fg-sec};
136+
--bit-tag-clr-txt: #{$clr-bg-pri};
137+
}
138+
139+
.bit-tag-tfg {
140+
--bit-tag-clr: #{$clr-fg-ter};
141+
--bit-tag-clr-txt: #{$clr-bg-pri};
142+
}
143+
144+
.bit-tag-pbr {
145+
--bit-tag-clr: #{$clr-brd-pri};
146+
--bit-tag-clr-txt: #{$clr-fg-pri};
147+
}
148+
149+
.bit-tag-sbr {
150+
--bit-tag-clr: #{$clr-brd-sec};
151+
--bit-tag-clr-txt: #{$clr-fg-pri};
152+
}
153+
154+
.bit-tag-tbr {
155+
--bit-tag-clr: #{$clr-brd-ter};
156+
--bit-tag-clr-txt: #{$clr-fg-pri};
157+
}
158+
159+
108160
.bit-tag-sm {
109161
--bit-tag-fontsize: #{spacing(1.5)};
110-
--bit-tag-padding: #{spacing(0.5)} #{spacing(1)};
162+
--bit-tag-padding: #{spacing(0.250)};
111163
}
112164

113165
.bit-tag-md {
114166
--bit-tag-fontsize: #{spacing(1.75)};
115-
--bit-tag-padding: #{spacing(0.75)} #{spacing(1.5)};
167+
--bit-tag-padding: #{spacing(0.375)};
116168
}
117169

118170
.bit-tag-lg {
119-
--bit-tag-fontsize: #{spacing(2)};
120-
--bit-tag-padding: #{spacing(1)} #{spacing(2)};
171+
--bit-tag-fontsize: #{spacing(2.25)};
172+
--bit-tag-padding: #{spacing(0.500)};
121173
}

src/BlazorUI/Bit.BlazorUI/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
**bit BlazorUI** offers a comprehensive set of native, light-weight, and high-performance UI controls for Blazor. Developed in C#, it stands independent of external JavaScript frameworks or libraries, ensuring seamless and efficient integration.
55

6-
**Why choose bit BlazorUI Components?**
7-
- **Free and Open Source**: Bit BlazorUI components come at no cost and are open to the community for contributions and improvements.
6+
**Why choose bit BlazorUI components?**
7+
- **Free and Open Source**: bit BlazorUI components come at no cost and are open to the community for contributions and improvements.
88
- **Light Weight**: Built for low load time and fast render.
99
- **High Performance**: Built for optimal speed and performance.
1010
- **Blazor Native**: Specifically designed as native Blazor components, ensuring a consistent development experience.
1111
- **Universal Support**: Compatible with all interactive Blazor modes — **Server**, **WASM**, and **Hybrid**.
1212

1313
### Getting Started
1414

15-
To use Bit BlazorUI components, follow these steps:
15+
To use bit BlazorUI components, follow these steps:
1616

1717
1. Install the `Bit.BlazorUI` nuget package.
1818

@@ -46,4 +46,4 @@ Install-Package Bit.BlazorUI
4646
@using Bit.BlazorUI;
4747
```
4848

49-
5. Start using BlazorUI components in pages/components following its documents: https://blazorui.bitplatform.dev
49+
5. Start using BlazorUI components following its documents: https://blazorui.bitplatform.dev

src/BlazorUI/Bit.BlazorUI/Scripts/general.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(BitBlazorUI as any).version = (window as any)['bit-blazorui version'] = '9.6.0';
1+
(BitBlazorUI as any).version = (window as any)['bit-blazorui version'] = '9.6.1';
22

33
interface DotNetObject {
44
invokeMethod<T>(methodIdentifier: string, ...args: any[]): T;

src/BlazorUI/Demo/Bit.BlazorUI.Demo.Server/Bit.BlazorUI.Demo.Server.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.0">
12+
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.1">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Bit.SourceGenerators" Version="9.6.0">
16+
<PackageReference Include="Bit.SourceGenerators" Version="9.6.1">
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>

src/BlazorUI/Demo/Bit.BlazorUI.Demo.Shared/Bit.BlazorUI.Demo.Shared.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.0">
8+
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.1">
99
<PrivateAssets>all</PrivateAssets>
1010
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1111
</PackageReference>
12-
<PackageReference Include="Bit.SourceGenerators" Version="9.6.0">
12+
<PackageReference Include="Bit.SourceGenerators" Version="9.6.1">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>

src/BlazorUI/Demo/Client/Bit.BlazorUI.Demo.Client.Core/Bit.BlazorUI.Demo.Client.Core.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<None Include="compilerconfig.json" />
1616
<Content Remove="appsettings.json" />
1717
<EmbeddedResource Include="appsettings.json" />
18-
<PackageReference Include="Bit.BlazorES2019" Version="9.6.0" />
18+
<PackageReference Include="Bit.BlazorES2019" Version="9.6.1" />
1919

20-
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.0">
20+
<PackageReference Include="Bit.CodeAnalyzers" Version="9.6.1">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
</PackageReference>
24-
<PackageReference Include="Bit.SourceGenerators" Version="9.6.0">
24+
<PackageReference Include="Bit.SourceGenerators" Version="9.6.1">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
@inherits AppComponentBase
2+
3+
@if (ChildContent is not null)
4+
{
5+
<div class="code-box">
6+
@if (HideCopyButton is false)
7+
{
8+
<BitActionButton IconName="@codeIcon"
9+
Title="@copyCodeMessage"
10+
OnClick="@CopyCodeToClipboard"
11+
Class="@($"copy-btn {(isCodeCopied ? "copied" : string.Empty)}")"
12+
Styles="@(new() { Content = (isCodeCopied ? string.Empty : "margin: unset") })">
13+
@if (isCodeCopied)
14+
{
15+
<span>@copyCodeMessage</span>
16+
}
17+
else
18+
{
19+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
20+
<rect x="6.5" y="6.5" width="9" height="12" rx="1.5" stroke="currentColor" />
21+
<path d="M8.5 6C8.5 5.17157 9.17157 4.5 10 4.5H16C16.8284 4.5 17.5 5.17157 17.5 6V15C17.5 15.8284 16.8284 16.5 16 16.5" stroke="currentColor" />
22+
</svg>
23+
}
24+
</BitActionButton>
25+
}
26+
27+
<pre @ref="preElementRef"
28+
class="code-box-content"
29+
style="@(string.IsNullOrWhiteSpace(MaxHeight) ? null : $"max-height:{MaxHeight}")">@ChildContent</pre>
30+
</div>
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
namespace Bit.BlazorUI.Demo.Client.Core.Components;
2+
3+
public partial class CodeBox
4+
{
5+
private string? codeIcon;
6+
private bool isCodeCopied = false;
7+
private string copyCodeMessage = "Copy code";
8+
private ElementReference preElementRef = default!;
9+
10+
11+
12+
[Parameter] public RenderFragment? ChildContent { get; set; }
13+
[Parameter] public bool HideCopyButton { get; set; }
14+
[Parameter] public string? MaxHeight { get; set; }
15+
16+
17+
18+
private async Task CopyCodeToClipboard()
19+
{
20+
var codeSample = await JSRuntime.GetInnerText(preElementRef);
21+
await JSRuntime.CopyToClipboard(codeSample.Trim());
22+
23+
codeIcon = "Accept";
24+
copyCodeMessage = "Code copied!";
25+
isCodeCopied = true;
26+
27+
StateHasChanged();
28+
29+
await Task.Delay(1000);
30+
isCodeCopied = false;
31+
codeIcon = null;
32+
copyCodeMessage = "Copy code";
33+
34+
StateHasChanged();
35+
}
36+
}

0 commit comments

Comments
 (0)