From 7f3315246c21480877dbf453bdccc70a675f9e5a Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Fri, 6 Jun 2025 14:15:52 +0300
Subject: [PATCH 1/2] docs(TimePicker): Add a missing parameter
---
components/timepicker/overview.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/components/timepicker/overview.md b/components/timepicker/overview.md
index 9c1914845..b4f28566c 100644
--- a/components/timepicker/overview.md
+++ b/components/timepicker/overview.md
@@ -88,6 +88,7 @@ The Blazor Time Picker component provides various parameters that allow you to c
| `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` (`ShortTimePattern`) | The format of the TimePicker's DateInput. The default value depends on `CultureInfo.CurrentCulture`. Read more at [Supported date formats by the DateInput](slug:components/dateinput/supported-formats). Note that format specifiers for non-time portions will be editable only in the input and will not have a representation in the Time Picker dropdown. |
| `Id` | `string` | Renders as the `id` attribute on the ` ` element, so you can attach a `` to the input. |
+| `InputMode` | `string` | A `string` that maps to the [`inputmode`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) attribute of the HTML element. You can use it to instruct the rendering device to show a suitable virtual keyboard (for example, one optimized for entering digits). Make sure to use values that make sense for a Time Picker. |
| `Max` | `DateTime` (`DateTime(2099, 12, 31, 23, 59, 59)`) | The latest time that the user can select. |
| `Min` | `DateTime` (`DateTime(1900, 1, 1, 0, 0, 0)`) | The earliest time 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 **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. |
From dda74be79f4818a1f9903673b9bef520b5d7e159 Mon Sep 17 00:00:00 2001
From: Dimo Dimov <961014+dimodi@users.noreply.github.com>
Date: Fri, 6 Jun 2025 14:16:44 +0300
Subject: [PATCH 2/2] Update components/timepicker/overview.md
---
components/timepicker/overview.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/timepicker/overview.md b/components/timepicker/overview.md
index b4f28566c..d2d0bc8de 100644
--- a/components/timepicker/overview.md
+++ b/components/timepicker/overview.md
@@ -88,7 +88,7 @@ The Blazor Time Picker component provides various parameters that allow you to c
| `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` (`ShortTimePattern`) | The format of the TimePicker's DateInput. The default value depends on `CultureInfo.CurrentCulture`. Read more at [Supported date formats by the DateInput](slug:components/dateinput/supported-formats). Note that format specifiers for non-time portions will be editable only in the input and will not have a representation in the Time Picker dropdown. |
| `Id` | `string` | Renders as the `id` attribute on the ` ` element, so you can attach a `` to the input. |
-| `InputMode` | `string` | A `string` that maps to the [`inputmode`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) attribute of the HTML element. You can use it to instruct the rendering device to show a suitable virtual keyboard (for example, one optimized for entering digits). Make sure to use values that make sense for a Time Picker. |
+| `InputMode` | `string` | The [`inputmode`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) attribute of the HTML `input` element. You can use it to instruct the rendering device to show a suitable virtual keyboard (for example, one optimized for entering digits). Make sure to use values that make sense for a Time Picker. |
| `Max` | `DateTime` (`DateTime(2099, 12, 31, 23, 59, 59)`) | The latest time that the user can select. |
| `Min` | `DateTime` (`DateTime(1900, 1, 1, 0, 0, 0)`) | The earliest time 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 **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. |