Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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" />
<PackageReference Include="MudBlazor" Version="9.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
12 changes: 11 additions & 1 deletion src/CodeBeam.MudBlazor.Extensions/Base/MudBaseInputExtended.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,17 @@ protected MudBaseInputExtended()
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public bool DisablePaste { get; set; }
public bool DisablePaste { get; set; } = false;

/// <summary>
/// Override to read Value from ParameterState instead of backing field.
/// </summary>
protected internal new T? ReadValue => base.ReadValue;

/// <summary>
/// Override to write Value to ParameterState instead of backing field.
/// </summary>
protected internal new string? ReadText => base.ReadText;

/// <summary>
/// Invokes logic to be executed before input is processed, including raising the BeforeInput event if a
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" />
<PackageReference Include="MudBlazor" Version="9.3.0" />
Comment thread
mckaragoz marked this conversation as resolved.
Outdated
</ItemGroup>

<Target Name="MinifyMudExtensionsJs" AfterTargets="Build" Condition="'$(CI)' != 'true'&#xD;&#xA; AND '$(TargetFramework)' == 'net10.0'&#xD;&#xA; AND Exists('TScripts/MudExtensions.js')">
Expand Down
Loading
Loading