Skip to content

Commit

Permalink
Demo app update
Browse files Browse the repository at this point in the history
  • Loading branch information
stavroskasidis committed Jan 19, 2021
1 parent f3091a2 commit 2908eea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BlazorDialog" Version="1.0.0-beta-576" />
<PackageReference Include="BlazorDialog" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="3.1.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="3.2.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Build" Version="3.2.1" PrivateAssets="all" />
Expand Down
2 changes: 1 addition & 1 deletion DemoApp/BlazorDialog.DemoApp/Client/Sources/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div>
<div class="form-inline">
<label for="question" class="mr-sm-3">Question:</label>
<input @bind="@question" />
<input class="form-control" @bind="@question" />
</div>
</div>

Expand Down
6 changes: 4 additions & 2 deletions DemoApp/BlazorDialog.DemoApp/Client/Sources/NoService.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
<div>
<div class="form-inline">
<label for="question" class="mr-sm-3">Question:</label>
<input @bind="@question" class="mr-sm-3" />
<input @bind="@question" class="mr-sm-3 form-control" />
<label for="size" class="mr-sm-3">Size</label>
<select class="form-control mr-sm-3" id="size" @bind="size">
<option value="@DialogSize.Small">@DialogSize.Small</option>
<option value="@DialogSize.Normal">@DialogSize.Normal</option>
<option value="@DialogSize.Large">@DialogSize.Large</option>
<option value="@DialogSize.Small">@DialogSize.Small</option>
<option value="@DialogSize.ExtraLarge">@DialogSize.ExtraLarge</option>
<option value="@DialogSize.FullScreen">@DialogSize.FullScreen</option>
</select>

<label for="animation" class="mr-sm-3">Animation</label>
Expand Down

0 comments on commit 2908eea

Please sign in to comment.