Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.*" />
<PackageReference Include="MudBlazor" Version="9.0.0-preview.1" />
<PackageReference Include="MudBlazor" Version="9.0.0-preview.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Microsoft.AspNetCore.Components.Web;
using Microsoft.JSInterop;
using MudBlazor;
using MudExtensions.Base;

namespace MudExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MudBlazor" Version="9.0.0-preview.1" />
<PackageReference Include="MudBlazor" Version="9.0.0-preview.2" />
</ItemGroup>

<Target Name="MinifyMudExtensionsJs" AfterTargets="Build" Condition="'$(CI)' != 'true'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
/// <typeparam name="T"></typeparam>
public partial class MudCodeInput<T> : MudFormComponent<T, string>
{

protected override IConverter<T?, string?> GetDefaultConverter()
{
throw new NotImplementedException();
}
/// <summary>
/// MudCodeInput constructor.
/// </summary>
Expand Down Expand Up @@ -319,10 +324,11 @@
}
else
{
await _elementReferences[i].SetText(null);

Check warning on line 327 in src/CodeBeam.MudBlazor.Extensions/Components/CodeInput/MudCodeInput.razor.cs

View workflow job for this annotation

GitHub Actions / build

Cannot convert null literal to non-nullable reference type.
}
}
}


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,16 @@
}
</div>
}
else if (ShowActions)
{
<div class="@ActionClassname">
@if (StepperActionsJustify == StepperActionsJustify.End)
{
<MudSpacer />
}
@ActionContent
</div>
}
</MudStack>
</CascadingValue>

Expand Down
Loading