diff --git a/components/autocomplete/overview.md b/components/autocomplete/overview.md
index 80e96565e4..824c5ccb21 100644
--- a/components/autocomplete/overview.md
+++ b/components/autocomplete/overview.md
@@ -88,6 +88,7 @@ The Blazor AutoComplete provides various parameters that allow you to configure
| `Filterable` | `bool` | Whether [filtering]({%slug multiselect-filter%}) is enabled for the end user (suggestions will get narrowed down as they type). |
| `FilterOperator` | `StringFilterOperator` (`StartsWith`) | The string operation that will be used for [filtering]({%slug multiselect-filter%}). |
| `Id` | `string` | Renders as the `id` attribute on the ` ` element, so you can attach a `` to the input.|
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `LoaderShowDelay` | `int ` 300 | Time in milliseconds between opening the popup and showing the loading skeleton in it when the data is not yet available. |
| `TItem` | `Type` | The type of the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
| `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/combobox/overview.md b/components/combobox/overview.md
index 8aed83a623..20010aaa9c 100644
--- a/components/combobox/overview.md
+++ b/components/combobox/overview.md
@@ -93,6 +93,7 @@ The Blazor ComboBox @[template](/_contentTemplates/dropdowns/features.md#groupin
|`Filterable` | `bool` | whether [filtering]({%slug components/combobox/filter%}) is enabled for the end user. |
| `FilterOperator` | `StringFilterOperator` (`StartsWith`) | the method of [filtering]({%slug components/combobox/filter%}) the items. |
| `Id` | `string` | renders as the `id` attribute on the ` ` element, so you can attach a `` to the input. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `LoaderShowDelay` | `int ` 300 | Time in milliseconds between opening the popup and showing the loading skeleton in it when the data is not yet available. |
| `Placeholder` | `string` | the text the user sees as a hint when no item is selected. In order for it to be shown, the `Value` parameter should be set to a default value depending on the type defined in the `ValueField` parameter. For example, `0` for an `int`, and `null` for an `int?` or `string`. You need to make sure that it does not match the value of an existing item in the data source. |
| `TItem` | `Type` | the type of the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
diff --git a/components/dateinput/overview.md b/components/dateinput/overview.md
index 854359fa63..d8f600aa35 100644
--- a/components/dateinput/overview.md
+++ b/components/dateinput/overview.md
@@ -98,6 +98,7 @@ The following section lists some Date Input parameters and links to other pages
| `ReadOnly` | `bool` | If set to `true`, the component will be readonly and will not allow user input. The component is not readonly by default and allows user input. |
| `Format` | `string` (`ShortDatePattern`) | The textbox mask and date format that the user input must match. The default value depends on `CultureInfo.CurrentCulture`. Read more in the [Supported Formats]({%slug components/dateinput/supported-formats%}) article. |
| `Id` | `string` | The `id` attribute of the `input`. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `Max` | `DateTime` (`new DateTime(2099, 12, 31)`)| The latest allowed date that the user can type. |
| `Min` | `DateTime` (`DateTime(1900, 1, 1)`)| The earliest allowed date that the user can type. |
| `Placeholder` | `string` | The [`placeholder` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder) of the `input`. The placeholder will appear only if the component is bound to nullable `DateTime?` object, the `Value` is `null` and the component is not focused. Once the user focuses it to start typing, the `FormatPlaceholder` (default or [custom one](#format-placeholder)) will override the `Placeholder` to indicate the expected date format. |
diff --git a/components/datepicker/overview.md b/components/datepicker/overview.md
index a1e3c588c1..ba56c3bc07 100644
--- a/components/datepicker/overview.md
+++ b/components/datepicker/overview.md
@@ -83,6 +83,7 @@ The Blazor Date Picker provides various parameters that allow you to configure t
| `ReadOnly` | `bool` | If set to `true`, the component will be readonly and will not allow user input. The component is not readonly by default and allows user input. |
| `Format` | `string` (`ShortDatePattern`) | The format of the DatePicker's DateInput. The default value depends on `CultureInfo.CurrentCulture`. Read more at [Supported date formats by the DateInput]({%slug components/dateinput/supported-formats%}). |
| `Id` | `string` | The `id` attribute on the ` ` element. Use it to attach a `` to the input. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `Max` | `DateTime` (`DateTime(2099, 12, 31, 23, 59, 59)`)| The latest date that the user can select. |
| `Min` | `DateTime` (`DateTime(1900, 1, 1, 0, 0, 0)`)| The earliest date that the user can select. |
| `Placeholder` | `string` | Maps to the `placeholder` attribute of the HTML element. The `Placeholder` will appear if the component is bound to a **nullable** DateTime object - `DateTime?`. It will not be rendered if the component is bound to the default value of a non-nullable DateTime object. 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. |
diff --git a/components/daterangepicker/overview.md b/components/daterangepicker/overview.md
index 495a8bc5b8..ae0e698f7a 100644
--- a/components/daterangepicker/overview.md
+++ b/components/daterangepicker/overview.md
@@ -85,6 +85,7 @@ The Blazor Date Range Picker provides various parameters that allow you to confi
| `Format` | `string` (`ShortDatePattern`) | The format of the DateRangePicker DateInputs. The default value depends on `CultureInfo.CurrentCulture`. Read more at [Supported date formats by the DateInput]({%slug components/dateinput/supported-formats%}). |
| `Max` | `DateTime` (`DateTime(2099, 12, 31)`) | The latest date that the user can select. |
| `Min` | `DateTime` (`DateTime(1900, 1, 1)`)| The earliest date that the user can select. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `Orientation` | `CalendarOrientation`enum (`Horizontal`) | The orientation of the calendar popup. The available options are `Horizontal` and `Vertical`. |
| `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. |
diff --git a/components/datetimepicker/overview.md b/components/datetimepicker/overview.md
index 1ac9ddc25a..8142f9d913 100644
--- a/components/datetimepicker/overview.md
+++ b/components/datetimepicker/overview.md
@@ -79,6 +79,7 @@ The Blazor Date Time Picker provides various parameters that allow you to config
| `ReadOnly` | `bool` | If set to `true`, the component will be readonly and will not allow user input. The component is not readonly by default and allows user input. |
| `Format` | `string` (`FullDateTimePattern`) | The format of the DateTimePicker's DateInput. The default value depends on `CultureInfo.CurrentCulture`. Read more at [Supported date formats by the DateInput]({%slug components/dateinput/supported-formats%}). |
| `Id` | `string` | The `id` HTML attribute of the `input` |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `Max` | `DateTime` (`DateTime(2099, 12, 31, 23, 59, 59)`) | The latest date and time that the user can select |
| `Min` | `DateTime` (`DateTime(1900, 1, 1, 0, 0, 0)`) | The earliest date and time that the user can select |
| `Placeholder` | `string` | The `placeholder` attribute of the HTML element. The placeholder will appear if the component is bound to nullable DateTime object - `DateTime?`, but will not be rendered if the component is bound to the default value of a non-nullable DateTime object. 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. |
diff --git a/components/dropdownlist/overview.md b/components/dropdownlist/overview.md
index 3d6f66bf6b..2b762676c6 100644
--- a/components/dropdownlist/overview.md
+++ b/components/dropdownlist/overview.md
@@ -94,6 +94,7 @@ The Blazor DropDownList @[template](/_contentTemplates/dropdowns/features.md#gro
| `FilterOperator` | `StringFilterOperator` (`StartsWith`)| The method of [filtering]({%slug components/dropdownlist/filter%}) the items. |
| `FilterPlaceholder` | `string` | The hint that will be displayed in the filter input when it has no value.
| `Id` | `string` | The `id` attribute rendered on the main wrapping element of the component (``). You can use it to attach a `` to it. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `TItem` | `Type`| The type of the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
| `TValue` | `Type` | The type of the value field from the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. The type of the values can be: - `number` (such as `int`, `double`, and so on) - `string` - `Guid` - `Enum` |
| `Title` | `string` | The title text rendered in the header of the dropdown list popup (action sheet). Applicable only when [`AdaptiveMode` is set to `Auto`]({%slug adaptive-rendering%}). |
diff --git a/components/multicolumncombobox/overview.md b/components/multicolumncombobox/overview.md
index 5aae950897..20b4050393 100644
--- a/components/multicolumncombobox/overview.md
+++ b/components/multicolumncombobox/overview.md
@@ -119,6 +119,7 @@ The MultiColumnComboBox @[template](/_contentTemplates/dropdowns/features.md#gro
| `Filterable` | `bool` | Enables [filtering]({% slug multicolumncombobox-filter %}) for the end user. |
| `FilterOperator` | `StringFilterOperator` enum (`StartsWith`) | The [filtering method]({% slug multicolumncombobox-filter %}). |
| `Id` | `string` | The `id` attribute of the ` ` element. Use it to attach a `` to the input. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `LoaderShowDelay` | `int ` 300 | Time in milliseconds between opening the popup and showing the loading skeleton in it when the data is not yet available. |
| `Placeholder` | `string` | The hint text the user sees when no item is selected. The placeholder will shown when the `Value` is set to the default value of the `ValueField` type. For example, `0` for `int`, and `null` for `int?` or `string`. |
| `TItem` | `Type` | The type of the model. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
diff --git a/components/multiselect/overview.md b/components/multiselect/overview.md
index 6e7a1fc761..05b3a1e99d 100644
--- a/components/multiselect/overview.md
+++ b/components/multiselect/overview.md
@@ -107,6 +107,7 @@ The Blazor MultiSelect provides various parameters that allow you to configure t
| `Filterable` | `bool` | Whether [filtering]({%slug multiselect-filter%}) is enabled for the end user (suggestions will get narrowed down as they type). |
| `FilterOperator` | `StringFilterOperator` (`StartsWith`) | The string operation that will be used for [filtering]({%slug multiselect-filter%}). |
| `Id` | `string` | Renders as the `id` attribute on the ` ` element, so you can attach a `` to it. |
+| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the ` ` element. |
| `LoaderShowDelay` | `int ` 300 | Time in milliseconds between opening the popup and showing the loading skeleton in it when the data is not yet available. |
| `MinLength` | `int` | How many characters the user must type before the suggestion list appears. Often works together with [filtering]({%slug multiselect-filter%}). |
| `PersistFilterOnSelect` | `bool` | Controls whether the filter input will be cleared when the user selects an item. Applies when [MultiSelect filtering]({%slug multiselect-filter%}) is enabled and `AutoClose="false"`.