Skip to content

Commit 2b5db9b

Browse files
committed
docs(common): Document breaking changes in version 7
1 parent 0a97ff9 commit 2b5db9b

File tree

19 files changed

+108
-23
lines changed

19 files changed

+108
-23
lines changed

components/daterangepicker/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The Blazor Date Range Picker provides various parameters that allow you to confi
8989
| `Placeholder` |`string` | The `placeholder` attribute of the two `<input />` elements. The `Placeholder` will appear if the component is bound to **nullable** DateTime objects - `DateTime?`, but will not be rendered if the component is bound to the default value of a non-nullable DateTime objects. The Placeholder value will be displayed when the input is not focused. Once the user focuses it to start typing, the Format Placeholder (default or [customized one](#format-placeholder)) will override the Placeholder to indicate the format the date should be entered in. |
9090
| `ShowClearButton` | `bool` | Defines if the user can clear the component value through an **x** button rendered inside the input. |
9191
| `ShowWeekNumbers` | `bool` | Sets if the popup Calendars will display week numbers according to the [ISO-8601 format](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.isoweek.getweekofyear). Note that the [ISO week number may differ from the conventional .NET week number](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.calendar.getweekofyear). |
92-
| `ShowOtherMonthDays` | `bool` <br /> (`true`)| Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
92+
| `ShowOtherMonthDays` | `bool` | Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
9393
| `StartValue` and `EndValue` | `T` | The current values of the inputs for start and end of the range. Can be used for two-way binding. |
9494
| `TabIndex` | `int?` | The `tabindex` attribute of both `input` HTML elements in the component. They both will have the same `tabindex`. Use it to customize the tabbing (focus) order of the inputs on your page. |
9595
| `Title` | `string` | The title text rendered in the header of the popup(action sheet). Applicable only when [`AdaptiveMode` is set to `Auto`]({%slug adaptive-rendering%}). |

components/textarea/overview.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ The Blazor TextArea provides various parameters to configure the component:
5555
| ----------- | ----------- | ----------- |
5656
| `AutoCapitalize` | `string` | A `string` that maps to the [`autocapitalize`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize) attribute of the HTML element. It's applicable only for touch devices and virtual keyboards. |
5757
| `AutoComplete` | `bool` | Maps to the autocomplete attribute of the HTML `<textarea>`. |
58-
| `AutoSize` <br /> (deprecated) | `bool` | Specifies if the TextArea will adjust its height based on the user input. You can [use CSS to limit the resizing up to a max height]({%slug textarea-kb-autosize-max-height%}). This parameter is deprecated. Use `ResizeMode` with `Auto` value instead. |
59-
| `ResizeMode` | `TextAreaResizeMode?` | Specifies the TextArea's resize behavior. Default behavior is the one set by the browser. |
58+
| `ResizeMode` | `TextAreaResizeMode?` | Specifies the TextArea's resize behavior. Default behavior is the one set by the browser. You can also [use CSS to limit the resizing up to a max height]({%slug textarea-kb-autosize-max-height%}). |
6059
| `Class` | `string` | The custom CSS class to be rendered on the `<span class="k-textarea">` element. |
6160
| `Cols` | `int?` | Maps to the `cols` attribute of the HTML `<textarea>` element. Do not use together with `Width`.
6261
| `DebounceDelay` | `int` | Specifies the time in milliseconds between the last typed symbol and the updating of the value. The default value is 150ms. |

knowledge-base/radiogroup-like-buttongroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use custom CSS to make the radio inputs invisible and style their labels to look
3131

3232
The RadioGroup will look similar to a [ButtonGroup with single selection]({%slug buttongroup-selection%}#single-selection). The major difference is that the RadioGroup has a single value of type `<T>`, while each button in the ButtonGroup is bound to a separate `boolean` value for its selected state.
3333

34-
>tip The following example is for versions 6.0 and above, which feature an [updated HTML rendering for the RadioGroup]({%slug changes-in-6-0-0%}#radiogroup). If you are using an older version, use the [alternative CSS code from the section below](#solution-up-to-version-511).
34+
>tip The following example is for versions 6.0 and above, which feature an [updated HTML rendering for the RadioGroup]({%slug rendering-changes-in-6-0-0%}#radiogroup). If you are using an older version, use the [alternative CSS code from the section below](#solution-up-to-version-511).
3535
3636
>caption Style the RadioGroup like a ButtonGroup
3737

knowledge-base/textarea-autosize-max-height.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This KB article answers the following questions:
4141
````CSHTML
4242
<TelerikTextArea @bind-Value="@TextValue"
4343
Width="500px"
44-
AutoSize="true"
44+
ResizeMode="TextAreaResizeMode.Auto"
4545
Class="max-height-200" />
4646
4747
<style>
@@ -56,6 +56,7 @@ This KB article answers the following questions:
5656
}
5757
````
5858

59+
> Use `AutoSize="true"` instead of `ResizeMode="TextAreaResizeMode.Auto"` with Telerik UI for Blazor versions `6.x` and older.
5960
6061
## See Also
6162

upgrade/breaking-changes/2-0-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 2.0.0
33
description: Handle the changes in the 2.0.0 major release of the Telerik UI for Blazor components.
44
page_title: Breaking Changes in 2.0.0
55
slug: changes-in-2-0-0
6-
position: 1
6+
position: 1000
77
---
88

99
# Breaking Changes in 2.0.0

upgrade/breaking-changes/2-2-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 2.2.0
33
description: Handle the changes in the 2.2.0 release of the Telerik UI for Blazor components.
44
page_title: Breaking Changes in 2.2.0
55
slug: changes-in-2-2-0
6-
position: 1
6+
position: 995
77
---
88

99
# Breaking Changes in 2.2.0

upgrade/breaking-changes/3-0-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 3.0.0
33
description: Handle the changes in the 3.0.0 release of the Telerik UI for Blazor components.
44
page_title: Breaking Changes in 3.0.0
55
slug: changes-in-3-0-0
6-
position: 1
6+
position: 990
77
---
88

99
# Breaking Changes in 3.0.0

upgrade/breaking-changes/4-0-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 4.0.0
33
description: Handle the changes in the 4.0.0 release of the Telerik UI for Blazor components.
44
page_title: Breaking Changes in 4.0.0
55
slug: changes-in-4-0-0
6-
position: 1
6+
position: 985
77
---
88

99
# Breaking Changes in 4.0.0

upgrade/breaking-changes/5-0-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 5.0.0
33
description: Handle the changes in the 5.0.0 release of the Telerik UI for Blazor components.
44
page_title: Breaking Changes in 5.0.0
55
slug: changes-in-5-0-0
6-
position: 1
6+
position: 980
77
---
88

99
# Breaking Changes in 5.0.0

upgrade/breaking-changes/6-0-0.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: 6.0.0
3+
description: Handle the changes in the 6.0.0 release of the Telerik UI for Blazor components.
4+
page_title: Breaking Changes in 6.0.0
5+
slug: changes-in-6-0-0
6+
position: 975
7+
---
8+
9+
# Breaking Changes in 6.0.0
10+
11+
This article outlines the breaking changes in Telerik UI for Blazor version 6.0.0.
12+
13+
## Themes
14+
15+
The theme color variable names have changed. This is relevant only to Blazor applications that:
16+
17+
* [Use Telerik themes that are built from the source code]({%slug themes-customize%}#building-themes-from-source-code).
18+
* [Override theme variable values]({%slug themes-customize%}#setting-theme-variables).
19+
20+
See the <a href="https://www.telerik.com/design-system/docs/themes/theme-default/migration/" target="_blank">Design System Migration Article</a>.
21+
22+
## See Also
23+
24+
* [Rendering changes in Telerik UI for Blazor 6.0.0]({%slug rendering-changes-in-6-0-0%})

0 commit comments

Comments
 (0)