Skip to content

Commit 74cf5dd

Browse files
committed
check #462, added backers information
1 parent d74fb89 commit 74cf5dd

10 files changed

Lines changed: 170 additions & 122 deletions

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ If you think that this project helped you or your company in any way, you can co
9292

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

115118
#### MatBlazor 2.3.0 (In progress)
116119
- 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))
120+
- MatNumericUpDownField - Added FieldType parameter with Numeric, Currency, and Percent types #462 (Thanks to [RonPeters](https://github.com/RonPeters))
121+
- 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))
122+
- 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))
117123
- PR: Added ability to hide toggle button in MatAccordion / MatExpansionpanel #446 (Thanks to [lindespang](https://github.com/lindespang))
118124
- PR: Add Parameter to MatNavItem to allow user to set the NavLinkMatch #456 (Thanks to [enkodellc](https://github.com/enkodellc))
119125
- PR: Add Id and Attributes to `MatSelect` #454 (Thanks to [hailstorm75](https://github.com/hailstorm75))
126+
- PR: MatIconButton - Added OnClickStopPropagation #462 (Thanks to [RonPeters](https://github.com/RonPeters))
127+
- PR: MatButton - Added OnClickStopPropagation #462 (Thanks to [RonPeters](https://github.com/RonPeters))
128+
- PR: MatDatePicker - Fixed the labeling of the DisableMobile Demo #462 (Thanks to [RonPeters](https://github.com/RonPeters))
120129
- PR: ToolTip Fix #450 (Thanks to [EduVencovsky](https://github.com/EduVencovsky))
121-
130+
- 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))
131+
122132
#### MatBlazor 2.2.0
123133
- .NET Core 3.1.2 + .NET Core 3.2.0-Preview 1 Releases
124134
- `MatSortHeader`, `MatSortHeaderRow` - New component

src/MatBlazor.Demo/Demo/DemoMatTextField.razor

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,119 +1096,119 @@
10961096
<BlazorFiddle Template="MatBlazor" Code=@(@"
10971097
10981098
<p>
1099-
<b>string</b><br/>
1099+
<b>string</b><br />
11001100
<MatTextField @bind-Value=""@stringValue""></MatTextField> Value: @stringValue
11011101
</p>
11021102
<p>
1103-
<b>sbyte</b><br/>
1103+
<b>sbyte</b><br />
11041104
<MatTextField @bind-Value=""@sbyteValue""></MatTextField> Value: @sbyteValue
11051105
</p>
11061106
<p>
1107-
<b>sbyte?</b><br/>
1107+
<b>sbyte?</b><br />
11081108
<MatTextField @bind-Value=""@sbyteNullValue""></MatTextField> Value: @sbyteNullValue
11091109
</p>
11101110
<p>
1111-
<b>byte</b><br/>
1111+
<b>byte</b><br />
11121112
<MatTextField @bind-Value=""@byteValue""></MatTextField> Value: @byteValue
11131113
</p>
11141114
<p>
1115-
<b>byte?</b><br/>
1115+
<b>byte?</b><br />
11161116
<MatTextField @bind-Value=""@byteNullValue""></MatTextField> Value: @byteNullValue
11171117
</p>
11181118
<p>
1119-
<b>short</b><br/>
1119+
<b>short</b><br />
11201120
<MatTextField @bind-Value=""@shortValue""></MatTextField> Value: @shortValue
11211121
</p>
11221122
<p>
1123-
<b>short?</b><br/>
1123+
<b>short?</b><br />
11241124
<MatTextField @bind-Value=""@shortNullValue""></MatTextField> Value: @shortNullValue
11251125
</p>
11261126
<p>
1127-
<b>ushort</b><br/>
1127+
<b>ushort</b><br />
11281128
<MatTextField @bind-Value=""@ushortValue""></MatTextField> Value: @ushortValue
11291129
</p>
11301130
<p>
1131-
<b>ushort?</b><br/>
1131+
<b>ushort?</b><br />
11321132
<MatTextField @bind-Value=""@ushortNullValue""></MatTextField> Value: @ushortNullValue
11331133
</p>
11341134
<p>
1135-
<b>int</b><br/>
1135+
<b>int</b><br />
11361136
<MatTextField @bind-Value=""@intValue""></MatTextField> Value: @intValue
11371137
</p>
11381138
<p>
1139-
<b>int?</b><br/>
1139+
<b>int?</b><br />
11401140
<MatTextField @bind-Value=""@intNullValue""></MatTextField> Value: @intNullValue
11411141
</p>
11421142
<p>
1143-
<b>uint</b><br/>
1143+
<b>uint</b><br />
11441144
<MatTextField @bind-Value=""@uintValue""></MatTextField> Value: @uintValue
11451145
</p>
11461146
<p>
1147-
<b>uint?</b><br/>
1147+
<b>uint?</b><br />
11481148
<MatTextField @bind-Value=""@uintNullValue""></MatTextField> Value: @uintNullValue
11491149
</p>
11501150
<p>
1151-
<b>long</b><br/>
1151+
<b>long</b><br />
11521152
<MatTextField @bind-Value=""@longValue""></MatTextField> Value: @longValue
11531153
</p>
11541154
<p>
1155-
<b>long?</b><br/>
1155+
<b>long?</b><br />
11561156
<MatTextField @bind-Value=""@longNullValue""></MatTextField> Value: @longNullValue
11571157
</p>
11581158
<p>
1159-
<b>ulong</b><br/>
1159+
<b>ulong</b><br />
11601160
<MatTextField @bind-Value=""@ulongValue""></MatTextField> Value: @ulongValue
11611161
</p>
11621162
<p>
1163-
<b>ulong?</b><br/>
1163+
<b>ulong?</b><br />
11641164
<MatTextField @bind-Value=""@ulongNullValue""></MatTextField> Value: @ulongNullValue
11651165
</p>
11661166
<p>
1167-
<b>char</b><br/>
1167+
<b>char</b><br />
11681168
<MatTextField @bind-Value=""@charValue""></MatTextField> Value: @charValue
11691169
</p>
11701170
<p>
1171-
<b>char?</b><br/>
1171+
<b>char?</b><br />
11721172
<MatTextField @bind-Value=""@charNullValue""></MatTextField> Value: @charNullValue
11731173
</p>
11741174
<p>
1175-
<b>float</b><br/>
1175+
<b>float</b><br />
11761176
<MatTextField @bind-Value=""@floatValue""></MatTextField> Value: @floatValue
11771177
</p>
11781178
<p>
1179-
<b>float?</b><br/>
1179+
<b>float?</b><br />
11801180
<MatTextField @bind-Value=""@floatNullValue""></MatTextField> Value: @floatNullValue
11811181
</p>
11821182
<p>
1183-
<b>double</b><br/>
1183+
<b>double</b><br />
11841184
<MatTextField @bind-Value=""@doubleValue""></MatTextField> Value: @doubleValue
11851185
</p>
11861186
<p>
1187-
<b>double?</b><br/>
1187+
<b>double?</b><br />
11881188
<MatTextField @bind-Value=""@doubleNullValue""></MatTextField> Value: @doubleNullValue
11891189
</p>
11901190
<p>
1191-
<b>decimal</b><br/>
1191+
<b>decimal</b><br />
11921192
<MatTextField @bind-Value=""@decimalValue""></MatTextField> Value: @decimalValue
11931193
</p>
11941194
<p>
1195-
<b>decimal?</b><br/>
1195+
<b>decimal?</b><br />
11961196
<MatTextField @bind-Value=""@decimalNullValue""></MatTextField> Value: @decimalNullValue
11971197
</p>
11981198
<p>
1199-
<b>DateTime</b><br/>
1199+
<b>DateTime</b><br />
12001200
<MatTextField @bind-Value=""@dateTimeValue""></MatTextField> Value: @dateTimeValue
12011201
</p>
12021202
<p>
1203-
<b>DateTime?</b><br/>
1203+
<b>DateTime?</b><br />
12041204
<MatTextField @bind-Value=""@dateTimeNullValue""></MatTextField> Value: @dateTimeNullValue
12051205
</p>
12061206
<p>
1207-
<b>bool</b><br/>
1207+
<b>bool</b><br />
12081208
<MatTextField @bind-Value=""@boolValue""></MatTextField> Value: @boolValue
12091209
</p>
12101210
<p>
1211-
<b>bool?</b><br/>
1211+
<b>bool?</b><br />
12121212
<MatTextField @bind-Value=""@boolNullValue""></MatTextField> Value: @boolNullValue
12131213
</p>
12141214

0 commit comments

Comments
 (0)