You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: resources/js/components/ui/DatePicker/DatePicker.vue
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,11 @@ const props = defineProps({
31
31
/** Badge text to display. */
32
32
badge: { type:String, default:null },
33
33
required: { type:Boolean, default:false },
34
-
/** The controlled date value. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
34
+
/** The controlled date value. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
/** The minimum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
36
+
/** The minimum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
37
37
min: { type: [String, Object], default:null },
38
-
/** The maximum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
38
+
/** The maximum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) */
39
39
max: { type: [String, Object], default:null },
40
40
/** The granularity of the date picker. <br><br> Options: `day`, `hour`, `minute`, `second` */
Copy file name to clipboardExpand all lines: resources/js/components/ui/DateRangePicker/DateRangePicker.vue
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,11 @@ const props = defineProps({
31
31
/** Badge text to display. */
32
32
badge: { type:String, default:null },
33
33
required: { type:Boolean, default:false },
34
-
/** The controlled date range value. <br><br> 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. */
34
+
/** The controlled date range value. <br><br> Should be a [`DateRange` object](https://reka-ui.com/docs/guides/dates). */
/** The minimum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
36
+
/** The minimum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates). */
37
37
min: { type: [String, Object], default:null },
38
-
/** The maximum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates) or an ISO 8601 datetime string with a UTC offset. */
38
+
/** The maximum selectable date. <br><br> Should be a [`DateValue` object](https://reka-ui.com/docs/guides/dates). */
39
39
max: { type: [String, Object], default:null },
40
40
/** The granularity of the date range picker. <br><br> Options: `day`, `hour`, `minute`, `second` */
0 commit comments