Skip to content

Commit 69cb4e5

Browse files
-Makes RenderFillerRows a property and adds it to PublicAPI.Shipped.txt
1 parent 0177db4 commit 69cb4e5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/Pagination/PaginationState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class PaginationState
1313
/// <summary>
1414
/// Whether or not to render empty rows to fill the view.
1515
/// </summary>
16-
public bool RenderFillerRows = true;
16+
public bool RenderFillerRows { get; set; } = true;
1717

1818
/// <summary>
1919
/// Gets or sets the number of items on each page.

src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/PublicAPI.Shipped.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ Microsoft.AspNetCore.Components.QuickGrid.PaginationState.ItemsPerPage.get -> in
7878
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.ItemsPerPage.set -> void
7979
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.LastPageIndex.get -> int?
8080
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.PaginationState() -> void
81+
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.RenderFillerRows.get -> bool
82+
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.RenderFillerRows.set -> void
8183
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.SetCurrentPageIndexAsync(int pageIndex) -> System.Threading.Tasks.Task!
8284
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.TotalItemCount.get -> int?
8385
Microsoft.AspNetCore.Components.QuickGrid.PaginationState.TotalItemCountChanged -> System.EventHandler<int?>?

0 commit comments

Comments
 (0)