diff --git a/resources/js/components/ui/DatePicker/DatePicker.vue b/resources/js/components/ui/DatePicker/DatePicker.vue
index bd6ed6c5c5b..89743d8ece0 100644
--- a/resources/js/components/ui/DatePicker/DatePicker.vue
+++ b/resources/js/components/ui/DatePicker/DatePicker.vue
@@ -31,11 +31,11 @@ const props = defineProps({
/** Badge text to display. */
badge: { type: String, default: null },
required: { type: Boolean, default: false },
- /** The controlled date value.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
+ /** The controlled date value.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
modelValue: { type: [Object, String], default: null },
- /** The minimum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
+ /** The minimum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
min: { type: [String, Object], default: null },
- /** The maximum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
+ /** The maximum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
max: { type: [String, Object], default: null },
/** The granularity of the date picker.
Options: `day`, `hour`, `minute`, `second` */
granularity: { type: String, default: null },
diff --git a/resources/js/components/ui/DateRangePicker/DateRangePicker.vue b/resources/js/components/ui/DateRangePicker/DateRangePicker.vue
index 1410c7943b5..6eb2e0db61b 100644
--- a/resources/js/components/ui/DateRangePicker/DateRangePicker.vue
+++ b/resources/js/components/ui/DateRangePicker/DateRangePicker.vue
@@ -31,11 +31,11 @@ const props = defineProps({
/** Badge text to display. */
badge: { type: String, default: null },
required: { type: Boolean, default: false },
- /** The controlled date range value.
Should be a [`DateRange` object](https://reka-ui.com/docs/guides/dates) or an object with `start` and `end` keys, where each value is an ISO 8601 datetime string with a UTC offset. */
+ /** The controlled date range value.
Should be a [`DateRange` object](https://reka-ui.com/docs/guides/dates). */
modelValue: { type: [Object, String], default: null },
- /** The minimum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
+ /** The minimum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates). */
min: { type: [String, Object], default: null },
- /** The maximum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
+ /** The maximum selectable date.
Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates). */
max: { type: [String, Object], default: null },
/** The granularity of the date range picker.
Options: `day`, `hour`, `minute`, `second` */
granularity: { type: String, default: null },
@@ -176,4 +176,4 @@ const calendarEvents = computed(() => ({
-
\ No newline at end of file
+