update dep
3f3da500
Michael Schmitz
committed
succeeded
1 changed file
WPE.App.Base.csproj
/WPE.App.Base/WPE.App.Base.csproj-3+6
/WPE.App.Base/WPE.App.Base.csproj
Add comment 1 <div class="empty-wrapper">
Add comment 2 Minus   <div class="svg-wrapper">
Add comment 2 Plus   <div class="svg-wrapper" style="@SvgStyle">
Add comment 3 @if (SvgContent is not null)
Add comment 4 {
Add comment 5 @SvgContent
Add comment 6 }
Add comment 7 </div>
Add comment 8 Minus   @if (!String.IsNullOrEmpty(Title))
Add comment 8 Plus   @if (!string.IsNullOrEmpty(Title))
Add comment 9 {
Add comment 10 <div class="header">@Title</div>
Add comment 11 }
Add comment 12 Minus   @if (!String.IsNullOrEmpty(Subtitle))
Add comment 12 Plus   @if (!string.IsNullOrEmpty(Subtitle))
Add comment 13 {
Add comment 14 <div class="message">@Subtitle</div>
Add comment 15 }
Add comment 24 public RenderFragment? SvgContent { get; set; }
Add comment 25
Add comment 26 [Parameter]
Add comment 27 Plus   public string SvgStyle { get; set; } = "";
Add comment 28 Plus  
Add comment 29 Plus   [Parameter]
Add comment 27 30 public RenderFragment? ExtContent { get; set; }
Add comment 28 31
Add comment 29 32 [Parameter]