diff --git a/src/components/NcDateTimePicker/NcDateTimePicker.vue b/src/components/NcDateTimePicker/NcDateTimePicker.vue index c7adf0f781..6ee95498a7 100644 --- a/src/components/NcDateTimePicker/NcDateTimePicker.vue +++ b/src/components/NcDateTimePicker/NcDateTimePicker.vue @@ -163,6 +163,104 @@ export default { } ``` + +### Restricting to a specific time range + +You can optionally restrict the selectable time range, for example from 08:00 on Monday to 20:00 on Sunday of the current week. +This example shows how the `min` and `max` properties are applied to different picker types. + +```vue + + +``` + +### Inline calendar + +Renders the calendar inline (without the text input) inside your parent component. + +```vue + + +```