Updated mooncore version. Fixed checkbox ui in diagnose page. Bumped nuget version

This commit is contained in:
2025-07-17 22:50:21 +02:00
parent 74d18419a6
commit 2b91d9a798
6 changed files with 13 additions and 6 deletions

View File

@@ -14,7 +14,7 @@
</ItemGroup> </ItemGroup>
<PropertyGroup> <PropertyGroup>
<PackageId>Moonlight.ApiServer</PackageId> <PackageId>Moonlight.ApiServer</PackageId>
<Version>2.1.4</Version> <Version>2.1.5</Version>
<Authors>Moonlight Panel</Authors> <Authors>Moonlight Panel</Authors>
<Description>A build of the api server for moonlight development</Description> <Description>A build of the api server for moonlight development</Description>
<PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl> <PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl>

View File

@@ -97,6 +97,10 @@
@apply !border-base-content/20 border-2 ring-0! outline-0! focus:border-primary! focus-within:border-primary! bg-base-200/50; @apply !border-base-content/20 border-2 ring-0! outline-0! focus:border-primary! focus-within:border-primary! bg-base-200/50;
} }
.select {
@apply !border-base-content/20 border-2 ring-0! outline-0! focus:border-primary! focus-within:border-primary! bg-base-200/50;
}
.table { .table {
:where(th, td) { :where(th, td) {
@apply py-1.5; @apply py-1.5;

View File

@@ -12,7 +12,7 @@
<PropertyGroup> <PropertyGroup>
<PackageTags>frontend</PackageTags> <PackageTags>frontend</PackageTags>
<PackageId>Moonlight.Client</PackageId> <PackageId>Moonlight.Client</PackageId>
<Version>2.1.4</Version> <Version>2.1.5</Version>
<Authors>Moonlight Panel</Authors> <Authors>Moonlight Panel</Authors>
<Description>A build of the client for moonlight development</Description> <Description>A build of the client for moonlight development</Description>
<PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl> <PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl>
@@ -24,7 +24,7 @@
<PackageReference Include="Blazor-ApexCharts" Version="6.0.0" /> <PackageReference Include="Blazor-ApexCharts" Version="6.0.0" />
<PackageReference Include="MoonCore" Version="1.9.2" /> <PackageReference Include="MoonCore" Version="1.9.2" />
<PackageReference Include="MoonCore.Blazor" Version="1.3.1" /> <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>
<ItemGroup> <ItemGroup>
<Compile Remove="storage\**\*" /> <Compile Remove="storage\**\*" />

View File

@@ -275,6 +275,7 @@ loading-xs
lowercase lowercase
m-10 m-10
mask mask
max-h-52
max-lg:flex-col max-lg:flex-col
max-lg:hidden max-lg:hidden
max-w-7xl max-w-7xl
@@ -363,10 +364,12 @@ progress
progress-bar progress-bar
progress-indeterminate progress-indeterminate
progress-primary progress-primary
pt-0
pt-0.5 pt-0.5
pt-3 pt-3
px-1.5 px-1.5
px-2 px-2
px-2.5
px-3 px-3
px-4 px-4
px-5 px-5

View File

@@ -49,14 +49,14 @@
<div class="@(DropdownOpen ? "" : "hidden")"> <div class="@(DropdownOpen ? "" : "hidden")">
<LazyLoader Load="Load"> <LazyLoader Load="Load">
<div class="mb-2 py-2 border-b border-base-content/70 flex items-center gap-3"> <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> <label for="selectall_checkbox">Select all</label>
</div> </div>
@foreach (var item in AvailableProviders) @foreach (var item in AvailableProviders)
{ {
<div class="mt-1 flex gap-3 items-center"> <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]"/> @bind="@AvailableProviders[item.Key]"/>
<label <label
for="@(item.Key.Type + "_checkbox")">@Formatter.ConvertCamelCaseToSpaces(item.Key.Name)</label> for="@(item.Key.Type + "_checkbox")">@Formatter.ConvertCamelCaseToSpaces(item.Key.Name)</label>

View File

@@ -9,7 +9,7 @@
<Title>Moonlight.Shared</Title> <Title>Moonlight.Shared</Title>
<PackageTags>shared</PackageTags> <PackageTags>shared</PackageTags>
<PackageId>Moonlight.Shared</PackageId> <PackageId>Moonlight.Shared</PackageId>
<Version>2.1.4</Version> <Version>2.1.5</Version>
<Authors>Moonlight Panel</Authors> <Authors>Moonlight Panel</Authors>
<Description>A build of the shared classes for moonlight development</Description> <Description>A build of the shared classes for moonlight development</Description>
<PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl> <PackageProjectUrl>https://github.com/Moonlight-Panel/Moonlight</PackageProjectUrl>