Skip to content

Commit 4d7a8ec

Browse files
authored
v2.2.1 updates (#675)
1 parent 07939c9 commit 4d7a8ec

File tree

7 files changed

+39
-16
lines changed

7 files changed

+39
-16
lines changed

BlazorBootstrap.Demo.Hosted/Client/wwwroot/appsettings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "2.2.0",
2+
"version": "2.2.1",
33
"release": {
4-
"short_description": "New Ribbon and SortableList Component, and Other Improvements!!!"
4+
"short_description": "Confirm Dialog, Grid Updates, and Demo Projects Upgraded to .NET 8!!!"
55
},
66
"urls": {
77
"docs": "//docs.blazorbootstrap.com/docs/getting-started/blazor-webassembly",

BlazorBootstrap.Demo.Server/appsettings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
}
77
},
88
"AllowedHosts": "*",
9-
"version": "2.2.0",
9+
"version": "2.2.1",
1010
"release": {
11-
"short_description": "New Ribbon and SortableList Component, and Other Improvements!!!"
11+
"short_description": "Confirm Dialog, Grid Updates, and Demo Projects Upgraded to .NET 8!!!"
1212
},
1313
"urls": {
1414
"docs": "//docs.blazorbootstrap.com/getting-started/blazor-webassembly-net-8",

BlazorBootstrap.Demo.WebAssembly/wwwroot/appsettings.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "2.2.0",
2+
"version": "2.2.1",
33
"release": {
4-
"short_description": "New Ribbon and SortableList Component, and Other Improvements!!!"
4+
"short_description": "Confirm Dialog, Grid Updates, and Demo Projects Upgraded to .NET 8!!!"
55
},
66
"urls": {
77
"docs": "//docs.blazorbootstrap.com/getting-started/blazor-webassembly-net-8",

blazorbootstrap/BlazorBootstrap.csproj

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44

55
<PackageId>Blazor.Bootstrap</PackageId>
6-
<Version>2.2.0</Version>
7-
<PackageVersion>2.2.0</PackageVersion>
6+
<Version>2.2.1</Version>
7+
<PackageVersion>2.2.1</PackageVersion>
88

99
<!--<PackageIconUrl></PackageIconUrl>-->
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
@@ -48,8 +48,4 @@
4848
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.26" />
4949
</ItemGroup>
5050

51-
<ItemGroup>
52-
<Folder Include="EventArguments\Ribbon\" />
53-
</ItemGroup>
54-
5551
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: Blazor Bootstrap v2.2.1
3+
authors:
4+
name: Vikram Reddy
5+
title: Creator
6+
url: https://github.com/gvreddy04
7+
image_url: https://avatars.githubusercontent.com/u/2337067
8+
tags: [v2.2.1, blazor, bootstrap, blazorbootstrap, confirmdialog, grid]
9+
---
10+
11+
We are excited to release version 2.2.1, which includes a Confirm Dialog, Grid updates, and demo projects upgraded to .NET 8!!!
12+
13+
![image](https://i.imgur.com/XG4Wv17.png "Blazor Bootstrap: Grid Component - Column class")
14+
15+
<!--truncate-->
16+
17+
## What's changed
18+
19+
- `ConfirmDialog` component
20+
21+
- `Grid` component
22+
23+
- Demos - Upgraded to .NET 8
24+
25+
## Links
26+
- [Demo Website - Blazor Server](https://demos.blazorbootstrap.com/)
27+
- [Demo Website - Blazor WebAssembly](https://demos.getblazorbootstrap.com/)

docs/docs/05-components/grid.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ Use Blazor Bootstrap grid component to display tabular data from the data source
4141
| Height | float | 320 pixels | | Gets or sets the grid height. | 1.10.3 |
4242
| ItemsPerPageText | string | `Items per page` | ✔️ | Gets or sets the ItemsPerPageText. | 1.9.5 |
4343
| PageSize | int | 10 | | Gets or sets the page size of the grid. | 1.0.0 |
44-
| PageSizeSelectorItems | int[] | new int[] { 10, 20, 50 } | ✔️ | Gets or sets the page size selector items. | 1.8.0 |
44+
| PageSizeSelectorItems | int[] | `new int[] { 10, 20, 50 }` | ✔️ | Gets or sets the page size selector items. | 1.8.0 |
4545
| PageSizeSelectorVisible | bool | false | ✔️ | Gets or sets the page size selector visible. | 1.8.0 |
4646
| PaginationItemsTextFormat | string | `{0} - {1} of {2} items` | ✔️ | Gets or sets the pagination items text format. | 1.8.0 |
47-
| RowClass | Func<TItem, string>? | | | Gets or sets the row class. | 1.6.0 |
47+
| RowClass | `Func<TItem, string>?` | | | Gets or sets the row class. | 1.6.0 |
4848
| Responsive | bool | false | | Gets or sets a value indicating whether Grid is responsive. | 1.0.0 |
4949
| SelectionMode | `GridSelectionMode` | | | Gets or sets the grid selection mode. | 1.8.0 |
5050
| SettingsProvider | `GridSettingsProviderDelegate` | | | Settings are for the grid to render. The provider should always return an instance of 'GridSettings', and 'null' is not allowed. | 1.0.0 |
@@ -76,7 +76,7 @@ Grid requires either `Data` or `DataProvider` parameter, but not both.
7676
| Name | Type | Default | Required | Description | Added Version |
7777
|:--|:--|:--|:--|:--|:--|
7878
| ChildContent | RenderFragment | | ✔️ | Specifies the content to be rendered inside the grid column. | 1.0.0 |
79-
| ColumnClass | Func<TItem, string>? | | | Gets or sets the column class. | 1.6.0 |
79+
| ColumnClass | `Func<TItem, string>?` | | | Gets or sets the column class. | 1.6.0 |
8080
| Filterable | bool | true | | Enable or disable the filter on a specific column. The filter is enabled or disabled based on the grid `AllowFiltering` parameter. | 1.0.0 |
8181
| FilterOperator | enum | Assigned based on the property type. | | Gets or sets the filter operator. | 1.0.0 |
8282
| FilterTextboxWidth | int | | | Gets or sets the filter textbox width in pixels. | 1.0.0 |

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blazorbootstrap",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

0 commit comments

Comments
 (0)