diff --git a/docs/components/datetime-picker.md b/docs/components/datetime-picker.md index be0d491ace..af82ad052e 100644 --- a/docs/components/datetime-picker.md +++ b/docs/components/datetime-picker.md @@ -359,12 +359,6 @@ A valid `Date` object (eg: `Mon Aug 15 2022 08:00:00 GMT-0700 (Pacific Daylight A valid `Date` object (eg: `Fri Aug 19 2022 12:00:00 GMT-0700 (Pacific Daylight Time)`) which blocks out days/times that occur **after** the given timestamp. `maxDate` gets passed down to the calendar component, and does not apply to relative time frames. -**default**: `null` - -### minuteIncrement - -A `Number` which sets the custom interval for the Minutes select dropdown. - **default**: `5` ### mode diff --git a/docs/guide/migrating-to-version-9.md b/docs/guide/migrating-to-version-9.md index f0f82ac628..9759b042a2 100644 --- a/docs/guide/migrating-to-version-9.md +++ b/docs/guide/migrating-to-version-9.md @@ -141,8 +141,6 @@ Kongponents styles are no longer designed to be utilized standalone, separately #### Props -* `minuteIncrement` Deprecated; we now internally default the `rules` prop to a 5 minute increment. [Refer to v-calendar documentation](https://vcalendar.io/datepicker/time-rules.html) - * `v-model` Single date and time picker's seed value (string in ISO date format) has been changed to a `TimeRange` object whose `start` value will be set to a Date ISO string; `end` value will be set to `null`. See KDateTimePickers's [v-model](/components/datetime-picker#v-model) for more details