File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 22
22
<None Include =" wwwroot\src\**\*.*" />
23
23
</ItemGroup >
24
24
25
+ <ItemGroup >
26
+ <PackageReference Include =" BlazorSetParametersAsyncGenerator" Version =" 10.7.93" PrivateAssets =" all" OutputItemType =" Analyzer" />
27
+ </ItemGroup >
28
+
25
29
<ItemGroup >
26
30
<Using Include =" BootstrapBlazor.Components" />
27
31
<Using Include =" Microsoft.AspNetCore.Components" />
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ namespace BootstrapBlazor.Components;
11
11
/// Checkbox 组件
12
12
/// </summary>
13
13
[ BootstrapModuleAutoLoader ( JSObjectReference = true ) ]
14
+ [ BlazorSetParametersAsyncGenerator . GenerateSetParametersAsync ]
14
15
public partial class Checkbox < TValue > : ValidateBase < TValue >
15
16
{
16
17
/// <summary>
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ namespace BootstrapBlazor.Components;
9
9
/// Radio 单选框组件
10
10
/// </summary>
11
11
[ JSModuleNotInherited ]
12
+ [ BlazorSetParametersAsyncGenerator . GenerateSetParametersAsync ]
12
13
public partial class Radio < TValue > : Checkbox < TValue >
13
14
{
14
15
/// <summary>
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ namespace BootstrapBlazor.Components;
14
14
/// Table 组件基类
15
15
/// </summary>
16
16
[ CascadingTypeParameter ( nameof ( TItem ) ) ]
17
+ [ BlazorSetParametersAsyncGenerator . GenerateSetParametersAsync ]
17
18
public partial class Table < TItem > : ITable , IModelEqualityComparer < TItem > where TItem : class
18
19
{
19
20
/// <summary>
You can’t perform that action at this time.
0 commit comments