Skip to content

Commit

Permalink
Use NumericPicker
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCoderMatrix86 committed Jul 5, 2024
1 parent d70b9c0 commit fab9142
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions AudioCuesheetEditor/AudioCuesheetEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@

<ItemGroup>
<PackageReference Include="Blazorise.Bootstrap5" Version="1.5.3" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.5.3" />
<PackageReference Include="MetaBrainz.MusicBrainz" Version="6.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.4" PrivateAssets="all" />
Expand Down
2 changes: 1 addition & 1 deletion AudioCuesheetEditor/Pages/RecordControl.razor
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ along with Foobar. If not, see
<Field Horizontal>
<FieldLabel ColumnSize="ColumnSize.Is5.OnWidescreen.Is12.OnDesktop">@_localizer["Seconds till record starts"]</FieldLabel>
<FieldBody ColumnSize="ColumnSize.Is7.OnWidescreen.Is12.OnDesktop">
<NumericEdit TValue="uint" Min="1" @bind-Value="recordCountdownTimer" />
<NumericPicker TValue="uint" Min="1" @bind-Value="recordCountdownTimer" />
</FieldBody>
</Field>
</ModalBody>
Expand Down
4 changes: 3 additions & 1 deletion AudioCuesheetEditor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
using BlazorDownloadFile;
using Blazorise;
using Blazorise.Bootstrap5;
using Blazorise.Icons.FontAwesome;
using Howler.Blazor.Components;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
Expand All @@ -38,7 +39,8 @@
options.Debounce = true;
options.DebounceInterval = 300;
})
.AddBootstrap5Providers();
.AddBootstrap5Providers()
.AddFontAwesomeIcons();

builder.Services.AddScoped<IHowl, Howl>();
builder.Services.AddScoped<IHowlGlobal, HowlGlobal>();
Expand Down
1 change: 1 addition & 0 deletions AudioCuesheetEditor/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
<link href="_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css" rel="stylesheet" />
<link href="_content/Blazorise.Icons.FontAwesome/v6/css/all.min.css" rel="stylesheet">

<script src="scripts/howler.core.min.js"></script>
<script src="_content/Howler.Blazor/JsInteropHowl.js"></script>
Expand Down

0 comments on commit fab9142

Please sign in to comment.