diff --git a/docs/props/general-configuration/index.html b/docs/props/general-configuration/index.html index 65099a4b..b019fedb 100644 --- a/docs/props/general-configuration/index.html +++ b/docs/props/general-configuration/index.html @@ -284,7 +284,7 @@ shadowDom: false, mobileBreakpoint: 600, setDateOnMenuClose: false, -}
allowStopPropagation
: Enable event.sportPropagation
on click eventscloseOnScroll
: Close datepicker menu on page scrollmodeHeight
: If you use month-picker
, time-picker
or year-picker
, set custom height of the picker in px
allowPreventDefault
: Due to the different implementations of how click outside listeners are implemented, you might encounter issues where the menu closes if the picker is used in dialogs when teleport
prop is enabled. To prevent this issue, you need to set this option to true
closeOnClearValue
: Prevent closing the menu on value clear from the input fieldcloseOnAutoApply
: If set to false
, clicking on a date value will automatically select the value but will not close the datepicker menu. Closing will be available on a click-away or clicking on the input againnoSwipe
: Disable touch events on the calendarkeepActionRow
: When enabled, it will keep the action row even if the auto-apply
prop is enabledonClickOutside
: Provide custom click outside handler. Exposed validation function that will return true
or false
depending on the selected value and pointer eventtabOutClosesMenu
: When tabbing out of the picker menu it will close the picker menu (not compatible when using teleport
)arrowLeft
: Overrides default arrow position from left side of the menu. To keep it always in the center, set it to 50%
. Accepts valid CSS
valuekeepViewOnOffsetClick
: When enabled, clicking on the offset date will not change the month that is currently in the viewtimeArrowHoldThreshold
: When provided with a value > 0
, clicking and holding the arrow button in the time-picker
will increment/decrement the value. This value represents the setTimeout
value, meaning the larger the number, the change will be slower.0
disables the hold eventshadowDom
: Set to true
if you are using the component with web componentsmobileBreakpoint
: Mobile breakpoint in pixelssetDateOnMenuClose
: When enabled, clicking away from the menu will set the selected date if some date is selected. Behaves similar to auto-apply
, but it only applies the date on click-awayAdds a loading overlay in the menu
boolean
false
<template>
+}
allowStopPropagation
: Enable event.stopPropagation
on click eventscloseOnScroll
: Close datepicker menu on page scrollmodeHeight
: If you use month-picker
, time-picker
or year-picker
, set custom height of the picker in px
allowPreventDefault
: Due to the different implementations of how click outside listeners are implemented, you might encounter issues where the menu closes if the picker is used in dialogs when teleport
prop is enabled. To prevent this issue, you need to set this option to true
closeOnClearValue
: Prevent closing the menu on value clear from the input fieldcloseOnAutoApply
: If set to false
, clicking on a date value will automatically select the value but will not close the datepicker menu. Closing will be available on a click-away or clicking on the input againnoSwipe
: Disable touch events on the calendarkeepActionRow
: When enabled, it will keep the action row even if the auto-apply
prop is enabledonClickOutside
: Provide custom click outside handler. Exposed validation function that will return true
or false
depending on the selected value and pointer eventtabOutClosesMenu
: When tabbing out of the picker menu it will close the picker menu (not compatible when using teleport
)arrowLeft
: Overrides default arrow position from left side of the menu. To keep it always in the center, set it to 50%
. Accepts valid CSS
valuekeepViewOnOffsetClick
: When enabled, clicking on the offset date will not change the month that is currently in the viewtimeArrowHoldThreshold
: When provided with a value > 0
, clicking and holding the arrow button in the time-picker
will increment/decrement the value. This value represents the setTimeout
value, meaning the larger the number, the change will be slower.0
disables the hold eventshadowDom
: Set to true
if you are using the component with web componentsmobileBreakpoint
: Mobile breakpoint in pixelssetDateOnMenuClose
: When enabled, clicking away from the menu will set the selected date if some date is selected. Behaves similar to auto-apply
, but it only applies the date on click-awayAdds a loading overlay in the menu
boolean
false
<template>
<VueDatePicker v-model="date" loading />
</template>