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
|
@@ -1,63 +1,47 @@
|
|
|
1
|
-
import type { CSSProperties, ExtractPropTypes } from 'vue';
|
|
2
1
|
import { nextTick } from 'vue';
|
|
3
|
-
import type {
|
|
4
|
-
import type { Option } from './select.types';
|
|
5
|
-
|
|
2
|
+
import type { SelectDropdownInstance } from './select-dropdown';
|
|
3
|
+
import type { Option, OptionType, SelectStates } from './select.types';
|
|
4
|
+
import type { SelectV2Props } from './token';
|
|
5
|
+
declare const useSelect: (props: SelectV2Props, emit: any) => {
|
|
6
|
+
inputId: import("vue").Ref<string | undefined, string | undefined>;
|
|
6
7
|
collapseTagSize: import("vue").ComputedRef<"default" | "small">;
|
|
7
8
|
currentPlaceholder: import("vue").ComputedRef<string>;
|
|
8
9
|
expanded: import("vue").Ref<boolean, boolean>;
|
|
9
10
|
emptyText: import("vue").ComputedRef<string | false | null>;
|
|
10
11
|
popupHeight: import("vue").ComputedRef<number>;
|
|
11
12
|
debounce: import("vue").ComputedRef<0 | 300>;
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
allOptions: import("vue").ComputedRef<OptionType[]>;
|
|
14
|
+
filteredOptions: import("vue").Ref<({
|
|
15
|
+
[x: string]: any;
|
|
16
|
+
} | {
|
|
17
|
+
[x: string]: any;
|
|
18
|
+
created?: boolean | undefined;
|
|
19
|
+
})[], OptionType[] | ({
|
|
20
|
+
[x: string]: any;
|
|
21
|
+
} | {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
created?: boolean | undefined;
|
|
24
|
+
})[]>;
|
|
25
|
+
iconComponent: import("vue").ComputedRef<"" | "ico-ep:arrow-down">;
|
|
14
26
|
iconReverse: import("vue").ComputedRef<string>;
|
|
15
|
-
|
|
27
|
+
tagStyle: import("vue").ComputedRef<{
|
|
28
|
+
maxWidth: string;
|
|
29
|
+
}>;
|
|
30
|
+
collapseTagStyle: import("vue").ComputedRef<{
|
|
31
|
+
maxWidth: string;
|
|
32
|
+
}>;
|
|
16
33
|
popperSize: import("vue").Ref<number, number>;
|
|
17
34
|
dropdownMenuVisible: import("vue").WritableComputedRef<boolean, boolean>;
|
|
18
35
|
hasModelValue: import("vue").ComputedRef<boolean>;
|
|
19
36
|
shouldShowPlaceholder: import("vue").ComputedRef<boolean>;
|
|
20
|
-
selectDisabled: import("vue").ComputedRef<boolean
|
|
37
|
+
selectDisabled: import("vue").ComputedRef<boolean>;
|
|
21
38
|
selectSize: import("vue").ComputedRef<"" | "default" | "small" | "large">;
|
|
39
|
+
needStatusIcon: import("vue").ComputedRef<boolean>;
|
|
22
40
|
showClearBtn: import("vue").ComputedRef<boolean>;
|
|
23
|
-
states:
|
|
24
|
-
|
|
25
|
-
displayInputValue: string;
|
|
26
|
-
calculatedWidth: number;
|
|
27
|
-
cachedPlaceholder: string;
|
|
28
|
-
cachedOptions: {
|
|
29
|
-
[x: string]: any;
|
|
30
|
-
label: string;
|
|
31
|
-
created?: boolean | undefined;
|
|
32
|
-
value: any;
|
|
33
|
-
}[];
|
|
34
|
-
createdOptions: {
|
|
35
|
-
[x: string]: any;
|
|
36
|
-
label: string;
|
|
37
|
-
created?: boolean | undefined;
|
|
38
|
-
value: any;
|
|
39
|
-
}[];
|
|
40
|
-
createdLabel: string;
|
|
41
|
-
createdSelected: boolean;
|
|
42
|
-
currentPlaceholder: string;
|
|
43
|
-
hoveringIndex: number;
|
|
44
|
-
comboBoxHovering: boolean;
|
|
45
|
-
isOnComposition: boolean;
|
|
46
|
-
isSilentBlur: boolean;
|
|
47
|
-
isComposing: boolean;
|
|
48
|
-
inputLength: number;
|
|
49
|
-
selectWidth: number;
|
|
50
|
-
initialInputHeight: number;
|
|
51
|
-
previousQuery: null;
|
|
52
|
-
previousValue: undefined;
|
|
53
|
-
query: string;
|
|
54
|
-
selectedLabel: string;
|
|
55
|
-
softFocus: boolean;
|
|
56
|
-
tagInMultiLine: boolean;
|
|
57
|
-
};
|
|
58
|
-
tagMaxWidth: import("vue").ComputedRef<number>;
|
|
41
|
+
states: SelectStates;
|
|
42
|
+
isFocused: import("vue").Ref<boolean, boolean>;
|
|
59
43
|
nsSelect: {
|
|
60
|
-
namespace: import("vue").
|
|
44
|
+
namespace: import("vue").ComputedRef<string>;
|
|
61
45
|
b: (blockSuffix?: string) => string;
|
|
62
46
|
e: (element?: string) => string;
|
|
63
47
|
m: (modifier?: string) => string;
|
|
@@ -69,13 +53,13 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
69
53
|
(name: string, state: boolean | undefined): string;
|
|
70
54
|
(name: string): string;
|
|
71
55
|
};
|
|
72
|
-
cssVar: (object: Record<string, string
|
|
56
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
73
57
|
cssVarName: (name: string) => string;
|
|
74
|
-
cssVarBlock: (object: Record<string, string
|
|
58
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
75
59
|
cssVarBlockName: (name: string) => string;
|
|
76
60
|
};
|
|
77
61
|
nsInput: {
|
|
78
|
-
namespace: import("vue").
|
|
62
|
+
namespace: import("vue").ComputedRef<string>;
|
|
79
63
|
b: (blockSuffix?: string) => string;
|
|
80
64
|
e: (element?: string) => string;
|
|
81
65
|
m: (modifier?: string) => string;
|
|
@@ -87,20 +71,19 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
87
71
|
(name: string, state: boolean | undefined): string;
|
|
88
72
|
(name: string): string;
|
|
89
73
|
};
|
|
90
|
-
cssVar: (object: Record<string, string
|
|
74
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
91
75
|
cssVarName: (name: string) => string;
|
|
92
|
-
cssVarBlock: (object: Record<string, string
|
|
76
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
93
77
|
cssVarBlockName: (name: string) => string;
|
|
94
78
|
};
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
popper: import("vue").Ref<({
|
|
79
|
+
inputRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
80
|
+
menuRef: import("vue").Ref<SelectDropdownInstance | undefined, SelectDropdownInstance | undefined>;
|
|
81
|
+
tagMenuRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
82
|
+
tooltipRef: import("vue").Ref<({
|
|
100
83
|
$: import("vue").ComponentInternalInstance;
|
|
101
84
|
$data: {};
|
|
102
85
|
$props: Partial<{}> & Omit<{
|
|
103
|
-
readonly style?: string | false | CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
86
|
+
readonly style?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
104
87
|
readonly content?: string | undefined;
|
|
105
88
|
readonly zIndex?: number | undefined;
|
|
106
89
|
readonly offset?: number | undefined;
|
|
@@ -117,14 +100,12 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
117
100
|
readonly ariaLabel?: string | undefined;
|
|
118
101
|
readonly role?: "dialog" | "grid" | "group" | "listbox" | "menu" | "navigation" | "tooltip" | "tree" | undefined;
|
|
119
102
|
readonly disabled?: boolean | undefined;
|
|
120
|
-
readonly showAfter?: number | undefined;
|
|
121
|
-
readonly hideAfter?: number | undefined;
|
|
122
|
-
readonly open?: boolean | undefined;
|
|
123
103
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
124
104
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
125
105
|
readonly effect?: "light" | "dark" | undefined;
|
|
126
106
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
127
|
-
readonly
|
|
107
|
+
readonly teleported?: boolean | undefined;
|
|
108
|
+
readonly open?: boolean | undefined;
|
|
128
109
|
readonly visible?: boolean | undefined;
|
|
129
110
|
readonly arrowOffset?: number | undefined;
|
|
130
111
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -136,15 +117,17 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
136
117
|
readonly focusOnShow?: boolean | undefined;
|
|
137
118
|
readonly trapping?: boolean | undefined;
|
|
138
119
|
readonly popperClass?: import("../types").ClassType | undefined;
|
|
139
|
-
readonly popperStyle?: string | false | CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
120
|
+
readonly popperStyle?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
140
121
|
readonly referenceEl?: HTMLElement | undefined;
|
|
141
122
|
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
142
123
|
readonly stopPopperMouseEvent?: boolean | undefined;
|
|
143
124
|
readonly virtualTriggering?: boolean | undefined;
|
|
144
125
|
readonly virtualRef?: import("vft/es/vft").Measurable | undefined;
|
|
126
|
+
readonly showAfter?: number | undefined;
|
|
127
|
+
readonly hideAfter?: number | undefined;
|
|
128
|
+
readonly appendTo?: (HTMLElement | string) | undefined;
|
|
145
129
|
readonly rawContent?: boolean | undefined;
|
|
146
130
|
readonly persistent?: boolean | undefined;
|
|
147
|
-
readonly teleported?: boolean | undefined;
|
|
148
131
|
readonly triggerKeys?: string[] | undefined;
|
|
149
132
|
readonly showArrow?: boolean | undefined;
|
|
150
133
|
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -168,7 +151,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
168
151
|
$host: Element | null;
|
|
169
152
|
$emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
170
153
|
$el: any;
|
|
171
|
-
$options: import("vue").ComponentOptionsBase<Readonly<ExtractPropTypes<{
|
|
154
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
172
155
|
role: {
|
|
173
156
|
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
174
157
|
};
|
|
@@ -233,7 +216,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
233
216
|
type: import("vue").PropType<"fixed" | "absolute">;
|
|
234
217
|
};
|
|
235
218
|
style: {
|
|
236
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
219
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
237
220
|
};
|
|
238
221
|
className: {
|
|
239
222
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
@@ -260,7 +243,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
260
243
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
261
244
|
};
|
|
262
245
|
popperStyle: {
|
|
263
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
246
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
264
247
|
};
|
|
265
248
|
referenceEl: {
|
|
266
249
|
type: import("vue").PropType<HTMLElement>;
|
|
@@ -320,7 +303,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
320
303
|
}>, {
|
|
321
304
|
popperRef: import("vue").Ref<any, any>;
|
|
322
305
|
contentRef: import("vue").Ref<any, any>;
|
|
323
|
-
isFocusInsideContent: () =>
|
|
306
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
324
307
|
updatePopper: () => void;
|
|
325
308
|
onOpen: (event?: Event) => void;
|
|
326
309
|
onClose: (event?: Event) => void;
|
|
@@ -352,7 +335,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
352
335
|
$forceUpdate: () => void;
|
|
353
336
|
$nextTick: typeof nextTick;
|
|
354
337
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
355
|
-
} & Readonly<{}> & Omit<Readonly<ExtractPropTypes<{
|
|
338
|
+
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
356
339
|
role: {
|
|
357
340
|
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
358
341
|
};
|
|
@@ -417,7 +400,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
417
400
|
type: import("vue").PropType<"fixed" | "absolute">;
|
|
418
401
|
};
|
|
419
402
|
style: {
|
|
420
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
403
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
421
404
|
};
|
|
422
405
|
className: {
|
|
423
406
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
@@ -444,7 +427,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
444
427
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
445
428
|
};
|
|
446
429
|
popperStyle: {
|
|
447
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
430
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
448
431
|
};
|
|
449
432
|
referenceEl: {
|
|
450
433
|
type: import("vue").PropType<HTMLElement>;
|
|
@@ -504,7 +487,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
504
487
|
}>, "onClose" | "hide" | "contentRef" | "updatePopper" | "onOpen" | "isFocusInsideContent" | "popperRef"> & import("vue").ShallowUnwrapRef<{
|
|
505
488
|
popperRef: import("vue").Ref<any, any>;
|
|
506
489
|
contentRef: import("vue").Ref<any, any>;
|
|
507
|
-
isFocusInsideContent: () =>
|
|
490
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
508
491
|
updatePopper: () => void;
|
|
509
492
|
onOpen: (event?: Event) => void;
|
|
510
493
|
onClose: (event?: Event) => void;
|
|
@@ -514,11 +497,11 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
514
497
|
default?(_: {}): any;
|
|
515
498
|
content?(_: {}): any;
|
|
516
499
|
};
|
|
517
|
-
}) |
|
|
500
|
+
}) | undefined, ({
|
|
518
501
|
$: import("vue").ComponentInternalInstance;
|
|
519
502
|
$data: {};
|
|
520
503
|
$props: Partial<{}> & Omit<{
|
|
521
|
-
readonly style?: string | false | CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
504
|
+
readonly style?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
522
505
|
readonly content?: string | undefined;
|
|
523
506
|
readonly zIndex?: number | undefined;
|
|
524
507
|
readonly offset?: number | undefined;
|
|
@@ -535,14 +518,12 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
535
518
|
readonly ariaLabel?: string | undefined;
|
|
536
519
|
readonly role?: "dialog" | "grid" | "group" | "listbox" | "menu" | "navigation" | "tooltip" | "tree" | undefined;
|
|
537
520
|
readonly disabled?: boolean | undefined;
|
|
538
|
-
readonly showAfter?: number | undefined;
|
|
539
|
-
readonly hideAfter?: number | undefined;
|
|
540
|
-
readonly open?: boolean | undefined;
|
|
541
521
|
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
542
522
|
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
543
523
|
readonly effect?: "light" | "dark" | undefined;
|
|
544
524
|
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
545
|
-
readonly
|
|
525
|
+
readonly teleported?: boolean | undefined;
|
|
526
|
+
readonly open?: boolean | undefined;
|
|
546
527
|
readonly visible?: boolean | undefined;
|
|
547
528
|
readonly arrowOffset?: number | undefined;
|
|
548
529
|
readonly gpuAcceleration?: boolean | undefined;
|
|
@@ -554,15 +535,17 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
554
535
|
readonly focusOnShow?: boolean | undefined;
|
|
555
536
|
readonly trapping?: boolean | undefined;
|
|
556
537
|
readonly popperClass?: import("../types").ClassType | undefined;
|
|
557
|
-
readonly popperStyle?: string | false | CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
538
|
+
readonly popperStyle?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
558
539
|
readonly referenceEl?: HTMLElement | undefined;
|
|
559
540
|
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
560
541
|
readonly stopPopperMouseEvent?: boolean | undefined;
|
|
561
542
|
readonly virtualTriggering?: boolean | undefined;
|
|
562
543
|
readonly virtualRef?: import("vft/es/vft").Measurable | undefined;
|
|
544
|
+
readonly showAfter?: number | undefined;
|
|
545
|
+
readonly hideAfter?: number | undefined;
|
|
546
|
+
readonly appendTo?: (HTMLElement | string) | undefined;
|
|
563
547
|
readonly rawContent?: boolean | undefined;
|
|
564
548
|
readonly persistent?: boolean | undefined;
|
|
565
|
-
readonly teleported?: boolean | undefined;
|
|
566
549
|
readonly triggerKeys?: string[] | undefined;
|
|
567
550
|
readonly showArrow?: boolean | undefined;
|
|
568
551
|
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -586,7 +569,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
586
569
|
$host: Element | null;
|
|
587
570
|
$emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
588
571
|
$el: any;
|
|
589
|
-
$options: import("vue").ComponentOptionsBase<Readonly<ExtractPropTypes<{
|
|
572
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
590
573
|
role: {
|
|
591
574
|
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
592
575
|
};
|
|
@@ -651,7 +634,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
651
634
|
type: import("vue").PropType<"fixed" | "absolute">;
|
|
652
635
|
};
|
|
653
636
|
style: {
|
|
654
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
637
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
655
638
|
};
|
|
656
639
|
className: {
|
|
657
640
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
@@ -678,7 +661,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
678
661
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
679
662
|
};
|
|
680
663
|
popperStyle: {
|
|
681
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
664
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
682
665
|
};
|
|
683
666
|
referenceEl: {
|
|
684
667
|
type: import("vue").PropType<HTMLElement>;
|
|
@@ -738,7 +721,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
738
721
|
}>, {
|
|
739
722
|
popperRef: import("vue").Ref<any, any>;
|
|
740
723
|
contentRef: import("vue").Ref<any, any>;
|
|
741
|
-
isFocusInsideContent: () =>
|
|
724
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
742
725
|
updatePopper: () => void;
|
|
743
726
|
onOpen: (event?: Event) => void;
|
|
744
727
|
onClose: (event?: Event) => void;
|
|
@@ -770,7 +753,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
770
753
|
$forceUpdate: () => void;
|
|
771
754
|
$nextTick: typeof nextTick;
|
|
772
755
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
773
|
-
} & Readonly<{}> & Omit<Readonly<ExtractPropTypes<{
|
|
756
|
+
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
774
757
|
role: {
|
|
775
758
|
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
776
759
|
};
|
|
@@ -835,7 +818,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
835
818
|
type: import("vue").PropType<"fixed" | "absolute">;
|
|
836
819
|
};
|
|
837
820
|
style: {
|
|
838
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
821
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
839
822
|
};
|
|
840
823
|
className: {
|
|
841
824
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
@@ -862,7 +845,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
862
845
|
type: import("vue").PropType<import("../types").ClassType>;
|
|
863
846
|
};
|
|
864
847
|
popperStyle: {
|
|
865
|
-
type: import("vue").PropType<string | false | CSSProperties | import("vue").StyleValue[] | null>;
|
|
848
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
866
849
|
};
|
|
867
850
|
referenceEl: {
|
|
868
851
|
type: import("vue").PropType<HTMLElement>;
|
|
@@ -922,7 +905,7 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
922
905
|
}>, "onClose" | "hide" | "contentRef" | "updatePopper" | "onOpen" | "isFocusInsideContent" | "popperRef"> & import("vue").ShallowUnwrapRef<{
|
|
923
906
|
popperRef: import("vue").Ref<any, any>;
|
|
924
907
|
contentRef: import("vue").Ref<any, any>;
|
|
925
|
-
isFocusInsideContent: () =>
|
|
908
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
926
909
|
updatePopper: () => void;
|
|
927
910
|
onOpen: (event?: Event) => void;
|
|
928
911
|
onClose: (event?: Event) => void;
|
|
@@ -932,46 +915,882 @@ declare const useSelect: (props: ExtractPropTypes<typeof SelectProps>, emit: any
|
|
|
932
915
|
default?(_: {}): any;
|
|
933
916
|
content?(_: {}): any;
|
|
934
917
|
};
|
|
935
|
-
}) |
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
918
|
+
}) | undefined>;
|
|
919
|
+
tagTooltipRef: import("vue").Ref<({
|
|
920
|
+
$: import("vue").ComponentInternalInstance;
|
|
921
|
+
$data: {};
|
|
922
|
+
$props: Partial<{}> & Omit<{
|
|
923
|
+
readonly style?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
924
|
+
readonly content?: string | undefined;
|
|
925
|
+
readonly zIndex?: number | undefined;
|
|
926
|
+
readonly offset?: number | undefined;
|
|
927
|
+
readonly transition?: string | undefined;
|
|
928
|
+
readonly onBlur?: Function | undefined;
|
|
929
|
+
readonly onClick?: Function | undefined;
|
|
930
|
+
readonly onContextmenu?: Function | undefined;
|
|
931
|
+
readonly onFocus?: Function | undefined;
|
|
932
|
+
readonly onKeydown?: Function | undefined;
|
|
933
|
+
readonly onMouseenter?: Function | undefined;
|
|
934
|
+
readonly onMouseleave?: Function | undefined;
|
|
935
|
+
readonly className?: import("../types").ClassType | undefined;
|
|
936
|
+
readonly id?: string | undefined;
|
|
937
|
+
readonly ariaLabel?: string | undefined;
|
|
938
|
+
readonly role?: "dialog" | "grid" | "group" | "listbox" | "menu" | "navigation" | "tooltip" | "tree" | undefined;
|
|
939
|
+
readonly disabled?: boolean | undefined;
|
|
940
|
+
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
941
|
+
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
942
|
+
readonly effect?: "light" | "dark" | undefined;
|
|
943
|
+
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
944
|
+
readonly teleported?: boolean | undefined;
|
|
945
|
+
readonly open?: boolean | undefined;
|
|
946
|
+
readonly visible?: boolean | undefined;
|
|
947
|
+
readonly arrowOffset?: number | undefined;
|
|
948
|
+
readonly gpuAcceleration?: boolean | undefined;
|
|
949
|
+
readonly fallbackPlacements?: import("@popperjs/core").Placement[] | undefined;
|
|
950
|
+
readonly popperOptions?: Partial<import("@popperjs/core").Options> | undefined;
|
|
951
|
+
readonly pure?: boolean | undefined;
|
|
952
|
+
readonly boundariesPadding?: number | undefined;
|
|
953
|
+
readonly enterable?: boolean | undefined;
|
|
954
|
+
readonly focusOnShow?: boolean | undefined;
|
|
955
|
+
readonly trapping?: boolean | undefined;
|
|
956
|
+
readonly popperClass?: import("../types").ClassType | undefined;
|
|
957
|
+
readonly popperStyle?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
958
|
+
readonly referenceEl?: HTMLElement | undefined;
|
|
959
|
+
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
960
|
+
readonly stopPopperMouseEvent?: boolean | undefined;
|
|
961
|
+
readonly virtualTriggering?: boolean | undefined;
|
|
962
|
+
readonly virtualRef?: import("vft/es/vft").Measurable | undefined;
|
|
963
|
+
readonly showAfter?: number | undefined;
|
|
964
|
+
readonly hideAfter?: number | undefined;
|
|
965
|
+
readonly appendTo?: (HTMLElement | string) | undefined;
|
|
966
|
+
readonly rawContent?: boolean | undefined;
|
|
967
|
+
readonly persistent?: boolean | undefined;
|
|
968
|
+
readonly triggerKeys?: string[] | undefined;
|
|
969
|
+
readonly showArrow?: boolean | undefined;
|
|
970
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
971
|
+
readonly onOpen?: ((...args: any[]) => any) | undefined;
|
|
972
|
+
readonly onHide?: ((...args: any[]) => any) | undefined;
|
|
973
|
+
readonly onShow?: ((...args: any[]) => any) | undefined;
|
|
974
|
+
readonly "onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
975
|
+
readonly "onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
976
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
977
|
+
$attrs: {
|
|
978
|
+
[x: string]: unknown;
|
|
979
|
+
};
|
|
980
|
+
$refs: {
|
|
981
|
+
[x: string]: unknown;
|
|
982
|
+
};
|
|
983
|
+
$slots: Readonly<{
|
|
984
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
985
|
+
}>;
|
|
986
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
987
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
988
|
+
$host: Element | null;
|
|
989
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
990
|
+
$el: any;
|
|
991
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
992
|
+
role: {
|
|
993
|
+
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
994
|
+
};
|
|
995
|
+
showArrow: {
|
|
996
|
+
type: import("vue").PropType<boolean>;
|
|
997
|
+
};
|
|
998
|
+
arrowOffset: {
|
|
999
|
+
type: import("vue").PropType<number>;
|
|
1000
|
+
};
|
|
1001
|
+
virtualRef: {
|
|
1002
|
+
type: import("vue").PropType<import("vft/es/vft").Measurable>;
|
|
1003
|
+
};
|
|
1004
|
+
virtualTriggering: {
|
|
1005
|
+
type: import("vue").PropType<boolean>;
|
|
1006
|
+
};
|
|
1007
|
+
onMouseenter: {
|
|
1008
|
+
type: import("vue").PropType<Function>;
|
|
1009
|
+
};
|
|
1010
|
+
onMouseleave: {
|
|
1011
|
+
type: import("vue").PropType<Function>;
|
|
1012
|
+
};
|
|
1013
|
+
onClick: {
|
|
1014
|
+
type: import("vue").PropType<Function>;
|
|
1015
|
+
};
|
|
1016
|
+
onKeydown: {
|
|
1017
|
+
type: import("vue").PropType<Function>;
|
|
1018
|
+
};
|
|
1019
|
+
onFocus: {
|
|
1020
|
+
type: import("vue").PropType<Function>;
|
|
1021
|
+
};
|
|
1022
|
+
onBlur: {
|
|
1023
|
+
type: import("vue").PropType<Function>;
|
|
1024
|
+
};
|
|
1025
|
+
onContextmenu: {
|
|
1026
|
+
type: import("vue").PropType<Function>;
|
|
1027
|
+
};
|
|
1028
|
+
id: {
|
|
1029
|
+
type: import("vue").PropType<string>;
|
|
1030
|
+
};
|
|
1031
|
+
open: {
|
|
1032
|
+
type: import("vue").PropType<boolean>;
|
|
1033
|
+
};
|
|
1034
|
+
boundariesPadding: {
|
|
1035
|
+
type: import("vue").PropType<number>;
|
|
1036
|
+
};
|
|
1037
|
+
fallbackPlacements: {
|
|
1038
|
+
type: import("vue").PropType<import("@popperjs/core").Placement[]>;
|
|
1039
|
+
};
|
|
1040
|
+
gpuAcceleration: {
|
|
1041
|
+
type: import("vue").PropType<boolean>;
|
|
1042
|
+
};
|
|
1043
|
+
offset: {
|
|
1044
|
+
type: import("vue").PropType<number>;
|
|
1045
|
+
};
|
|
1046
|
+
placement: {
|
|
1047
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
1048
|
+
};
|
|
1049
|
+
popperOptions: {
|
|
1050
|
+
type: import("vue").PropType<Partial<import("@popperjs/core").Options>>;
|
|
1051
|
+
};
|
|
1052
|
+
strategy: {
|
|
1053
|
+
type: import("vue").PropType<"fixed" | "absolute">;
|
|
1054
|
+
};
|
|
1055
|
+
style: {
|
|
1056
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1057
|
+
};
|
|
1058
|
+
className: {
|
|
1059
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1060
|
+
};
|
|
1061
|
+
effect: {
|
|
1062
|
+
type: import("vue").PropType<"light" | "dark">;
|
|
1063
|
+
};
|
|
1064
|
+
visible: {
|
|
1065
|
+
type: import("vue").PropType<boolean>;
|
|
1066
|
+
};
|
|
1067
|
+
enterable: {
|
|
1068
|
+
type: import("vue").PropType<boolean>;
|
|
1069
|
+
};
|
|
1070
|
+
pure: {
|
|
1071
|
+
type: import("vue").PropType<boolean>;
|
|
1072
|
+
};
|
|
1073
|
+
focusOnShow: {
|
|
1074
|
+
type: import("vue").PropType<boolean>;
|
|
1075
|
+
};
|
|
1076
|
+
trapping: {
|
|
1077
|
+
type: import("vue").PropType<boolean>;
|
|
1078
|
+
};
|
|
1079
|
+
popperClass: {
|
|
1080
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1081
|
+
};
|
|
1082
|
+
popperStyle: {
|
|
1083
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1084
|
+
};
|
|
1085
|
+
referenceEl: {
|
|
1086
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1087
|
+
};
|
|
1088
|
+
triggerTargetEl: {
|
|
1089
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1090
|
+
};
|
|
1091
|
+
stopPopperMouseEvent: {
|
|
1092
|
+
type: import("vue").PropType<boolean>;
|
|
1093
|
+
};
|
|
1094
|
+
ariaLabel: {
|
|
1095
|
+
type: import("vue").PropType<string>;
|
|
1096
|
+
};
|
|
1097
|
+
zIndex: {
|
|
1098
|
+
type: import("vue").PropType<number>;
|
|
1099
|
+
};
|
|
1100
|
+
showAfter: {
|
|
1101
|
+
type: import("vue").PropType<number>;
|
|
1102
|
+
};
|
|
1103
|
+
hideAfter: {
|
|
1104
|
+
type: import("vue").PropType<number>;
|
|
1105
|
+
};
|
|
1106
|
+
appendTo: {
|
|
1107
|
+
type: import("vue").PropType<string | HTMLElement>;
|
|
1108
|
+
};
|
|
1109
|
+
content: {
|
|
1110
|
+
type: import("vue").PropType<string>;
|
|
1111
|
+
};
|
|
1112
|
+
rawContent: {
|
|
1113
|
+
type: import("vue").PropType<boolean>;
|
|
1114
|
+
};
|
|
1115
|
+
persistent: {
|
|
1116
|
+
type: import("vue").PropType<boolean>;
|
|
1117
|
+
};
|
|
1118
|
+
transition: {
|
|
1119
|
+
type: import("vue").PropType<string>;
|
|
1120
|
+
};
|
|
1121
|
+
teleported: {
|
|
1122
|
+
type: import("vue").PropType<boolean>;
|
|
1123
|
+
};
|
|
1124
|
+
disabled: {
|
|
1125
|
+
type: import("vue").PropType<boolean>;
|
|
1126
|
+
};
|
|
1127
|
+
trigger: {
|
|
1128
|
+
type: import("vue").PropType<import("vft/es/components/tooltip").TooltipTriggerType>;
|
|
1129
|
+
};
|
|
1130
|
+
triggerKeys: {
|
|
1131
|
+
type: import("vue").PropType<string[]>;
|
|
1132
|
+
};
|
|
1133
|
+
}>> & Readonly<{
|
|
1134
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1135
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1136
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
1137
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
1138
|
+
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
1139
|
+
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
1140
|
+
}>, {
|
|
1141
|
+
popperRef: import("vue").Ref<any, any>;
|
|
1142
|
+
contentRef: import("vue").Ref<any, any>;
|
|
1143
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
1144
|
+
updatePopper: () => void;
|
|
1145
|
+
onOpen: (event?: Event) => void;
|
|
1146
|
+
onClose: (event?: Event) => void;
|
|
1147
|
+
hide: (event?: Event) => void;
|
|
1148
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1149
|
+
close: (...args: any[]) => void;
|
|
1150
|
+
open: (...args: any[]) => void;
|
|
1151
|
+
hide: (...args: any[]) => void;
|
|
1152
|
+
show: (...args: any[]) => void;
|
|
1153
|
+
"before-show": (...args: any[]) => void;
|
|
1154
|
+
"before-hide": (...args: any[]) => void;
|
|
1155
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
1156
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1157
|
+
created?: (() => void) | (() => void)[];
|
|
1158
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1159
|
+
mounted?: (() => void) | (() => void)[];
|
|
1160
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1161
|
+
updated?: (() => void) | (() => void)[];
|
|
1162
|
+
activated?: (() => void) | (() => void)[];
|
|
1163
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1164
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1165
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1166
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1167
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1168
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1169
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1170
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1171
|
+
};
|
|
1172
|
+
$forceUpdate: () => void;
|
|
1173
|
+
$nextTick: typeof nextTick;
|
|
1174
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1175
|
+
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1176
|
+
role: {
|
|
1177
|
+
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
1178
|
+
};
|
|
1179
|
+
showArrow: {
|
|
1180
|
+
type: import("vue").PropType<boolean>;
|
|
1181
|
+
};
|
|
1182
|
+
arrowOffset: {
|
|
1183
|
+
type: import("vue").PropType<number>;
|
|
1184
|
+
};
|
|
1185
|
+
virtualRef: {
|
|
1186
|
+
type: import("vue").PropType<import("vft/es/vft").Measurable>;
|
|
1187
|
+
};
|
|
1188
|
+
virtualTriggering: {
|
|
1189
|
+
type: import("vue").PropType<boolean>;
|
|
1190
|
+
};
|
|
1191
|
+
onMouseenter: {
|
|
1192
|
+
type: import("vue").PropType<Function>;
|
|
1193
|
+
};
|
|
1194
|
+
onMouseleave: {
|
|
1195
|
+
type: import("vue").PropType<Function>;
|
|
1196
|
+
};
|
|
1197
|
+
onClick: {
|
|
1198
|
+
type: import("vue").PropType<Function>;
|
|
1199
|
+
};
|
|
1200
|
+
onKeydown: {
|
|
1201
|
+
type: import("vue").PropType<Function>;
|
|
1202
|
+
};
|
|
1203
|
+
onFocus: {
|
|
1204
|
+
type: import("vue").PropType<Function>;
|
|
1205
|
+
};
|
|
1206
|
+
onBlur: {
|
|
1207
|
+
type: import("vue").PropType<Function>;
|
|
1208
|
+
};
|
|
1209
|
+
onContextmenu: {
|
|
1210
|
+
type: import("vue").PropType<Function>;
|
|
1211
|
+
};
|
|
1212
|
+
id: {
|
|
1213
|
+
type: import("vue").PropType<string>;
|
|
1214
|
+
};
|
|
1215
|
+
open: {
|
|
1216
|
+
type: import("vue").PropType<boolean>;
|
|
1217
|
+
};
|
|
1218
|
+
boundariesPadding: {
|
|
1219
|
+
type: import("vue").PropType<number>;
|
|
1220
|
+
};
|
|
1221
|
+
fallbackPlacements: {
|
|
1222
|
+
type: import("vue").PropType<import("@popperjs/core").Placement[]>;
|
|
1223
|
+
};
|
|
1224
|
+
gpuAcceleration: {
|
|
1225
|
+
type: import("vue").PropType<boolean>;
|
|
1226
|
+
};
|
|
1227
|
+
offset: {
|
|
1228
|
+
type: import("vue").PropType<number>;
|
|
1229
|
+
};
|
|
1230
|
+
placement: {
|
|
1231
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
1232
|
+
};
|
|
1233
|
+
popperOptions: {
|
|
1234
|
+
type: import("vue").PropType<Partial<import("@popperjs/core").Options>>;
|
|
1235
|
+
};
|
|
1236
|
+
strategy: {
|
|
1237
|
+
type: import("vue").PropType<"fixed" | "absolute">;
|
|
1238
|
+
};
|
|
1239
|
+
style: {
|
|
1240
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1241
|
+
};
|
|
1242
|
+
className: {
|
|
1243
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1244
|
+
};
|
|
1245
|
+
effect: {
|
|
1246
|
+
type: import("vue").PropType<"light" | "dark">;
|
|
1247
|
+
};
|
|
1248
|
+
visible: {
|
|
1249
|
+
type: import("vue").PropType<boolean>;
|
|
1250
|
+
};
|
|
1251
|
+
enterable: {
|
|
1252
|
+
type: import("vue").PropType<boolean>;
|
|
1253
|
+
};
|
|
1254
|
+
pure: {
|
|
1255
|
+
type: import("vue").PropType<boolean>;
|
|
1256
|
+
};
|
|
1257
|
+
focusOnShow: {
|
|
1258
|
+
type: import("vue").PropType<boolean>;
|
|
1259
|
+
};
|
|
1260
|
+
trapping: {
|
|
1261
|
+
type: import("vue").PropType<boolean>;
|
|
1262
|
+
};
|
|
1263
|
+
popperClass: {
|
|
1264
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1265
|
+
};
|
|
1266
|
+
popperStyle: {
|
|
1267
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1268
|
+
};
|
|
1269
|
+
referenceEl: {
|
|
1270
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1271
|
+
};
|
|
1272
|
+
triggerTargetEl: {
|
|
1273
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1274
|
+
};
|
|
1275
|
+
stopPopperMouseEvent: {
|
|
1276
|
+
type: import("vue").PropType<boolean>;
|
|
1277
|
+
};
|
|
1278
|
+
ariaLabel: {
|
|
1279
|
+
type: import("vue").PropType<string>;
|
|
1280
|
+
};
|
|
1281
|
+
zIndex: {
|
|
1282
|
+
type: import("vue").PropType<number>;
|
|
1283
|
+
};
|
|
1284
|
+
showAfter: {
|
|
1285
|
+
type: import("vue").PropType<number>;
|
|
1286
|
+
};
|
|
1287
|
+
hideAfter: {
|
|
1288
|
+
type: import("vue").PropType<number>;
|
|
1289
|
+
};
|
|
1290
|
+
appendTo: {
|
|
1291
|
+
type: import("vue").PropType<string | HTMLElement>;
|
|
1292
|
+
};
|
|
1293
|
+
content: {
|
|
1294
|
+
type: import("vue").PropType<string>;
|
|
1295
|
+
};
|
|
1296
|
+
rawContent: {
|
|
1297
|
+
type: import("vue").PropType<boolean>;
|
|
1298
|
+
};
|
|
1299
|
+
persistent: {
|
|
1300
|
+
type: import("vue").PropType<boolean>;
|
|
1301
|
+
};
|
|
1302
|
+
transition: {
|
|
1303
|
+
type: import("vue").PropType<string>;
|
|
1304
|
+
};
|
|
1305
|
+
teleported: {
|
|
1306
|
+
type: import("vue").PropType<boolean>;
|
|
1307
|
+
};
|
|
1308
|
+
disabled: {
|
|
1309
|
+
type: import("vue").PropType<boolean>;
|
|
1310
|
+
};
|
|
1311
|
+
trigger: {
|
|
1312
|
+
type: import("vue").PropType<import("vft/es/components/tooltip").TooltipTriggerType>;
|
|
1313
|
+
};
|
|
1314
|
+
triggerKeys: {
|
|
1315
|
+
type: import("vue").PropType<string[]>;
|
|
1316
|
+
};
|
|
1317
|
+
}>> & Readonly<{
|
|
1318
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1319
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1320
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
1321
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
1322
|
+
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
1323
|
+
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
1324
|
+
}>, "onClose" | "hide" | "contentRef" | "updatePopper" | "onOpen" | "isFocusInsideContent" | "popperRef"> & import("vue").ShallowUnwrapRef<{
|
|
1325
|
+
popperRef: import("vue").Ref<any, any>;
|
|
1326
|
+
contentRef: import("vue").Ref<any, any>;
|
|
1327
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
1328
|
+
updatePopper: () => void;
|
|
1329
|
+
onOpen: (event?: Event) => void;
|
|
1330
|
+
onClose: (event?: Event) => void;
|
|
1331
|
+
hide: (event?: Event) => void;
|
|
1332
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
1333
|
+
$slots: {
|
|
1334
|
+
default?(_: {}): any;
|
|
1335
|
+
content?(_: {}): any;
|
|
1336
|
+
};
|
|
1337
|
+
}) | undefined, ({
|
|
1338
|
+
$: import("vue").ComponentInternalInstance;
|
|
1339
|
+
$data: {};
|
|
1340
|
+
$props: Partial<{}> & Omit<{
|
|
1341
|
+
readonly style?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
1342
|
+
readonly content?: string | undefined;
|
|
1343
|
+
readonly zIndex?: number | undefined;
|
|
1344
|
+
readonly offset?: number | undefined;
|
|
1345
|
+
readonly transition?: string | undefined;
|
|
1346
|
+
readonly onBlur?: Function | undefined;
|
|
1347
|
+
readonly onClick?: Function | undefined;
|
|
1348
|
+
readonly onContextmenu?: Function | undefined;
|
|
1349
|
+
readonly onFocus?: Function | undefined;
|
|
1350
|
+
readonly onKeydown?: Function | undefined;
|
|
1351
|
+
readonly onMouseenter?: Function | undefined;
|
|
1352
|
+
readonly onMouseleave?: Function | undefined;
|
|
1353
|
+
readonly className?: import("../types").ClassType | undefined;
|
|
1354
|
+
readonly id?: string | undefined;
|
|
1355
|
+
readonly ariaLabel?: string | undefined;
|
|
1356
|
+
readonly role?: "dialog" | "grid" | "group" | "listbox" | "menu" | "navigation" | "tooltip" | "tree" | undefined;
|
|
1357
|
+
readonly disabled?: boolean | undefined;
|
|
1358
|
+
readonly placement?: import("@popperjs/core").Placement | undefined;
|
|
1359
|
+
readonly strategy?: "fixed" | "absolute" | undefined;
|
|
1360
|
+
readonly effect?: "light" | "dark" | undefined;
|
|
1361
|
+
readonly trigger?: import("vft/es/components/tooltip").TooltipTriggerType | undefined;
|
|
1362
|
+
readonly teleported?: boolean | undefined;
|
|
1363
|
+
readonly open?: boolean | undefined;
|
|
1364
|
+
readonly visible?: boolean | undefined;
|
|
1365
|
+
readonly arrowOffset?: number | undefined;
|
|
1366
|
+
readonly gpuAcceleration?: boolean | undefined;
|
|
1367
|
+
readonly fallbackPlacements?: import("@popperjs/core").Placement[] | undefined;
|
|
1368
|
+
readonly popperOptions?: Partial<import("@popperjs/core").Options> | undefined;
|
|
1369
|
+
readonly pure?: boolean | undefined;
|
|
1370
|
+
readonly boundariesPadding?: number | undefined;
|
|
1371
|
+
readonly enterable?: boolean | undefined;
|
|
1372
|
+
readonly focusOnShow?: boolean | undefined;
|
|
1373
|
+
readonly trapping?: boolean | undefined;
|
|
1374
|
+
readonly popperClass?: import("../types").ClassType | undefined;
|
|
1375
|
+
readonly popperStyle?: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null | undefined;
|
|
1376
|
+
readonly referenceEl?: HTMLElement | undefined;
|
|
1377
|
+
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
1378
|
+
readonly stopPopperMouseEvent?: boolean | undefined;
|
|
1379
|
+
readonly virtualTriggering?: boolean | undefined;
|
|
1380
|
+
readonly virtualRef?: import("vft/es/vft").Measurable | undefined;
|
|
1381
|
+
readonly showAfter?: number | undefined;
|
|
1382
|
+
readonly hideAfter?: number | undefined;
|
|
1383
|
+
readonly appendTo?: (HTMLElement | string) | undefined;
|
|
1384
|
+
readonly rawContent?: boolean | undefined;
|
|
1385
|
+
readonly persistent?: boolean | undefined;
|
|
1386
|
+
readonly triggerKeys?: string[] | undefined;
|
|
1387
|
+
readonly showArrow?: boolean | undefined;
|
|
1388
|
+
readonly onClose?: ((...args: any[]) => any) | undefined;
|
|
1389
|
+
readonly onOpen?: ((...args: any[]) => any) | undefined;
|
|
1390
|
+
readonly onHide?: ((...args: any[]) => any) | undefined;
|
|
1391
|
+
readonly onShow?: ((...args: any[]) => any) | undefined;
|
|
1392
|
+
readonly "onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
1393
|
+
readonly "onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
1394
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
1395
|
+
$attrs: {
|
|
1396
|
+
[x: string]: unknown;
|
|
1397
|
+
};
|
|
1398
|
+
$refs: {
|
|
1399
|
+
[x: string]: unknown;
|
|
1400
|
+
};
|
|
1401
|
+
$slots: Readonly<{
|
|
1402
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
1403
|
+
}>;
|
|
1404
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
1405
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
1406
|
+
$host: Element | null;
|
|
1407
|
+
$emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
1408
|
+
$el: any;
|
|
1409
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1410
|
+
role: {
|
|
1411
|
+
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
1412
|
+
};
|
|
1413
|
+
showArrow: {
|
|
1414
|
+
type: import("vue").PropType<boolean>;
|
|
1415
|
+
};
|
|
1416
|
+
arrowOffset: {
|
|
1417
|
+
type: import("vue").PropType<number>;
|
|
1418
|
+
};
|
|
1419
|
+
virtualRef: {
|
|
1420
|
+
type: import("vue").PropType<import("vft/es/vft").Measurable>;
|
|
1421
|
+
};
|
|
1422
|
+
virtualTriggering: {
|
|
1423
|
+
type: import("vue").PropType<boolean>;
|
|
1424
|
+
};
|
|
1425
|
+
onMouseenter: {
|
|
1426
|
+
type: import("vue").PropType<Function>;
|
|
1427
|
+
};
|
|
1428
|
+
onMouseleave: {
|
|
1429
|
+
type: import("vue").PropType<Function>;
|
|
1430
|
+
};
|
|
1431
|
+
onClick: {
|
|
1432
|
+
type: import("vue").PropType<Function>;
|
|
1433
|
+
};
|
|
1434
|
+
onKeydown: {
|
|
1435
|
+
type: import("vue").PropType<Function>;
|
|
1436
|
+
};
|
|
1437
|
+
onFocus: {
|
|
1438
|
+
type: import("vue").PropType<Function>;
|
|
1439
|
+
};
|
|
1440
|
+
onBlur: {
|
|
1441
|
+
type: import("vue").PropType<Function>;
|
|
1442
|
+
};
|
|
1443
|
+
onContextmenu: {
|
|
1444
|
+
type: import("vue").PropType<Function>;
|
|
1445
|
+
};
|
|
1446
|
+
id: {
|
|
1447
|
+
type: import("vue").PropType<string>;
|
|
1448
|
+
};
|
|
1449
|
+
open: {
|
|
1450
|
+
type: import("vue").PropType<boolean>;
|
|
1451
|
+
};
|
|
1452
|
+
boundariesPadding: {
|
|
1453
|
+
type: import("vue").PropType<number>;
|
|
1454
|
+
};
|
|
1455
|
+
fallbackPlacements: {
|
|
1456
|
+
type: import("vue").PropType<import("@popperjs/core").Placement[]>;
|
|
1457
|
+
};
|
|
1458
|
+
gpuAcceleration: {
|
|
1459
|
+
type: import("vue").PropType<boolean>;
|
|
1460
|
+
};
|
|
1461
|
+
offset: {
|
|
1462
|
+
type: import("vue").PropType<number>;
|
|
1463
|
+
};
|
|
1464
|
+
placement: {
|
|
1465
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
1466
|
+
};
|
|
1467
|
+
popperOptions: {
|
|
1468
|
+
type: import("vue").PropType<Partial<import("@popperjs/core").Options>>;
|
|
1469
|
+
};
|
|
1470
|
+
strategy: {
|
|
1471
|
+
type: import("vue").PropType<"fixed" | "absolute">;
|
|
1472
|
+
};
|
|
1473
|
+
style: {
|
|
1474
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1475
|
+
};
|
|
1476
|
+
className: {
|
|
1477
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1478
|
+
};
|
|
1479
|
+
effect: {
|
|
1480
|
+
type: import("vue").PropType<"light" | "dark">;
|
|
1481
|
+
};
|
|
1482
|
+
visible: {
|
|
1483
|
+
type: import("vue").PropType<boolean>;
|
|
1484
|
+
};
|
|
1485
|
+
enterable: {
|
|
1486
|
+
type: import("vue").PropType<boolean>;
|
|
1487
|
+
};
|
|
1488
|
+
pure: {
|
|
1489
|
+
type: import("vue").PropType<boolean>;
|
|
1490
|
+
};
|
|
1491
|
+
focusOnShow: {
|
|
1492
|
+
type: import("vue").PropType<boolean>;
|
|
1493
|
+
};
|
|
1494
|
+
trapping: {
|
|
1495
|
+
type: import("vue").PropType<boolean>;
|
|
1496
|
+
};
|
|
1497
|
+
popperClass: {
|
|
1498
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1499
|
+
};
|
|
1500
|
+
popperStyle: {
|
|
1501
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1502
|
+
};
|
|
1503
|
+
referenceEl: {
|
|
1504
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1505
|
+
};
|
|
1506
|
+
triggerTargetEl: {
|
|
1507
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1508
|
+
};
|
|
1509
|
+
stopPopperMouseEvent: {
|
|
1510
|
+
type: import("vue").PropType<boolean>;
|
|
1511
|
+
};
|
|
1512
|
+
ariaLabel: {
|
|
1513
|
+
type: import("vue").PropType<string>;
|
|
1514
|
+
};
|
|
1515
|
+
zIndex: {
|
|
1516
|
+
type: import("vue").PropType<number>;
|
|
1517
|
+
};
|
|
1518
|
+
showAfter: {
|
|
1519
|
+
type: import("vue").PropType<number>;
|
|
1520
|
+
};
|
|
1521
|
+
hideAfter: {
|
|
1522
|
+
type: import("vue").PropType<number>;
|
|
1523
|
+
};
|
|
1524
|
+
appendTo: {
|
|
1525
|
+
type: import("vue").PropType<string | HTMLElement>;
|
|
1526
|
+
};
|
|
1527
|
+
content: {
|
|
1528
|
+
type: import("vue").PropType<string>;
|
|
1529
|
+
};
|
|
1530
|
+
rawContent: {
|
|
1531
|
+
type: import("vue").PropType<boolean>;
|
|
1532
|
+
};
|
|
1533
|
+
persistent: {
|
|
1534
|
+
type: import("vue").PropType<boolean>;
|
|
1535
|
+
};
|
|
1536
|
+
transition: {
|
|
1537
|
+
type: import("vue").PropType<string>;
|
|
1538
|
+
};
|
|
1539
|
+
teleported: {
|
|
1540
|
+
type: import("vue").PropType<boolean>;
|
|
1541
|
+
};
|
|
1542
|
+
disabled: {
|
|
1543
|
+
type: import("vue").PropType<boolean>;
|
|
1544
|
+
};
|
|
1545
|
+
trigger: {
|
|
1546
|
+
type: import("vue").PropType<import("vft/es/components/tooltip").TooltipTriggerType>;
|
|
1547
|
+
};
|
|
1548
|
+
triggerKeys: {
|
|
1549
|
+
type: import("vue").PropType<string[]>;
|
|
1550
|
+
};
|
|
1551
|
+
}>> & Readonly<{
|
|
1552
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1553
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1554
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
1555
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
1556
|
+
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
1557
|
+
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
1558
|
+
}>, {
|
|
1559
|
+
popperRef: import("vue").Ref<any, any>;
|
|
1560
|
+
contentRef: import("vue").Ref<any, any>;
|
|
1561
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
1562
|
+
updatePopper: () => void;
|
|
1563
|
+
onOpen: (event?: Event) => void;
|
|
1564
|
+
onClose: (event?: Event) => void;
|
|
1565
|
+
hide: (event?: Event) => void;
|
|
1566
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1567
|
+
close: (...args: any[]) => void;
|
|
1568
|
+
open: (...args: any[]) => void;
|
|
1569
|
+
hide: (...args: any[]) => void;
|
|
1570
|
+
show: (...args: any[]) => void;
|
|
1571
|
+
"before-show": (...args: any[]) => void;
|
|
1572
|
+
"before-hide": (...args: any[]) => void;
|
|
1573
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
1574
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1575
|
+
created?: (() => void) | (() => void)[];
|
|
1576
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1577
|
+
mounted?: (() => void) | (() => void)[];
|
|
1578
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1579
|
+
updated?: (() => void) | (() => void)[];
|
|
1580
|
+
activated?: (() => void) | (() => void)[];
|
|
1581
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1582
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1583
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1584
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1585
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1586
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1587
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1588
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1589
|
+
};
|
|
1590
|
+
$forceUpdate: () => void;
|
|
1591
|
+
$nextTick: typeof nextTick;
|
|
1592
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
1593
|
+
} & Readonly<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1594
|
+
role: {
|
|
1595
|
+
type: import("vue").PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "tooltip" | "navigation" | "tree">;
|
|
1596
|
+
};
|
|
1597
|
+
showArrow: {
|
|
1598
|
+
type: import("vue").PropType<boolean>;
|
|
1599
|
+
};
|
|
1600
|
+
arrowOffset: {
|
|
1601
|
+
type: import("vue").PropType<number>;
|
|
1602
|
+
};
|
|
1603
|
+
virtualRef: {
|
|
1604
|
+
type: import("vue").PropType<import("vft/es/vft").Measurable>;
|
|
1605
|
+
};
|
|
1606
|
+
virtualTriggering: {
|
|
1607
|
+
type: import("vue").PropType<boolean>;
|
|
1608
|
+
};
|
|
1609
|
+
onMouseenter: {
|
|
1610
|
+
type: import("vue").PropType<Function>;
|
|
1611
|
+
};
|
|
1612
|
+
onMouseleave: {
|
|
1613
|
+
type: import("vue").PropType<Function>;
|
|
1614
|
+
};
|
|
1615
|
+
onClick: {
|
|
1616
|
+
type: import("vue").PropType<Function>;
|
|
1617
|
+
};
|
|
1618
|
+
onKeydown: {
|
|
1619
|
+
type: import("vue").PropType<Function>;
|
|
1620
|
+
};
|
|
1621
|
+
onFocus: {
|
|
1622
|
+
type: import("vue").PropType<Function>;
|
|
1623
|
+
};
|
|
1624
|
+
onBlur: {
|
|
1625
|
+
type: import("vue").PropType<Function>;
|
|
1626
|
+
};
|
|
1627
|
+
onContextmenu: {
|
|
1628
|
+
type: import("vue").PropType<Function>;
|
|
1629
|
+
};
|
|
1630
|
+
id: {
|
|
1631
|
+
type: import("vue").PropType<string>;
|
|
1632
|
+
};
|
|
1633
|
+
open: {
|
|
1634
|
+
type: import("vue").PropType<boolean>;
|
|
1635
|
+
};
|
|
1636
|
+
boundariesPadding: {
|
|
1637
|
+
type: import("vue").PropType<number>;
|
|
1638
|
+
};
|
|
1639
|
+
fallbackPlacements: {
|
|
1640
|
+
type: import("vue").PropType<import("@popperjs/core").Placement[]>;
|
|
1641
|
+
};
|
|
1642
|
+
gpuAcceleration: {
|
|
1643
|
+
type: import("vue").PropType<boolean>;
|
|
1644
|
+
};
|
|
1645
|
+
offset: {
|
|
1646
|
+
type: import("vue").PropType<number>;
|
|
1647
|
+
};
|
|
1648
|
+
placement: {
|
|
1649
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
1650
|
+
};
|
|
1651
|
+
popperOptions: {
|
|
1652
|
+
type: import("vue").PropType<Partial<import("@popperjs/core").Options>>;
|
|
1653
|
+
};
|
|
1654
|
+
strategy: {
|
|
1655
|
+
type: import("vue").PropType<"fixed" | "absolute">;
|
|
1656
|
+
};
|
|
1657
|
+
style: {
|
|
1658
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1659
|
+
};
|
|
1660
|
+
className: {
|
|
1661
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1662
|
+
};
|
|
1663
|
+
effect: {
|
|
1664
|
+
type: import("vue").PropType<"light" | "dark">;
|
|
1665
|
+
};
|
|
1666
|
+
visible: {
|
|
1667
|
+
type: import("vue").PropType<boolean>;
|
|
1668
|
+
};
|
|
1669
|
+
enterable: {
|
|
1670
|
+
type: import("vue").PropType<boolean>;
|
|
1671
|
+
};
|
|
1672
|
+
pure: {
|
|
1673
|
+
type: import("vue").PropType<boolean>;
|
|
1674
|
+
};
|
|
1675
|
+
focusOnShow: {
|
|
1676
|
+
type: import("vue").PropType<boolean>;
|
|
1677
|
+
};
|
|
1678
|
+
trapping: {
|
|
1679
|
+
type: import("vue").PropType<boolean>;
|
|
1680
|
+
};
|
|
1681
|
+
popperClass: {
|
|
1682
|
+
type: import("vue").PropType<import("../types").ClassType>;
|
|
1683
|
+
};
|
|
1684
|
+
popperStyle: {
|
|
1685
|
+
type: import("vue").PropType<string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null>;
|
|
1686
|
+
};
|
|
1687
|
+
referenceEl: {
|
|
1688
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1689
|
+
};
|
|
1690
|
+
triggerTargetEl: {
|
|
1691
|
+
type: import("vue").PropType<HTMLElement>;
|
|
1692
|
+
};
|
|
1693
|
+
stopPopperMouseEvent: {
|
|
1694
|
+
type: import("vue").PropType<boolean>;
|
|
1695
|
+
};
|
|
1696
|
+
ariaLabel: {
|
|
1697
|
+
type: import("vue").PropType<string>;
|
|
1698
|
+
};
|
|
1699
|
+
zIndex: {
|
|
1700
|
+
type: import("vue").PropType<number>;
|
|
1701
|
+
};
|
|
1702
|
+
showAfter: {
|
|
1703
|
+
type: import("vue").PropType<number>;
|
|
1704
|
+
};
|
|
1705
|
+
hideAfter: {
|
|
1706
|
+
type: import("vue").PropType<number>;
|
|
1707
|
+
};
|
|
1708
|
+
appendTo: {
|
|
1709
|
+
type: import("vue").PropType<string | HTMLElement>;
|
|
1710
|
+
};
|
|
1711
|
+
content: {
|
|
1712
|
+
type: import("vue").PropType<string>;
|
|
1713
|
+
};
|
|
1714
|
+
rawContent: {
|
|
1715
|
+
type: import("vue").PropType<boolean>;
|
|
1716
|
+
};
|
|
1717
|
+
persistent: {
|
|
1718
|
+
type: import("vue").PropType<boolean>;
|
|
1719
|
+
};
|
|
1720
|
+
transition: {
|
|
1721
|
+
type: import("vue").PropType<string>;
|
|
1722
|
+
};
|
|
1723
|
+
teleported: {
|
|
1724
|
+
type: import("vue").PropType<boolean>;
|
|
1725
|
+
};
|
|
1726
|
+
disabled: {
|
|
1727
|
+
type: import("vue").PropType<boolean>;
|
|
1728
|
+
};
|
|
1729
|
+
trigger: {
|
|
1730
|
+
type: import("vue").PropType<import("vft/es/components/tooltip").TooltipTriggerType>;
|
|
1731
|
+
};
|
|
1732
|
+
triggerKeys: {
|
|
1733
|
+
type: import("vue").PropType<string[]>;
|
|
1734
|
+
};
|
|
1735
|
+
}>> & Readonly<{
|
|
1736
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1737
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1738
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
1739
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
1740
|
+
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
1741
|
+
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
1742
|
+
}>, "onClose" | "hide" | "contentRef" | "updatePopper" | "onOpen" | "isFocusInsideContent" | "popperRef"> & import("vue").ShallowUnwrapRef<{
|
|
1743
|
+
popperRef: import("vue").Ref<any, any>;
|
|
1744
|
+
contentRef: import("vue").Ref<any, any>;
|
|
1745
|
+
isFocusInsideContent: (event?: FocusEvent) => any;
|
|
1746
|
+
updatePopper: () => void;
|
|
1747
|
+
onOpen: (event?: Event) => void;
|
|
1748
|
+
onClose: (event?: Event) => void;
|
|
1749
|
+
hide: (event?: Event) => void;
|
|
1750
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
1751
|
+
$slots: {
|
|
1752
|
+
default?(_: {}): any;
|
|
1753
|
+
content?(_: {}): any;
|
|
1754
|
+
};
|
|
1755
|
+
}) | undefined>;
|
|
1756
|
+
selectRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1757
|
+
wrapperRef: import("vue").ShallowRef<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1758
|
+
selectionRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1759
|
+
prefixRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1760
|
+
suffixRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1761
|
+
collapseItemRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1762
|
+
popperRef: import("vue").ComputedRef<any>;
|
|
1763
|
+
validateState: import("vue").ComputedRef<"" | "error" | "validating" | "success">;
|
|
1764
|
+
validateIcon: string;
|
|
1765
|
+
showTagList: import("vue").ComputedRef<Option[]>;
|
|
1766
|
+
collapseTagList: import("vue").ComputedRef<Option[]>;
|
|
953
1767
|
debouncedOnInputChange: any;
|
|
954
|
-
deleteTag: (event: MouseEvent,
|
|
955
|
-
getLabel: (
|
|
1768
|
+
deleteTag: (event: MouseEvent, option: Option) => void;
|
|
1769
|
+
getLabel: (option: Option) => any;
|
|
1770
|
+
getValue: (option: Option) => any;
|
|
1771
|
+
getDisabled: (option: Option) => any;
|
|
956
1772
|
getValueKey: (item: unknown) => any;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
handleClickOutside: () => Promise<void>;
|
|
1773
|
+
handleClear: () => void;
|
|
1774
|
+
handleClickOutside: (event: Event) => void;
|
|
960
1775
|
handleDel: (e: KeyboardEvent) => void;
|
|
961
1776
|
handleEsc: () => void;
|
|
962
|
-
|
|
1777
|
+
focus: () => void;
|
|
1778
|
+
blur: () => void;
|
|
963
1779
|
handleMenuEnter: () => Promise<void>;
|
|
964
|
-
handleResize: () =>
|
|
965
|
-
|
|
1780
|
+
handleResize: () => void;
|
|
1781
|
+
resetSelectionWidth: () => void;
|
|
1782
|
+
updateTooltip: () => void;
|
|
1783
|
+
updateTagTooltip: () => void;
|
|
1784
|
+
updateOptions: () => void;
|
|
1785
|
+
toggleMenu: () => void;
|
|
966
1786
|
scrollTo: (index: number) => void;
|
|
967
|
-
onInput: (event:
|
|
968
|
-
onKeyboardNavigate: (direction: "forward" | "backward", hoveringIndex?: number) =>
|
|
969
|
-
onKeyboardSelect: () =>
|
|
970
|
-
onSelect: (option: Option
|
|
971
|
-
onHover: (idx
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
handleCompositionUpdate: (event: any) => void;
|
|
1787
|
+
onInput: (event: Event) => void;
|
|
1788
|
+
onKeyboardNavigate: (direction: "forward" | "backward", hoveringIndex?: number | undefined) => void;
|
|
1789
|
+
onKeyboardSelect: () => void;
|
|
1790
|
+
onSelect: (option: Option) => void;
|
|
1791
|
+
onHover: (idx?: number) => void;
|
|
1792
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1793
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
1794
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
976
1795
|
};
|
|
977
1796
|
export default useSelect;
|