Updated mooncore version. Fixed checkbox ui in diagnose page. Bumped nuget version
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<PropertyGroup>
|
||||
<PackageTags>frontend</PackageTags>
|
||||
<PackageId>Moonlight.Client</PackageId>
|
||||
<Version>2.1.4</Version>
|
||||
<Version>2.1.5</Version>
|
||||
<Authors>Moonlight Panel</Authors>
|
||||
<Description>A build of the client for moonlight development</Description>
|
||||
<PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl>
|
||||
@@ -24,7 +24,7 @@
|
||||
<PackageReference Include="Blazor-ApexCharts" Version="6.0.0" />
|
||||
<PackageReference Include="MoonCore" Version="1.9.2" />
|
||||
<PackageReference Include="MoonCore.Blazor" Version="1.3.1" />
|
||||
<PackageReference Include="MoonCore.Blazor.FlyonUi" Version="1.0.7" />
|
||||
<PackageReference Include="MoonCore.Blazor.FlyonUi" Version="1.0.8" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Remove="storage\**\*" />
|
||||
|
||||
@@ -275,6 +275,7 @@ loading-xs
|
||||
lowercase
|
||||
m-10
|
||||
mask
|
||||
max-h-52
|
||||
max-lg:flex-col
|
||||
max-lg:hidden
|
||||
max-w-7xl
|
||||
@@ -363,10 +364,12 @@ progress
|
||||
progress-bar
|
||||
progress-indeterminate
|
||||
progress-primary
|
||||
pt-0
|
||||
pt-0.5
|
||||
pt-3
|
||||
px-1.5
|
||||
px-2
|
||||
px-2.5
|
||||
px-3
|
||||
px-4
|
||||
px-5
|
||||
|
||||
@@ -49,14 +49,14 @@
|
||||
<div class="@(DropdownOpen ? "" : "hidden")">
|
||||
<LazyLoader Load="Load">
|
||||
<div class="mb-2 py-2 border-b border-base-content/70 flex items-center gap-3">
|
||||
<input id="selectall_checkbox" @bind="SelectAll" type="checkbox" class="form-checkbox">
|
||||
<input id="selectall_checkbox" @bind="SelectAll" type="checkbox" class="checkbox checkbox-primary checkbox-xs">
|
||||
<label for="selectall_checkbox">Select all</label>
|
||||
</div>
|
||||
|
||||
@foreach (var item in AvailableProviders)
|
||||
{
|
||||
<div class="mt-1 flex gap-3 items-center">
|
||||
<input class="form-checkbox" type="checkbox" id="@(item.Key.Type + "_checkbox")"
|
||||
<input class="checkbox checkbox-primary checkbox-xs" type="checkbox" id="@(item.Key.Type + "_checkbox")"
|
||||
@bind="@AvailableProviders[item.Key]"/>
|
||||
<label
|
||||
for="@(item.Key.Type + "_checkbox")">@Formatter.ConvertCamelCaseToSpaces(item.Key.Name)</label>
|
||||
|
||||
Reference in New Issue
Block a user