@polyv/vue-components 1.9.1 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/vue2/index.es.js +15626 -12584
- 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 +14578 -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
|
@@ -30,6 +30,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
30
30
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
33
36
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
37
|
search: (arg: any) => void;
|
|
35
38
|
reset: (arg?: void | undefined) => void;
|
|
@@ -52,6 +55,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
52
55
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
53
56
|
default: string;
|
|
54
57
|
};
|
|
58
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
55
61
|
}>>, {
|
|
56
62
|
"v-model-key": {
|
|
57
63
|
[key: string]: any;
|
|
@@ -59,6 +65,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
59
65
|
showSearch: boolean;
|
|
60
66
|
resetFilter: boolean | (() => any);
|
|
61
67
|
allOptionValue: string;
|
|
68
|
+
freeLayout: boolean;
|
|
62
69
|
}>;
|
|
63
70
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
64
71
|
export default _default;
|
|
@@ -32,6 +32,13 @@ export declare const conditionFilterProps: () => {
|
|
|
32
32
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
|
+
/**
|
|
36
|
+
* 自由布局
|
|
37
|
+
* @default false
|
|
38
|
+
*/
|
|
39
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
35
42
|
};
|
|
36
43
|
export declare const conditionFilterEmits: () => {
|
|
37
44
|
/**
|
|
@@ -70,4 +77,15 @@ export declare const conditionFilterItemProps: () => {
|
|
|
70
77
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
71
78
|
default: boolean;
|
|
72
79
|
};
|
|
80
|
+
/**
|
|
81
|
+
* 宽度
|
|
82
|
+
*/
|
|
83
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
84
|
+
/**
|
|
85
|
+
* 忽略 change 回调
|
|
86
|
+
* @default false
|
|
87
|
+
*/
|
|
88
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
73
91
|
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
export declare const PwcDescriptions: import('../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
|
|
2
|
+
border: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
3
|
+
default: boolean;
|
|
4
|
+
};
|
|
5
|
+
divider: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
layout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
9
|
+
default: "vertical" | "horizontal";
|
|
10
|
+
};
|
|
11
|
+
itemLayout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
12
|
+
default: "vertical" | "horizontal";
|
|
13
|
+
};
|
|
14
|
+
tableLayout: import('vue-types').VueTypeDef<"fixed" | "auto"> & {
|
|
15
|
+
default: "fixed" | "auto";
|
|
16
|
+
};
|
|
17
|
+
column: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
labelAlign: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
21
|
+
default: "left" | "right" | "center";
|
|
22
|
+
};
|
|
23
|
+
labelWidth: import('vue-types').VueTypeDef<string | number>;
|
|
24
|
+
labelClass: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
25
|
+
}, () => import('vue').VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
border: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
divider: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
layout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
33
|
+
default: "vertical" | "horizontal";
|
|
34
|
+
};
|
|
35
|
+
itemLayout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
36
|
+
default: "vertical" | "horizontal";
|
|
37
|
+
};
|
|
38
|
+
tableLayout: import('vue-types').VueTypeDef<"fixed" | "auto"> & {
|
|
39
|
+
default: "fixed" | "auto";
|
|
40
|
+
};
|
|
41
|
+
column: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
labelAlign: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
45
|
+
default: "left" | "right" | "center";
|
|
46
|
+
};
|
|
47
|
+
labelWidth: import('vue-types').VueTypeDef<string | number>;
|
|
48
|
+
labelClass: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
49
|
+
}>>, {
|
|
50
|
+
layout: "vertical" | "horizontal";
|
|
51
|
+
column: number;
|
|
52
|
+
tableLayout: "fixed" | "auto";
|
|
53
|
+
border: boolean;
|
|
54
|
+
divider: boolean;
|
|
55
|
+
itemLayout: "vertical" | "horizontal";
|
|
56
|
+
labelAlign: "left" | "right" | "center";
|
|
57
|
+
}>, import('../../vue-utils/install-utils').InstallOptions>;
|
|
58
|
+
export declare const PwcDescriptionsItem: 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<{
|
|
59
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
62
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
63
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
64
|
+
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
65
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
66
|
+
default: number;
|
|
67
|
+
};
|
|
68
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
69
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
70
|
+
}>>, {}, {
|
|
71
|
+
index: number;
|
|
72
|
+
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
73
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
76
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
77
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
78
|
+
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
79
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
82
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
83
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
84
|
+
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
85
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
89
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
90
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
91
|
+
index: number;
|
|
92
|
+
}> & {
|
|
93
|
+
props: {
|
|
94
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
95
|
+
default: number;
|
|
96
|
+
};
|
|
97
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
98
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
99
|
+
};
|
|
100
|
+
} & (new () => {
|
|
101
|
+
$scopedSlots: {
|
|
102
|
+
label?(_: {}): any;
|
|
103
|
+
default?(_: {}): any;
|
|
104
|
+
};
|
|
105
|
+
}), import('../../vue-utils/install-utils').InstallOptions>;
|
|
106
|
+
export * from './src/props-define';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
label?(_: {}): any;
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
12
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
16
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
17
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
19
|
+
default: number;
|
|
20
|
+
};
|
|
21
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
22
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
23
|
+
}>>, {
|
|
24
|
+
index: number;
|
|
25
|
+
}>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$scopedSlots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { VNode } from 'vue';
|
|
2
|
+
export declare const Descriptions: import('vue').DefineComponent<{
|
|
3
|
+
border: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
divider: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
layout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
10
|
+
default: "vertical" | "horizontal";
|
|
11
|
+
};
|
|
12
|
+
itemLayout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
13
|
+
default: "vertical" | "horizontal";
|
|
14
|
+
};
|
|
15
|
+
tableLayout: import('vue-types').VueTypeDef<"fixed" | "auto"> & {
|
|
16
|
+
default: "fixed" | "auto";
|
|
17
|
+
};
|
|
18
|
+
column: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
19
|
+
default: number;
|
|
20
|
+
};
|
|
21
|
+
labelAlign: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
22
|
+
default: "left" | "right" | "center";
|
|
23
|
+
};
|
|
24
|
+
labelWidth: import('vue-types').VueTypeDef<string | number>;
|
|
25
|
+
labelClass: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
26
|
+
}, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
27
|
+
border: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
divider: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
layout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
34
|
+
default: "vertical" | "horizontal";
|
|
35
|
+
};
|
|
36
|
+
itemLayout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
37
|
+
default: "vertical" | "horizontal";
|
|
38
|
+
};
|
|
39
|
+
tableLayout: import('vue-types').VueTypeDef<"fixed" | "auto"> & {
|
|
40
|
+
default: "fixed" | "auto";
|
|
41
|
+
};
|
|
42
|
+
column: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
43
|
+
default: number;
|
|
44
|
+
};
|
|
45
|
+
labelAlign: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
46
|
+
default: "left" | "right" | "center";
|
|
47
|
+
};
|
|
48
|
+
labelWidth: import('vue-types').VueTypeDef<string | number>;
|
|
49
|
+
labelClass: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
50
|
+
}>>, {
|
|
51
|
+
layout: "vertical" | "horizontal";
|
|
52
|
+
column: number;
|
|
53
|
+
tableLayout: "fixed" | "auto";
|
|
54
|
+
border: boolean;
|
|
55
|
+
divider: boolean;
|
|
56
|
+
itemLayout: "vertical" | "horizontal";
|
|
57
|
+
labelAlign: "left" | "right" | "center";
|
|
58
|
+
}>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ComputedRef, InjectionKey } from 'vue';
|
|
2
|
+
import { descriptionsProps } from './props-define';
|
|
3
|
+
import { VueProps } from '../../../vue-utils';
|
|
4
|
+
export declare const DESCRIPTIONS_INJECT_KEY: InjectionKey<{
|
|
5
|
+
descriptionsProps: VueProps<typeof descriptionsProps>;
|
|
6
|
+
columnCount: ComputedRef<number>;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ComputedRef, InjectionKey } from 'vue';
|
|
2
|
+
export declare const ITEM_CELL_INJECT_KEY: InjectionKey<{
|
|
3
|
+
renderType: ComputedRef<'label' | 'content'>;
|
|
4
|
+
}>;
|
|
5
|
+
export declare const ItemCell: import('vue').DefineComponent<{
|
|
6
|
+
type: import('vue-types').VueTypeDef<"label" | "content"> & {
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
colSpan: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
10
|
+
}, () => import('vue').VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
type: import('vue-types').VueTypeDef<"label" | "content"> & {
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
colSpan: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
15
|
+
}>>, {}>;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
export declare const descriptionsProps: () => {
|
|
2
|
+
/**
|
|
3
|
+
* 是否显示边框
|
|
4
|
+
* @default false
|
|
5
|
+
*/
|
|
6
|
+
border: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
7
|
+
default: boolean;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* 是否显示分割线
|
|
11
|
+
*/
|
|
12
|
+
divider: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* 描述整体排列方向
|
|
17
|
+
* @default 'horizontal'
|
|
18
|
+
*/
|
|
19
|
+
layout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
20
|
+
default: "vertical" | "horizontal";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* 描述项的排列方向
|
|
24
|
+
* @default 'horizontal'
|
|
25
|
+
*/
|
|
26
|
+
itemLayout: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
27
|
+
default: "vertical" | "horizontal";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* 表格布局方式,同原生 table-layout css 属性
|
|
31
|
+
* @default 'fixed'
|
|
32
|
+
*/
|
|
33
|
+
tableLayout: import('vue-types').VueTypeDef<"fixed" | "auto"> & {
|
|
34
|
+
default: "fixed" | "auto";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* 一行的数据个数,layout 为 vertical 时强制为 1
|
|
38
|
+
* @default 3
|
|
39
|
+
*/
|
|
40
|
+
column: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
41
|
+
default: number;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* 标签对齐方式
|
|
45
|
+
* @default 'left'
|
|
46
|
+
*/
|
|
47
|
+
labelAlign: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
48
|
+
default: "left" | "right" | "center";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* 标签宽度
|
|
52
|
+
*/
|
|
53
|
+
labelWidth: import('vue-types').VueTypeDef<string | number>;
|
|
54
|
+
/**
|
|
55
|
+
* 标签 className
|
|
56
|
+
*/
|
|
57
|
+
labelClass: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
58
|
+
};
|
|
59
|
+
export declare const descriptionsItemProps: () => {
|
|
60
|
+
index: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
61
|
+
default: number;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* 描述项的标签
|
|
65
|
+
*/
|
|
66
|
+
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
67
|
+
/**
|
|
68
|
+
* 描述项内容
|
|
69
|
+
*/
|
|
70
|
+
content: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
71
|
+
};
|
|
72
|
+
export interface DescriptionsItemSlots {
|
|
73
|
+
/**
|
|
74
|
+
* 描述项内容插槽
|
|
75
|
+
*/
|
|
76
|
+
default: void;
|
|
77
|
+
/**
|
|
78
|
+
* 描述项标签插槽
|
|
79
|
+
*/
|
|
80
|
+
label: void;
|
|
81
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const PwcDropdown: 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
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
3
|
-
default: "click" | "
|
|
2
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
3
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
4
4
|
};
|
|
5
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
6
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
5
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
6
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
7
7
|
};
|
|
8
8
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
9
9
|
default: boolean;
|
|
@@ -15,15 +15,15 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
15
15
|
default: boolean;
|
|
16
16
|
};
|
|
17
17
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
18
|
-
align: import('vue-types').VueTypeDef<"
|
|
19
|
-
default: "
|
|
18
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
19
|
+
default: "left" | "right" | "center";
|
|
20
20
|
};
|
|
21
21
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
22
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
23
|
-
default: "click" | "
|
|
22
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
23
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
24
24
|
};
|
|
25
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
26
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
25
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
26
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
27
27
|
};
|
|
28
28
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
29
29
|
default: boolean;
|
|
@@ -35,24 +35,24 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
35
35
|
default: boolean;
|
|
36
36
|
};
|
|
37
37
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
38
|
-
align: import('vue-types').VueTypeDef<"
|
|
39
|
-
default: "
|
|
38
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
39
|
+
default: "left" | "right" | "center";
|
|
40
40
|
};
|
|
41
41
|
}>>, {
|
|
42
42
|
command: (arg: any) => void;
|
|
43
43
|
}, {
|
|
44
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
44
45
|
disabled: boolean;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
placement: "left" | "right" | "top" | "bottom" | "bottom-start" | "bottom-end" | "top-start" | "top-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
46
|
+
trigger: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
47
|
+
align: "left" | "right" | "center";
|
|
48
48
|
showArrow: boolean;
|
|
49
49
|
referenceClass: string;
|
|
50
50
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
51
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
52
|
-
default: "click" | "
|
|
51
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
52
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
53
53
|
};
|
|
54
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
55
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
54
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
55
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
56
56
|
};
|
|
57
57
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
58
58
|
default: boolean;
|
|
@@ -64,15 +64,15 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
64
64
|
default: boolean;
|
|
65
65
|
};
|
|
66
66
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
67
|
-
align: import('vue-types').VueTypeDef<"
|
|
68
|
-
default: "
|
|
67
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
68
|
+
default: "left" | "right" | "center";
|
|
69
69
|
};
|
|
70
70
|
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
71
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
72
|
-
default: "click" | "
|
|
71
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
72
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
73
73
|
};
|
|
74
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
75
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
74
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
75
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
76
76
|
};
|
|
77
77
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
78
78
|
default: boolean;
|
|
@@ -84,15 +84,15 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
84
84
|
default: boolean;
|
|
85
85
|
};
|
|
86
86
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
87
|
-
align: import('vue-types').VueTypeDef<"
|
|
88
|
-
default: "
|
|
87
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
88
|
+
default: "left" | "right" | "center";
|
|
89
89
|
};
|
|
90
90
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
91
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
92
|
-
default: "click" | "
|
|
91
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
92
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
93
93
|
};
|
|
94
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
95
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
94
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
95
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
96
96
|
};
|
|
97
97
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
98
98
|
default: boolean;
|
|
@@ -104,25 +104,25 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
104
104
|
default: boolean;
|
|
105
105
|
};
|
|
106
106
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
107
|
-
align: import('vue-types').VueTypeDef<"
|
|
108
|
-
default: "
|
|
107
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
108
|
+
default: "left" | "right" | "center";
|
|
109
109
|
};
|
|
110
110
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
111
111
|
command: (arg: any) => void;
|
|
112
112
|
}, string, {
|
|
113
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
113
114
|
disabled: boolean;
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
placement: "left" | "right" | "top" | "bottom" | "bottom-start" | "bottom-end" | "top-start" | "top-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
115
|
+
trigger: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
116
|
+
align: "left" | "right" | "center";
|
|
117
117
|
showArrow: boolean;
|
|
118
118
|
referenceClass: string;
|
|
119
119
|
}> & {
|
|
120
120
|
props: {
|
|
121
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
122
|
-
default: "click" | "
|
|
121
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
122
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
123
123
|
};
|
|
124
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
125
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
124
|
+
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
|
|
125
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
126
126
|
};
|
|
127
127
|
showArrow: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
128
128
|
default: boolean;
|
|
@@ -134,8 +134,8 @@ export declare const PwcDropdown: import('../../vue-utils/install-utils').SFCIns
|
|
|
134
134
|
default: boolean;
|
|
135
135
|
};
|
|
136
136
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
137
|
-
align: import('vue-types').VueTypeDef<"
|
|
138
|
-
default: "
|
|
137
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
138
|
+
default: "left" | "right" | "center";
|
|
139
139
|
};
|
|
140
140
|
};
|
|
141
141
|
} & (new () => {
|
|
@@ -174,8 +174,8 @@ export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SF
|
|
|
174
174
|
}>>, {
|
|
175
175
|
click: (arg: MouseEvent) => void;
|
|
176
176
|
}, {
|
|
177
|
-
disabled: boolean;
|
|
178
177
|
tag: string;
|
|
178
|
+
disabled: boolean;
|
|
179
179
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
180
180
|
command: import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
|
|
181
181
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
@@ -206,8 +206,8 @@ export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SF
|
|
|
206
206
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
207
207
|
click: (arg: MouseEvent) => void;
|
|
208
208
|
}, string, {
|
|
209
|
-
disabled: boolean;
|
|
210
209
|
tag: string;
|
|
210
|
+
disabled: boolean;
|
|
211
211
|
}> & {
|
|
212
212
|
props: {
|
|
213
213
|
command: import('vue-types').VueTypeValidableDef<any, import('vue-types/dist/types').ValidatorFunction<any>>;
|
|
@@ -227,43 +227,43 @@ export declare const PwcDropdownItem: import('../../vue-utils/install-utils').SF
|
|
|
227
227
|
export declare const PwcSubDropdown: 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<{
|
|
228
228
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
229
229
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
230
|
-
align: import('vue-types').VueTypeDef<"
|
|
231
|
-
default: "
|
|
230
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
231
|
+
default: "left" | "right" | "center";
|
|
232
232
|
};
|
|
233
233
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
234
234
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
235
235
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
236
|
-
align: import('vue-types').VueTypeDef<"
|
|
237
|
-
default: "
|
|
236
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
237
|
+
default: "left" | "right" | "center";
|
|
238
238
|
};
|
|
239
239
|
}>>, {}, {
|
|
240
|
-
align: "
|
|
240
|
+
align: "left" | "right" | "center";
|
|
241
241
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
242
242
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
243
243
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
244
|
-
align: import('vue-types').VueTypeDef<"
|
|
245
|
-
default: "
|
|
244
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
245
|
+
default: "left" | "right" | "center";
|
|
246
246
|
};
|
|
247
247
|
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
248
248
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
249
249
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
250
|
-
align: import('vue-types').VueTypeDef<"
|
|
251
|
-
default: "
|
|
250
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
251
|
+
default: "left" | "right" | "center";
|
|
252
252
|
};
|
|
253
253
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
254
254
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
255
255
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
256
|
-
align: import('vue-types').VueTypeDef<"
|
|
257
|
-
default: "
|
|
256
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
257
|
+
default: "left" | "right" | "center";
|
|
258
258
|
};
|
|
259
259
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
260
|
-
align: "
|
|
260
|
+
align: "left" | "right" | "center";
|
|
261
261
|
}> & {
|
|
262
262
|
props: {
|
|
263
263
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
264
264
|
popperWidth: import('vue-types').VueTypeDef<string | number>;
|
|
265
|
-
align: import('vue-types').VueTypeDef<"
|
|
266
|
-
default: "
|
|
265
|
+
align: import('vue-types').VueTypeDef<"left" | "right" | "center"> & {
|
|
266
|
+
default: "left" | "right" | "center";
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
} & (new () => {
|