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 @@
</PackageReference> </PackageReference>
<PackageReference Include="Refit" Version="6.0.94" /> <PackageReference Include="Refit" Version="6.0.94" />
<PackageReference Include="Refit.Newtonsoft.Json" 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>
<ItemGroup> <ItemGroup>

2
ErsatzTV/ErsatzTV.csproj

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

10
ErsatzTV/Shared/AddToCollectionDialog.razor

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

12
ErsatzTV/Shared/AddTraktListDialog.razor

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

8
ErsatzTV/Shared/CopyFFmpegProfileDialog.razor

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

8
ErsatzTV/Shared/CopyWatermarkDialog.razor

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

10
ErsatzTV/Shared/MoveLocalLibraryPathDialog.razor

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

10
ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor

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

Loading…
Cancel
Save