Browse Source

mudblazor updates (#390)

pull/391/head v0.0.61-alpha
Jason Dove 5 years ago committed by GitHub
parent
commit
60b82876ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj
  2. 2
      ErsatzTV/ErsatzTV.csproj
  3. 10
      ErsatzTV/Shared/AddToCollectionDialog.razor
  4. 12
      ErsatzTV/Shared/AddTraktListDialog.razor
  5. 8
      ErsatzTV/Shared/CopyFFmpegProfileDialog.razor
  6. 8
      ErsatzTV/Shared/CopyWatermarkDialog.razor
  7. 10
      ErsatzTV/Shared/MoveLocalLibraryPathDialog.razor
  8. 10
      ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor

2
ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj

@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
</PackageReference>
<PackageReference Include="Refit" Version="6.0.94" />
<PackageReference Include="Refit.Newtonsoft.Json" Version="6.0.94" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
</ItemGroup>
<ItemGroup>

2
ErsatzTV/ErsatzTV.csproj

@ -34,7 +34,7 @@ @@ -34,7 +34,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MudBlazor" Version="5.1.4" />
<PackageReference Include="MudBlazor" Version="5.1.5" />
<PackageReference Include="NaturalSort.Extension" Version="3.1.0" />
<PackageReference Include="PPioli.FluentValidation.Blazor" Version="5.0.0" />
<PackageReference Include="Refit.HttpClientFactory" Version="6.0.94" />

10
ErsatzTV/Shared/AddToCollectionDialog.razor

@ -22,11 +22,11 @@ @@ -22,11 +22,11 @@
<MudSelectItem Value="@collection">@collection.Name</MudSelectItem>
}
</MudSelect>
<MudTextFieldString Label="New Collection Name"
Disabled="@(_selectedCollection != _newCollection)"
@bind-Text="@_newCollectionName"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="New Collection Name"
Disabled="@(_selectedCollection != _newCollection)"
@bind-Text="@_newCollectionName"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

12
ErsatzTV/Shared/AddTraktListDialog.razor

@ -12,12 +12,12 @@ @@ -12,12 +12,12 @@
Enter Trakt List URL
</MudText>
</MudContainer>
<MudTextFieldString Label="Trakt List URL"
Placeholder="https://trakt.tv/users/username/lists/list-name"
@bind-Text="@_traktListUrl"
Style="min-width: 400px"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="Trakt List URL"
Placeholder="https://trakt.tv/users/username/lists/list-name"
@bind-Text="@_traktListUrl"
Style="min-width: 400px"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

8
ErsatzTV/Shared/CopyFFmpegProfileDialog.razor

@ -12,10 +12,10 @@ @@ -12,10 +12,10 @@
Enter a name for the new FFmpeg Profile
</MudText>
</MudContainer>
<MudTextFieldString Label="New FFmpeg Profile Name"
@bind-Text="@_newFFmpegProfileName"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="New FFmpeg Profile Name"
@bind-Text="@_newFFmpegProfileName"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

8
ErsatzTV/Shared/CopyWatermarkDialog.razor

@ -12,10 +12,10 @@ @@ -12,10 +12,10 @@
Enter a name for the new Watermark
</MudText>
</MudContainer>
<MudTextFieldString Label="New Watermark Name"
@bind-Text="@_newWatermarkName"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="New Watermark Name"
@bind-Text="@_newWatermarkName"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

10
ErsatzTV/Shared/MoveLocalLibraryPathDialog.razor

@ -21,11 +21,11 @@ @@ -21,11 +21,11 @@
<MudSelectItem Value="@library">@library.Name</MudSelectItem>
}
</MudSelect>
<MudTextFieldString Label="New Library Name"
Disabled="@(_selectedLibrary != _newLibrary)"
@bind-Text="@_newLibraryName"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="New Library Name"
Disabled="@(_selectedLibrary != _newLibrary)"
@bind-Text="@_newLibraryName"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

10
ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor

@ -21,11 +21,11 @@ @@ -21,11 +21,11 @@
<MudSelectItem Value="@collection">@collection.Name</MudSelectItem>
}
</MudSelect>
<MudTextFieldString Label="New Collection Name"
Disabled="@(_selectedCollection != _newCollection)"
@bind-Text="@_newCollectionName"
Class="mb-6 mx-4">
</MudTextFieldString>
<MudTextField T="string" Label="New Collection Name"
Disabled="@(_selectedCollection != _newCollection)"
@bind-Text="@_newCollectionName"
Class="mb-6 mx-4">
</MudTextField>
</EditForm>
</DialogContent>
<DialogActions>

Loading…
Cancel
Save