From 2b5db9b6ff2a8999b35493fd3d750eac8f0b4e0e Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Mon, 21 Oct 2024 18:39:38 +0300
Subject: [PATCH 01/16] docs(common): Document breaking changes in version 7
---
components/daterangepicker/overview.md | 2 +-
components/textarea/overview.md | 3 +-
knowledge-base/radiogroup-like-buttongroup.md | 2 +-
.../textarea-autosize-max-height.md | 3 +-
upgrade/breaking-changes/2-0-0.md | 2 +-
upgrade/breaking-changes/2-2-0.md | 2 +-
upgrade/breaking-changes/3-0-0.md | 2 +-
upgrade/breaking-changes/4-0-0.md | 2 +-
upgrade/breaking-changes/5-0-0.md | 2 +-
upgrade/breaking-changes/6-0-0.md | 24 +++++++++
upgrade/breaking-changes/7-0-0.md | 54 +++++++++++++++++++
upgrade/breaking-changes/list.md | 2 +
upgrade/rendering-changes/3-4-0.md | 2 +-
upgrade/rendering-changes/3-6-0.md | 2 +-
upgrade/rendering-changes/4-3-0.md | 2 +-
upgrade/rendering-changes/4-6-0.md | 2 +-
upgrade/rendering-changes/6-0-0.md | 2 +-
upgrade/rendering-changes/7-0-0.md | 7 ++-
upgrade/rendering-changes/list.md | 14 ++---
19 files changed, 108 insertions(+), 23 deletions(-)
create mode 100644 upgrade/breaking-changes/6-0-0.md
create mode 100644 upgrade/breaking-changes/7-0-0.md
diff --git a/components/daterangepicker/overview.md b/components/daterangepicker/overview.md
index d4322839f1..e4dbcabe5a 100644
--- a/components/daterangepicker/overview.md
+++ b/components/daterangepicker/overview.md
@@ -89,7 +89,7 @@ The Blazor Date Range Picker provides various parameters that allow you to confi
| `Placeholder` |`string` | The `placeholder` attribute of the two `` 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. |
| `ShowClearButton` | `bool` | Defines if the user can clear the component value through an **x** button rendered inside the input. |
| `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). |
-| `ShowOtherMonthDays` | `bool` (`true`)| Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
+| `ShowOtherMonthDays` | `bool` | Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
| `StartValue` and `EndValue` | `T` | The current values of the inputs for start and end of the range. Can be used for two-way binding. |
| `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. |
| `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%}). |
diff --git a/components/textarea/overview.md b/components/textarea/overview.md
index 1f0ce6b66f..ced339b308 100644
--- a/components/textarea/overview.md
+++ b/components/textarea/overview.md
@@ -55,8 +55,7 @@ The Blazor TextArea provides various parameters to configure the component:
| ----------- | ----------- | ----------- |
| `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. |
| `AutoComplete` | `bool` | Maps to the autocomplete attribute of the HTML `