vft 0.0.249 → 0.0.252
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/es/components/alert/alert.vue.d.ts +1 -11
- package/es/components/alert/alert.vue2.js +13 -65
- package/es/components/alert/index.d.ts +28 -76
- package/es/components/autocomplete/autocomplete.vue.d.ts +14 -14
- package/es/components/autocomplete/autocomplete.vue2.js +194 -199
- package/es/components/autocomplete/index.d.ts +42 -42
- package/es/components/backtop/backtop.vue.d.ts +1 -15
- package/es/components/backtop/backtop.vue2.js +17 -106
- package/es/components/backtop/index.d.ts +3 -9
- package/es/components/backtop/types.d.ts +14 -0
- package/es/components/backtop/types.js +1 -0
- package/es/components/button/button-custom.d.ts +1 -1
- package/es/components/button/button.vue.d.ts +3 -50
- package/es/components/button/button.vue2.js +1 -1
- package/es/components/button/index.d.ts +39 -40
- package/es/components/button/types.d.ts +47 -1
- package/es/components/button/use-button.d.ts +5 -5
- package/es/components/card/index.d.ts +3 -3
- package/es/components/carousel/carousel.vue.d.ts +1 -1
- package/es/components/carousel/index.d.ts +18 -18
- package/es/components/carousel/use-carousel.js +2 -3
- package/es/components/checkbox/checkbox-group.vue.d.ts +1 -1
- package/es/components/checkbox/index.d.ts +42 -42
- package/es/components/color-picker/components/hue-slider.vue.d.ts +3 -3
- package/es/components/color-picker/components/predefine.vue.d.ts +3 -3
- package/es/components/color-picker/components/sv-panel.vue.d.ts +3 -3
- package/es/components/config-provider/hooks/use-global-config.d.ts +3 -3
- package/es/components/context-menu/context-menu.vue2.js +36 -124
- package/es/components/context-menu/index.js +5 -101
- package/es/components/context-menu/types.d.ts +1 -1
- package/es/components/context-menu/types.js +1 -98
- package/es/components/date-picker/composables/use-basic-date-table.d.ts +188 -0
- package/es/components/date-picker/composables/use-basic-date-table.js +183 -0
- package/es/components/date-picker/composables/use-month-range-header.d.ts +1 -1
- package/es/components/date-picker/composables/use-panel-date-range.d.ts +29 -0
- package/es/components/date-picker/composables/use-panel-date-range.js +72 -0
- package/es/components/date-picker/composables/use-range-picker.d.ts +46 -42
- package/es/components/date-picker/composables/use-range-picker.js +65 -52
- package/es/components/date-picker/composables/use-shortcut.js +4 -4
- package/es/components/date-picker/composables/use-year-range-header.d.ts +16 -0
- package/es/components/date-picker/composables/use-year-range-header.js +35 -0
- package/es/components/date-picker/constants.d.ts +2 -15
- package/es/components/date-picker/constants.js +3 -16
- package/es/components/date-picker/date-picker-com/basic-cell-render.d.ts +3 -1
- package/es/components/date-picker/date-picker-com/basic-cell-render.js +16 -19
- package/es/components/date-picker/date-picker-com/basic-date-table.vue.d.ts +14 -23
- package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +73 -176
- package/es/components/date-picker/date-picker-com/basic-month-table.vue.d.ts +2 -2
- package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +93 -71
- package/es/components/date-picker/date-picker-com/basic-year-table.vue.d.ts +50 -9
- package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +108 -57
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue.d.ts +13 -3
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +329 -277
- package/es/components/date-picker/date-picker-com/panel-date-range.vue.d.ts +16 -3
- package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +422 -281
- package/es/components/date-picker/date-picker-com/panel-month-range.vue.d.ts +6 -3
- package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +137 -113
- package/es/components/date-picker/date-picker-com/panel-year-range.vue.d.ts +35 -0
- package/es/components/date-picker/date-picker-com/panel-year-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-year-range.vue2.js +210 -0
- package/es/components/date-picker/date-picker.d.ts +70 -40
- package/es/components/date-picker/date-picker.js +59 -50
- package/es/components/date-picker/date-picker.type.d.ts +2 -1
- package/es/components/date-picker/index.d.ts +126 -68
- package/es/components/date-picker/index.js +7 -7
- package/es/components/date-picker/instance.d.ts +9 -0
- package/es/components/date-picker/instance.js +1 -0
- package/es/components/date-picker/panel-utils.d.ts +48 -0
- package/es/components/date-picker/panel-utils.js +9 -6
- package/es/components/date-picker/props/basic-cell.d.ts +2 -1
- package/es/components/date-picker/props/basic-date-table.d.ts +7 -2
- package/es/components/date-picker/props/basic-date-table.js +6 -5
- package/es/components/date-picker/props/basic-month-table.d.ts +3 -2
- package/es/components/date-picker/props/basic-year-table.d.ts +23 -5
- package/es/components/date-picker/props/basic-year-table.js +5 -6
- package/es/components/date-picker/props/date-picker.d.ts +26 -12
- package/es/components/date-picker/props/date-picker.js +3 -0
- package/es/components/date-picker/props/panel-date-pick.d.ts +6 -1
- package/es/components/date-picker/props/panel-date-range.d.ts +7 -1
- package/es/components/date-picker/props/panel-month-range.d.ts +3 -1
- package/es/components/date-picker/props/panel-month-range.js +7 -3
- package/es/components/date-picker/props/panel-year-range.d.ts +14 -0
- package/es/components/date-picker/props/panel-year-range.js +17 -0
- package/es/components/date-picker/props/shared.d.ts +9 -2
- package/es/components/date-picker/props/shared.js +29 -12
- package/es/components/date-picker/style/css.d.ts +4 -0
- package/es/components/date-picker/style/css.js +5 -0
- package/es/components/date-picker/utils.d.ts +9 -2
- package/es/components/date-picker/utils.js +66 -33
- package/es/components/date-time-select/date-time-select.vue2.js +1 -1
- package/es/components/date-time-select/index.d.ts +1 -0
- package/es/components/date-time-select/types.d.ts +4 -0
- package/es/components/dialog/dialog-content.vue2.js +2 -3
- package/es/components/dropdown/dropdown-item-impl.vue.d.ts +4 -4
- package/es/components/dropdown/dropdown-item-impl.vue.js +12 -12
- package/es/components/dropdown/dropdown-item-impl.vue2.js +6 -6
- package/es/components/dropdown/dropdown.vue.d.ts +6 -29
- package/es/components/dropdown/dropdown.vue2.js +146 -149
- package/es/components/footer-layout/footer-layout.vue2.js +19 -108
- package/es/components/form/form-item.vue.d.ts +2 -3
- package/es/components/form/form-item.vue2.js +140 -135
- package/es/components/form/form-label-wrap.js +27 -27
- package/es/components/form/form.vue2.js +71 -65
- package/es/components/form/hooks/use-form-common-props.js +3 -4
- package/es/components/form/hooks/use-form-item.js +12 -13
- package/es/components/form/index.d.ts +75 -48
- package/es/components/form/types.d.ts +7 -1
- package/es/components/form/utils.d.ts +1 -1
- package/es/components/form/utils.js +33 -28
- package/es/components/header-layout/header-layout.vue2.js +26 -114
- package/es/components/icon/icon.vue2.js +20 -19
- package/es/components/icon/index.d.ts +0 -1
- package/es/components/icon/index.js +3 -4
- package/es/components/index.js +323 -319
- package/es/components/input/input.vue2.js +4 -4
- package/es/components/link/index.d.ts +3 -3
- package/es/components/md-code-demo/md-code-demo.js +12 -13
- package/es/components/md-container/md-container.vue2.js +52 -138
- package/es/components/md-vue-playground/md-vue-playground.vue2.js +17 -17
- package/es/components/menu/index.js +1 -1
- package/es/components/menu/menu-item.vue.d.ts +1 -1
- package/es/components/menu/menu-item.vue2.js +45 -132
- package/es/components/menu/sub-menu.vue.d.ts +2 -1
- package/es/components/menu/sub-menu.vue2.js +76 -163
- package/es/components/modal/index.d.ts +33 -45
- package/es/components/modal/modal-footer-action.vue2.js +26 -112
- package/es/components/modal/modal.vue.d.ts +2 -2
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +57 -144
- package/es/components/multiple-tabs/tab-content.vue2.js +19 -113
- package/es/components/multiple-tabs/use/use-tab-dropdown.js +37 -132
- package/es/components/popconfirm/index.d.ts +24 -24
- package/es/components/popconfirm/popconfirm.vue.d.ts +2 -2
- package/es/components/popover/index.d.ts +5 -5
- package/es/components/popover/popover.vue.d.ts +2 -2
- package/es/components/popper/composables/use-content.js +2 -3
- package/es/components/popper/trigger.vue2.js +7 -8
- package/es/components/progress/index.d.ts +3 -3
- package/es/components/result/result.vue.d.ts +1 -1
- package/es/components/result/result.vue2.js +20 -109
- package/es/components/roving-focus-group/index.js +11 -11
- package/es/components/roving-focus-group/roving-focus-group.vue.js +5 -5
- package/es/components/roving-focus-group/roving-focus-item.vue2.js +2 -3
- package/es/components/scrollbar/index.js +9 -10
- package/es/components/select/defaults.d.ts +99 -15
- package/es/components/select/defaults.js +90 -12
- package/es/components/select/group-item.vue.d.ts +10 -5
- package/es/components/select/group-item.vue.js +9 -19
- package/es/components/select/group-item.vue2.js +4 -2
- package/es/components/select/index.d.ts +2782 -0
- package/es/components/select/index.js +2 -2
- package/es/components/select/option-item.vue.d.ts +40 -26
- package/es/components/select/option-item.vue.js +12 -12
- package/es/components/select/option-item.vue2.js +15 -12
- package/es/components/select/select-dropdown.d.ts +29 -3
- package/es/components/select/select-dropdown.js +120 -129
- package/es/components/select/select.types.d.ts +19 -11
- package/es/components/select/select.vue.d.ts +2778 -0
- package/es/components/select/select.vue.js +261 -251
- package/es/components/select/select.vue2.js +49 -45
- package/es/components/select/token.d.ts +10 -12
- package/es/components/select/token.js +4 -2
- package/es/components/select/useAllowCreate.d.ts +3 -3
- package/es/components/select/useAllowCreate.js +32 -29
- package/es/components/select/useOption.d.ts +3 -3
- package/es/components/select/useProps.d.ts +21 -0
- package/es/components/select/useProps.js +22 -0
- package/es/components/select/useSelect.d.ts +940 -121
- package/es/components/select/useSelect.js +396 -302
- package/es/components/side-menu/side-menu.vue2.js +77 -165
- package/es/components/steps/index.d.ts +12 -12
- package/es/components/super-form/component-map.js +52 -141
- package/es/components/super-form/style/css.js +4 -4
- package/es/components/super-form/super-form-action.vue2.js +39 -126
- package/es/components/super-form/super-form-item.vue2.js +161 -248
- package/es/components/super-form/super-form.vue.d.ts +1 -1
- package/es/components/super-form/super-form.vue2.js +116 -202
- package/es/components/super-form/types.d.ts +3 -1
- package/es/components/switch/index.d.ts +6 -6
- package/es/components/table/field.js +82 -176
- package/es/components/table/index.d.ts +24 -24
- package/es/components/table/table.vue.d.ts +1 -1
- package/es/components/tabs/tab-nav.vue.d.ts +2 -2
- package/es/components/tabs/tab-nav.vue2.js +98 -187
- package/es/components/tabs/tabs.vue.d.ts +2 -1
- package/es/components/time-picker/common/picker-range-trigger.vue.d.ts +84 -0
- package/es/components/time-picker/common/picker-range-trigger.vue.js +4 -0
- package/es/components/time-picker/common/picker-range-trigger.vue2.js +100 -0
- package/es/components/time-picker/common/picker.vue.d.ts +71 -41
- package/es/components/time-picker/common/picker.vue2.js +285 -289
- package/es/components/time-picker/common/props.d.ts +76 -12
- package/es/components/time-picker/common/props.js +78 -35
- package/es/components/time-picker/composables/use-time-panel.d.ts +4 -4
- package/es/components/time-picker/composables/use-time-picker.d.ts +28 -29
- package/es/components/time-picker/constants.d.ts +5 -0
- package/es/components/time-picker/constants.js +15 -10
- package/es/components/time-picker/index.d.ts +120 -74
- package/es/components/time-picker/index.js +28 -23
- package/es/components/time-picker/props/basic-time-spinner.d.ts +5 -4
- package/es/components/time-picker/props/panel-time-picker.d.ts +2 -1
- package/es/components/time-picker/props/panel-time-range.d.ts +2 -1
- package/es/components/time-picker/props/shared.d.ts +4 -5
- package/es/components/time-picker/style/css.d.ts +3 -0
- package/es/components/time-picker/style/css.js +3 -0
- package/es/components/time-picker/style/index.d.ts +3 -0
- package/es/components/time-picker/style/index.js +3 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.d.ts +6 -6
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +135 -128
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue.d.ts +4 -4
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +36 -35
- package/es/components/time-picker/time-picker-com/panel-time-range.vue.d.ts +4 -4
- package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +109 -108
- package/es/components/time-picker/time-picker.d.ts +60 -37
- package/es/components/time-picker/time-picker.js +28 -30
- package/es/components/time-picker/utils.d.ts +5 -2
- package/es/components/time-picker/utils.js +17 -16
- package/es/components/time-select/time-select.vue.d.ts +1 -1
- package/es/components/timeline/index.d.ts +6 -6
- package/es/components/tooltip/content.vue2.js +47 -48
- package/es/components/tooltip/index.d.ts +3 -3
- package/es/components/tooltip/tooltip.vue.d.ts +1 -1
- package/es/components/tooltip/tooltip.vue2.js +77 -78
- package/es/components/tooltip/utils.js +4 -5
- package/es/components/tree/tree-node.vue.d.ts +33 -33
- package/es/components/tree/tree-node.vue.js +11 -11
- package/es/components/tree/tree-node.vue2.js +15 -15
- package/es/components/upload/index.d.ts +15 -15
- package/es/components/upload/upload-content.vue.d.ts +1 -1
- package/es/components/upload/upload.vue.d.ts +1 -1
- package/es/components/virtual-list/builders/build-grid.d.ts +9 -9
- package/es/components/virtual-list/builders/build-grid.js +222 -214
- package/es/components/virtual-list/builders/build-list.d.ts +13 -13
- package/es/components/virtual-list/builders/build-list.js +206 -198
- package/es/components/virtual-list/components/dynamic-size-grid.d.ts +6 -6
- package/es/components/virtual-list/components/dynamic-size-grid.js +12 -12
- package/es/components/virtual-list/components/dynamic-size-list.d.ts +13 -12
- package/es/components/virtual-list/components/dynamic-size-list.js +7 -7
- package/es/components/virtual-list/components/fixed-size-grid.d.ts +6 -6
- package/es/components/virtual-list/components/fixed-size-list.d.ts +13 -12
- package/es/components/virtual-list/components/fixed-size-list.js +8 -8
- package/es/components/virtual-list/components/scrollbar.js +59 -66
- package/es/components/virtual-list/defaults.d.ts +0 -4
- package/es/components/virtual-list/defaults.js +11 -15
- package/es/components/virtual-list/hooks/use-cache.d.ts +1 -1
- package/es/components/virtual-list/hooks/use-cache.js +6 -6
- package/es/components/virtual-list/hooks/use-wheel.js +1 -1
- package/es/components/virtual-list/index.d.ts +6 -4
- package/es/components/virtual-list/index.js +4 -4
- package/es/components/virtual-list/props.d.ts +11 -7
- package/es/components/virtual-list/props.js +24 -30
- package/es/components/virtual-list/types.d.ts +1 -1
- package/es/components/virtual-list/utils.d.ts +1 -2
- package/es/components/virtual-list/utils.js +16 -18
- package/es/hooks/index.d.ts +3 -1
- package/es/hooks/index.js +49 -46
- package/es/hooks/use-calc-input-width/index.d.ts +7 -0
- package/es/hooks/use-calc-input-width/index.js +17 -0
- package/es/hooks/use-composition/index.d.ts +12 -0
- package/es/hooks/use-composition/index.js +28 -0
- package/es/hooks/use-delayed-toggle/index.d.ts +8 -4
- package/es/hooks/use-delayed-toggle/index.js +52 -17
- package/es/hooks/use-empty-values/index.d.ts +16 -0
- package/es/hooks/use-empty-values/index.js +37 -0
- package/es/hooks/use-focus-controller/index.d.ts +27 -0
- package/es/hooks/use-focus-controller/index.js +38 -0
- package/es/hooks/use-id/index.d.ts +1 -1
- package/es/hooks/use-id/index.js +11 -11
- package/es/hooks/use-namespace/index.d.ts +5 -6
- package/es/hooks/use-namespace/index.js +13 -15
- package/es/index.js +459 -451
- package/es/package.json.d.ts +2 -2
- package/es/package.json.js +1 -1
- package/es/utils/helper.d.ts +1 -0
- package/es/utils/helper.js +3 -2
- package/es/utils/index.js +49 -48
- package/lib/components/alert/alert.vue.d.ts +1 -11
- package/lib/components/alert/alert.vue2.cjs +1 -1
- package/lib/components/alert/index.d.ts +28 -76
- package/lib/components/autocomplete/autocomplete.vue.d.ts +14 -14
- package/lib/components/autocomplete/autocomplete.vue2.cjs +1 -1
- package/lib/components/autocomplete/index.d.ts +42 -42
- package/lib/components/backtop/backtop.vue.d.ts +1 -15
- package/lib/components/backtop/backtop.vue2.cjs +1 -1
- package/lib/components/backtop/index.d.ts +3 -9
- package/lib/components/backtop/types.cjs +1 -0
- package/lib/components/backtop/types.d.ts +14 -0
- package/lib/components/button/button-custom.d.ts +1 -1
- package/lib/components/button/button.vue.d.ts +3 -50
- package/lib/components/button/button.vue2.cjs +1 -1
- package/lib/components/button/index.d.ts +39 -40
- package/lib/components/button/types.d.ts +47 -1
- package/lib/components/button/use-button.d.ts +5 -5
- package/lib/components/card/index.d.ts +3 -3
- package/lib/components/carousel/carousel.vue.d.ts +1 -1
- package/lib/components/carousel/index.d.ts +18 -18
- package/lib/components/carousel/use-carousel.cjs +1 -1
- package/lib/components/checkbox/checkbox-group.vue.d.ts +1 -1
- package/lib/components/checkbox/index.d.ts +42 -42
- package/lib/components/color-picker/components/hue-slider.vue.d.ts +3 -3
- package/lib/components/color-picker/components/predefine.vue.d.ts +3 -3
- package/lib/components/color-picker/components/sv-panel.vue.d.ts +3 -3
- package/lib/components/config-provider/hooks/use-global-config.d.ts +3 -3
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/context-menu/index.cjs +1 -1
- package/lib/components/context-menu/types.cjs +1 -1
- package/lib/components/context-menu/types.d.ts +1 -1
- package/lib/components/date-picker/composables/use-basic-date-table.cjs +1 -0
- package/lib/components/date-picker/composables/use-basic-date-table.d.ts +188 -0
- package/lib/components/date-picker/composables/use-month-range-header.d.ts +1 -1
- package/lib/components/date-picker/composables/use-panel-date-range.cjs +1 -0
- package/lib/components/date-picker/composables/use-panel-date-range.d.ts +29 -0
- package/lib/components/date-picker/composables/use-range-picker.cjs +1 -1
- package/lib/components/date-picker/composables/use-range-picker.d.ts +46 -42
- package/lib/components/date-picker/composables/use-shortcut.cjs +1 -1
- package/lib/components/date-picker/composables/use-year-range-header.cjs +1 -0
- package/lib/components/date-picker/composables/use-year-range-header.d.ts +16 -0
- package/lib/components/date-picker/constants.cjs +1 -1
- package/lib/components/date-picker/constants.d.ts +2 -15
- package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/basic-cell-render.d.ts +3 -1
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue.d.ts +14 -23
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue.d.ts +2 -2
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue.d.ts +50 -9
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.d.ts +13 -3
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue.d.ts +16 -3
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue.d.ts +6 -3
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -1
- package/lib/components/date-picker/date-picker-com/panel-year-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-year-range.vue.d.ts +35 -0
- package/lib/components/date-picker/date-picker-com/panel-year-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker.cjs +1 -1
- package/lib/components/date-picker/date-picker.d.ts +70 -40
- package/lib/components/date-picker/date-picker.type.d.ts +2 -1
- package/lib/components/date-picker/index.cjs +1 -1
- package/lib/components/date-picker/index.d.ts +126 -68
- package/lib/components/date-picker/instance.cjs +1 -0
- package/lib/components/date-picker/instance.d.ts +9 -0
- package/lib/components/date-picker/panel-utils.cjs +1 -1
- package/lib/components/date-picker/panel-utils.d.ts +48 -0
- package/lib/components/date-picker/props/basic-cell.d.ts +2 -1
- package/lib/components/date-picker/props/basic-date-table.cjs +1 -1
- package/lib/components/date-picker/props/basic-date-table.d.ts +7 -2
- package/lib/components/date-picker/props/basic-month-table.d.ts +3 -2
- package/lib/components/date-picker/props/basic-year-table.cjs +1 -1
- package/lib/components/date-picker/props/basic-year-table.d.ts +23 -5
- package/lib/components/date-picker/props/date-picker.d.ts +26 -12
- package/lib/components/date-picker/props/panel-date-pick.d.ts +6 -1
- package/lib/components/date-picker/props/panel-date-range.d.ts +7 -1
- package/lib/components/date-picker/props/panel-month-range.cjs +1 -1
- package/lib/components/date-picker/props/panel-month-range.d.ts +3 -1
- package/lib/components/date-picker/props/panel-year-range.cjs +1 -0
- package/lib/components/date-picker/props/panel-year-range.d.ts +14 -0
- package/lib/components/date-picker/props/shared.cjs +1 -1
- package/lib/components/date-picker/props/shared.d.ts +9 -2
- package/lib/components/date-picker/style/css.cjs +1 -1
- package/lib/components/date-picker/style/css.d.ts +4 -0
- package/lib/components/date-picker/utils.cjs +1 -1
- package/lib/components/date-picker/utils.d.ts +9 -2
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/date-time-select/index.d.ts +1 -0
- package/lib/components/date-time-select/types.d.ts +4 -0
- package/lib/components/dialog/dialog-content.vue2.cjs +1 -1
- package/lib/components/dropdown/dropdown-item-impl.vue.cjs +1 -1
- package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +4 -4
- package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -1
- package/lib/components/dropdown/dropdown.vue.d.ts +6 -29
- package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/form/form-item.vue.d.ts +2 -3
- package/lib/components/form/form-item.vue2.cjs +1 -1
- package/lib/components/form/form-label-wrap.cjs +1 -1
- package/lib/components/form/form.vue2.cjs +1 -1
- package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
- package/lib/components/form/hooks/use-form-item.cjs +1 -1
- package/lib/components/form/index.d.ts +75 -48
- package/lib/components/form/types.d.ts +7 -1
- package/lib/components/form/utils.cjs +1 -1
- package/lib/components/form/utils.d.ts +1 -1
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/icon/icon.vue2.cjs +1 -1
- package/lib/components/icon/index.cjs +1 -1
- package/lib/components/icon/index.d.ts +0 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/link/index.d.ts +3 -3
- package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
- package/lib/components/menu/menu-item.vue.d.ts +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue.d.ts +2 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/modal/index.d.ts +33 -45
- package/lib/components/modal/modal-footer-action.vue2.cjs +1 -1
- package/lib/components/modal/modal.vue.d.ts +2 -2
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/multiple-tabs/tab-content.vue2.cjs +1 -1
- package/lib/components/multiple-tabs/use/use-tab-dropdown.cjs +1 -1
- package/lib/components/popconfirm/index.d.ts +24 -24
- package/lib/components/popconfirm/popconfirm.vue.d.ts +2 -2
- package/lib/components/popover/index.d.ts +5 -5
- package/lib/components/popover/popover.vue.d.ts +2 -2
- package/lib/components/popper/composables/use-content.cjs +1 -1
- package/lib/components/popper/trigger.vue2.cjs +1 -1
- package/lib/components/progress/index.d.ts +3 -3
- package/lib/components/result/result.vue.d.ts +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
- package/lib/components/scrollbar/index.cjs +1 -1
- package/lib/components/select/defaults.cjs +1 -1
- package/lib/components/select/defaults.d.ts +99 -15
- package/lib/components/select/group-item.vue.cjs +1 -1
- package/lib/components/select/group-item.vue.d.ts +10 -5
- package/lib/components/select/group-item.vue2.cjs +1 -1
- package/lib/components/select/index.cjs +1 -1
- package/lib/components/select/index.d.ts +2782 -0
- package/lib/components/select/option-item.vue.cjs +1 -1
- package/lib/components/select/option-item.vue.d.ts +40 -26
- package/lib/components/select/option-item.vue2.cjs +1 -1
- package/lib/components/select/select-dropdown.cjs +1 -1
- package/lib/components/select/select-dropdown.d.ts +29 -3
- package/lib/components/select/select.types.d.ts +19 -11
- package/lib/components/select/select.vue.cjs +1 -1
- package/lib/components/select/select.vue.d.ts +2778 -0
- package/lib/components/select/select.vue2.cjs +1 -1
- package/lib/components/select/token.cjs +1 -1
- package/lib/components/select/token.d.ts +10 -12
- package/lib/components/select/useAllowCreate.cjs +1 -1
- package/lib/components/select/useAllowCreate.d.ts +3 -3
- package/lib/components/select/useOption.d.ts +3 -3
- package/lib/components/select/useProps.cjs +1 -0
- package/lib/components/select/useProps.d.ts +21 -0
- package/lib/components/select/useSelect.cjs +1 -1
- package/lib/components/select/useSelect.d.ts +940 -121
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/steps/index.d.ts +12 -12
- package/lib/components/super-form/component-map.cjs +1 -1
- package/lib/components/super-form/style/css.cjs +1 -1
- package/lib/components/super-form/super-form-action.vue2.cjs +1 -1
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/super-form/super-form.vue.d.ts +1 -1
- package/lib/components/super-form/super-form.vue2.cjs +1 -1
- package/lib/components/super-form/types.d.ts +3 -1
- package/lib/components/switch/index.d.ts +6 -6
- package/lib/components/table/field.cjs +1 -1
- package/lib/components/table/index.d.ts +24 -24
- package/lib/components/table/table.vue.d.ts +1 -1
- package/lib/components/tabs/tab-nav.vue.d.ts +2 -2
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/tabs/tabs.vue.d.ts +2 -1
- package/lib/components/time-picker/common/picker-range-trigger.vue.cjs +1 -0
- package/lib/components/time-picker/common/picker-range-trigger.vue.d.ts +84 -0
- package/lib/components/time-picker/common/picker-range-trigger.vue2.cjs +1 -0
- package/lib/components/time-picker/common/picker.vue.d.ts +71 -41
- package/lib/components/time-picker/common/picker.vue2.cjs +1 -1
- package/lib/components/time-picker/common/props.cjs +1 -1
- package/lib/components/time-picker/common/props.d.ts +76 -12
- package/lib/components/time-picker/composables/use-time-panel.d.ts +4 -4
- package/lib/components/time-picker/composables/use-time-picker.d.ts +28 -29
- package/lib/components/time-picker/constants.cjs +1 -1
- package/lib/components/time-picker/constants.d.ts +5 -0
- package/lib/components/time-picker/index.cjs +1 -1
- package/lib/components/time-picker/index.d.ts +120 -74
- package/lib/components/time-picker/props/basic-time-spinner.d.ts +5 -4
- package/lib/components/time-picker/props/panel-time-picker.d.ts +2 -1
- package/lib/components/time-picker/props/panel-time-range.d.ts +2 -1
- package/lib/components/time-picker/props/shared.d.ts +4 -5
- package/lib/components/time-picker/style/css.cjs +1 -1
- package/lib/components/time-picker/style/css.d.ts +3 -0
- package/lib/components/time-picker/style/index.cjs +1 -1
- package/lib/components/time-picker/style/index.d.ts +3 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.d.ts +6 -6
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -1
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.d.ts +4 -4
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -1
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue.d.ts +4 -4
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -1
- package/lib/components/time-picker/time-picker.cjs +1 -1
- package/lib/components/time-picker/time-picker.d.ts +60 -37
- package/lib/components/time-picker/utils.cjs +1 -1
- package/lib/components/time-picker/utils.d.ts +5 -2
- package/lib/components/time-select/time-select.vue.d.ts +1 -1
- package/lib/components/timeline/index.d.ts +6 -6
- package/lib/components/tooltip/content.vue2.cjs +1 -1
- package/lib/components/tooltip/index.d.ts +3 -3
- package/lib/components/tooltip/tooltip.vue.d.ts +1 -1
- package/lib/components/tooltip/tooltip.vue2.cjs +1 -1
- package/lib/components/tooltip/utils.cjs +1 -1
- package/lib/components/tree/tree-node.vue.cjs +1 -1
- package/lib/components/tree/tree-node.vue.d.ts +33 -33
- package/lib/components/tree/tree-node.vue2.cjs +1 -1
- package/lib/components/upload/index.d.ts +15 -15
- package/lib/components/upload/upload-content.vue.d.ts +1 -1
- package/lib/components/upload/upload.vue.d.ts +1 -1
- package/lib/components/virtual-list/builders/build-grid.cjs +1 -1
- package/lib/components/virtual-list/builders/build-grid.d.ts +9 -9
- package/lib/components/virtual-list/builders/build-list.cjs +1 -1
- package/lib/components/virtual-list/builders/build-list.d.ts +13 -13
- package/lib/components/virtual-list/components/dynamic-size-grid.cjs +1 -1
- package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +6 -6
- package/lib/components/virtual-list/components/dynamic-size-list.cjs +1 -1
- package/lib/components/virtual-list/components/dynamic-size-list.d.ts +13 -12
- package/lib/components/virtual-list/components/fixed-size-grid.d.ts +6 -6
- package/lib/components/virtual-list/components/fixed-size-list.cjs +1 -1
- package/lib/components/virtual-list/components/fixed-size-list.d.ts +13 -12
- package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
- package/lib/components/virtual-list/defaults.cjs +1 -1
- package/lib/components/virtual-list/defaults.d.ts +0 -4
- package/lib/components/virtual-list/hooks/use-cache.cjs +1 -1
- package/lib/components/virtual-list/hooks/use-cache.d.ts +1 -1
- package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -1
- package/lib/components/virtual-list/index.cjs +1 -1
- package/lib/components/virtual-list/index.d.ts +6 -4
- package/lib/components/virtual-list/props.cjs +1 -1
- package/lib/components/virtual-list/props.d.ts +11 -7
- package/lib/components/virtual-list/types.d.ts +1 -1
- package/lib/components/virtual-list/utils.cjs +1 -1
- package/lib/components/virtual-list/utils.d.ts +1 -2
- package/lib/hooks/index.cjs +1 -1
- package/lib/hooks/index.d.ts +3 -1
- package/lib/hooks/use-calc-input-width/index.cjs +1 -0
- package/lib/hooks/use-calc-input-width/index.d.ts +7 -0
- package/lib/hooks/use-composition/index.cjs +1 -0
- package/lib/hooks/use-composition/index.d.ts +12 -0
- package/lib/hooks/use-delayed-toggle/index.cjs +1 -1
- package/lib/hooks/use-delayed-toggle/index.d.ts +8 -4
- package/lib/hooks/use-empty-values/index.cjs +1 -0
- package/lib/hooks/use-empty-values/index.d.ts +16 -0
- package/lib/hooks/use-focus-controller/index.cjs +1 -0
- package/lib/hooks/use-focus-controller/index.d.ts +27 -0
- package/lib/hooks/use-id/index.cjs +2 -2
- package/lib/hooks/use-id/index.d.ts +1 -1
- package/lib/hooks/use-namespace/index.cjs +1 -1
- package/lib/hooks/use-namespace/index.d.ts +5 -6
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +2 -2
- package/lib/utils/helper.cjs +1 -1
- package/lib/utils/helper.d.ts +1 -0
- package/lib/utils/index.cjs +1 -1
- package/package.json +5 -5
- package/theme-style/index.css +1 -1
- package/theme-style/src/common/var.scss +41 -0
- package/theme-style/src/date-picker/date-picker.scss +31 -31
- package/theme-style/src/date-picker/date-range-picker.scss +60 -37
- package/theme-style/src/date-picker/date-table.scss +20 -20
- package/theme-style/src/date-picker/month-table.scss +40 -25
- package/theme-style/src/date-picker/picker-panel.scss +27 -28
- package/theme-style/src/date-picker/picker.scss +60 -56
- package/theme-style/src/date-picker/time-picker.scss +21 -21
- package/theme-style/src/date-picker/time-range-picker.scss +6 -6
- package/theme-style/src/date-picker/time-spinner.scss +24 -22
- package/theme-style/src/date-picker/year-table.scss +61 -14
- package/theme-style/src/option-group.scss +7 -28
- package/theme-style/src/option.scss +46 -12
- package/theme-style/src/select-dropdown-v2.scss +31 -37
- package/theme-style/src/select.scss +136 -220
- package/theme-style/src/tabs.scss +6 -66
- package/theme-style/src/tabss.scss +4 -4
- package/theme-style/vft-date-picker.css +1 -1
- package/theme-style/vft-option-group.css +1 -1
- package/theme-style/vft-option.css +1 -1
- package/theme-style/vft-select-dropdown-v2.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-tabs.css +1 -1
- package/theme-style/vft-tabss.css +1 -1
- package/theme-style/vft-time-picker.css +1 -1
- package/theme-style/vft-time-select.css +1 -1
- package/web-types.json +1 -1
- package/es/components/select/useInput.d.ts +0 -5
- package/es/components/select/useInput.js +0 -20
- package/es/components/select/util.d.ts +0 -2
- package/es/components/select/util.js +0 -18
- package/lib/components/select/useInput.cjs +0 -1
- package/lib/components/select/useInput.d.ts +0 -5
- package/lib/components/select/util.cjs +0 -1
- package/lib/components/select/util.d.ts +0 -2
|
@@ -20,6 +20,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
20
20
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
21
21
|
__epPropKey: true;
|
|
22
22
|
};
|
|
23
|
+
readonly dateFormat: StringConstructor;
|
|
24
|
+
readonly timeFormat: StringConstructor;
|
|
25
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
26
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
23
27
|
}>> & Readonly<{
|
|
24
28
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
25
29
|
onPick?: ((...args: any[]) => any) | undefined;
|
|
@@ -30,6 +34,8 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
30
34
|
"set-picker-option": (...args: any[]) => void;
|
|
31
35
|
}, import("vue").PublicProps, {
|
|
32
36
|
readonly format: string;
|
|
37
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
38
|
+
readonly showWeekNumber: boolean;
|
|
33
39
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
34
40
|
P: {};
|
|
35
41
|
B: {};
|
|
@@ -57,12 +63,18 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
57
63
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
58
64
|
__epPropKey: true;
|
|
59
65
|
};
|
|
66
|
+
readonly dateFormat: StringConstructor;
|
|
67
|
+
readonly timeFormat: StringConstructor;
|
|
68
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
69
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
60
70
|
}>> & Readonly<{
|
|
61
71
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
62
72
|
onPick?: ((...args: any[]) => any) | undefined;
|
|
63
73
|
"onSet-picker-option"?: ((...args: any[]) => any) | undefined;
|
|
64
74
|
}>, {}, {}, {}, {}, {
|
|
65
75
|
readonly format: string;
|
|
76
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
77
|
+
readonly showWeekNumber: boolean;
|
|
66
78
|
}>;
|
|
67
79
|
__isFragment?: never;
|
|
68
80
|
__isTeleport?: never;
|
|
@@ -87,6 +99,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
87
99
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
88
100
|
__epPropKey: true;
|
|
89
101
|
};
|
|
102
|
+
readonly dateFormat: StringConstructor;
|
|
103
|
+
readonly timeFormat: StringConstructor;
|
|
104
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
105
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
90
106
|
}>> & Readonly<{
|
|
91
107
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
92
108
|
onPick?: ((...args: any[]) => any) | undefined;
|
|
@@ -97,6 +113,8 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
97
113
|
"set-picker-option": (...args: any[]) => void;
|
|
98
114
|
}, string, {
|
|
99
115
|
readonly format: string;
|
|
116
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
117
|
+
readonly showWeekNumber: boolean;
|
|
100
118
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
101
119
|
$slots: {
|
|
102
120
|
sidebar?(_: {
|
|
@@ -106,6 +124,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
106
124
|
})) | ({
|
|
107
125
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
108
126
|
readonly unlinkPanels: BooleanConstructor;
|
|
127
|
+
readonly visible: BooleanConstructor;
|
|
109
128
|
readonly parsedValue: {
|
|
110
129
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
111
130
|
readonly required: false;
|
|
@@ -118,6 +137,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
118
137
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
119
138
|
__epPropKey: true;
|
|
120
139
|
};
|
|
140
|
+
readonly dateFormat: StringConstructor;
|
|
141
|
+
readonly timeFormat: StringConstructor;
|
|
142
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
143
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
121
144
|
}>> & Readonly<{
|
|
122
145
|
"onCalendar-change"?: ((...args: any[]) => any) | undefined;
|
|
123
146
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -129,7 +152,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
129
152
|
pick: (...args: any[]) => void;
|
|
130
153
|
"set-picker-option": (...args: any[]) => void;
|
|
131
154
|
}, import("vue").PublicProps, {
|
|
155
|
+
readonly visible: boolean;
|
|
156
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
132
157
|
readonly unlinkPanels: boolean;
|
|
158
|
+
readonly showWeekNumber: boolean;
|
|
133
159
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
134
160
|
P: {};
|
|
135
161
|
B: {};
|
|
@@ -139,6 +165,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
139
165
|
Defaults: {};
|
|
140
166
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
141
167
|
readonly unlinkPanels: BooleanConstructor;
|
|
168
|
+
readonly visible: BooleanConstructor;
|
|
142
169
|
readonly parsedValue: {
|
|
143
170
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
144
171
|
readonly required: false;
|
|
@@ -151,19 +178,27 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
151
178
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
152
179
|
__epPropKey: true;
|
|
153
180
|
};
|
|
181
|
+
readonly dateFormat: StringConstructor;
|
|
182
|
+
readonly timeFormat: StringConstructor;
|
|
183
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
184
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
154
185
|
}>> & Readonly<{
|
|
155
186
|
"onCalendar-change"?: ((...args: any[]) => any) | undefined;
|
|
156
187
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
157
188
|
onPick?: ((...args: any[]) => any) | undefined;
|
|
158
189
|
"onSet-picker-option"?: ((...args: any[]) => any) | undefined;
|
|
159
190
|
}>, {}, {}, {}, {}, {
|
|
191
|
+
readonly visible: boolean;
|
|
192
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
160
193
|
readonly unlinkPanels: boolean;
|
|
194
|
+
readonly showWeekNumber: boolean;
|
|
161
195
|
}>;
|
|
162
196
|
__isFragment?: never;
|
|
163
197
|
__isTeleport?: never;
|
|
164
198
|
__isSuspense?: never;
|
|
165
199
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
166
200
|
readonly unlinkPanels: BooleanConstructor;
|
|
201
|
+
readonly visible: BooleanConstructor;
|
|
167
202
|
readonly parsedValue: {
|
|
168
203
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
169
204
|
readonly required: false;
|
|
@@ -176,6 +211,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
176
211
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
177
212
|
__epPropKey: true;
|
|
178
213
|
};
|
|
214
|
+
readonly dateFormat: StringConstructor;
|
|
215
|
+
readonly timeFormat: StringConstructor;
|
|
216
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
217
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
179
218
|
}>> & Readonly<{
|
|
180
219
|
"onCalendar-change"?: ((...args: any[]) => any) | undefined;
|
|
181
220
|
"onPanel-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -187,7 +226,10 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
187
226
|
pick: (...args: any[]) => void;
|
|
188
227
|
"set-picker-option": (...args: any[]) => void;
|
|
189
228
|
}, string, {
|
|
229
|
+
readonly visible: boolean;
|
|
230
|
+
readonly showNow: import("vft/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
190
231
|
readonly unlinkPanels: boolean;
|
|
232
|
+
readonly showWeekNumber: boolean;
|
|
191
233
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
192
234
|
$slots: {
|
|
193
235
|
sidebar?(_: {
|
|
@@ -197,6 +239,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
197
239
|
})) | ({
|
|
198
240
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
199
241
|
readonly unlinkPanels: BooleanConstructor;
|
|
242
|
+
readonly visible: BooleanConstructor;
|
|
200
243
|
readonly parsedValue: {
|
|
201
244
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
202
245
|
readonly required: false;
|
|
@@ -204,6 +247,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
204
247
|
__epPropKey: true;
|
|
205
248
|
};
|
|
206
249
|
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
250
|
+
readonly visible: boolean;
|
|
207
251
|
readonly unlinkPanels: boolean;
|
|
208
252
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
209
253
|
P: {};
|
|
@@ -214,6 +258,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
214
258
|
Defaults: {};
|
|
215
259
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
216
260
|
readonly unlinkPanels: BooleanConstructor;
|
|
261
|
+
readonly visible: BooleanConstructor;
|
|
217
262
|
readonly parsedValue: {
|
|
218
263
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
219
264
|
readonly required: false;
|
|
@@ -221,6 +266,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
221
266
|
__epPropKey: true;
|
|
222
267
|
};
|
|
223
268
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
269
|
+
readonly visible: boolean;
|
|
224
270
|
readonly unlinkPanels: boolean;
|
|
225
271
|
}>;
|
|
226
272
|
__isFragment?: never;
|
|
@@ -228,6 +274,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
228
274
|
__isSuspense?: never;
|
|
229
275
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
230
276
|
readonly unlinkPanels: BooleanConstructor;
|
|
277
|
+
readonly visible: BooleanConstructor;
|
|
231
278
|
readonly parsedValue: {
|
|
232
279
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
233
280
|
readonly required: false;
|
|
@@ -235,6 +282,7 @@ export declare const getPanel: (type: IDatePickerType) => ({
|
|
|
235
282
|
__epPropKey: true;
|
|
236
283
|
};
|
|
237
284
|
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
285
|
+
readonly visible: boolean;
|
|
238
286
|
readonly unlinkPanels: boolean;
|
|
239
287
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
240
288
|
$slots: {
|
|
@@ -1,17 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from "./date-picker-com/panel-date-pick.vue2.js";
|
|
2
2
|
import t from "./date-picker-com/panel-date-range.vue2.js";
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
import a from "./date-picker-com/panel-month-range.vue2.js";
|
|
4
|
+
import n from "./date-picker-com/panel-year-range.vue2.js";
|
|
5
|
+
const f = function(r) {
|
|
6
|
+
switch (r) {
|
|
6
7
|
case "daterange":
|
|
7
8
|
case "datetimerange":
|
|
8
9
|
return t;
|
|
9
10
|
case "monthrange":
|
|
11
|
+
return a;
|
|
12
|
+
case "yearrange":
|
|
10
13
|
return n;
|
|
11
14
|
default:
|
|
12
|
-
return
|
|
15
|
+
return e;
|
|
13
16
|
}
|
|
14
17
|
};
|
|
15
18
|
export {
|
|
16
|
-
|
|
19
|
+
f as getPanel
|
|
17
20
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
import type { DateCell } from '../date-picker.type';
|
|
3
3
|
export declare const basicCellProps: {
|
|
4
4
|
readonly cell: {
|
|
@@ -9,3 +9,4 @@ export declare const basicCellProps: {
|
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
export type BasicCellProps = ExtractPropTypes<typeof basicCellProps>;
|
|
12
|
+
export type BasicCellPropsPublic = __ExtractPublicPropTypes<typeof basicCellProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
1
2
|
import type { Dayjs } from 'dayjs';
|
|
2
|
-
import type { ExtractPropTypes } from 'vue';
|
|
3
3
|
export declare const basicDateTableProps: {
|
|
4
4
|
readonly cellClassName: {
|
|
5
5
|
readonly type: import("vue").PropType<(date: Date) => string>;
|
|
@@ -10,7 +10,7 @@ export declare const basicDateTableProps: {
|
|
|
10
10
|
readonly showWeekNumber: BooleanConstructor;
|
|
11
11
|
readonly selectionMode: import("vft/es/utils").EpPropFinalized<StringConstructor, string, unknown, string, boolean>;
|
|
12
12
|
readonly disabledDate: {
|
|
13
|
-
readonly type: import("vue").PropType<(
|
|
13
|
+
readonly type: import("vue").PropType<import("./shared").DisabledDateType>;
|
|
14
14
|
readonly required: false;
|
|
15
15
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
16
16
|
__epPropKey: true;
|
|
@@ -44,13 +44,18 @@ export declare const basicDateTableProps: {
|
|
|
44
44
|
selecting: boolean;
|
|
45
45
|
}, boolean>;
|
|
46
46
|
};
|
|
47
|
+
export declare const basicDateTableEmits: string[];
|
|
47
48
|
export type BasicDateTableProps = ExtractPropTypes<typeof basicDateTableProps>;
|
|
49
|
+
export type BasicDateTablePropsPublic = __ExtractPublicPropTypes<typeof basicDateTableProps>;
|
|
50
|
+
export type BasicDateTableEmits = typeof basicDateTableEmits;
|
|
48
51
|
export type RangePickerEmits = {
|
|
49
52
|
minDate: Dayjs;
|
|
50
53
|
maxDate: null;
|
|
51
54
|
};
|
|
52
55
|
export type DatePickerEmits = Dayjs;
|
|
53
56
|
export type DatesPickerEmits = Dayjs[];
|
|
57
|
+
export type MonthsPickerEmits = Dayjs[];
|
|
58
|
+
export type YearsPickerEmits = Dayjs[];
|
|
54
59
|
export type WeekPickerEmits = {
|
|
55
60
|
year: number;
|
|
56
61
|
week: number;
|
|
@@ -3,15 +3,16 @@ import "@vft/utils";
|
|
|
3
3
|
import "../../../utils/ns-cover.js";
|
|
4
4
|
import { buildProps as e, definePropType as o } from "../../../utils/vue/props/runtime.js";
|
|
5
5
|
import "vue";
|
|
6
|
-
import { selectionModeWithDefault as t, datePickerSharedProps as
|
|
7
|
-
const
|
|
8
|
-
...
|
|
6
|
+
import { selectionModeWithDefault as t, datePickerSharedProps as i } from "./shared.js";
|
|
7
|
+
const m = e({
|
|
8
|
+
...i,
|
|
9
9
|
cellClassName: {
|
|
10
10
|
type: o(Function)
|
|
11
11
|
},
|
|
12
12
|
showWeekNumber: Boolean,
|
|
13
13
|
selectionMode: t("date")
|
|
14
|
-
});
|
|
14
|
+
}), n = ["changerange", "pick", "select"];
|
|
15
15
|
export {
|
|
16
|
-
|
|
16
|
+
n as basicDateTableEmits,
|
|
17
|
+
m as basicDateTableProps
|
|
17
18
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
export declare const basicMonthTableProps: {
|
|
3
3
|
selectionMode: import("vft/es/utils").EpPropFinalized<StringConstructor, string, unknown, string, boolean>;
|
|
4
4
|
disabledDate: {
|
|
5
|
-
readonly type: import("vue").PropType<(
|
|
5
|
+
readonly type: import("vue").PropType<import("./shared").DisabledDateType>;
|
|
6
6
|
readonly required: false;
|
|
7
7
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
8
8
|
__epPropKey: true;
|
|
@@ -37,3 +37,4 @@ export declare const basicMonthTableProps: {
|
|
|
37
37
|
}, boolean>;
|
|
38
38
|
};
|
|
39
39
|
export type BasicMonthTableProps = ExtractPropTypes<typeof basicMonthTableProps>;
|
|
40
|
+
export type BasicMonthTablePropsPublic = __ExtractPublicPropTypes<typeof basicMonthTableProps>;
|
|
@@ -1,22 +1,40 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
export declare const basicYearTableProps: {
|
|
3
|
-
|
|
3
|
+
readonly selectionMode: import("vft/es/utils").EpPropFinalized<StringConstructor, string, unknown, string, boolean>;
|
|
4
|
+
readonly disabledDate: {
|
|
5
|
+
readonly type: import("vue").PropType<import("./shared").DisabledDateType>;
|
|
6
|
+
readonly required: false;
|
|
7
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
8
|
+
__epPropKey: true;
|
|
9
|
+
};
|
|
10
|
+
readonly date: {
|
|
4
11
|
readonly type: import("vue").PropType<import("dayjs").Dayjs>;
|
|
5
12
|
readonly required: true;
|
|
6
13
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
7
14
|
__epPropKey: true;
|
|
8
15
|
};
|
|
9
|
-
|
|
10
|
-
readonly type: import("vue").PropType<(
|
|
16
|
+
readonly minDate: {
|
|
17
|
+
readonly type: import("vue").PropType<import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => import("dayjs").Dayjs) | (() => import("dayjs").Dayjs | null) | (((new (...args: any[]) => import("dayjs").Dayjs) | (() => import("dayjs").Dayjs | null)) | null)[], unknown, unknown>>;
|
|
18
|
+
readonly required: false;
|
|
19
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
20
|
+
__epPropKey: true;
|
|
21
|
+
};
|
|
22
|
+
readonly maxDate: {
|
|
23
|
+
readonly type: import("vue").PropType<import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => import("dayjs").Dayjs) | (() => import("dayjs").Dayjs | null) | (((new (...args: any[]) => import("dayjs").Dayjs) | (() => import("dayjs").Dayjs | null)) | null)[], unknown, unknown>>;
|
|
11
24
|
readonly required: false;
|
|
12
25
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
13
26
|
__epPropKey: true;
|
|
14
27
|
};
|
|
15
|
-
parsedValue: {
|
|
28
|
+
readonly parsedValue: {
|
|
16
29
|
readonly type: import("vue").PropType<import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => import("dayjs").Dayjs | import("dayjs").Dayjs[]) | (() => import("dayjs").Dayjs | import("dayjs").Dayjs[]) | (((new (...args: any[]) => import("dayjs").Dayjs | import("dayjs").Dayjs[]) | (() => import("dayjs").Dayjs | import("dayjs").Dayjs[])) | null)[], unknown, unknown>>;
|
|
17
30
|
readonly required: false;
|
|
18
31
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
19
32
|
__epPropKey: true;
|
|
20
33
|
};
|
|
34
|
+
readonly rangeState: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => import("./shared").RangeState) | (() => import("./shared").RangeState) | (((new (...args: any[]) => import("./shared").RangeState) | (() => import("./shared").RangeState)) | null)[], unknown, unknown, () => {
|
|
35
|
+
endDate: null;
|
|
36
|
+
selecting: boolean;
|
|
37
|
+
}, boolean>;
|
|
21
38
|
};
|
|
22
39
|
export type BasicYearTableProps = ExtractPropTypes<typeof basicYearTableProps>;
|
|
40
|
+
export type BasicYearTablePropsPublic = __ExtractPublicPropTypes<typeof basicYearTableProps>;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import "@vueuse/core";
|
|
2
2
|
import "@vft/utils";
|
|
3
3
|
import "../../../utils/ns-cover.js";
|
|
4
|
-
import { buildProps as
|
|
4
|
+
import { buildProps as o } from "../../../utils/vue/props/runtime.js";
|
|
5
5
|
import "vue";
|
|
6
|
-
import { datePickerSharedProps as
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
parsedValue: p
|
|
6
|
+
import { selectionModeWithDefault as r, datePickerSharedProps as e } from "./shared.js";
|
|
7
|
+
const c = o({
|
|
8
|
+
...e,
|
|
9
|
+
selectionMode: r("year")
|
|
11
10
|
});
|
|
12
11
|
export {
|
|
13
12
|
c as basicYearTableProps
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
import type { IDatePickerType } from '../date-picker.type';
|
|
3
3
|
export declare const datePickerProps: {
|
|
4
|
-
readonly type: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange") | (() => IDatePickerType) | (((new (...args: any[]) => "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange") | (() => IDatePickerType)) | null)[], unknown, unknown, "date", boolean>;
|
|
4
|
+
readonly type: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "months" | "years" | "yearrange") | (() => IDatePickerType) | (((new (...args: any[]) => "year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "months" | "years" | "yearrange") | (() => IDatePickerType)) | null)[], unknown, unknown, "date", boolean>;
|
|
5
5
|
readonly disabledDate: {
|
|
6
6
|
readonly type: import("vue").PropType<Function>;
|
|
7
7
|
readonly required: false;
|
|
@@ -15,25 +15,31 @@ export declare const datePickerProps: {
|
|
|
15
15
|
__epPropKey: true;
|
|
16
16
|
};
|
|
17
17
|
readonly shortcuts: import("vft/es/utils").EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
18
|
-
readonly arrowControl:
|
|
19
|
-
readonly label: import("vft/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
18
|
+
readonly arrowControl: BooleanConstructor;
|
|
20
19
|
readonly tabindex: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | (((new (...args: any[]) => string | number) | (() => string | number)) | null)[], unknown, unknown, 0, boolean>;
|
|
21
20
|
readonly validateEvent: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
22
21
|
readonly unlinkPanels: BooleanConstructor;
|
|
22
|
+
readonly placement: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("@popperjs/core").Placement) | (((new (...args: any[]) => "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("@popperjs/core").Placement)) | null)[], import("@popperjs/core").Placement, unknown, "bottom", boolean>;
|
|
23
|
+
readonly fallbackPlacements: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => import("@popperjs/core").Placement[]) | (() => import("@popperjs/core").Placement[]) | (((new (...args: any[]) => import("@popperjs/core").Placement[]) | (() => import("@popperjs/core").Placement[])) | null)[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
24
|
+
readonly emptyValues: ArrayConstructor;
|
|
25
|
+
readonly valueOnClear: import("vft/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
26
|
+
readonly ariaLabel: StringConstructor;
|
|
27
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
28
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
23
29
|
readonly disabledHours: {
|
|
24
|
-
readonly type: import("vue").PropType<import("
|
|
30
|
+
readonly type: import("vue").PropType<import("vft/es/components/time-picker").GetDisabledHours>;
|
|
25
31
|
readonly required: false;
|
|
26
32
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
27
33
|
__epPropKey: true;
|
|
28
34
|
};
|
|
29
35
|
readonly disabledMinutes: {
|
|
30
|
-
readonly type: import("vue").PropType<import("
|
|
36
|
+
readonly type: import("vue").PropType<import("vft/es/components/time-picker").GetDisabledMinutes>;
|
|
31
37
|
readonly required: false;
|
|
32
38
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
33
39
|
__epPropKey: true;
|
|
34
40
|
};
|
|
35
41
|
readonly disabledSeconds: {
|
|
36
|
-
readonly type: import("vue").PropType<import("
|
|
42
|
+
readonly type: import("vue").PropType<import("vft/es/components/time-picker").GetDisabledSeconds>;
|
|
37
43
|
readonly required: false;
|
|
38
44
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
39
45
|
__epPropKey: true;
|
|
@@ -44,10 +50,17 @@ export declare const datePickerProps: {
|
|
|
44
50
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
45
51
|
__epPropKey: true;
|
|
46
52
|
};
|
|
47
|
-
readonly name:
|
|
53
|
+
readonly name: {
|
|
54
|
+
readonly type: import("vue").PropType<import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import("vft/es/components/time-picker").SingleOrRange<string>) | (((new (...args: any[]) => string | [string, string]) | (() => import("vft/es/components/time-picker").SingleOrRange<string>)) | null)[], unknown, unknown>>;
|
|
55
|
+
readonly required: false;
|
|
56
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
+
__epPropKey: true;
|
|
58
|
+
};
|
|
48
59
|
readonly popperClass: import("vft/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
49
60
|
readonly format: StringConstructor;
|
|
50
61
|
readonly valueFormat: StringConstructor;
|
|
62
|
+
readonly dateFormat: StringConstructor;
|
|
63
|
+
readonly timeFormat: StringConstructor;
|
|
51
64
|
readonly clearable: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
52
65
|
readonly clearIcon: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | (((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component)) | null)[], unknown, unknown, "icon-circle-close", boolean>;
|
|
53
66
|
readonly editable: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
@@ -58,11 +71,11 @@ export declare const datePickerProps: {
|
|
|
58
71
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
59
72
|
__epPropKey: true;
|
|
60
73
|
};
|
|
61
|
-
readonly readonly:
|
|
62
|
-
readonly disabled:
|
|
74
|
+
readonly readonly: BooleanConstructor;
|
|
75
|
+
readonly disabled: BooleanConstructor;
|
|
63
76
|
readonly placeholder: import("vft/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
64
77
|
readonly popperOptions: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => Partial<import("@popperjs/core").Options>) | (() => Partial<import("@popperjs/core").Options>) | (((new (...args: any[]) => Partial<import("@popperjs/core").Options>) | (() => Partial<import("@popperjs/core").Options>)) | null)[], unknown, unknown, () => {}, boolean>;
|
|
65
|
-
readonly modelValue: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | Date | [import("vft/es/components/time-picker").DateModelType, import("vft/es/components/time-picker").DateModelType]) | (() => import("vft/es/components/time-picker").ModelValueType) | (((new (...args: any[]) => string | number | Date | [import("vft/es/components/time-picker").DateModelType, import("vft/es/components/time-picker").DateModelType]) | (() => import("vft/es/components/time-picker").ModelValueType)) | null)[], unknown, unknown, "", boolean>;
|
|
78
|
+
readonly modelValue: import("vft/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import("vft/es/components/time-picker").DateModelType, import("vft/es/components/time-picker").DateModelType]) | (() => import("vft/es/components/time-picker").ModelValueType) | (((new (...args: any[]) => string | number | string[] | Date | [import("vft/es/components/time-picker").DateModelType, import("vft/es/components/time-picker").DateModelType]) | (() => import("vft/es/components/time-picker").ModelValueType)) | null)[], unknown, unknown, "", boolean>;
|
|
66
79
|
readonly rangeSeparator: import("vft/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
67
80
|
readonly startPlaceholder: StringConstructor;
|
|
68
81
|
readonly endPlaceholder: StringConstructor;
|
|
@@ -78,6 +91,7 @@ export declare const datePickerProps: {
|
|
|
78
91
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
79
92
|
__epPropKey: true;
|
|
80
93
|
};
|
|
81
|
-
readonly isRange:
|
|
94
|
+
readonly isRange: BooleanConstructor;
|
|
82
95
|
};
|
|
83
96
|
export type DatePickerProps = ExtractPropTypes<typeof datePickerProps>;
|
|
97
|
+
export type DatePickerPropsPublic = __ExtractPublicPropTypes<typeof datePickerProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
1
2
|
import type { Dayjs } from 'dayjs';
|
|
2
|
-
import type { ExtractPropTypes } from 'vue';
|
|
3
3
|
export declare const panelDatePickProps: {
|
|
4
4
|
readonly parsedValue: {
|
|
5
5
|
readonly type: import("vue").PropType<import("vft/es/utils").EpPropMergeType<(new (...args: any[]) => Dayjs | Dayjs[]) | (() => Dayjs | Dayjs[]) | (((new (...args: any[]) => Dayjs | Dayjs[]) | (() => Dayjs | Dayjs[])) | null)[], unknown, unknown>>;
|
|
@@ -20,5 +20,10 @@ export declare const panelDatePickProps: {
|
|
|
20
20
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
21
21
|
__epPropKey: true;
|
|
22
22
|
};
|
|
23
|
+
readonly dateFormat: StringConstructor;
|
|
24
|
+
readonly timeFormat: StringConstructor;
|
|
25
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
26
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
23
27
|
};
|
|
24
28
|
export type PanelDatePickProps = ExtractPropTypes<typeof panelDatePickProps>;
|
|
29
|
+
export type PanelDatePickPropsPublic = __ExtractPublicPropTypes<typeof panelDatePickProps>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
export declare const panelDateRangeProps: {
|
|
3
3
|
readonly unlinkPanels: BooleanConstructor;
|
|
4
|
+
readonly visible: BooleanConstructor;
|
|
4
5
|
readonly parsedValue: {
|
|
5
6
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
6
7
|
readonly required: false;
|
|
@@ -13,5 +14,10 @@ export declare const panelDateRangeProps: {
|
|
|
13
14
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
14
15
|
__epPropKey: true;
|
|
15
16
|
};
|
|
17
|
+
readonly dateFormat: StringConstructor;
|
|
18
|
+
readonly timeFormat: StringConstructor;
|
|
19
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
20
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
16
21
|
};
|
|
17
22
|
export type PanelDateRangeProps = ExtractPropTypes<typeof panelDateRangeProps>;
|
|
23
|
+
export type PanelDateRangePropsPublic = __ExtractPublicPropTypes<typeof panelDateRangeProps>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { ExtractPropTypes } from 'vue';
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
export declare const panelMonthRangeProps: {
|
|
3
3
|
readonly unlinkPanels: BooleanConstructor;
|
|
4
|
+
readonly visible: BooleanConstructor;
|
|
4
5
|
readonly parsedValue: {
|
|
5
6
|
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
6
7
|
readonly required: false;
|
|
@@ -10,3 +11,4 @@ export declare const panelMonthRangeProps: {
|
|
|
10
11
|
};
|
|
11
12
|
export declare const panelMonthRangeEmits: string[];
|
|
12
13
|
export type PanelMonthRangeProps = ExtractPropTypes<typeof panelMonthRangeProps>;
|
|
14
|
+
export type PanelMonthRangePropsPublic = __ExtractPublicPropTypes<typeof panelMonthRangeProps>;
|
|
@@ -4,10 +4,14 @@ import "../../../utils/ns-cover.js";
|
|
|
4
4
|
import { buildProps as o } from "../../../utils/vue/props/runtime.js";
|
|
5
5
|
import "vue";
|
|
6
6
|
import { panelRangeSharedProps as p } from "./shared.js";
|
|
7
|
-
const
|
|
7
|
+
const m = o({
|
|
8
8
|
...p
|
|
9
|
-
}), s = [
|
|
9
|
+
}), s = [
|
|
10
|
+
"pick",
|
|
11
|
+
"set-picker-option",
|
|
12
|
+
"calendar-change"
|
|
13
|
+
];
|
|
10
14
|
export {
|
|
11
15
|
s as panelMonthRangeEmits,
|
|
12
|
-
|
|
16
|
+
m as panelMonthRangeProps
|
|
13
17
|
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
2
|
+
export declare const panelYearRangeProps: {
|
|
3
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
4
|
+
readonly visible: BooleanConstructor;
|
|
5
|
+
readonly parsedValue: {
|
|
6
|
+
readonly type: import("vue").PropType<import("dayjs").Dayjs[]>;
|
|
7
|
+
readonly required: false;
|
|
8
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
9
|
+
__epPropKey: true;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const panelYearRangeEmits: string[];
|
|
13
|
+
export type PanelYearRangeProps = ExtractPropTypes<typeof panelYearRangeProps>;
|
|
14
|
+
export type PanelYearRangePropsPublic = __ExtractPublicPropTypes<typeof panelYearRangeProps>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import "@vueuse/core";
|
|
2
|
+
import "@vft/utils";
|
|
3
|
+
import "../../../utils/ns-cover.js";
|
|
4
|
+
import { buildProps as r } from "../../../utils/vue/props/runtime.js";
|
|
5
|
+
import "vue";
|
|
6
|
+
import { panelRangeSharedProps as o } from "./shared.js";
|
|
7
|
+
const m = r({
|
|
8
|
+
...o
|
|
9
|
+
}), s = [
|
|
10
|
+
"pick",
|
|
11
|
+
"set-picker-option",
|
|
12
|
+
"calendar-change"
|
|
13
|
+
];
|
|
14
|
+
export {
|
|
15
|
+
s as panelYearRangeEmits,
|
|
16
|
+
m as panelYearRangeProps
|
|
17
|
+
};
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
|
1
2
|
import type { Dayjs } from 'dayjs';
|
|
2
|
-
import type { ExtractPropTypes } from 'vue';
|
|
3
3
|
declare const selectionModes: string[];
|
|
4
4
|
export type RangeState = {
|
|
5
5
|
endDate: null | Dayjs;
|
|
6
6
|
selecting: boolean;
|
|
7
7
|
};
|
|
8
|
+
export type DisabledDateType = (date: Date) => boolean;
|
|
8
9
|
export declare const datePickerSharedProps: {
|
|
9
10
|
readonly disabledDate: {
|
|
10
|
-
readonly type: import("vue").PropType<
|
|
11
|
+
readonly type: import("vue").PropType<DisabledDateType>;
|
|
11
12
|
readonly required: false;
|
|
12
13
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
13
14
|
__epPropKey: true;
|
|
@@ -48,9 +49,14 @@ export declare const panelSharedProps: {
|
|
|
48
49
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
50
|
__epPropKey: true;
|
|
50
51
|
};
|
|
52
|
+
readonly dateFormat: StringConstructor;
|
|
53
|
+
readonly timeFormat: StringConstructor;
|
|
54
|
+
readonly showNow: import("vft/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
55
|
+
readonly showWeekNumber: BooleanConstructor;
|
|
51
56
|
};
|
|
52
57
|
export declare const panelRangeSharedProps: {
|
|
53
58
|
readonly unlinkPanels: BooleanConstructor;
|
|
59
|
+
readonly visible: BooleanConstructor;
|
|
54
60
|
readonly parsedValue: {
|
|
55
61
|
readonly type: import("vue").PropType<Dayjs[]>;
|
|
56
62
|
readonly required: false;
|
|
@@ -68,4 +74,5 @@ export declare const rangePickerSharedEmits: {
|
|
|
68
74
|
};
|
|
69
75
|
export type RangePickerSharedEmits = typeof rangePickerSharedEmits;
|
|
70
76
|
export type PanelRangeSharedProps = ExtractPropTypes<typeof panelRangeSharedProps>;
|
|
77
|
+
export type PanelRangeSharedPropsPublic = __ExtractPublicPropTypes<typeof panelRangeSharedProps>;
|
|
71
78
|
export {};
|