Blazorise
Blazorise copied to clipboard
[2.0] APIs refactor, removal and changelog
In this ticket, we define all of the APIs that are marked as obsolete and that will eventually be removed in 2.0.
Frameworks
- Removed .NET6
- Removed .NET7
Components
Link
- [x] #5882
Inputs
Input Component Renaming ✍️
To better reflect their purpose and align with modern Blazor conventions, most input components have been renamed:
| Old Name | New Name |
|---|---|
ColorEdit |
ColorInput |
DateEdit |
DateInput |
FileEdit |
FileInput |
MemoEdit |
MemoInput |
NumericEdit |
NumericInput |
TextEdit |
TextInput |
TimeEdit |
TimeInput |
Check
- [x] Replaced
Checkedwith theValueparameter - [x] Replaced
CheckedChangedwith theValueChangedparameter - [x] Replaced
CheckedExpressionwith theValueExpressionparameter
Switch
- [x] Replaced
Checkedwith theValueparameter - [x] Replaced
CheckedChangedwith theValueChangedparameter - [x] Replaced
CheckedExpressionwith theValueExpressionparameter
ColorEdit
- [x] Replaced
Colorwith theValueparameter - [x] Replaced
ColorChangedwith theValueChangedparameter - [x] Replaced
ColorExpressionwith theValueExpressionparameter
ColorPicker
- [x] Replaced
Colorwith theValueparameter - [x] Replaced
ColorChangedwith theValueChangedparameter - [x] Replaced
ColorExpressionwith theValueExpressionparameter
DateEdit
- [x] Replaced
Datewith theValueparameter - [x] Replaced
DateChangedwith theValueChangedparameter - [x] Replaced
DateExpressionwith theValueExpressionparameter
DatePicker
- [x] Replaced
Date, andDateswith theValueparameter - [x] Replaced
DateChanged, andDatesChangedwith theValueChangedparameter - [x] Replaced
DateExpression, andDatesExpressionwith theValueExpressionparameter - [x]
Valuenow accepts single value or array types. Depending on theSelectionModeparameter. - [x] When in Multiple dates mode, TValue must be defined as
TValue="<IReadOnlyList<DateTime>", orTValue="DateTime[]"
TextEdit
- [x] Replaced
Textwith theValueparameter - [x] Replaced
TextChangedwith theValueChangedparameter - [x] Replaced
TextExpressionwith theValueExpressionparameter
MemoEdit
- [x] Replaced
Textwith theValueparameter - [x] Replaced
TextChangedwith theValueChangedparameter - [x] Replaced
TextExpressionwith theValueExpressionparameter
TimeEdit
- [x] Replaced
Timewith theValueparameter - [x] Replaced
TimeChangedwith theValueChangedparameter - [x] Replaced
TimeExpressionwith theValueExpressionparameter
TimePicker
- [x] Replaced
Timewith theValueparameter - [x] Replaced
TimeChangedwith theValueChangedparameter - [x] Replaced
TimeExpressionwith theValueExpressionparameter
Select
- [x] Replaced
SelectedValue, andSelectedValueswith theValueparameter - [x] Replaced
SelectedValueChanged, andSelectedValuesChangedwith theValueChangedparameter - [x] Replaced
SelectedValueExpression, andSelectedValuesExpressionwith theValueExpressionparameter - [x]
Valuenow accepts single value or array types. Depending on theMultipleparameter. - [x] When in Multiple mode, TValue must be defined as
TValue="<IReadOnlyList<string>", orTValue="string[]"
Radio
- [x] Removed
Checkedparameter - [x] Removed
CheckedChangedparameter - [x] Removed
CheckedExpressionparameter
RadioGroup
- [x] Replaced
CheckedValuewith theValueparameter - [x] Replaced
CheckedValueChangedwith theValueChangedparameter - [x] Replaced
CheckedValueExpressionwith theValueExpressionparameter
Dropdown
- [x] Renamed
RightAlignedtoEndAligned
DropdownList
- [x] Renamed
RightAlignedtoEndAligned - [x] Replaced
SelectedValue, andSelectedValueswith theValueparameter - [x] Replaced
SelectedValueChanged, andSelectedValuesChangedwith theValueChangedparameter - [x] Replaced
SelectedValueExpression, andSelectedValuesExpressionwith theValueExpressionparameter - [x]
Valuenow accepts single value or array types. Depending on theSelectionModeparameter set toCheckbox. - [x] When in Multiple mode, TValue must be defined as
TValue="<IReadOnlyList<string>", orTValue="string[]"
SelectList
- [x] Replaced
SelectedValue, andSelectedValueswith theValueparameter - [x] Replaced
SelectedValueChanged, andSelectedValuesChangedwith theValueChangedparameter - [x] Replaced
SelectedValueExpression, andSelectedValuesExpressionwith theValueExpressionparameter - [x]
Valuenow accepts single value or array types. Depending on theMultipleparameter. - [x] When in Multiple mode, TValue must be defined as
TValue="<IReadOnlyList<string>", orTValue="string[]"
DataGrid
- [x] Renamed
CurrentPagetoPage - [x] Removed
DataGridPageChangedEventArgs
Alert
- [x] Removed
MessageAlertin favor ofMessageProvider - [x] Removed
NotificationAlertin favor ofNotificationProvider - [x] Removed
PageProgressAlertin favor ofPageProgressProvider