@polyv/vue-components 1.6.1 → 1.8.0
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/package.json +2 -2
- package/styles/function.scss +4 -1
- package/styles/root/basic.scss +14 -7
- package/styles/root/border.scss +6 -0
- package/styles/skin-color.scss +37 -11
- package/styles/variables.scss +15 -1
- package/vue2/index.es.js +18218 -22763
- package/vue2/src/components/alert/index.d.ts +2 -0
- package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
- package/vue2/src/components/alert/src/props-define.d.ts +8 -0
- package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
- package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
- package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
- package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
- package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
- package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
- package/vue2/src/components/business/external-links/use-external-links.d.ts +116 -3
- package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
- package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
- package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
- package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
- package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
- package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
- package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
- package/vue2/src/components/button/index.d.ts +26 -0
- package/vue2/src/components/button/src/button.vue.d.ts +9 -0
- package/vue2/src/components/button/src/use-button.d.ts +13 -0
- package/vue2/src/components/collapse-transition/index.d.ts +36 -0
- package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
- package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
- package/vue2/src/components/condition-filter/index.d.ts +122 -0
- package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
- package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
- package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
- package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
- package/vue2/src/components/dropdown/index.d.ts +6 -0
- package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
- package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
- package/vue2/src/components/example/example.vue.d.ts +16 -1
- package/vue2/src/components/example/index.d.ts +75 -4
- package/vue2/src/components/exports.d.ts +26 -1
- package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
- package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
- package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
- package/vue2/src/components/form/file-upload/index.d.ts +469 -0
- package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
- package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
- package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
- package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
- package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
- package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
- package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
- package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
- package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
- package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
- package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
- package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
- package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
- package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
- package/vue2/src/components/form/form-group/index.d.ts +20 -2
- package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
- package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
- package/vue2/src/components/form/form-item/index.d.ts +37 -32
- package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
- package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
- package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
- package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
- package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
- package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
- package/vue2/src/components/form/form-submit-button/index.d.ts +10 -1
- package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
- package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
- package/vue2/src/components/form/form-wrap/index.d.ts +32 -26
- package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
- package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
- package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
- package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
- package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
- package/vue2/src/components/form/input/index.d.ts +7 -0
- package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
- package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
- package/vue2/src/components/form/input-number/index.d.ts +2 -2
- package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
- package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
- package/vue2/src/components/form/input-url/index.d.ts +21 -0
- package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
- package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
- package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
- package/vue2/src/components/form/select/index.d.ts +100 -40
- package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
- package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
- package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
- package/vue2/src/components/form/timezone-picker/index.d.ts +133 -70
- package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
- package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
- package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
- package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
- package/vue2/src/components/form/types/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/map.d.ts +40 -0
- package/vue2/src/components/image/index.d.ts +150 -0
- package/vue2/src/components/image/src/events.d.ts +6 -0
- package/vue2/src/components/image/src/image.vue.d.ts +69 -0
- package/vue2/src/components/image/src/props-define.d.ts +57 -0
- package/vue2/src/components/image/src/use-image.d.ts +16 -0
- package/vue2/src/components/info-card/index.d.ts +181 -2
- package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
- package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
- package/vue2/src/components/menu/index.d.ts +195 -0
- package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
- package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
- package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
- package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
- package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
- package/vue2/src/components/menu/src/menu-item.vue.d.ts +24 -0
- package/vue2/src/components/menu/src/menu.vue.d.ts +55 -0
- package/vue2/src/components/menu/src/props-define.d.ts +140 -0
- package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
- package/vue2/src/components/menu/src/sub-menu.vue.d.ts +40 -0
- package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
- package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
- package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
- package/vue2/src/components/popconfirm/index.d.ts +20 -0
- package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
- package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
- package/vue2/src/components/popover/index.d.ts +20 -0
- package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
- package/vue2/src/components/popover/src/props-define.d.ts +3 -0
- package/vue2/src/components/popup/index.d.ts +13 -6
- package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
- package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
- package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
- package/vue2/src/components/popup/src/types.d.ts +3 -0
- package/vue2/src/components/section/index.d.ts +27 -0
- package/vue2/src/components/section/src/props-define.d.ts +24 -0
- package/vue2/src/components/section/src/section.vue.d.ts +24 -0
- package/vue2/src/components/slider/index.d.ts +8 -1
- package/vue2/src/components/slider/src/props-define.d.ts +7 -0
- package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
- package/vue2/src/components/table/index.d.ts +84 -12
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
- package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
- package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
- package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
- package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
- package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
- package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
- package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
- package/vue2/src/components/table/src/table.vue.d.ts +16 -0
- package/vue2/src/components/table/src/types/index.d.ts +1 -1
- package/vue2/src/components/tag/index.d.ts +14 -14
- package/vue2/src/components/tag/src/props-define.d.ts +2 -2
- package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
- package/vue2/src/components/tooltip/index.d.ts +20 -0
- package/vue2/src/components/tooltip/src/props-define.d.ts +13 -0
- package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
- package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
- package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
- package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
- package/vue2/src/hooks/exports.d.ts +1 -0
- package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
- package/vue2/src/lang/hook.d.ts +4 -0
- package/vue2/src/lang/internal/en.json.d.ts +33 -6
- package/vue2/src/lang/internal/index.d.ts +27 -0
- package/vue2/src/lang/internal/ja.json.d.ts +34 -7
- package/vue2/src/lang/internal/ko.json.d.ts +34 -7
- package/vue2/src/lang/internal/ru.json.d.ts +34 -7
- package/vue2/src/lang/internal/zh-CN.json.d.ts +32 -5
- package/vue2/src/lang/internal/zh-TW.json.d.ts +33 -6
- package/vue2/src/vue-utils/index.d.ts +1 -0
- package/vue3/index.es.js +18206 -22756
- package/vue3/src/components/alert/index.d.ts +2 -0
- package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
- package/vue3/src/components/alert/src/props-define.d.ts +8 -0
- package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
- package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
- package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
- package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
- package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
- package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
- package/vue3/src/components/business/external-links/use-external-links.d.ts +116 -3
- package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
- package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
- package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
- package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
- package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
- package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
- package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
- package/vue3/src/components/button/index.d.ts +26 -0
- package/vue3/src/components/button/src/button.vue.d.ts +9 -0
- package/vue3/src/components/button/src/use-button.d.ts +13 -0
- package/vue3/src/components/collapse-transition/index.d.ts +36 -0
- package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
- package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
- package/vue3/src/components/condition-filter/index.d.ts +122 -0
- package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
- package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
- package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
- package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
- package/vue3/src/components/dropdown/index.d.ts +6 -0
- package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
- package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
- package/vue3/src/components/example/example.vue.d.ts +16 -1
- package/vue3/src/components/example/index.d.ts +75 -4
- package/vue3/src/components/exports.d.ts +26 -1
- package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
- package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
- package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
- package/vue3/src/components/form/file-upload/index.d.ts +469 -0
- package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
- package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
- package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
- package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
- package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
- package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
- package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
- package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
- package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
- package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
- package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
- package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
- package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
- package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
- package/vue3/src/components/form/form-group/index.d.ts +20 -2
- package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
- package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
- package/vue3/src/components/form/form-item/index.d.ts +37 -32
- package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
- package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
- package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
- package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
- package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
- package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
- package/vue3/src/components/form/form-submit-button/index.d.ts +10 -1
- package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
- package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
- package/vue3/src/components/form/form-wrap/index.d.ts +32 -26
- package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
- package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
- package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
- package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
- package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
- package/vue3/src/components/form/input/index.d.ts +7 -0
- package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
- package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
- package/vue3/src/components/form/input-number/index.d.ts +2 -2
- package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
- package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
- package/vue3/src/components/form/input-url/index.d.ts +21 -0
- package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
- package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
- package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
- package/vue3/src/components/form/select/index.d.ts +100 -40
- package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
- package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
- package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
- package/vue3/src/components/form/timezone-picker/index.d.ts +133 -70
- package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
- package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
- package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
- package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
- package/vue3/src/components/form/types/index.d.ts +1 -1
- package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/map.d.ts +40 -0
- package/vue3/src/components/image/index.d.ts +150 -0
- package/vue3/src/components/image/src/events.d.ts +6 -0
- package/vue3/src/components/image/src/image.vue.d.ts +69 -0
- package/vue3/src/components/image/src/props-define.d.ts +57 -0
- package/vue3/src/components/image/src/use-image.d.ts +16 -0
- package/vue3/src/components/info-card/index.d.ts +181 -2
- package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
- package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
- package/vue3/src/components/menu/index.d.ts +195 -0
- package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
- package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
- package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
- package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
- package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
- package/vue3/src/components/menu/src/menu-item.vue.d.ts +24 -0
- package/vue3/src/components/menu/src/menu.vue.d.ts +55 -0
- package/vue3/src/components/menu/src/props-define.d.ts +140 -0
- package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
- package/vue3/src/components/menu/src/sub-menu.vue.d.ts +40 -0
- package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
- package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
- package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
- package/vue3/src/components/popconfirm/index.d.ts +20 -0
- package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
- package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
- package/vue3/src/components/popover/index.d.ts +20 -0
- package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
- package/vue3/src/components/popover/src/props-define.d.ts +3 -0
- package/vue3/src/components/popup/index.d.ts +13 -6
- package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
- package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
- package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
- package/vue3/src/components/popup/src/types.d.ts +3 -0
- package/vue3/src/components/section/index.d.ts +27 -0
- package/vue3/src/components/section/src/props-define.d.ts +24 -0
- package/vue3/src/components/section/src/section.vue.d.ts +24 -0
- package/vue3/src/components/slider/index.d.ts +8 -1
- package/vue3/src/components/slider/src/props-define.d.ts +7 -0
- package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
- package/vue3/src/components/table/index.d.ts +84 -12
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
- package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
- package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
- package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
- package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
- package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
- package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
- package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
- package/vue3/src/components/table/src/table.vue.d.ts +16 -0
- package/vue3/src/components/table/src/types/index.d.ts +1 -1
- package/vue3/src/components/tag/index.d.ts +14 -14
- package/vue3/src/components/tag/src/props-define.d.ts +2 -2
- package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
- package/vue3/src/components/tooltip/index.d.ts +20 -0
- package/vue3/src/components/tooltip/src/props-define.d.ts +13 -0
- package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
- package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
- package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
- package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
- package/vue3/src/hooks/exports.d.ts +1 -0
- package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
- package/vue3/src/lang/hook.d.ts +4 -0
- package/vue3/src/lang/internal/en.json.d.ts +33 -6
- package/vue3/src/lang/internal/index.d.ts +27 -0
- package/vue3/src/lang/internal/ja.json.d.ts +34 -7
- package/vue3/src/lang/internal/ko.json.d.ts +34 -7
- package/vue3/src/lang/internal/ru.json.d.ts +34 -7
- package/vue3/src/lang/internal/zh-CN.json.d.ts +32 -5
- package/vue3/src/lang/internal/zh-TW.json.d.ts +33 -6
- package/vue3/src/vue-utils/index.d.ts +1 -0
- package/vue2/src/components/form/index.d.ts +0 -18
- package/vue3/src/components/form/index.d.ts +0 -18
|
@@ -4,8 +4,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
6
|
selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
7
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
8
|
-
default: () => import('
|
|
7
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
8
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
9
9
|
};
|
|
10
10
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
11
11
|
default: string;
|
|
@@ -53,6 +53,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
53
53
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
54
54
|
default: number;
|
|
55
55
|
};
|
|
56
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
56
59
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
57
60
|
default: boolean;
|
|
58
61
|
};
|
|
@@ -68,8 +71,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
68
71
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
69
72
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
70
73
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
71
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
72
|
-
default: import('
|
|
74
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
75
|
+
default: import('../input').InputValueType;
|
|
73
76
|
};
|
|
74
77
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
75
78
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -105,6 +108,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
105
108
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
106
109
|
default: number;
|
|
107
110
|
};
|
|
111
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
108
114
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
109
115
|
default: boolean;
|
|
110
116
|
};
|
|
@@ -120,8 +126,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
120
126
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
121
127
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
122
128
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
123
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
124
|
-
default: import('
|
|
129
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
130
|
+
default: import('../input').InputValueType;
|
|
125
131
|
};
|
|
126
132
|
}>>>> & {
|
|
127
133
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -158,6 +164,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
158
164
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
159
165
|
default: number;
|
|
160
166
|
};
|
|
167
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
161
170
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
162
171
|
default: boolean;
|
|
163
172
|
};
|
|
@@ -173,14 +182,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
173
182
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
174
183
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
175
184
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
176
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
177
|
-
default: import('
|
|
185
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
186
|
+
default: import('../input').InputValueType;
|
|
178
187
|
};
|
|
179
188
|
}>>;
|
|
180
189
|
};
|
|
181
190
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
182
191
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
183
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
192
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
184
193
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
185
194
|
default: boolean;
|
|
186
195
|
};
|
|
@@ -196,10 +205,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
196
205
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
197
206
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
198
207
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
199
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
208
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
200
209
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
201
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
202
|
-
default: () => import('
|
|
210
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
211
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
203
212
|
};
|
|
204
213
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
205
214
|
default: string;
|
|
@@ -247,6 +256,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
247
256
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
248
257
|
default: number;
|
|
249
258
|
};
|
|
259
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
260
|
+
default: boolean;
|
|
261
|
+
};
|
|
250
262
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
251
263
|
default: boolean;
|
|
252
264
|
};
|
|
@@ -262,8 +274,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
262
274
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
263
275
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
264
276
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
265
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
266
|
-
default: import('
|
|
277
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
278
|
+
default: import('../input').InputValueType;
|
|
267
279
|
};
|
|
268
280
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
269
281
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -299,6 +311,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
299
311
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
300
312
|
default: number;
|
|
301
313
|
};
|
|
314
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
315
|
+
default: boolean;
|
|
316
|
+
};
|
|
302
317
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
303
318
|
default: boolean;
|
|
304
319
|
};
|
|
@@ -314,8 +329,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
314
329
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
315
330
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
316
331
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
317
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
318
|
-
default: import('
|
|
332
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
333
|
+
default: import('../input').InputValueType;
|
|
319
334
|
};
|
|
320
335
|
}>>>> & {
|
|
321
336
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -352,6 +367,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
352
367
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
353
368
|
default: number;
|
|
354
369
|
};
|
|
370
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
371
|
+
default: boolean;
|
|
372
|
+
};
|
|
355
373
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
356
374
|
default: boolean;
|
|
357
375
|
};
|
|
@@ -367,14 +385,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
367
385
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
368
386
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
369
387
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
370
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
371
|
-
default: import('
|
|
388
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
389
|
+
default: import('../input').InputValueType;
|
|
372
390
|
};
|
|
373
391
|
}>>;
|
|
374
392
|
};
|
|
375
393
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
376
394
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
377
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
395
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
378
396
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
379
397
|
default: boolean;
|
|
380
398
|
};
|
|
@@ -390,11 +408,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
390
408
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
391
409
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
392
410
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
393
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
411
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
394
412
|
}>>>> & {
|
|
395
413
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
396
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
397
|
-
default: () => import('
|
|
414
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
415
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
398
416
|
};
|
|
399
417
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
400
418
|
default: string;
|
|
@@ -442,6 +460,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
442
460
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
443
461
|
default: number;
|
|
444
462
|
};
|
|
463
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
464
|
+
default: boolean;
|
|
465
|
+
};
|
|
445
466
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
446
467
|
default: boolean;
|
|
447
468
|
};
|
|
@@ -457,8 +478,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
457
478
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
458
479
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
459
480
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
460
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
461
|
-
default: import('
|
|
481
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
482
|
+
default: import('../input').InputValueType;
|
|
462
483
|
};
|
|
463
484
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
464
485
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -494,6 +515,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
494
515
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
495
516
|
default: number;
|
|
496
517
|
};
|
|
518
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
519
|
+
default: boolean;
|
|
520
|
+
};
|
|
497
521
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
498
522
|
default: boolean;
|
|
499
523
|
};
|
|
@@ -509,8 +533,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
509
533
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
510
534
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
511
535
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
512
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
513
|
-
default: import('
|
|
536
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
537
|
+
default: import('../input').InputValueType;
|
|
514
538
|
};
|
|
515
539
|
}>>>> & {
|
|
516
540
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -547,6 +571,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
547
571
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
548
572
|
default: number;
|
|
549
573
|
};
|
|
574
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
575
|
+
default: boolean;
|
|
576
|
+
};
|
|
550
577
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
551
578
|
default: boolean;
|
|
552
579
|
};
|
|
@@ -562,14 +589,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
562
589
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
563
590
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
564
591
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
565
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
566
|
-
default: import('
|
|
592
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
593
|
+
default: import('../input').InputValueType;
|
|
567
594
|
};
|
|
568
595
|
}>>;
|
|
569
596
|
};
|
|
570
597
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
571
598
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
572
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
599
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
573
600
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
574
601
|
default: boolean;
|
|
575
602
|
};
|
|
@@ -585,7 +612,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
585
612
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
586
613
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
587
614
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
588
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
615
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
589
616
|
}>>;
|
|
590
617
|
};
|
|
591
618
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
@@ -608,8 +635,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
608
635
|
default: boolean;
|
|
609
636
|
};
|
|
610
637
|
selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
611
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
612
|
-
default: () => import('
|
|
638
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
639
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
613
640
|
};
|
|
614
641
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
615
642
|
default: string;
|
|
@@ -657,6 +684,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
657
684
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
658
685
|
default: number;
|
|
659
686
|
};
|
|
687
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
688
|
+
default: boolean;
|
|
689
|
+
};
|
|
660
690
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
661
691
|
default: boolean;
|
|
662
692
|
};
|
|
@@ -672,8 +702,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
672
702
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
673
703
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
674
704
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
675
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
676
|
-
default: import('
|
|
705
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
706
|
+
default: import('../input').InputValueType;
|
|
677
707
|
};
|
|
678
708
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
679
709
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -709,6 +739,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
709
739
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
710
740
|
default: number;
|
|
711
741
|
};
|
|
742
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
743
|
+
default: boolean;
|
|
744
|
+
};
|
|
712
745
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
713
746
|
default: boolean;
|
|
714
747
|
};
|
|
@@ -724,8 +757,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
724
757
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
725
758
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
726
759
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
727
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
728
|
-
default: import('
|
|
760
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
761
|
+
default: import('../input').InputValueType;
|
|
729
762
|
};
|
|
730
763
|
}>>>> & {
|
|
731
764
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -762,6 +795,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
762
795
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
763
796
|
default: number;
|
|
764
797
|
};
|
|
798
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
799
|
+
default: boolean;
|
|
800
|
+
};
|
|
765
801
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
766
802
|
default: boolean;
|
|
767
803
|
};
|
|
@@ -777,14 +813,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
777
813
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
778
814
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
779
815
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
780
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
781
|
-
default: import('
|
|
816
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
817
|
+
default: import('../input').InputValueType;
|
|
782
818
|
};
|
|
783
819
|
}>>;
|
|
784
820
|
};
|
|
785
821
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
786
822
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
787
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
823
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
788
824
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
789
825
|
default: boolean;
|
|
790
826
|
};
|
|
@@ -800,10 +836,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
800
836
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
801
837
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
802
838
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
803
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
839
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
804
840
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
805
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
806
|
-
default: () => import('
|
|
841
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
842
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
807
843
|
};
|
|
808
844
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
809
845
|
default: string;
|
|
@@ -851,6 +887,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
851
887
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
852
888
|
default: number;
|
|
853
889
|
};
|
|
890
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
891
|
+
default: boolean;
|
|
892
|
+
};
|
|
854
893
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
855
894
|
default: boolean;
|
|
856
895
|
};
|
|
@@ -866,8 +905,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
866
905
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
867
906
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
868
907
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
869
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
870
|
-
default: import('
|
|
908
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
909
|
+
default: import('../input').InputValueType;
|
|
871
910
|
};
|
|
872
911
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
873
912
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -903,6 +942,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
903
942
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
904
943
|
default: number;
|
|
905
944
|
};
|
|
945
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
946
|
+
default: boolean;
|
|
947
|
+
};
|
|
906
948
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
907
949
|
default: boolean;
|
|
908
950
|
};
|
|
@@ -918,8 +960,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
918
960
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
919
961
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
920
962
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
921
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
922
|
-
default: import('
|
|
963
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
964
|
+
default: import('../input').InputValueType;
|
|
923
965
|
};
|
|
924
966
|
}>>>> & {
|
|
925
967
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -956,6 +998,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
956
998
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
957
999
|
default: number;
|
|
958
1000
|
};
|
|
1001
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1002
|
+
default: boolean;
|
|
1003
|
+
};
|
|
959
1004
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
960
1005
|
default: boolean;
|
|
961
1006
|
};
|
|
@@ -971,14 +1016,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
971
1016
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
972
1017
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
973
1018
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
974
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
975
|
-
default: import('
|
|
1019
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1020
|
+
default: import('../input').InputValueType;
|
|
976
1021
|
};
|
|
977
1022
|
}>>;
|
|
978
1023
|
};
|
|
979
1024
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
980
1025
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
981
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
1026
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
982
1027
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
983
1028
|
default: boolean;
|
|
984
1029
|
};
|
|
@@ -994,11 +1039,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
994
1039
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
995
1040
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
996
1041
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
997
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1042
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
998
1043
|
}>>>> & {
|
|
999
1044
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
1000
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
1001
|
-
default: () => import('
|
|
1045
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
1046
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
1002
1047
|
};
|
|
1003
1048
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1004
1049
|
default: string;
|
|
@@ -1046,6 +1091,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1046
1091
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1047
1092
|
default: number;
|
|
1048
1093
|
};
|
|
1094
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1095
|
+
default: boolean;
|
|
1096
|
+
};
|
|
1049
1097
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1050
1098
|
default: boolean;
|
|
1051
1099
|
};
|
|
@@ -1061,8 +1109,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1061
1109
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1062
1110
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1063
1111
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1064
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1065
|
-
default: import('
|
|
1112
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1113
|
+
default: import('../input').InputValueType;
|
|
1066
1114
|
};
|
|
1067
1115
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
1068
1116
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -1098,6 +1146,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1098
1146
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1099
1147
|
default: number;
|
|
1100
1148
|
};
|
|
1149
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1150
|
+
default: boolean;
|
|
1151
|
+
};
|
|
1101
1152
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1102
1153
|
default: boolean;
|
|
1103
1154
|
};
|
|
@@ -1113,8 +1164,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1113
1164
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1114
1165
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1115
1166
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1116
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1117
|
-
default: import('
|
|
1167
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1168
|
+
default: import('../input').InputValueType;
|
|
1118
1169
|
};
|
|
1119
1170
|
}>>>> & {
|
|
1120
1171
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -1151,6 +1202,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1151
1202
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1152
1203
|
default: number;
|
|
1153
1204
|
};
|
|
1205
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1206
|
+
default: boolean;
|
|
1207
|
+
};
|
|
1154
1208
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1155
1209
|
default: boolean;
|
|
1156
1210
|
};
|
|
@@ -1166,14 +1220,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1166
1220
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1167
1221
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1168
1222
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1169
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1170
|
-
default: import('
|
|
1223
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1224
|
+
default: import('../input').InputValueType;
|
|
1171
1225
|
};
|
|
1172
1226
|
}>>;
|
|
1173
1227
|
};
|
|
1174
1228
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
1175
1229
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
1176
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
1230
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
1177
1231
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1178
1232
|
default: boolean;
|
|
1179
1233
|
};
|
|
@@ -1189,7 +1243,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1189
1243
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1190
1244
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1191
1245
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1192
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1246
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
1193
1247
|
}>>;
|
|
1194
1248
|
};
|
|
1195
1249
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
@@ -1208,8 +1262,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1208
1262
|
validateForm: boolean;
|
|
1209
1263
|
defaultTimezone: boolean;
|
|
1210
1264
|
selectProps: Partial<import('vue').ExtractPropTypes<{
|
|
1211
|
-
options: import('vue-types').VueTypeValidableDef<import('
|
|
1212
|
-
default: () => import('
|
|
1265
|
+
options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
|
|
1266
|
+
default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
|
|
1213
1267
|
};
|
|
1214
1268
|
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1215
1269
|
default: string;
|
|
@@ -1257,6 +1311,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1257
1311
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1258
1312
|
default: number;
|
|
1259
1313
|
};
|
|
1314
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1315
|
+
default: boolean;
|
|
1316
|
+
};
|
|
1260
1317
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1261
1318
|
default: boolean;
|
|
1262
1319
|
};
|
|
@@ -1272,8 +1329,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1272
1329
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1273
1330
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1274
1331
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1275
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1276
|
-
default: import('
|
|
1332
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1333
|
+
default: import('../input').InputValueType;
|
|
1277
1334
|
};
|
|
1278
1335
|
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
1279
1336
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -1309,6 +1366,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1309
1366
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1310
1367
|
default: number;
|
|
1311
1368
|
};
|
|
1369
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1370
|
+
default: boolean;
|
|
1371
|
+
};
|
|
1312
1372
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1313
1373
|
default: boolean;
|
|
1314
1374
|
};
|
|
@@ -1324,8 +1384,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1324
1384
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1325
1385
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1326
1386
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1327
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1328
|
-
default: import('
|
|
1387
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1388
|
+
default: import('../input').InputValueType;
|
|
1329
1389
|
};
|
|
1330
1390
|
}>>>> & {
|
|
1331
1391
|
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
@@ -1362,6 +1422,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1362
1422
|
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1363
1423
|
default: number;
|
|
1364
1424
|
};
|
|
1425
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1426
|
+
default: boolean;
|
|
1427
|
+
};
|
|
1365
1428
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1366
1429
|
default: boolean;
|
|
1367
1430
|
};
|
|
@@ -1377,14 +1440,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1377
1440
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1378
1441
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1379
1442
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1380
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1381
|
-
default: import('
|
|
1443
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1444
|
+
default: import('../input').InputValueType;
|
|
1382
1445
|
};
|
|
1383
1446
|
}>>;
|
|
1384
1447
|
};
|
|
1385
1448
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
1386
1449
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
1387
|
-
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('
|
|
1450
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
|
|
1388
1451
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1389
1452
|
default: boolean;
|
|
1390
1453
|
};
|
|
@@ -1400,7 +1463,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
|
|
|
1400
1463
|
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1401
1464
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1402
1465
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1403
|
-
"v-model-key": import('vue-types').VueTypeDef<import('
|
|
1466
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
|
|
1404
1467
|
}>>;
|
|
1405
1468
|
}>, import('../../../vue-utils/install-utils').InstallOptions>;
|
|
1406
1469
|
export * from './src/hooks/props-define';
|