Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BootstrapBlazor.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<File Path="scripts/windows/push.ps1" />
</Folder>
<Folder Name="/src/">
<Project Path="../BootstrapBlazor.Extensions/src/components/BootstrapBlazor.Region/BootstrapBlazor.Region.csproj" />
<Project Path="src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj" />
<Project Path="src/BootstrapBlazor/BootstrapBlazor.csproj" />
</Folder>
Expand Down
3 changes: 2 additions & 1 deletion src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<PackageReference Include="BootstrapBlazor.PdfViewer" Version="9.0.6" />
<PackageReference Include="BootstrapBlazor.Player" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.RDKit" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.Region" Version="9.0.4" />
<!--<PackageReference Include="BootstrapBlazor.Region" Version="9.0.4" />-->
<PackageReference Include="BootstrapBlazor.SignaturePad" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.SmilesDrawer" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.Sortable" Version="9.0.3" />
Expand All @@ -89,6 +89,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\BootstrapBlazor.Extensions\src\components\BootstrapBlazor.Region\BootstrapBlazor.Region.csproj" />
<ProjectReference Include="..\BootstrapBlazor\BootstrapBlazor.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<DemoBlock Title="@Localizer["CityNormalTitle"]"
Introduction="@Localizer["CityNormalIntro"]"
Name="Normal">
<div class="row g-3 mb-3">
<div class="row g-3 mb-3">
<div class="col-12 col-sm-6">
<BootstrapInputGroup>
<BootstrapInputGroupLabel DisplayText="ShowSearch"></BootstrapInputGroupLabel>
Expand All @@ -36,5 +36,6 @@
</BootstrapInputGroup>
</div>
</div>
<SelectCity Value="@_value" ShowSearch="_showSearch" IsMultiple="_isMultiple" IsDisabled="_isDisabled" AutoClose="_autoClose"></SelectCity>
<SelectCity @bind-Value="@_value" ShowSearch="_showSearch" AutoClose="_autoClose"
IsMultiple="_isMultiple" IsDisabled="_isDisabled"></SelectCity>
</DemoBlock>
Loading