Skip to content

Commit

Permalink
check #462, added backers information
Browse files Browse the repository at this point in the history
  • Loading branch information
SamProf committed Mar 31, 2020
1 parent d74fb89 commit 74cf5dd
Show file tree
Hide file tree
Showing 10 changed files with 170 additions and 122 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ If you think that this project helped you or your company in any way, you can co

### Backers:
- Oyvind Habberstad
- [Victor Lindespång](https://github.com/lindespang)
- Gate575 Kft
- Christophe Peugnet
- SmartView Systems
- [Apply Solutions GmbH](https://www.apply-solutions.com/)
- Radu Tomuleasa
Expand All @@ -114,11 +117,18 @@ If you think that this project helped you or your company in any way, you can co

#### MatBlazor 2.3.0 (In progress)
- PR: Add implementations for nullable primitive types: `sbyte?`, `byte?`, `short?`, `ushort?`, `int?`, `uint?`, `long?`, `ulong?`, `char?`, `float?`, `double?` #449 (Thanks to [fire-birdie](https://github.com/fire-birdie))
- MatNumericUpDownField - Added FieldType parameter with Numeric, Currency, and Percent types #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: MatDatePicker - Do not display the time in the text field by default. Respect the Format and EnableTime parameters. #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: MatDatePicker - Fixed Minimum and Maximum implementation by comparing only dates if EnableTime is false, and comparing dates and times if EnableTime is true #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: Added ability to hide toggle button in MatAccordion / MatExpansionpanel #446 (Thanks to [lindespang](https://github.com/lindespang))
- PR: Add Parameter to MatNavItem to allow user to set the NavLinkMatch #456 (Thanks to [enkodellc](https://github.com/enkodellc))
- PR: Add Id and Attributes to `MatSelect` #454 (Thanks to [hailstorm75](https://github.com/hailstorm75))
- PR: MatIconButton - Added OnClickStopPropagation #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: MatButton - Added OnClickStopPropagation #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: MatDatePicker - Fixed the labeling of the DisableMobile Demo #462 (Thanks to [RonPeters](https://github.com/RonPeters))
- PR: ToolTip Fix #450 (Thanks to [EduVencovsky](https://github.com/EduVencovsky))

- PR: package.json - Fixed invalid structure and updated some packages to address some of the vulnerabilities identified in audit #462 (Thanks to [RonPeters](https://github.com/RonPeters))

#### MatBlazor 2.2.0
- .NET Core 3.1.2 + .NET Core 3.2.0-Preview 1 Releases
- `MatSortHeader`, `MatSortHeaderRow` - New component
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 @@ -1096,119 +1096,119 @@
<BlazorFiddle Template="MatBlazor" Code=@(@"
<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 74cf5dd

Please sign in to comment.