@polyv/vue-components 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/vue2/index.es.js +15629 -12581
- package/vue2/src/components/alert/index.d.ts +14 -14
- package/vue2/src/components/alert/src/alert.vue.d.ts +5 -5
- package/vue2/src/components/alert/src/props-define.d.ts +2 -2
- package/vue2/src/components/animation/bubble-animation/bubble-animation.vue.d.ts +1 -1
- package/vue2/src/components/animation/number-animation/index.d.ts +118 -0
- package/vue2/src/components/animation/number-animation/src/number-animation.vue.d.ts +58 -0
- package/vue2/src/components/animation/number-animation/src/props-define.d.ts +58 -0
- package/vue2/src/components/badge/index.d.ts +63 -0
- package/vue2/src/components/badge/src/badge.vue.d.ts +37 -0
- package/vue2/src/components/badge/src/props-define.d.ts +29 -0
- package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +23 -19
- package/vue2/src/components/business/external-links/external-links.vue.d.ts +7 -0
- package/vue2/src/components/business/external-links/index.d.ts +38 -1
- package/vue2/src/components/business/external-links/use-external-links.d.ts +39 -1
- package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +14 -0
- package/vue2/src/components/button/index.d.ts +2 -2
- package/vue2/src/components/button/src/button.vue.d.ts +1 -1
- package/vue2/src/components/color-cell/index.d.ts +12 -0
- package/vue2/src/components/color-cell/src/color-cell.vue.d.ts +12 -0
- package/vue2/src/components/color-cell/src/props-define.d.ts +8 -0
- package/vue2/src/components/condition-filter/index.d.ts +46 -0
- package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +9 -0
- package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +7 -0
- package/vue2/src/components/condition-filter/src/props-define.d.ts +18 -0
- package/vue2/src/components/descriptions/index.d.ts +106 -0
- package/vue2/src/components/descriptions/src/descriptions-item.vue.d.ts +32 -0
- package/vue2/src/components/descriptions/src/descriptions.d.ts +58 -0
- package/vue2/src/components/descriptions/src/inject.d.ts +7 -0
- package/vue2/src/components/descriptions/src/item-cell.d.ts +15 -0
- package/vue2/src/components/descriptions/src/props-define.d.ts +81 -0
- package/vue2/src/components/dropdown/index.d.ts +58 -58
- package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +1 -1
- package/vue2/src/components/dropdown/src/dropdown.vue.d.ts +15 -15
- package/vue2/src/components/dropdown/src/sub-dropdown.vue.d.ts +5 -5
- package/vue2/src/components/dropdown/src/use-dropdown.d.ts +8 -8
- 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 +14 -14
- package/vue2/src/components/example/props-define.d.ts +2 -2
- package/vue2/src/components/exports.d.ts +10 -0
- package/vue2/src/components/file-icon/index.d.ts +15 -1
- package/vue2/src/components/form/color-picker/index.d.ts +82 -0
- package/vue2/src/components/form/color-picker/src/color-picker.vue.d.ts +82 -0
- package/vue2/src/components/form/color-picker/src/props-define.d.ts +65 -0
- package/vue2/src/components/form/file-upload/index.d.ts +106 -42
- package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +36 -14
- package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +28 -7
- package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -1
- package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
- package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
- package/vue2/src/components/form/image-upload/index.d.ts +24 -12
- package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +12 -6
- package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +24 -12
- package/vue2/src/components/form/input/index.d.ts +2 -2
- package/vue2/src/components/form/input/src/input.vue.d.ts +2 -2
- package/vue2/src/components/form/input-number/index.d.ts +2 -2
- package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
- package/vue2/src/components/form/select/index.d.ts +934 -5
- package/vue2/src/components/form/select/src/props-define.d.ts +4 -0
- package/vue2/src/components/form/select/src/select.vue.d.ts +59 -13
- package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue2/src/components/form/tree-select/index.d.ts +74 -0
- package/vue2/src/components/form/tree-select/src/props-define.d.ts +59 -0
- package/vue2/src/components/form/tree-select/src/tree-select.vue.d.ts +76 -0
- package/vue2/src/components/grid/index.d.ts +111 -0
- package/vue2/src/components/grid/src/col.vue.d.ts +34 -0
- package/vue2/src/components/grid/src/inject-key.d.ts +10 -0
- package/vue2/src/components/grid/src/props-define.d.ts +35 -0
- package/vue2/src/components/grid/src/row.vue.d.ts +35 -0
- package/vue2/src/components/icons/icons/crop/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/grid/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/pause/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/play/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/violation/index.d.ts +6 -0
- package/vue2/src/components/icons/map.d.ts +5 -0
- package/vue2/src/components/image/index.d.ts +6 -6
- package/vue2/src/components/image/src/image.vue.d.ts +2 -2
- package/vue2/src/components/image/src/props-define.d.ts +1 -1
- package/vue2/src/components/image-cropper/index.d.ts +14 -8
- package/vue2/src/components/image-cropper/src/cropper-layer/use-cropper-layer.d.ts +41 -0
- package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +22 -19
- package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +35 -9
- package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +16 -9
- package/vue2/src/components/notification/index.d.ts +2 -0
- package/vue2/src/components/notification/src/hooks.d.ts +15 -0
- package/vue2/src/components/notification/src/notification-popover.vue.d.ts +21 -0
- package/vue2/src/components/notification/src/notification.d.ts +23 -0
- package/vue2/src/components/notification/src/position-management.d.ts +16 -0
- package/vue2/src/components/notification/src/types.d.ts +26 -0
- package/vue2/src/components/pagination/index.d.ts +1 -1
- package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue2/src/components/popconfirm/index.d.ts +38 -34
- package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +37 -34
- package/vue2/src/components/popconfirm/src/props-define.d.ts +12 -4
- package/vue2/src/components/popover/index.d.ts +36 -34
- package/vue2/src/components/popover/src/popover.vue.d.ts +14 -13
- package/vue2/src/components/popover/src/props-define.d.ts +14 -5
- package/vue2/src/components/popup/index.d.ts +36 -30
- package/vue2/src/components/popup/src/hooks/popup-props.d.ts +8 -4
- package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +1 -1
- package/vue2/src/components/popup/src/hooks/use-popup-position.d.ts +1 -1
- package/vue2/src/components/popup/src/popup.vue.d.ts +13 -11
- package/vue2/src/components/splitter/index.d.ts +87 -0
- package/vue2/src/components/splitter/src/inject-key.d.ts +16 -0
- package/vue2/src/components/splitter/src/props-define.d.ts +32 -0
- package/vue2/src/components/splitter/src/splitter-panel.vue.d.ts +25 -0
- package/vue2/src/components/splitter/src/splitter.vue.d.ts +36 -0
- package/vue2/src/components/swiper/index.d.ts +212 -2
- package/vue2/src/components/table/index.d.ts +62 -11
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +19 -1
- package/vue2/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue2/src/components/table/src/components/table-multiple-select/table-row-multiple.vue.d.ts +5 -1
- package/vue2/src/components/table/src/components/table-multiple-select/use-table-multiple.d.ts +1 -0
- package/vue2/src/components/table/src/components/table-single-select/table-row-single.vue.d.ts +34 -0
- package/vue2/src/components/table/src/components/table-single-select/use-table-single.d.ts +7 -0
- package/vue2/src/components/table/src/hooks/props-define.d.ts +30 -5
- package/vue2/src/components/table/src/hooks/use-table/use-table-request.d.ts +3 -2
- package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
- package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +4 -2
- package/vue2/src/components/table/src/table-column.vue.d.ts +7 -3
- package/vue2/src/components/table/src/table.vue.d.ts +2 -1
- package/vue2/src/components/table/src/types/index.d.ts +1 -0
- package/vue2/src/components/table-operation/index.d.ts +24 -2
- package/vue2/src/components/table-operation/src/props-define.d.ts +7 -0
- package/vue2/src/components/table-operation/src/table-operation-item.vue.d.ts +9 -1
- package/vue2/src/components/tag/index.d.ts +16 -16
- package/vue2/src/components/tag/src/props-define.d.ts +2 -2
- package/vue2/src/components/tag/src/tag.vue.d.ts +6 -6
- package/vue2/src/components/toast/_component/toast-element.vue.d.ts +1 -1
- package/vue2/src/components/tooltip/index.d.ts +30 -30
- package/vue2/src/components/tooltip/src/props-define.d.ts +4 -4
- package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +11 -11
- package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue2/src/components/tree/index.d.ts +36 -0
- package/vue2/src/components/tree/src/hooks/use-tree.d.ts +25 -0
- package/vue2/src/components/tree/src/props-define.d.ts +103 -0
- package/vue2/src/components/tree/src/tree-node.vue.d.ts +11 -0
- package/vue2/src/components/tree/src/tree.vue.d.ts +36 -0
- package/vue2/src/hooks/element/use-breakpoint/index.d.ts +10 -0
- package/vue2/src/interface/enum.d.ts +2 -0
- package/vue2/src/lang/internal/en.json.d.ts +27 -13
- package/vue2/src/lang/internal/index.d.ts +14 -0
- package/vue2/src/lang/internal/ja.json.d.ts +27 -13
- package/vue2/src/lang/internal/ko.json.d.ts +27 -13
- package/vue2/src/lang/internal/ru.json.d.ts +27 -13
- package/vue2/src/lang/internal/zh-CN.json.d.ts +28 -14
- package/vue2/src/lang/internal/zh-TW.json.d.ts +27 -13
- package/vue2/src/vue-utils/render-slot.d.ts +9 -1
- package/vue2/src/vue-utils/version-compatible/types.d.ts +9 -0
- package/vue3/index.es.js +14584 -11332
- package/vue3/src/components/alert/index.d.ts +14 -14
- package/vue3/src/components/alert/src/alert.vue.d.ts +5 -5
- package/vue3/src/components/alert/src/props-define.d.ts +2 -2
- package/vue3/src/components/animation/bubble-animation/bubble-animation.vue.d.ts +1 -1
- package/vue3/src/components/animation/number-animation/index.d.ts +118 -0
- package/vue3/src/components/animation/number-animation/src/number-animation.vue.d.ts +58 -0
- package/vue3/src/components/animation/number-animation/src/props-define.d.ts +58 -0
- package/vue3/src/components/badge/index.d.ts +63 -0
- package/vue3/src/components/badge/src/badge.vue.d.ts +37 -0
- package/vue3/src/components/badge/src/props-define.d.ts +29 -0
- package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +23 -19
- package/vue3/src/components/business/external-links/external-links.vue.d.ts +7 -0
- package/vue3/src/components/business/external-links/index.d.ts +38 -1
- package/vue3/src/components/business/external-links/use-external-links.d.ts +39 -1
- package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +14 -0
- package/vue3/src/components/button/index.d.ts +2 -2
- package/vue3/src/components/button/src/button.vue.d.ts +1 -1
- package/vue3/src/components/color-cell/index.d.ts +12 -0
- package/vue3/src/components/color-cell/src/color-cell.vue.d.ts +12 -0
- package/vue3/src/components/color-cell/src/props-define.d.ts +8 -0
- package/vue3/src/components/condition-filter/index.d.ts +46 -0
- package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +9 -0
- package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +7 -0
- package/vue3/src/components/condition-filter/src/props-define.d.ts +18 -0
- package/vue3/src/components/descriptions/index.d.ts +106 -0
- package/vue3/src/components/descriptions/src/descriptions-item.vue.d.ts +32 -0
- package/vue3/src/components/descriptions/src/descriptions.d.ts +58 -0
- package/vue3/src/components/descriptions/src/inject.d.ts +7 -0
- package/vue3/src/components/descriptions/src/item-cell.d.ts +15 -0
- package/vue3/src/components/descriptions/src/props-define.d.ts +81 -0
- package/vue3/src/components/dropdown/index.d.ts +58 -58
- package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +1 -1
- package/vue3/src/components/dropdown/src/dropdown.vue.d.ts +15 -15
- package/vue3/src/components/dropdown/src/sub-dropdown.vue.d.ts +5 -5
- package/vue3/src/components/dropdown/src/use-dropdown.d.ts +8 -8
- 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 +14 -14
- package/vue3/src/components/example/props-define.d.ts +2 -2
- package/vue3/src/components/exports.d.ts +10 -0
- package/vue3/src/components/file-icon/index.d.ts +15 -1
- package/vue3/src/components/form/color-picker/index.d.ts +82 -0
- package/vue3/src/components/form/color-picker/src/color-picker.vue.d.ts +82 -0
- package/vue3/src/components/form/color-picker/src/props-define.d.ts +65 -0
- package/vue3/src/components/form/file-upload/index.d.ts +106 -42
- package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +36 -14
- package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +28 -7
- package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -1
- package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
- package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
- package/vue3/src/components/form/image-upload/index.d.ts +24 -12
- package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +12 -6
- package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +24 -12
- package/vue3/src/components/form/input/index.d.ts +2 -2
- package/vue3/src/components/form/input/src/input.vue.d.ts +2 -2
- package/vue3/src/components/form/input-number/index.d.ts +2 -2
- package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
- package/vue3/src/components/form/select/index.d.ts +934 -5
- package/vue3/src/components/form/select/src/props-define.d.ts +4 -0
- package/vue3/src/components/form/select/src/select.vue.d.ts +59 -13
- package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue3/src/components/form/tree-select/index.d.ts +74 -0
- package/vue3/src/components/form/tree-select/src/props-define.d.ts +59 -0
- package/vue3/src/components/form/tree-select/src/tree-select.vue.d.ts +76 -0
- package/vue3/src/components/grid/index.d.ts +111 -0
- package/vue3/src/components/grid/src/col.vue.d.ts +34 -0
- package/vue3/src/components/grid/src/inject-key.d.ts +10 -0
- package/vue3/src/components/grid/src/props-define.d.ts +35 -0
- package/vue3/src/components/grid/src/row.vue.d.ts +35 -0
- package/vue3/src/components/icons/icons/crop/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/grid/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/pause/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/play/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/violation/index.d.ts +6 -0
- package/vue3/src/components/icons/map.d.ts +5 -0
- package/vue3/src/components/image/index.d.ts +6 -6
- package/vue3/src/components/image/src/image.vue.d.ts +2 -2
- package/vue3/src/components/image/src/props-define.d.ts +1 -1
- package/vue3/src/components/image-cropper/index.d.ts +14 -8
- package/vue3/src/components/image-cropper/src/cropper-layer/cropper-layer.vue.d.ts +2 -0
- package/vue3/src/components/image-cropper/src/cropper-layer/use-cropper-layer.d.ts +41 -0
- package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +22 -19
- package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +35 -9
- package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +16 -9
- package/vue3/src/components/image-cropper/src/image-layer/image-layer.vue.d.ts +2 -0
- package/vue3/src/components/notification/index.d.ts +2 -0
- package/vue3/src/components/notification/src/hooks.d.ts +15 -0
- package/vue3/src/components/notification/src/notification-popover.vue.d.ts +21 -0
- package/vue3/src/components/notification/src/notification.d.ts +23 -0
- package/vue3/src/components/notification/src/position-management.d.ts +16 -0
- package/vue3/src/components/notification/src/types.d.ts +26 -0
- package/vue3/src/components/pagination/index.d.ts +1 -1
- package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue3/src/components/popconfirm/index.d.ts +38 -34
- package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +37 -34
- package/vue3/src/components/popconfirm/src/props-define.d.ts +12 -4
- package/vue3/src/components/popover/index.d.ts +36 -34
- package/vue3/src/components/popover/src/popover.vue.d.ts +14 -13
- package/vue3/src/components/popover/src/props-define.d.ts +14 -5
- package/vue3/src/components/popup/index.d.ts +36 -30
- package/vue3/src/components/popup/src/hooks/popup-props.d.ts +8 -4
- package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +1 -1
- package/vue3/src/components/popup/src/hooks/use-popup-position.d.ts +1 -1
- package/vue3/src/components/popup/src/popup.vue.d.ts +13 -11
- package/vue3/src/components/splitter/index.d.ts +87 -0
- package/vue3/src/components/splitter/src/inject-key.d.ts +16 -0
- package/vue3/src/components/splitter/src/props-define.d.ts +32 -0
- package/vue3/src/components/splitter/src/splitter-panel.vue.d.ts +25 -0
- package/vue3/src/components/splitter/src/splitter.vue.d.ts +36 -0
- package/vue3/src/components/swiper/index.d.ts +212 -2
- package/vue3/src/components/table/index.d.ts +62 -11
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +19 -1
- package/vue3/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue3/src/components/table/src/components/table-multiple-select/table-row-multiple.vue.d.ts +5 -1
- package/vue3/src/components/table/src/components/table-multiple-select/use-table-multiple.d.ts +1 -0
- package/vue3/src/components/table/src/components/table-single-select/table-row-single.vue.d.ts +34 -0
- package/vue3/src/components/table/src/components/table-single-select/use-table-single.d.ts +7 -0
- package/vue3/src/components/table/src/hooks/props-define.d.ts +30 -5
- package/vue3/src/components/table/src/hooks/use-table/use-table-request.d.ts +3 -2
- package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
- package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +4 -2
- package/vue3/src/components/table/src/table-column.vue.d.ts +7 -3
- package/vue3/src/components/table/src/table.vue.d.ts +2 -1
- package/vue3/src/components/table/src/types/index.d.ts +1 -0
- package/vue3/src/components/table-operation/index.d.ts +24 -2
- package/vue3/src/components/table-operation/src/props-define.d.ts +7 -0
- package/vue3/src/components/table-operation/src/table-operation-item.vue.d.ts +9 -1
- package/vue3/src/components/tag/index.d.ts +16 -16
- package/vue3/src/components/tag/src/props-define.d.ts +2 -2
- package/vue3/src/components/tag/src/tag.vue.d.ts +6 -6
- package/vue3/src/components/toast/_component/toast-element.vue.d.ts +1 -1
- package/vue3/src/components/tooltip/index.d.ts +30 -30
- package/vue3/src/components/tooltip/src/props-define.d.ts +4 -4
- package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +11 -11
- package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue3/src/components/tree/index.d.ts +36 -0
- package/vue3/src/components/tree/src/hooks/use-tree.d.ts +25 -0
- package/vue3/src/components/tree/src/props-define.d.ts +103 -0
- package/vue3/src/components/tree/src/tree-node.vue.d.ts +11 -0
- package/vue3/src/components/tree/src/tree.vue.d.ts +36 -0
- package/vue3/src/hooks/element/use-breakpoint/index.d.ts +10 -0
- package/vue3/src/interface/enum.d.ts +2 -0
- package/vue3/src/lang/internal/en.json.d.ts +27 -13
- package/vue3/src/lang/internal/index.d.ts +14 -0
- package/vue3/src/lang/internal/ja.json.d.ts +27 -13
- package/vue3/src/lang/internal/ko.json.d.ts +27 -13
- package/vue3/src/lang/internal/ru.json.d.ts +27 -13
- package/vue3/src/lang/internal/zh-CN.json.d.ts +28 -14
- package/vue3/src/lang/internal/zh-TW.json.d.ts +27 -13
- package/vue3/src/vue-utils/render-slot.d.ts +9 -1
- package/vue3/src/vue-utils/version-compatible/types.d.ts +9 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +0 -6
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +0 -9
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +0 -8
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +0 -23
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +0 -8
- package/vue2/src/plugins/cropperjs/index.d.ts +0 -14
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +0 -6
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +0 -9
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +0 -8
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +0 -23
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +0 -8
- package/vue3/src/plugins/cropperjs/index.d.ts +0 -14
- /package/vue2/src/components/{table/src/components/table-body-cell/body-cell-single.vue.d.ts → image-cropper/src/cropper-layer/cropper-layer.vue.d.ts} +0 -0
- /package/{vue3/src/components/table/src/components/table-body-cell/body-cell-single.vue.d.ts → vue2/src/components/image-cropper/src/image-layer/image-layer.vue.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCInstall<import('vue').
|
|
1
|
+
export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCInstall<import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
|
|
2
2
|
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
3
3
|
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
4
4
|
};
|
|
@@ -210,11 +210,716 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
210
210
|
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
211
211
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
212
212
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
213
|
-
}
|
|
213
|
+
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
214
|
+
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
215
|
+
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
216
|
+
};
|
|
217
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
218
|
+
default: string;
|
|
219
|
+
};
|
|
220
|
+
multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
221
|
+
default: boolean;
|
|
222
|
+
};
|
|
223
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
224
|
+
default: number;
|
|
225
|
+
};
|
|
226
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
227
|
+
default: boolean;
|
|
228
|
+
};
|
|
229
|
+
searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
230
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
231
|
+
default: string;
|
|
232
|
+
};
|
|
233
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
234
|
+
default: string;
|
|
235
|
+
};
|
|
236
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
237
|
+
default: number;
|
|
238
|
+
};
|
|
239
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
240
|
+
default: boolean;
|
|
241
|
+
};
|
|
242
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
246
|
+
default: string;
|
|
247
|
+
};
|
|
248
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
249
|
+
default: boolean;
|
|
250
|
+
};
|
|
251
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
252
|
+
default: number;
|
|
253
|
+
};
|
|
254
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
255
|
+
default: boolean;
|
|
256
|
+
};
|
|
257
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
258
|
+
default: number;
|
|
259
|
+
};
|
|
260
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
261
|
+
default: number;
|
|
262
|
+
};
|
|
263
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
264
|
+
default: boolean;
|
|
265
|
+
};
|
|
266
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
267
|
+
default: boolean;
|
|
268
|
+
};
|
|
269
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
270
|
+
default: boolean;
|
|
271
|
+
};
|
|
272
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
273
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
274
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
275
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
276
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
277
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
278
|
+
default: boolean;
|
|
279
|
+
};
|
|
280
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
281
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
282
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
283
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
284
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
285
|
+
default: import('../input').InputValueType;
|
|
286
|
+
};
|
|
287
|
+
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
288
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
289
|
+
default: string;
|
|
290
|
+
};
|
|
291
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
292
|
+
default: string;
|
|
293
|
+
};
|
|
294
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
295
|
+
default: number;
|
|
296
|
+
};
|
|
297
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
298
|
+
default: boolean;
|
|
299
|
+
};
|
|
300
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
301
|
+
default: string;
|
|
302
|
+
};
|
|
303
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
304
|
+
default: string;
|
|
305
|
+
};
|
|
306
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
307
|
+
default: boolean;
|
|
308
|
+
};
|
|
309
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
310
|
+
default: number;
|
|
311
|
+
};
|
|
312
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
313
|
+
default: boolean;
|
|
314
|
+
};
|
|
315
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
316
|
+
default: number;
|
|
317
|
+
};
|
|
318
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
319
|
+
default: number;
|
|
320
|
+
};
|
|
321
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
325
|
+
default: boolean;
|
|
326
|
+
};
|
|
327
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
328
|
+
default: boolean;
|
|
329
|
+
};
|
|
330
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
331
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
332
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
333
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
334
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
335
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
336
|
+
default: boolean;
|
|
337
|
+
};
|
|
338
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
339
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
340
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
341
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
342
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
343
|
+
default: import('../input').InputValueType;
|
|
344
|
+
};
|
|
345
|
+
}>>>> & {
|
|
346
|
+
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
347
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
348
|
+
default: string;
|
|
349
|
+
};
|
|
350
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
351
|
+
default: string;
|
|
352
|
+
};
|
|
353
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
354
|
+
default: number;
|
|
355
|
+
};
|
|
356
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
357
|
+
default: boolean;
|
|
358
|
+
};
|
|
359
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
360
|
+
default: string;
|
|
361
|
+
};
|
|
362
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
363
|
+
default: string;
|
|
364
|
+
};
|
|
365
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
366
|
+
default: boolean;
|
|
367
|
+
};
|
|
368
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
369
|
+
default: number;
|
|
370
|
+
};
|
|
371
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
372
|
+
default: boolean;
|
|
373
|
+
};
|
|
374
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
375
|
+
default: number;
|
|
376
|
+
};
|
|
377
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
378
|
+
default: number;
|
|
379
|
+
};
|
|
380
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
381
|
+
default: boolean;
|
|
382
|
+
};
|
|
383
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
384
|
+
default: boolean;
|
|
385
|
+
};
|
|
386
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
387
|
+
default: boolean;
|
|
388
|
+
};
|
|
389
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
390
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
391
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
392
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
393
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
394
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
395
|
+
default: boolean;
|
|
396
|
+
};
|
|
397
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
398
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
399
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
400
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
401
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
402
|
+
default: import('../input').InputValueType;
|
|
403
|
+
};
|
|
404
|
+
}>>;
|
|
405
|
+
};
|
|
406
|
+
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
407
|
+
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
408
|
+
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>>;
|
|
409
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
410
|
+
default: boolean;
|
|
411
|
+
};
|
|
412
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
413
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
414
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
415
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
416
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
417
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
418
|
+
default: boolean;
|
|
419
|
+
};
|
|
420
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
421
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
422
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
423
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
424
|
+
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
425
|
+
}>>, {
|
|
214
426
|
change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
|
|
215
427
|
clear: (arg?: void | undefined) => void;
|
|
216
428
|
"options-end-reached": (arg?: void | undefined) => void;
|
|
217
|
-
},
|
|
429
|
+
}, {
|
|
430
|
+
search: boolean;
|
|
431
|
+
options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
432
|
+
placeholder: string;
|
|
433
|
+
multiple: boolean;
|
|
434
|
+
validateForm: boolean;
|
|
435
|
+
clearable: boolean;
|
|
436
|
+
max: number;
|
|
437
|
+
searchInputProps: Partial<import('vue').ExtractPropTypes<{
|
|
438
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
439
|
+
default: string;
|
|
440
|
+
};
|
|
441
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
442
|
+
default: string;
|
|
443
|
+
};
|
|
444
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
445
|
+
default: number;
|
|
446
|
+
};
|
|
447
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
448
|
+
default: boolean;
|
|
449
|
+
};
|
|
450
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
451
|
+
default: string;
|
|
452
|
+
};
|
|
453
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
454
|
+
default: string;
|
|
455
|
+
};
|
|
456
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
457
|
+
default: boolean;
|
|
458
|
+
};
|
|
459
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
460
|
+
default: number;
|
|
461
|
+
};
|
|
462
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
463
|
+
default: boolean;
|
|
464
|
+
};
|
|
465
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
466
|
+
default: number;
|
|
467
|
+
};
|
|
468
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
469
|
+
default: number;
|
|
470
|
+
};
|
|
471
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
472
|
+
default: boolean;
|
|
473
|
+
};
|
|
474
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
475
|
+
default: boolean;
|
|
476
|
+
};
|
|
477
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
478
|
+
default: boolean;
|
|
479
|
+
};
|
|
480
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
481
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
482
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
483
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
484
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
485
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
486
|
+
default: boolean;
|
|
487
|
+
};
|
|
488
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
489
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
490
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
491
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
492
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
493
|
+
default: import('../input').InputValueType;
|
|
494
|
+
};
|
|
495
|
+
}>>;
|
|
496
|
+
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
497
|
+
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
498
|
+
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
499
|
+
};
|
|
500
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
501
|
+
default: string;
|
|
502
|
+
};
|
|
503
|
+
multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
504
|
+
default: boolean;
|
|
505
|
+
};
|
|
506
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
507
|
+
default: number;
|
|
508
|
+
};
|
|
509
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
510
|
+
default: boolean;
|
|
511
|
+
};
|
|
512
|
+
searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
513
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
514
|
+
default: string;
|
|
515
|
+
};
|
|
516
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
517
|
+
default: string;
|
|
518
|
+
};
|
|
519
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
520
|
+
default: number;
|
|
521
|
+
};
|
|
522
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
523
|
+
default: boolean;
|
|
524
|
+
};
|
|
525
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
526
|
+
default: string;
|
|
527
|
+
};
|
|
528
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
529
|
+
default: string;
|
|
530
|
+
};
|
|
531
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
532
|
+
default: boolean;
|
|
533
|
+
};
|
|
534
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
535
|
+
default: number;
|
|
536
|
+
};
|
|
537
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
538
|
+
default: boolean;
|
|
539
|
+
};
|
|
540
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
541
|
+
default: number;
|
|
542
|
+
};
|
|
543
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
544
|
+
default: number;
|
|
545
|
+
};
|
|
546
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
547
|
+
default: boolean;
|
|
548
|
+
};
|
|
549
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
550
|
+
default: boolean;
|
|
551
|
+
};
|
|
552
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
553
|
+
default: boolean;
|
|
554
|
+
};
|
|
555
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
556
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
557
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
558
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
559
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
560
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
561
|
+
default: boolean;
|
|
562
|
+
};
|
|
563
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
564
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
565
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
566
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
567
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
568
|
+
default: import('../input').InputValueType;
|
|
569
|
+
};
|
|
570
|
+
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
571
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
572
|
+
default: string;
|
|
573
|
+
};
|
|
574
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
575
|
+
default: string;
|
|
576
|
+
};
|
|
577
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
578
|
+
default: number;
|
|
579
|
+
};
|
|
580
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
581
|
+
default: boolean;
|
|
582
|
+
};
|
|
583
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
584
|
+
default: string;
|
|
585
|
+
};
|
|
586
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
587
|
+
default: string;
|
|
588
|
+
};
|
|
589
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
590
|
+
default: boolean;
|
|
591
|
+
};
|
|
592
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
593
|
+
default: number;
|
|
594
|
+
};
|
|
595
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
596
|
+
default: boolean;
|
|
597
|
+
};
|
|
598
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
599
|
+
default: number;
|
|
600
|
+
};
|
|
601
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
602
|
+
default: number;
|
|
603
|
+
};
|
|
604
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
605
|
+
default: boolean;
|
|
606
|
+
};
|
|
607
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
608
|
+
default: boolean;
|
|
609
|
+
};
|
|
610
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
611
|
+
default: boolean;
|
|
612
|
+
};
|
|
613
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
614
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
615
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
616
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
617
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
618
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
619
|
+
default: boolean;
|
|
620
|
+
};
|
|
621
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
622
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
623
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
624
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
625
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
626
|
+
default: import('../input').InputValueType;
|
|
627
|
+
};
|
|
628
|
+
}>>>> & {
|
|
629
|
+
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
630
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
631
|
+
default: string;
|
|
632
|
+
};
|
|
633
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
634
|
+
default: string;
|
|
635
|
+
};
|
|
636
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
637
|
+
default: number;
|
|
638
|
+
};
|
|
639
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
640
|
+
default: boolean;
|
|
641
|
+
};
|
|
642
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
643
|
+
default: string;
|
|
644
|
+
};
|
|
645
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
646
|
+
default: string;
|
|
647
|
+
};
|
|
648
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
649
|
+
default: boolean;
|
|
650
|
+
};
|
|
651
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
652
|
+
default: number;
|
|
653
|
+
};
|
|
654
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
655
|
+
default: boolean;
|
|
656
|
+
};
|
|
657
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
658
|
+
default: number;
|
|
659
|
+
};
|
|
660
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
661
|
+
default: number;
|
|
662
|
+
};
|
|
663
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
664
|
+
default: boolean;
|
|
665
|
+
};
|
|
666
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
667
|
+
default: boolean;
|
|
668
|
+
};
|
|
669
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
670
|
+
default: boolean;
|
|
671
|
+
};
|
|
672
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
673
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
674
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
675
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
676
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
677
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
678
|
+
default: boolean;
|
|
679
|
+
};
|
|
680
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
681
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
682
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
683
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
684
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
685
|
+
default: import('../input').InputValueType;
|
|
686
|
+
};
|
|
687
|
+
}>>;
|
|
688
|
+
};
|
|
689
|
+
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
690
|
+
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
691
|
+
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>>;
|
|
692
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
693
|
+
default: boolean;
|
|
694
|
+
};
|
|
695
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
696
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
697
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
698
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
699
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
700
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
701
|
+
default: boolean;
|
|
702
|
+
};
|
|
703
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
704
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
705
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
706
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
707
|
+
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
708
|
+
}>>> & import('vue').ShallowUnwrapRef<{
|
|
709
|
+
closeOptions: () => void;
|
|
710
|
+
}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
711
|
+
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
712
|
+
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
713
|
+
};
|
|
714
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
715
|
+
default: string;
|
|
716
|
+
};
|
|
717
|
+
multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
718
|
+
default: boolean;
|
|
719
|
+
};
|
|
720
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
721
|
+
default: number;
|
|
722
|
+
};
|
|
723
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
724
|
+
default: boolean;
|
|
725
|
+
};
|
|
726
|
+
searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
727
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
728
|
+
default: string;
|
|
729
|
+
};
|
|
730
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
731
|
+
default: string;
|
|
732
|
+
};
|
|
733
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
734
|
+
default: number;
|
|
735
|
+
};
|
|
736
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
737
|
+
default: boolean;
|
|
738
|
+
};
|
|
739
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
740
|
+
default: string;
|
|
741
|
+
};
|
|
742
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
743
|
+
default: string;
|
|
744
|
+
};
|
|
745
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
746
|
+
default: boolean;
|
|
747
|
+
};
|
|
748
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
749
|
+
default: number;
|
|
750
|
+
};
|
|
751
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
752
|
+
default: boolean;
|
|
753
|
+
};
|
|
754
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
755
|
+
default: number;
|
|
756
|
+
};
|
|
757
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
758
|
+
default: number;
|
|
759
|
+
};
|
|
760
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
761
|
+
default: boolean;
|
|
762
|
+
};
|
|
763
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
764
|
+
default: boolean;
|
|
765
|
+
};
|
|
766
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
767
|
+
default: boolean;
|
|
768
|
+
};
|
|
769
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
770
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
771
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
772
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
773
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
774
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
775
|
+
default: boolean;
|
|
776
|
+
};
|
|
777
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
778
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
779
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
780
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
781
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
782
|
+
default: import('../input').InputValueType;
|
|
783
|
+
};
|
|
784
|
+
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
785
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
786
|
+
default: string;
|
|
787
|
+
};
|
|
788
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
789
|
+
default: string;
|
|
790
|
+
};
|
|
791
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
792
|
+
default: number;
|
|
793
|
+
};
|
|
794
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
795
|
+
default: boolean;
|
|
796
|
+
};
|
|
797
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
798
|
+
default: string;
|
|
799
|
+
};
|
|
800
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
801
|
+
default: string;
|
|
802
|
+
};
|
|
803
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
804
|
+
default: boolean;
|
|
805
|
+
};
|
|
806
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
807
|
+
default: number;
|
|
808
|
+
};
|
|
809
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
810
|
+
default: boolean;
|
|
811
|
+
};
|
|
812
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
813
|
+
default: number;
|
|
814
|
+
};
|
|
815
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
816
|
+
default: number;
|
|
817
|
+
};
|
|
818
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
819
|
+
default: boolean;
|
|
820
|
+
};
|
|
821
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
822
|
+
default: boolean;
|
|
823
|
+
};
|
|
824
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
825
|
+
default: boolean;
|
|
826
|
+
};
|
|
827
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
828
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
829
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
830
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
831
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
832
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
833
|
+
default: boolean;
|
|
834
|
+
};
|
|
835
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
836
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
837
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
838
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
839
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
840
|
+
default: import('../input').InputValueType;
|
|
841
|
+
};
|
|
842
|
+
}>>>> & {
|
|
843
|
+
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
844
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
845
|
+
default: string;
|
|
846
|
+
};
|
|
847
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
848
|
+
default: string;
|
|
849
|
+
};
|
|
850
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
851
|
+
default: number;
|
|
852
|
+
};
|
|
853
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
854
|
+
default: boolean;
|
|
855
|
+
};
|
|
856
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
857
|
+
default: string;
|
|
858
|
+
};
|
|
859
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
860
|
+
default: string;
|
|
861
|
+
};
|
|
862
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
863
|
+
default: boolean;
|
|
864
|
+
};
|
|
865
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
866
|
+
default: number;
|
|
867
|
+
};
|
|
868
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
869
|
+
default: boolean;
|
|
870
|
+
};
|
|
871
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
872
|
+
default: number;
|
|
873
|
+
};
|
|
874
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
875
|
+
default: number;
|
|
876
|
+
};
|
|
877
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
878
|
+
default: boolean;
|
|
879
|
+
};
|
|
880
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
881
|
+
default: boolean;
|
|
882
|
+
};
|
|
883
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
884
|
+
default: boolean;
|
|
885
|
+
};
|
|
886
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
887
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
888
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
889
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
890
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
891
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
892
|
+
default: boolean;
|
|
893
|
+
};
|
|
894
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
895
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
896
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
897
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
898
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
899
|
+
default: import('../input').InputValueType;
|
|
900
|
+
};
|
|
901
|
+
}>>;
|
|
902
|
+
};
|
|
903
|
+
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
904
|
+
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
905
|
+
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>>;
|
|
906
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
907
|
+
default: boolean;
|
|
908
|
+
};
|
|
909
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
910
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
911
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
912
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
913
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
914
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
915
|
+
default: boolean;
|
|
916
|
+
};
|
|
917
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
918
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
919
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
920
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
921
|
+
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
922
|
+
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
218
923
|
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
219
924
|
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
220
925
|
};
|
|
@@ -427,10 +1132,16 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
427
1132
|
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
428
1133
|
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
429
1134
|
}>>, {
|
|
1135
|
+
closeOptions: () => void;
|
|
1136
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1137
|
+
change: (arg: import('./src/type').SelectValue | import('./src/type').SelectValue[]) => void;
|
|
1138
|
+
clear: (arg?: void | undefined) => void;
|
|
1139
|
+
"options-end-reached": (arg?: void | undefined) => void;
|
|
1140
|
+
}, string, {
|
|
430
1141
|
search: boolean;
|
|
1142
|
+
options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
431
1143
|
placeholder: string;
|
|
432
1144
|
multiple: boolean;
|
|
433
|
-
options: (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
434
1145
|
validateForm: boolean;
|
|
435
1146
|
clearable: boolean;
|
|
436
1147
|
max: number;
|
|
@@ -493,6 +1204,224 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
|
|
|
493
1204
|
default: import('../input').InputValueType;
|
|
494
1205
|
};
|
|
495
1206
|
}>>;
|
|
496
|
-
}
|
|
1207
|
+
}> & {
|
|
1208
|
+
props: {
|
|
1209
|
+
options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
|
|
1210
|
+
default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
|
|
1211
|
+
};
|
|
1212
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1213
|
+
default: string;
|
|
1214
|
+
};
|
|
1215
|
+
multiple: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1216
|
+
default: boolean;
|
|
1217
|
+
};
|
|
1218
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1219
|
+
default: number;
|
|
1220
|
+
};
|
|
1221
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1222
|
+
default: boolean;
|
|
1223
|
+
};
|
|
1224
|
+
searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
|
|
1225
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1226
|
+
default: string;
|
|
1227
|
+
};
|
|
1228
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1229
|
+
default: string;
|
|
1230
|
+
};
|
|
1231
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1232
|
+
default: number;
|
|
1233
|
+
};
|
|
1234
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1235
|
+
default: boolean;
|
|
1236
|
+
};
|
|
1237
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1238
|
+
default: string;
|
|
1239
|
+
};
|
|
1240
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1241
|
+
default: string;
|
|
1242
|
+
};
|
|
1243
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1244
|
+
default: boolean;
|
|
1245
|
+
};
|
|
1246
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1247
|
+
default: number;
|
|
1248
|
+
};
|
|
1249
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1250
|
+
default: boolean;
|
|
1251
|
+
};
|
|
1252
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1253
|
+
default: number;
|
|
1254
|
+
};
|
|
1255
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1256
|
+
default: number;
|
|
1257
|
+
};
|
|
1258
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1259
|
+
default: boolean;
|
|
1260
|
+
};
|
|
1261
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1262
|
+
default: boolean;
|
|
1263
|
+
};
|
|
1264
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1265
|
+
default: boolean;
|
|
1266
|
+
};
|
|
1267
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1268
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1269
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1270
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1271
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1272
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1273
|
+
default: boolean;
|
|
1274
|
+
};
|
|
1275
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1276
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1277
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1278
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1279
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1280
|
+
default: import('../input').InputValueType;
|
|
1281
|
+
};
|
|
1282
|
+
}>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
|
|
1283
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1284
|
+
default: string;
|
|
1285
|
+
};
|
|
1286
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1287
|
+
default: string;
|
|
1288
|
+
};
|
|
1289
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1290
|
+
default: number;
|
|
1291
|
+
};
|
|
1292
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1293
|
+
default: boolean;
|
|
1294
|
+
};
|
|
1295
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1296
|
+
default: string;
|
|
1297
|
+
};
|
|
1298
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1299
|
+
default: string;
|
|
1300
|
+
};
|
|
1301
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1302
|
+
default: boolean;
|
|
1303
|
+
};
|
|
1304
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1305
|
+
default: number;
|
|
1306
|
+
};
|
|
1307
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1308
|
+
default: boolean;
|
|
1309
|
+
};
|
|
1310
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1311
|
+
default: number;
|
|
1312
|
+
};
|
|
1313
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1314
|
+
default: number;
|
|
1315
|
+
};
|
|
1316
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1317
|
+
default: boolean;
|
|
1318
|
+
};
|
|
1319
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1320
|
+
default: boolean;
|
|
1321
|
+
};
|
|
1322
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1323
|
+
default: boolean;
|
|
1324
|
+
};
|
|
1325
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1326
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1327
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1328
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1329
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1330
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1331
|
+
default: boolean;
|
|
1332
|
+
};
|
|
1333
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1334
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1335
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1336
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1337
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1338
|
+
default: import('../input').InputValueType;
|
|
1339
|
+
};
|
|
1340
|
+
}>>>> & {
|
|
1341
|
+
default: () => Partial<import('vue').ExtractPropTypes<{
|
|
1342
|
+
type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1343
|
+
default: string;
|
|
1344
|
+
};
|
|
1345
|
+
placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1346
|
+
default: string;
|
|
1347
|
+
};
|
|
1348
|
+
maxlength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1349
|
+
default: number;
|
|
1350
|
+
};
|
|
1351
|
+
showWordLimit: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1352
|
+
default: boolean;
|
|
1353
|
+
};
|
|
1354
|
+
prefixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1355
|
+
default: string;
|
|
1356
|
+
};
|
|
1357
|
+
suffixText: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
1358
|
+
default: string;
|
|
1359
|
+
};
|
|
1360
|
+
useTextarea: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1361
|
+
default: boolean;
|
|
1362
|
+
};
|
|
1363
|
+
rows: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1364
|
+
default: number;
|
|
1365
|
+
};
|
|
1366
|
+
autoFocus: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1367
|
+
default: boolean;
|
|
1368
|
+
};
|
|
1369
|
+
cnLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1370
|
+
default: number;
|
|
1371
|
+
};
|
|
1372
|
+
enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
1373
|
+
default: number;
|
|
1374
|
+
};
|
|
1375
|
+
search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1376
|
+
default: boolean;
|
|
1377
|
+
};
|
|
1378
|
+
copy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1379
|
+
default: boolean;
|
|
1380
|
+
};
|
|
1381
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1382
|
+
default: boolean;
|
|
1383
|
+
};
|
|
1384
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1385
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1386
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1387
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1388
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1389
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1390
|
+
default: boolean;
|
|
1391
|
+
};
|
|
1392
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1393
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1394
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1395
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1396
|
+
"v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
|
|
1397
|
+
default: import('../input').InputValueType;
|
|
1398
|
+
};
|
|
1399
|
+
}>>;
|
|
1400
|
+
};
|
|
1401
|
+
customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
|
|
1402
|
+
optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
1403
|
+
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>>;
|
|
1404
|
+
clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1405
|
+
default: boolean;
|
|
1406
|
+
};
|
|
1407
|
+
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
1408
|
+
size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
|
|
1409
|
+
disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1410
|
+
readonly: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
|
|
1411
|
+
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
1412
|
+
validateForm: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
1413
|
+
default: boolean;
|
|
1414
|
+
};
|
|
1415
|
+
prepend: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1416
|
+
append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1417
|
+
prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1418
|
+
suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
1419
|
+
"v-model-key": import('vue-types').VueTypeDef<import('./src/type').SelectValue | import('./src/type').SelectValue[]>;
|
|
1420
|
+
};
|
|
1421
|
+
} & (new () => {
|
|
1422
|
+
$scopedSlots: {
|
|
1423
|
+
arrow?(_: {}): any;
|
|
1424
|
+
};
|
|
1425
|
+
}), import('../../../vue-utils/install-utils').InstallOptions>;
|
|
497
1426
|
export * from './src/props-define';
|
|
498
1427
|
export * from './src/type';
|