@polyv/vue-components 1.5.1 → 1.6.1
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 -1
- package/styles/function.scss +4 -2
- package/styles/root/basic.scss +43 -7
- package/styles/variables.scss +35 -4
- package/vue2/index.es.js +8652 -6688
- package/vue2/src/components/alert/index.d.ts +96 -0
- package/vue2/src/components/alert/src/alert.vue.d.ts +50 -0
- package/vue2/src/components/alert/src/props-define.d.ts +54 -0
- package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
- package/vue2/src/components/business/external-links/external-links.vue.d.ts +2 -2
- package/vue2/src/components/business/external-links/use-external-links.d.ts +19 -0
- package/vue2/src/components/business/live-status-tag/index.d.ts +84 -0
- package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
- package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
- package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
- package/vue2/src/components/button/index.d.ts +32 -6
- package/vue2/src/components/button/src/button.vue.d.ts +12 -3
- package/vue2/src/components/button/src/use-button.d.ts +13 -0
- package/vue2/src/components/card/index.d.ts +77 -0
- package/vue2/src/components/card/src/card.vue.d.ts +43 -0
- package/vue2/src/components/card/src/hooks/props-define.d.ts +46 -0
- package/vue2/src/components/dropdown/index.d.ts +175 -4
- package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
- package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
- package/vue2/src/components/empty/index.d.ts +6 -6
- package/vue2/src/components/empty/src/empty.vue.d.ts +2 -2
- package/vue2/src/components/empty/src/props-define.d.ts +1 -1
- package/vue2/src/components/example/example.vue.d.ts +5 -5
- package/vue2/src/components/example/index.d.ts +5 -5
- package/vue2/src/components/example/props-define.d.ts +2 -2
- package/vue2/src/components/exports.d.ts +5 -0
- package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -2
- package/vue2/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
- package/vue2/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
- package/vue2/src/components/form/area-picker/use-area-picker.d.ts +89 -3
- package/vue2/src/components/form/checkbox/index.d.ts +36 -8
- package/vue2/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
- package/vue2/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
- package/vue2/src/components/form/checkbox/src/props-define.d.ts +123 -0
- package/vue2/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
- package/vue2/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
- package/vue2/src/components/form/date-picker/index.d.ts +23 -3
- package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
- package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
- package/vue2/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
- package/vue2/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
- package/vue2/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
- package/vue2/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
- package/vue2/src/components/form/date-picker/src/types/index.d.ts +21 -0
- package/vue2/src/components/form/form-item/index.d.ts +14 -4
- package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
- package/vue2/src/components/form/form-item/src/hooks/config.d.ts +1 -0
- package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
- package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
- package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
- package/vue2/src/components/form/form-item/src/use-form-item.d.ts +5 -78
- package/vue2/src/components/form/form-submit-button/index.d.ts +10 -3
- package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
- package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
- package/vue2/src/components/form/form-wrap/index.d.ts +6 -6
- package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
- package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
- package/vue2/src/components/form/hooks/use-form-clearable.d.ts +19 -0
- package/vue2/src/components/form/hooks/use-form-entrance.d.ts +40 -1
- package/vue2/src/components/form/image-upload/index.d.ts +53 -0
- package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
- package/vue2/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
- package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
- package/vue2/src/components/form/index.d.ts +2 -1
- package/vue2/src/components/form/input/index.d.ts +24 -200
- package/vue2/src/components/form/input/src/input.vue.d.ts +25 -22
- package/vue2/src/components/form/input/src/props-define.d.ts +20 -10
- package/vue2/src/components/form/input/src/use-input.d.ts +3 -1
- package/vue2/src/components/form/input-number/index.d.ts +207 -2
- package/vue2/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
- package/vue2/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
- package/{vue3/src/components/form/input-number → vue2/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
- package/vue2/src/components/form/radio/index.d.ts +70 -23
- package/vue2/src/components/form/radio/src/props-define.d.ts +115 -0
- package/vue2/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
- package/vue2/src/components/form/radio/src/radio.vue.d.ts +7 -2
- package/vue2/src/components/form/radio/src/type.d.ts +13 -1
- package/vue2/src/components/form/select/index.d.ts +280 -28
- package/vue2/src/components/form/select/src/props-define.d.ts +50 -5
- package/vue2/src/components/form/select/src/select.vue.d.ts +98 -10
- package/vue2/src/components/form/switch/index.d.ts +10 -2
- package/vue2/src/components/form/switch/src/props-define.d.ts +5 -1
- package/vue2/src/components/form/switch/src/switch.vue.d.ts +10 -2
- package/vue2/src/components/form/switch/src/use-switch.d.ts +1 -1
- package/vue2/src/components/form/timezone-picker/index.d.ts +1406 -0
- package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
- package/vue2/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
- package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
- package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue2/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
- package/vue2/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
- package/vue2/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
- package/vue2/src/components/icons/icons/clock-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/data-export-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/error/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/filter/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/landscape/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/link/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/portrait/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/rocket/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/statistics/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/success/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/tag/index.d.ts +6 -0
- package/vue2/src/components/icons/map.d.ts +11 -0
- package/vue2/src/components/image-cropper/index.d.ts +22 -0
- package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
- package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
- package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
- package/vue2/src/components/loading/index.d.ts +6 -6
- package/vue2/src/components/loading/src/loading.vue.d.ts +6 -6
- package/vue2/src/components/loading/src/props-define.d.ts +2 -2
- package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
- package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
- package/vue2/src/components/message-box/types.d.ts +27 -0
- package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue2/src/components/popconfirm/index.d.ts +331 -2
- package/vue2/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
- package/{vue3/src/components/popconfirm → vue2/src/components/popconfirm/src}/props-define.d.ts +13 -15
- package/vue2/src/components/popover/index.d.ts +50 -30
- package/vue2/src/components/popover/src/popover.vue.d.ts +18 -11
- package/vue2/src/components/popover/src/props-define.d.ts +12 -4
- package/vue2/src/components/popup/index.d.ts +696 -4
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
- package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
- package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
- package/vue2/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
- package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
- package/vue2/src/components/popup/src/popup.vue.d.ts +402 -0
- package/vue2/src/components/resize-box/resize-box.vue.d.ts +2 -2
- package/vue2/src/components/scrollbar/index.d.ts +18 -2
- package/vue2/src/components/scrollbar/src/props-define.d.ts +13 -0
- package/vue2/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
- package/vue2/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
- package/vue2/src/components/slider/index.d.ts +1 -1
- package/vue2/src/components/slider/src/slider.vue.d.ts +1 -1
- package/vue2/src/components/swiper/hooks/swiper-props.d.ts +1 -1
- package/vue2/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
- package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
- package/vue2/src/components/swiper/swiper.vue.d.ts +2 -2
- package/vue2/src/components/table/index.d.ts +8 -8
- package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
- package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
- package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
- package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
- package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
- package/vue2/src/components/table/src/table.vue.d.ts +1 -1
- package/vue2/src/components/tabs/index.d.ts +145 -0
- package/vue2/src/components/tabs/src/props-define.d.ts +86 -0
- package/vue2/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
- package/vue2/src/components/tabs/src/tabs.vue.d.ts +48 -0
- package/vue2/src/components/tabs/src/types.d.ts +28 -0
- package/vue2/src/components/tag/index.d.ts +28 -28
- package/vue2/src/components/tag/src/props-define.d.ts +6 -6
- package/vue2/src/components/tag/src/tag.vue.d.ts +10 -10
- package/vue2/src/components/tooltip/index.d.ts +16 -16
- package/vue2/src/components/tooltip/src/props-define.d.ts +2 -2
- package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
- package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue2/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
- package/vue2/src/config/index.d.ts +4 -0
- package/vue2/src/hooks/business/use-skin-color/index.d.ts +1 -0
- package/vue2/src/hooks/business/use-skin-color/types.d.ts +4 -0
- package/vue2/src/hooks/business/use-skin-color/utils.d.ts +5 -0
- package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
- package/vue2/src/hooks/interactive/use-scroll/index.d.ts +8 -0
- package/vue2/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
- package/vue2/src/hooks/vue/use-render-slots/index.d.ts +6 -0
- package/vue2/src/hooks/vue/use-vue/index.d.ts +0 -1
- package/vue2/src/lang/internal/en.json.d.ts +20 -1
- package/vue2/src/lang/internal/index.d.ts +19 -0
- package/vue2/src/lang/internal/ja.json.d.ts +20 -1
- package/vue2/src/lang/internal/ko.json.d.ts +20 -1
- package/vue2/src/lang/internal/ru.json.d.ts +20 -1
- package/vue2/src/lang/internal/zh-CN.json.d.ts +20 -1
- package/vue2/src/lang/internal/zh-TW.json.d.ts +20 -1
- package/vue2/src/plugins/cropperjs/index.d.ts +14 -0
- package/vue2/src/utils/string.d.ts +10 -0
- package/vue2/src/vue-utils/render-slot.d.ts +10 -0
- package/vue3/index.es.js +8652 -6688
- package/vue3/src/components/alert/index.d.ts +96 -0
- package/vue3/src/components/alert/src/alert.vue.d.ts +50 -0
- package/vue3/src/components/alert/src/props-define.d.ts +54 -0
- package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
- package/vue3/src/components/business/external-links/external-links.vue.d.ts +2 -2
- package/vue3/src/components/business/external-links/use-external-links.d.ts +19 -0
- package/vue3/src/components/business/live-status-tag/index.d.ts +84 -0
- package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
- package/vue3/src/components/business/live-status-tag/src/playing-icon.vue.d.ts +2 -0
- package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
- package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
- package/vue3/src/components/button/index.d.ts +32 -6
- package/vue3/src/components/button/src/button.vue.d.ts +12 -3
- package/vue3/src/components/button/src/use-button.d.ts +13 -0
- package/vue3/src/components/card/index.d.ts +77 -0
- package/vue3/src/components/card/src/card.vue.d.ts +43 -0
- package/vue3/src/components/card/src/hooks/props-define.d.ts +46 -0
- package/vue3/src/components/dropdown/index.d.ts +175 -4
- package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
- package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
- package/vue3/src/components/empty/index.d.ts +6 -6
- package/vue3/src/components/empty/src/empty.vue.d.ts +2 -2
- package/vue3/src/components/empty/src/props-define.d.ts +1 -1
- package/vue3/src/components/example/example.vue.d.ts +5 -5
- package/vue3/src/components/example/index.d.ts +5 -5
- package/vue3/src/components/example/props-define.d.ts +2 -2
- package/vue3/src/components/exports.d.ts +5 -0
- package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -2
- package/vue3/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
- package/vue3/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
- package/vue3/src/components/form/area-picker/use-area-picker.d.ts +89 -3
- package/vue3/src/components/form/checkbox/index.d.ts +36 -8
- package/vue3/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
- package/vue3/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
- package/vue3/src/components/form/checkbox/src/props-define.d.ts +123 -0
- package/vue3/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
- package/vue3/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
- package/vue3/src/components/form/date-picker/index.d.ts +23 -3
- package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
- package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
- package/vue3/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
- package/vue3/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
- package/vue3/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
- package/vue3/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
- package/vue3/src/components/form/date-picker/src/types/index.d.ts +21 -0
- package/vue3/src/components/form/form-item/index.d.ts +14 -4
- package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
- package/vue3/src/components/form/form-item/src/hooks/config.d.ts +1 -0
- package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
- package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
- package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
- package/vue3/src/components/form/form-item/src/use-form-item.d.ts +5 -78
- package/vue3/src/components/form/form-submit-button/index.d.ts +10 -3
- package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
- package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
- package/vue3/src/components/form/form-wrap/index.d.ts +6 -6
- package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
- package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
- package/vue3/src/components/form/hooks/use-form-clearable.d.ts +19 -0
- package/vue3/src/components/form/hooks/use-form-entrance.d.ts +40 -1
- package/vue3/src/components/form/image-upload/index.d.ts +53 -0
- package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
- package/vue3/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
- package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
- package/vue3/src/components/form/index.d.ts +2 -1
- package/vue3/src/components/form/input/index.d.ts +24 -200
- package/vue3/src/components/form/input/src/input.vue.d.ts +25 -22
- package/vue3/src/components/form/input/src/props-define.d.ts +20 -10
- package/vue3/src/components/form/input/src/use-input.d.ts +3 -1
- package/vue3/src/components/form/input-number/index.d.ts +207 -2
- package/vue3/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
- package/vue3/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
- package/{vue2/src/components/form/input-number → vue3/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
- package/vue3/src/components/form/radio/index.d.ts +70 -23
- package/vue3/src/components/form/radio/src/props-define.d.ts +115 -0
- package/vue3/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
- package/vue3/src/components/form/radio/src/radio.vue.d.ts +7 -2
- package/vue3/src/components/form/radio/src/type.d.ts +13 -1
- package/vue3/src/components/form/select/index.d.ts +280 -28
- package/vue3/src/components/form/select/src/props-define.d.ts +50 -5
- package/vue3/src/components/form/select/src/select.vue.d.ts +98 -10
- package/vue3/src/components/form/switch/index.d.ts +10 -2
- package/vue3/src/components/form/switch/src/props-define.d.ts +5 -1
- package/vue3/src/components/form/switch/src/switch.vue.d.ts +10 -2
- package/vue3/src/components/form/switch/src/use-switch.d.ts +1 -1
- package/vue3/src/components/form/timezone-picker/index.d.ts +1406 -0
- package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
- package/vue3/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
- package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
- package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue3/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
- package/vue3/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
- package/vue3/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
- package/vue3/src/components/icons/icons/clock-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/data-export-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/error/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/filter/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/landscape/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/link/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/portrait/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/rocket/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/statistics/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/success/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/tag/index.d.ts +6 -0
- package/vue3/src/components/icons/map.d.ts +11 -0
- package/vue3/src/components/image-cropper/index.d.ts +22 -0
- package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
- package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
- package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
- package/vue3/src/components/loading/index.d.ts +6 -6
- package/vue3/src/components/loading/src/loading.vue.d.ts +6 -6
- package/vue3/src/components/loading/src/props-define.d.ts +2 -2
- package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
- package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
- package/vue3/src/components/message-box/types.d.ts +27 -0
- package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue3/src/components/popconfirm/index.d.ts +331 -2
- package/vue3/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
- package/{vue2/src/components/popconfirm → vue3/src/components/popconfirm/src}/props-define.d.ts +13 -15
- package/vue3/src/components/popover/index.d.ts +50 -30
- package/vue3/src/components/popover/src/popover.vue.d.ts +18 -11
- package/vue3/src/components/popover/src/props-define.d.ts +12 -4
- package/vue3/src/components/popup/index.d.ts +696 -4
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
- package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
- package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
- package/vue3/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
- package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
- package/vue3/src/components/popup/src/popup.vue.d.ts +402 -0
- package/vue3/src/components/resize-box/resize-box.vue.d.ts +2 -2
- package/vue3/src/components/scrollbar/index.d.ts +18 -2
- package/vue3/src/components/scrollbar/src/props-define.d.ts +13 -0
- package/vue3/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
- package/vue3/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
- package/vue3/src/components/slider/index.d.ts +1 -1
- package/vue3/src/components/slider/src/slider.vue.d.ts +1 -1
- package/vue3/src/components/swiper/hooks/swiper-props.d.ts +1 -1
- package/vue3/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
- package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
- package/vue3/src/components/swiper/swiper.vue.d.ts +2 -2
- package/vue3/src/components/table/index.d.ts +8 -8
- package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
- package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
- package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
- package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
- package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
- package/vue3/src/components/table/src/table.vue.d.ts +1 -1
- package/vue3/src/components/tabs/index.d.ts +145 -0
- package/vue3/src/components/tabs/src/props-define.d.ts +86 -0
- package/vue3/src/components/tabs/src/tab-nav.vue.d.ts +2 -0
- package/vue3/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
- package/vue3/src/components/tabs/src/tabs.vue.d.ts +48 -0
- package/vue3/src/components/tabs/src/types.d.ts +28 -0
- package/vue3/src/components/tag/index.d.ts +28 -28
- package/vue3/src/components/tag/src/props-define.d.ts +6 -6
- package/vue3/src/components/tag/src/tag.vue.d.ts +10 -10
- package/vue3/src/components/tooltip/index.d.ts +16 -16
- package/vue3/src/components/tooltip/src/props-define.d.ts +2 -2
- package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
- package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue3/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
- package/vue3/src/config/index.d.ts +4 -0
- package/vue3/src/hooks/business/use-skin-color/index.d.ts +1 -0
- package/vue3/src/hooks/business/use-skin-color/types.d.ts +4 -0
- package/vue3/src/hooks/business/use-skin-color/utils.d.ts +5 -0
- package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
- package/vue3/src/hooks/interactive/use-scroll/index.d.ts +8 -0
- package/vue3/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
- package/vue3/src/hooks/vue/use-render-slots/index.d.ts +6 -0
- package/vue3/src/hooks/vue/use-vue/index.d.ts +0 -1
- package/vue3/src/lang/internal/en.json.d.ts +20 -1
- package/vue3/src/lang/internal/index.d.ts +19 -0
- package/vue3/src/lang/internal/ja.json.d.ts +20 -1
- package/vue3/src/lang/internal/ko.json.d.ts +20 -1
- package/vue3/src/lang/internal/ru.json.d.ts +20 -1
- package/vue3/src/lang/internal/zh-CN.json.d.ts +20 -1
- package/vue3/src/lang/internal/zh-TW.json.d.ts +20 -1
- package/vue3/src/plugins/cropperjs/index.d.ts +14 -0
- package/vue3/src/utils/string.d.ts +10 -0
- package/vue3/src/vue-utils/render-slot.d.ts +10 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
- package/vue2/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
- package/vue2/src/components/form/radio/src/use-radio-group.d.ts +0 -43
- package/vue2/src/components/form/radio/src/use-radio.d.ts +0 -53
- package/vue2/src/components/popper/hooks.d.ts +0 -7
- package/vue2/src/components/popper/index.d.ts +0 -4
- package/vue2/src/components/popper/popper-content.vue.d.ts +0 -19
- package/vue2/src/components/popper/popper-reference.vue.d.ts +0 -17
- package/vue2/src/components/popper/popper.vue.d.ts +0 -58
- package/vue2/src/components/popper/props-define.d.ts +0 -41
- package/vue2/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
- package/vue2/src/components/popup/popup.vue.d.ts +0 -225
- package/vue2/src/components/slot/index.d.ts +0 -6
- package/vue3/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
- package/vue3/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
- package/vue3/src/components/form/radio/src/use-radio-group.d.ts +0 -43
- package/vue3/src/components/form/radio/src/use-radio.d.ts +0 -53
- package/vue3/src/components/popper/hooks.d.ts +0 -7
- package/vue3/src/components/popper/index.d.ts +0 -4
- package/vue3/src/components/popper/popper-content.vue.d.ts +0 -19
- package/vue3/src/components/popper/popper-reference.vue.d.ts +0 -17
- package/vue3/src/components/popper/popper.vue.d.ts +0 -58
- package/vue3/src/components/popper/props-define.d.ts +0 -41
- package/vue3/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
- package/vue3/src/components/popup/popup.vue.d.ts +0 -225
- package/vue3/src/components/slot/index.d.ts +0 -6
- /package/vue2/src/components/{form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → business/live-status-tag/src/playing-icon.vue.d.ts} +0 -0
- /package/vue2/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
- /package/vue2/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
- /package/vue2/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
- /package/{vue3/src/components/form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → vue2/src/components/tabs/src/tab-nav.vue.d.ts} +0 -0
- /package/vue3/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
- /package/vue3/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
- /package/vue3/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
|
@@ -42,17 +42,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
42
42
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
46
|
+
default: number;
|
|
47
|
+
};
|
|
48
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
49
|
+
default: number;
|
|
50
|
+
};
|
|
45
51
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
46
52
|
default: boolean;
|
|
47
53
|
};
|
|
48
54
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
49
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
55
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
50
56
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
51
57
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
52
58
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
53
59
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
54
60
|
default: boolean;
|
|
55
61
|
};
|
|
62
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
63
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
64
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
65
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
56
66
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
57
67
|
default: import('..').InputValueType;
|
|
58
68
|
};
|
|
@@ -84,17 +94,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
84
94
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
85
95
|
default: boolean;
|
|
86
96
|
};
|
|
97
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
98
|
+
default: number;
|
|
99
|
+
};
|
|
100
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
101
|
+
default: number;
|
|
102
|
+
};
|
|
87
103
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
88
104
|
default: boolean;
|
|
89
105
|
};
|
|
90
106
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
91
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
107
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
92
108
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
93
109
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
94
110
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
95
111
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
96
112
|
default: boolean;
|
|
97
113
|
};
|
|
114
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
115
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
116
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
117
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
98
118
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
99
119
|
default: import('..').InputValueType;
|
|
100
120
|
};
|
|
@@ -127,17 +147,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
127
147
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
128
148
|
default: boolean;
|
|
129
149
|
};
|
|
150
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
151
|
+
default: number;
|
|
152
|
+
};
|
|
153
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
154
|
+
default: number;
|
|
155
|
+
};
|
|
130
156
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
131
157
|
default: boolean;
|
|
132
158
|
};
|
|
133
159
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
134
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
160
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
135
161
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
136
162
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
137
163
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
138
164
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
139
165
|
default: boolean;
|
|
140
166
|
};
|
|
167
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
168
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
169
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
170
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
141
171
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
142
172
|
default: import('..').InputValueType;
|
|
143
173
|
};
|
|
@@ -145,14 +175,22 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
145
175
|
};
|
|
146
176
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
147
177
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
178
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
179
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
180
|
+
default: boolean;
|
|
181
|
+
};
|
|
148
182
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
149
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
183
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
150
184
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
151
185
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
152
186
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
153
187
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
154
188
|
default: boolean;
|
|
155
189
|
};
|
|
190
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
191
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
192
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
193
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
156
194
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
157
195
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
158
196
|
options: import('vue-types').VueTypeValidableDef<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[]>> & {
|
|
@@ -198,17 +236,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
198
236
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
199
237
|
default: boolean;
|
|
200
238
|
};
|
|
239
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
240
|
+
default: number;
|
|
241
|
+
};
|
|
242
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
243
|
+
default: number;
|
|
244
|
+
};
|
|
201
245
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
202
246
|
default: boolean;
|
|
203
247
|
};
|
|
204
248
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
205
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
249
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
206
250
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
207
251
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
208
252
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
209
253
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
210
254
|
default: boolean;
|
|
211
255
|
};
|
|
256
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
257
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
258
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
259
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
212
260
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
213
261
|
default: import('..').InputValueType;
|
|
214
262
|
};
|
|
@@ -240,17 +288,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
240
288
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
241
289
|
default: boolean;
|
|
242
290
|
};
|
|
291
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
292
|
+
default: number;
|
|
293
|
+
};
|
|
294
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
295
|
+
default: number;
|
|
296
|
+
};
|
|
243
297
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
244
298
|
default: boolean;
|
|
245
299
|
};
|
|
246
300
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
247
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
301
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
248
302
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
249
303
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
250
304
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
251
305
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
252
306
|
default: boolean;
|
|
253
307
|
};
|
|
308
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
309
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
310
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
311
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
254
312
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
255
313
|
default: import('..').InputValueType;
|
|
256
314
|
};
|
|
@@ -283,17 +341,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
283
341
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
284
342
|
default: boolean;
|
|
285
343
|
};
|
|
344
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
345
|
+
default: number;
|
|
346
|
+
};
|
|
347
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
348
|
+
default: number;
|
|
349
|
+
};
|
|
286
350
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
287
351
|
default: boolean;
|
|
288
352
|
};
|
|
289
353
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
290
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
354
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
291
355
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
292
356
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
293
357
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
294
358
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
295
359
|
default: boolean;
|
|
296
360
|
};
|
|
361
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
362
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
363
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
364
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
297
365
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
298
366
|
default: import('..').InputValueType;
|
|
299
367
|
};
|
|
@@ -301,24 +369,34 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
301
369
|
};
|
|
302
370
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
303
371
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
372
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
373
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
374
|
+
default: boolean;
|
|
375
|
+
};
|
|
304
376
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
305
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
377
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
306
378
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
307
379
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
308
380
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
309
381
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
310
382
|
default: boolean;
|
|
311
383
|
};
|
|
384
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
385
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
386
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
387
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
312
388
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
313
389
|
}>>, {
|
|
314
390
|
change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
|
|
391
|
+
clear: (arg?: void | undefined) => void;
|
|
315
392
|
"options-end-reached": (arg?: void | undefined) => void;
|
|
316
393
|
}, {
|
|
317
394
|
search: boolean;
|
|
318
|
-
multiple: boolean;
|
|
319
395
|
placeholder: string;
|
|
396
|
+
multiple: boolean;
|
|
320
397
|
options: import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[];
|
|
321
398
|
validateForm: boolean;
|
|
399
|
+
clearable: boolean;
|
|
322
400
|
max: number;
|
|
323
401
|
searchInputProps: Partial<import('vue').ExtractPropTypes<{
|
|
324
402
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -348,17 +426,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
348
426
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
349
427
|
default: boolean;
|
|
350
428
|
};
|
|
429
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
430
|
+
default: number;
|
|
431
|
+
};
|
|
432
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
433
|
+
default: number;
|
|
434
|
+
};
|
|
351
435
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
352
436
|
default: boolean;
|
|
353
437
|
};
|
|
354
438
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
355
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
439
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
356
440
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
357
441
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
358
442
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
359
443
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
360
444
|
default: boolean;
|
|
361
445
|
};
|
|
446
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
447
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
448
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
449
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
362
450
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
363
451
|
default: import('..').InputValueType;
|
|
364
452
|
};
|
|
@@ -407,17 +495,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
407
495
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
408
496
|
default: boolean;
|
|
409
497
|
};
|
|
498
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
499
|
+
default: number;
|
|
500
|
+
};
|
|
501
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
502
|
+
default: number;
|
|
503
|
+
};
|
|
410
504
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
411
505
|
default: boolean;
|
|
412
506
|
};
|
|
413
507
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
414
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
508
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
415
509
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
416
510
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
417
511
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
418
512
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
419
513
|
default: boolean;
|
|
420
514
|
};
|
|
515
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
516
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
517
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
518
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
421
519
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
422
520
|
default: import('..').InputValueType;
|
|
423
521
|
};
|
|
@@ -449,17 +547,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
449
547
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
450
548
|
default: boolean;
|
|
451
549
|
};
|
|
550
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
551
|
+
default: number;
|
|
552
|
+
};
|
|
553
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
554
|
+
default: number;
|
|
555
|
+
};
|
|
452
556
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
453
557
|
default: boolean;
|
|
454
558
|
};
|
|
455
559
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
456
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
560
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
457
561
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
458
562
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
459
563
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
460
564
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
461
565
|
default: boolean;
|
|
462
566
|
};
|
|
567
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
568
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
569
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
570
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
463
571
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
464
572
|
default: import('..').InputValueType;
|
|
465
573
|
};
|
|
@@ -492,17 +600,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
492
600
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
493
601
|
default: boolean;
|
|
494
602
|
};
|
|
603
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
604
|
+
default: number;
|
|
605
|
+
};
|
|
606
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
607
|
+
default: number;
|
|
608
|
+
};
|
|
495
609
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
496
610
|
default: boolean;
|
|
497
611
|
};
|
|
498
612
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
499
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
613
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
500
614
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
501
615
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
502
616
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
503
617
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
504
618
|
default: boolean;
|
|
505
619
|
};
|
|
620
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
621
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
622
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
623
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
506
624
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
507
625
|
default: import('..').InputValueType;
|
|
508
626
|
};
|
|
@@ -510,14 +628,22 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
510
628
|
};
|
|
511
629
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
512
630
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
631
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
632
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
633
|
+
default: boolean;
|
|
634
|
+
};
|
|
513
635
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
514
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
636
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
515
637
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
516
638
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
517
639
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
518
640
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
519
641
|
default: boolean;
|
|
520
642
|
};
|
|
643
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
644
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
645
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
646
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
521
647
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
522
648
|
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
523
649
|
options: import('vue-types').VueTypeValidableDef<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[]>> & {
|
|
@@ -563,17 +689,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
563
689
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
564
690
|
default: boolean;
|
|
565
691
|
};
|
|
692
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
693
|
+
default: number;
|
|
694
|
+
};
|
|
695
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
696
|
+
default: number;
|
|
697
|
+
};
|
|
566
698
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
567
699
|
default: boolean;
|
|
568
700
|
};
|
|
569
701
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
570
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
702
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
571
703
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
572
704
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
573
705
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
574
706
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
575
707
|
default: boolean;
|
|
576
708
|
};
|
|
709
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
710
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
711
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
712
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
577
713
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
578
714
|
default: import('..').InputValueType;
|
|
579
715
|
};
|
|
@@ -605,17 +741,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
605
741
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
606
742
|
default: boolean;
|
|
607
743
|
};
|
|
744
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
745
|
+
default: number;
|
|
746
|
+
};
|
|
747
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
748
|
+
default: number;
|
|
749
|
+
};
|
|
608
750
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
609
751
|
default: boolean;
|
|
610
752
|
};
|
|
611
753
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
612
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
754
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
613
755
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
614
756
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
615
757
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
616
758
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
617
759
|
default: boolean;
|
|
618
760
|
};
|
|
761
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
762
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
763
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
764
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
619
765
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
620
766
|
default: import('..').InputValueType;
|
|
621
767
|
};
|
|
@@ -648,17 +794,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
648
794
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
649
795
|
default: boolean;
|
|
650
796
|
};
|
|
797
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
798
|
+
default: number;
|
|
799
|
+
};
|
|
800
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
801
|
+
default: number;
|
|
802
|
+
};
|
|
651
803
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
652
804
|
default: boolean;
|
|
653
805
|
};
|
|
654
806
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
655
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
807
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
656
808
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
657
809
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
658
810
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
659
811
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
660
812
|
default: boolean;
|
|
661
813
|
};
|
|
814
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
815
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
816
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
817
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
662
818
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
663
819
|
default: import('..').InputValueType;
|
|
664
820
|
};
|
|
@@ -666,14 +822,22 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
666
822
|
};
|
|
667
823
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
668
824
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
825
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
826
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
827
|
+
default: boolean;
|
|
828
|
+
};
|
|
669
829
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
670
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
830
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
671
831
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
672
832
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
673
833
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
674
834
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
675
835
|
default: boolean;
|
|
676
836
|
};
|
|
837
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
838
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
839
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
840
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
677
841
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
678
842
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
679
843
|
options: import('vue-types').VueTypeValidableDef<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[]>> & {
|
|
@@ -719,17 +883,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
719
883
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
720
884
|
default: boolean;
|
|
721
885
|
};
|
|
886
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
887
|
+
default: number;
|
|
888
|
+
};
|
|
889
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
890
|
+
default: number;
|
|
891
|
+
};
|
|
722
892
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
723
893
|
default: boolean;
|
|
724
894
|
};
|
|
725
895
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
726
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
896
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
727
897
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
728
898
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
729
899
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
730
900
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
731
901
|
default: boolean;
|
|
732
902
|
};
|
|
903
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
904
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
905
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
906
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
733
907
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
734
908
|
default: import('..').InputValueType;
|
|
735
909
|
};
|
|
@@ -761,17 +935,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
761
935
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
762
936
|
default: boolean;
|
|
763
937
|
};
|
|
938
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
939
|
+
default: number;
|
|
940
|
+
};
|
|
941
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
942
|
+
default: number;
|
|
943
|
+
};
|
|
764
944
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
765
945
|
default: boolean;
|
|
766
946
|
};
|
|
767
947
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
768
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
948
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
769
949
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
770
950
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
771
951
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
772
952
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
773
953
|
default: boolean;
|
|
774
954
|
};
|
|
955
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
956
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
957
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
958
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
775
959
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
776
960
|
default: import('..').InputValueType;
|
|
777
961
|
};
|
|
@@ -804,17 +988,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
804
988
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
805
989
|
default: boolean;
|
|
806
990
|
};
|
|
991
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
992
|
+
default: number;
|
|
993
|
+
};
|
|
994
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
995
|
+
default: number;
|
|
996
|
+
};
|
|
807
997
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
808
998
|
default: boolean;
|
|
809
999
|
};
|
|
810
1000
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
811
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1001
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
812
1002
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
813
1003
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
814
1004
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
815
1005
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
816
1006
|
default: boolean;
|
|
817
1007
|
};
|
|
1008
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1009
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1010
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1011
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
818
1012
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
819
1013
|
default: import('..').InputValueType;
|
|
820
1014
|
};
|
|
@@ -822,24 +1016,34 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
822
1016
|
};
|
|
823
1017
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
824
1018
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
1019
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
1020
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1021
|
+
default: boolean;
|
|
1022
|
+
};
|
|
825
1023
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
826
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1024
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
827
1025
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
828
1026
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
829
1027
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
830
1028
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
831
1029
|
default: boolean;
|
|
832
1030
|
};
|
|
1031
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1032
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1033
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1034
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
833
1035
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
834
1036
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
835
1037
|
change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
|
|
1038
|
+
clear: (arg?: void | undefined) => void;
|
|
836
1039
|
"options-end-reached": (arg?: void | undefined) => void;
|
|
837
1040
|
}, string, {
|
|
838
1041
|
search: boolean;
|
|
839
|
-
multiple: boolean;
|
|
840
1042
|
placeholder: string;
|
|
1043
|
+
multiple: boolean;
|
|
841
1044
|
options: import('./src/type').SelectOptionItem<import('./src/type').SelectValue>[];
|
|
842
1045
|
validateForm: boolean;
|
|
1046
|
+
clearable: boolean;
|
|
843
1047
|
max: number;
|
|
844
1048
|
searchInputProps: Partial<import('vue').ExtractPropTypes<{
|
|
845
1049
|
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
@@ -869,17 +1073,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
869
1073
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
870
1074
|
default: boolean;
|
|
871
1075
|
};
|
|
1076
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1077
|
+
default: number;
|
|
1078
|
+
};
|
|
1079
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1080
|
+
default: number;
|
|
1081
|
+
};
|
|
872
1082
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
873
1083
|
default: boolean;
|
|
874
1084
|
};
|
|
875
1085
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
876
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1086
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
877
1087
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
878
1088
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
879
1089
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
880
1090
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
881
1091
|
default: boolean;
|
|
882
1092
|
};
|
|
1093
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1094
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1095
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1096
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
883
1097
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
884
1098
|
default: import('..').InputValueType;
|
|
885
1099
|
};
|
|
@@ -929,17 +1143,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
929
1143
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
930
1144
|
default: boolean;
|
|
931
1145
|
};
|
|
1146
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1147
|
+
default: number;
|
|
1148
|
+
};
|
|
1149
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1150
|
+
default: number;
|
|
1151
|
+
};
|
|
932
1152
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
933
1153
|
default: boolean;
|
|
934
1154
|
};
|
|
935
1155
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
936
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1156
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
937
1157
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
938
1158
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
939
1159
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
940
1160
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
941
1161
|
default: boolean;
|
|
942
1162
|
};
|
|
1163
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1164
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1165
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1166
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
943
1167
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
944
1168
|
default: import('..').InputValueType;
|
|
945
1169
|
};
|
|
@@ -971,17 +1195,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
971
1195
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
972
1196
|
default: boolean;
|
|
973
1197
|
};
|
|
1198
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1199
|
+
default: number;
|
|
1200
|
+
};
|
|
1201
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1202
|
+
default: number;
|
|
1203
|
+
};
|
|
974
1204
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
975
1205
|
default: boolean;
|
|
976
1206
|
};
|
|
977
1207
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
978
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1208
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
979
1209
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
980
1210
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
981
1211
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
982
1212
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
983
1213
|
default: boolean;
|
|
984
1214
|
};
|
|
1215
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1216
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1217
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1218
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
985
1219
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
986
1220
|
default: import('..').InputValueType;
|
|
987
1221
|
};
|
|
@@ -1014,17 +1248,27 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
1014
1248
|
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1015
1249
|
default: boolean;
|
|
1016
1250
|
};
|
|
1251
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1252
|
+
default: number;
|
|
1253
|
+
};
|
|
1254
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1255
|
+
default: number;
|
|
1256
|
+
};
|
|
1017
1257
|
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1018
1258
|
default: boolean;
|
|
1019
1259
|
};
|
|
1020
1260
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1021
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1261
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1022
1262
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1023
1263
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1024
1264
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1025
1265
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1026
1266
|
default: boolean;
|
|
1027
1267
|
};
|
|
1268
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1269
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1270
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1271
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1028
1272
|
"v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
|
|
1029
1273
|
default: import('..').InputValueType;
|
|
1030
1274
|
};
|
|
@@ -1032,14 +1276,22 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
1032
1276
|
};
|
|
1033
1277
|
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
1034
1278
|
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
1279
|
+
getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
|
|
1280
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1281
|
+
default: boolean;
|
|
1282
|
+
};
|
|
1035
1283
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1036
|
-
size: import('vue-types').VueTypeDef<"small" | "
|
|
1284
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1037
1285
|
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1038
1286
|
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1039
1287
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1040
1288
|
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1041
1289
|
default: boolean;
|
|
1042
1290
|
};
|
|
1291
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1292
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1293
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1294
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1043
1295
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
1044
1296
|
};
|
|
1045
1297
|
} & (new () => {
|