Skip to content

Commit a14b67e

Browse files
authored
feat(SelectCity): disable AutoClose when set IsMultiple to true (#6938)
* doc: 代码格式化 * chore: 更新依赖 * chore: bump version 9.11.3-beta03 * revert: 撤销解决方案的更新
1 parent 1082672 commit a14b67e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<PackageReference Include="BootstrapBlazor.PdfViewer" Version="9.0.6" />
6767
<PackageReference Include="BootstrapBlazor.Player" Version="9.0.2" />
6868
<PackageReference Include="BootstrapBlazor.RDKit" Version="9.0.2" />
69-
<PackageReference Include="BootstrapBlazor.Region" Version="9.0.4" />
69+
<PackageReference Include="BootstrapBlazor.Region" Version="9.0.5" />
7070
<PackageReference Include="BootstrapBlazor.SignaturePad" Version="9.0.1" />
7171
<PackageReference Include="BootstrapBlazor.SmilesDrawer" Version="9.0.2" />
7272
<PackageReference Include="BootstrapBlazor.Sortable" Version="9.0.3" />

src/BootstrapBlazor.Server/Components/Samples/SelectCities.razor

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<DemoBlock Title="@Localizer["CityNormalTitle"]"
1111
Introduction="@Localizer["CityNormalIntro"]"
1212
Name="Normal">
13-
<div class="row g-3 mb-3">
13+
<div class="row g-3 mb-3">
1414
<div class="col-12 col-sm-6">
1515
<BootstrapInputGroup>
1616
<BootstrapInputGroupLabel DisplayText="ShowSearch"></BootstrapInputGroupLabel>
@@ -36,5 +36,6 @@
3636
</BootstrapInputGroup>
3737
</div>
3838
</div>
39-
<SelectCity Value="@_value" ShowSearch="_showSearch" IsMultiple="_isMultiple" IsDisabled="_isDisabled" AutoClose="_autoClose"></SelectCity>
39+
<SelectCity @bind-Value="@_value" ShowSearch="_showSearch" AutoClose="_autoClose"
40+
IsMultiple="_isMultiple" IsDisabled="_isDisabled"></SelectCity>
4041
</DemoBlock>

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>9.11.3-beta02</Version>
4+
<Version>9.11.3-beta03</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)