Skip to content

Commit

Permalink
Merge branch 'input-improvements' of https://github.com/RonPeters/Mat…
Browse files Browse the repository at this point in the history
…Blazor into RonPeters-input-improvements

# Conflicts:
#	src/MatBlazor.Demo/Demo/DemoMatTextField.razor
#	src/MatBlazor.Demo/Demo/DemoNumericUpDownField.razor
#	src/MatBlazor/wwwroot/dist/matBlazor.css
#	src/MatBlazor/wwwroot/dist/matBlazor.js
  • Loading branch information
SamProf committed Mar 31, 2020
2 parents 07d0557 + cb53de2 commit dfa896e
Show file tree
Hide file tree
Showing 17 changed files with 523 additions and 394 deletions.
4 changes: 4 additions & 0 deletions src/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*.cs]

# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = silent
4 changes: 2 additions & 2 deletions src/MatBlazor.Demo/Demo/DemoDatePicker.razor
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<p><b>EnableWeekNumbers</b></p>
<MatDatePicker @bind-Value="FeaturesDateTime" EnableWeekNumbers="true"></MatDatePicker>

<p><b>EnableWeekNumbers</b></p>
<p><b>DisableMobile</b></p>
<MatDatePicker @bind-Value="FeaturesDateTime" DisableMobile="true"></MatDatePicker>

<p><b>DisableCalendar</b></p>
Expand Down Expand Up @@ -141,7 +141,7 @@
<p><b>EnableWeekNumbers</b></p>
<MatDatePicker @bind-Value=""FeaturesDateTime"" EnableWeekNumbers=""true""></MatDatePicker>
<p><b>EnableWeekNumbers</b></p>
<p><b>DisableMobile</b></p>
<MatDatePicker @bind-Value=""FeaturesDateTime"" DisableMobile=""true""></MatDatePicker>
<p><b>DisableCalendar</b></p>
Expand Down
58 changes: 29 additions & 29 deletions src/MatBlazor.Demo/Demo/DemoMatTextField.razor
Original file line number Diff line number Diff line change
Expand Up @@ -942,119 +942,119 @@
<Content>

<p>
<b>string</b><br/>
<b>string</b><br />
<MatTextField @bind-Value="@stringValue"></MatTextField> Value: @stringValue
</p>
<p>
<b>sbyte</b><br/>
<b>sbyte</b><br />
<MatTextField @bind-Value="@sbyteValue"></MatTextField> Value: @sbyteValue
</p>
<p>
<b>sbyte?</b><br/>
<b>sbyte?</b><br />
<MatTextField @bind-Value="@sbyteNullValue"></MatTextField> Value: @sbyteNullValue
</p>
<p>
<b>byte</b><br/>
<b>byte</b><br />
<MatTextField @bind-Value="@byteValue"></MatTextField> Value: @byteValue
</p>
<p>
<b>byte?</b><br/>
<b>byte?</b><br />
<MatTextField @bind-Value="@byteNullValue"></MatTextField> Value: @byteNullValue
</p>
<p>
<b>short</b><br/>
<b>short</b><br />
<MatTextField @bind-Value="@shortValue"></MatTextField> Value: @shortValue
</p>
<p>
<b>short?</b><br/>
<b>short?</b><br />
<MatTextField @bind-Value="@shortNullValue"></MatTextField> Value: @shortNullValue
</p>
<p>
<b>ushort</b><br/>
<b>ushort</b><br />
<MatTextField @bind-Value="@ushortValue"></MatTextField> Value: @ushortValue
</p>
<p>
<b>ushort?</b><br/>
<b>ushort?</b><br />
<MatTextField @bind-Value="@ushortNullValue"></MatTextField> Value: @ushortNullValue
</p>
<p>
<b>int</b><br/>
<b>int</b><br />
<MatTextField @bind-Value="@intValue"></MatTextField> Value: @intValue
</p>
<p>
<b>int?</b><br/>
<b>int?</b><br />
<MatTextField @bind-Value="@intNullValue"></MatTextField> Value: @intNullValue
</p>
<p>
<b>uint</b><br/>
<b>uint</b><br />
<MatTextField @bind-Value="@uintValue"></MatTextField> Value: @uintValue
</p>
<p>
<b>uint?</b><br/>
<b>uint?</b><br />
<MatTextField @bind-Value="@uintNullValue"></MatTextField> Value: @uintNullValue
</p>
<p>
<b>long</b><br/>
<b>long</b><br />
<MatTextField @bind-Value="@longValue"></MatTextField> Value: @longValue
</p>
<p>
<b>long?</b><br/>
<b>long?</b><br />
<MatTextField @bind-Value="@longNullValue"></MatTextField> Value: @longNullValue
</p>
<p>
<b>ulong</b><br/>
<b>ulong</b><br />
<MatTextField @bind-Value="@ulongValue"></MatTextField> Value: @ulongValue
</p>
<p>
<b>ulong?</b><br/>
<b>ulong?</b><br />
<MatTextField @bind-Value="@ulongNullValue"></MatTextField> Value: @ulongNullValue
</p>
<p>
<b>char</b><br/>
<b>char</b><br />
<MatTextField @bind-Value="@charValue"></MatTextField> Value: @charValue
</p>
<p>
<b>char?</b><br/>
<b>char?</b><br />
<MatTextField @bind-Value="@charNullValue"></MatTextField> Value: @charNullValue
</p>
<p>
<b>float</b><br/>
<b>float</b><br />
<MatTextField @bind-Value="@floatValue"></MatTextField> Value: @floatValue
</p>
<p>
<b>float?</b><br/>
<b>float?</b><br />
<MatTextField @bind-Value="@floatNullValue"></MatTextField> Value: @floatNullValue
</p>
<p>
<b>double</b><br/>
<b>double</b><br />
<MatTextField @bind-Value="@doubleValue"></MatTextField> Value: @doubleValue
</p>
<p>
<b>double?</b><br/>
<b>double?</b><br />
<MatTextField @bind-Value="@doubleNullValue"></MatTextField> Value: @doubleNullValue
</p>
<p>
<b>decimal</b><br/>
<b>decimal</b><br />
<MatTextField @bind-Value="@decimalValue"></MatTextField> Value: @decimalValue
</p>
<p>
<b>decimal?</b><br/>
<b>decimal?</b><br />
<MatTextField @bind-Value="@decimalNullValue"></MatTextField> Value: @decimalNullValue
</p>
<p>
<b>DateTime</b><br/>
<b>DateTime</b><br />
<MatTextField @bind-Value="@dateTimeValue"></MatTextField> Value: @dateTimeValue
</p>
<p>
<b>DateTime?</b><br/>
<b>DateTime?</b><br />
<MatTextField @bind-Value="@dateTimeNullValue"></MatTextField> Value: @dateTimeNullValue
</p>
<p>
<b>bool</b><br/>
<b>bool</b><br />
<MatTextField @bind-Value="@boolValue"></MatTextField> Value: @boolValue
</p>
<p>
<b>bool?</b><br/>
<b>bool?</b><br />
<MatTextField @bind-Value="@boolNullValue"></MatTextField> Value: @boolNullValue
</p>

Expand Down
Loading

0 comments on commit dfa896e

Please sign in to comment.