We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf5ad8 commit a3b31eaCopy full SHA for a3b31ea
1 file changed
docs/src/lib/content/api-reference/date-picker.api.ts
@@ -71,8 +71,14 @@ export const root = defineComponentApiSchema<DatePickerRootPropsWithoutHTML>({
71
minValue: calendarRoot.props!.minValue,
72
locale: calendarRoot.props!.locale,
73
numberOfMonths: calendarRoot.props!.numberOfMonths,
74
- disabled: calendarRoot.props!.disabled,
75
- readonly: dateFieldRoot.props!.readonly,
+ disabled: defineBooleanProp({
+ default: false,
76
+ description: "Whether or not the Date Picker is disabled.",
77
+ }),
78
+ readonly: defineBooleanProp({
79
+ description: "Whether or not the Date Picker is readonly.",
80
81
82
hourCycle: dateFieldRoot.props!.hourCycle,
83
granularity: dateFieldRoot.props!.granularity,
84
hideTimeZone: dateFieldRoot.props!.hideTimeZone,
0 commit comments