@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
|
@@ -12,16 +12,16 @@ export declare const popoverProps: () => {
|
|
|
12
12
|
* @propType PopperTrigger
|
|
13
13
|
* @default 'hover'
|
|
14
14
|
*/
|
|
15
|
-
trigger: import('vue-types').VueTypeDef<"click" | "
|
|
16
|
-
default: "click" | "
|
|
15
|
+
trigger: import('vue-types').VueTypeDef<"click" | "hover" | "focus" | "long-press" | "custom"> & {
|
|
16
|
+
default: "click" | "hover" | "focus" | "long-press" | "custom";
|
|
17
17
|
};
|
|
18
18
|
/**
|
|
19
19
|
* 弹层位置
|
|
20
20
|
* @propType PopperPlacement
|
|
21
21
|
* @default 'bottom'
|
|
22
22
|
*/
|
|
23
|
-
placement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "
|
|
24
|
-
default: "left" | "right" | "top" | "bottom" | "
|
|
23
|
+
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"> & {
|
|
24
|
+
default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* 弹层类名
|
|
@@ -77,4 +77,13 @@ export declare const popoverProps: () => {
|
|
|
77
77
|
default: boolean;
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
|
-
export declare const popoverEmits: () => {
|
|
80
|
+
export declare const popoverEmits: () => {
|
|
81
|
+
/**
|
|
82
|
+
* 显示
|
|
83
|
+
*/
|
|
84
|
+
show: import('../../../vue-utils').EmitFuncType<void>;
|
|
85
|
+
/**
|
|
86
|
+
* 隐藏
|
|
87
|
+
*/
|
|
88
|
+
hide: import('../../../vue-utils').EmitFuncType<void>;
|
|
89
|
+
};
|
|
@@ -20,7 +20,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
20
20
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
21
21
|
default: boolean;
|
|
22
22
|
};
|
|
23
|
-
effect: import('vue-types').VueTypeDef<"
|
|
23
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
24
24
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
25
25
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
26
26
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -46,9 +46,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
46
46
|
default: boolean;
|
|
47
47
|
};
|
|
48
48
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
49
|
-
position: import('vue-types').VueTypeDef<"
|
|
50
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
51
|
-
default: "
|
|
49
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
50
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
51
|
+
default: "left" | "right" | "center" | "bottom";
|
|
52
52
|
};
|
|
53
53
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
54
54
|
default: string;
|
|
@@ -99,6 +99,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
99
99
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
100
100
|
default: boolean;
|
|
101
101
|
};
|
|
102
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
102
103
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
103
104
|
ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
104
105
|
default: boolean;
|
|
@@ -121,7 +122,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
121
122
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
122
123
|
default: boolean;
|
|
123
124
|
};
|
|
124
|
-
effect: import('vue-types').VueTypeDef<"
|
|
125
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
125
126
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
126
127
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
127
128
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -147,9 +148,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
147
148
|
default: boolean;
|
|
148
149
|
};
|
|
149
150
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
150
|
-
position: import('vue-types').VueTypeDef<"
|
|
151
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
152
|
-
default: "
|
|
151
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
152
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
153
|
+
default: "left" | "right" | "center" | "bottom";
|
|
153
154
|
};
|
|
154
155
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
155
156
|
default: string;
|
|
@@ -200,6 +201,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
200
201
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
201
202
|
default: boolean;
|
|
202
203
|
};
|
|
204
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
203
205
|
}>>, {
|
|
204
206
|
close: (arg?: void | undefined) => void;
|
|
205
207
|
cancel: (arg?: void | undefined) => void;
|
|
@@ -211,8 +213,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
211
213
|
}, {
|
|
212
214
|
"v-model-key": boolean;
|
|
213
215
|
ignoreSkinColor: boolean;
|
|
214
|
-
background: string;
|
|
215
216
|
appendTo: HTMLElement | undefined;
|
|
217
|
+
padding: boolean;
|
|
218
|
+
background: string;
|
|
216
219
|
showConfirmButton: boolean;
|
|
217
220
|
confirmType: import('../..').ConfirmType;
|
|
218
221
|
showCancelButton: boolean;
|
|
@@ -221,8 +224,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
221
224
|
showHeader: boolean;
|
|
222
225
|
headerStyle: import('vue').CSSProperties;
|
|
223
226
|
headerClass: string;
|
|
224
|
-
|
|
225
|
-
horizontalScreenPosition: "center" | "left" | "right" | "bottom";
|
|
227
|
+
horizontalScreenPosition: "left" | "right" | "center" | "bottom";
|
|
226
228
|
horizontalScreenClassName: string;
|
|
227
229
|
bodyMaxHeight: string | number;
|
|
228
230
|
dynamicHeight: boolean;
|
|
@@ -258,7 +260,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
258
260
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
259
261
|
default: boolean;
|
|
260
262
|
};
|
|
261
|
-
effect: import('vue-types').VueTypeDef<"
|
|
263
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
262
264
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
263
265
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
264
266
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -284,9 +286,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
284
286
|
default: boolean;
|
|
285
287
|
};
|
|
286
288
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
287
|
-
position: import('vue-types').VueTypeDef<"
|
|
288
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
289
|
-
default: "
|
|
289
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
290
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
291
|
+
default: "left" | "right" | "center" | "bottom";
|
|
290
292
|
};
|
|
291
293
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
292
294
|
default: string;
|
|
@@ -337,6 +339,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
337
339
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
338
340
|
default: boolean;
|
|
339
341
|
};
|
|
342
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
340
343
|
}>>> & import('vue').ShallowUnwrapRef<{
|
|
341
344
|
resetScroll: () => Promise<void>;
|
|
342
345
|
setupBackAction: (data?: import('./src/types').PopupBackActionData) => void;
|
|
@@ -363,7 +366,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
363
366
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
364
367
|
default: boolean;
|
|
365
368
|
};
|
|
366
|
-
effect: import('vue-types').VueTypeDef<"
|
|
369
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
367
370
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
368
371
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
369
372
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -389,9 +392,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
389
392
|
default: boolean;
|
|
390
393
|
};
|
|
391
394
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
392
|
-
position: import('vue-types').VueTypeDef<"
|
|
393
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
394
|
-
default: "
|
|
395
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
396
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
397
|
+
default: "left" | "right" | "center" | "bottom";
|
|
395
398
|
};
|
|
396
399
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
397
400
|
default: string;
|
|
@@ -442,6 +445,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
442
445
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
443
446
|
default: boolean;
|
|
444
447
|
};
|
|
448
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
445
449
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
446
450
|
ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
447
451
|
default: boolean;
|
|
@@ -464,7 +468,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
464
468
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
465
469
|
default: boolean;
|
|
466
470
|
};
|
|
467
|
-
effect: import('vue-types').VueTypeDef<"
|
|
471
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
468
472
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
469
473
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
470
474
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -490,9 +494,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
490
494
|
default: boolean;
|
|
491
495
|
};
|
|
492
496
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
493
|
-
position: import('vue-types').VueTypeDef<"
|
|
494
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
495
|
-
default: "
|
|
497
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
498
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
499
|
+
default: "left" | "right" | "center" | "bottom";
|
|
496
500
|
};
|
|
497
501
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
498
502
|
default: string;
|
|
@@ -543,6 +547,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
543
547
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
544
548
|
default: boolean;
|
|
545
549
|
};
|
|
550
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
546
551
|
}>>, {
|
|
547
552
|
resetScroll: () => Promise<void>;
|
|
548
553
|
setupBackAction: (data?: import('./src/types').PopupBackActionData) => void;
|
|
@@ -558,8 +563,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
558
563
|
}, string, {
|
|
559
564
|
"v-model-key": boolean;
|
|
560
565
|
ignoreSkinColor: boolean;
|
|
561
|
-
background: string;
|
|
562
566
|
appendTo: HTMLElement | undefined;
|
|
567
|
+
padding: boolean;
|
|
568
|
+
background: string;
|
|
563
569
|
showConfirmButton: boolean;
|
|
564
570
|
confirmType: import('../..').ConfirmType;
|
|
565
571
|
showCancelButton: boolean;
|
|
@@ -568,8 +574,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
568
574
|
showHeader: boolean;
|
|
569
575
|
headerStyle: import('vue').CSSProperties;
|
|
570
576
|
headerClass: string;
|
|
571
|
-
|
|
572
|
-
horizontalScreenPosition: "center" | "left" | "right" | "bottom";
|
|
577
|
+
horizontalScreenPosition: "left" | "right" | "center" | "bottom";
|
|
573
578
|
horizontalScreenClassName: string;
|
|
574
579
|
bodyMaxHeight: string | number;
|
|
575
580
|
dynamicHeight: boolean;
|
|
@@ -606,7 +611,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
606
611
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
607
612
|
default: boolean;
|
|
608
613
|
};
|
|
609
|
-
effect: import('vue-types').VueTypeDef<"
|
|
614
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
610
615
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
611
616
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
612
617
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -632,9 +637,9 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
632
637
|
default: boolean;
|
|
633
638
|
};
|
|
634
639
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
635
|
-
position: import('vue-types').VueTypeDef<"
|
|
636
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
637
|
-
default: "
|
|
640
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
641
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
642
|
+
default: "left" | "right" | "center" | "bottom";
|
|
638
643
|
};
|
|
639
644
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
640
645
|
default: string;
|
|
@@ -685,6 +690,7 @@ export declare const PwcPopup: import('../../vue-utils/install-utils').SFCInstal
|
|
|
685
690
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
686
691
|
default: boolean;
|
|
687
692
|
};
|
|
693
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
688
694
|
};
|
|
689
695
|
} & (new () => {
|
|
690
696
|
$scopedSlots: {
|
|
@@ -34,7 +34,7 @@ export declare const popupProps: () => {
|
|
|
34
34
|
* 弹层主题
|
|
35
35
|
* @propType PopupEffect
|
|
36
36
|
*/
|
|
37
|
-
effect: import('vue-types').VueTypeDef<"
|
|
37
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
38
38
|
/**
|
|
39
39
|
* 弹层用途
|
|
40
40
|
* @propType PopupPurpose
|
|
@@ -101,14 +101,14 @@ export declare const popupProps: () => {
|
|
|
101
101
|
* 弹层位置,会根据设备类型自动选择位置
|
|
102
102
|
* @propType PopupPosition
|
|
103
103
|
*/
|
|
104
|
-
position: import('vue-types').VueTypeDef<"
|
|
104
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
105
105
|
/**
|
|
106
106
|
* 在屏幕横屏时,强制使用的位置
|
|
107
107
|
* @propType PopupPosition
|
|
108
108
|
* @default 'right'
|
|
109
109
|
*/
|
|
110
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
111
|
-
default: "
|
|
110
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
111
|
+
default: "left" | "right" | "center" | "bottom";
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* 在屏幕横屏时,弹层 className
|
|
@@ -233,6 +233,10 @@ export declare const popupProps: () => {
|
|
|
233
233
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
234
234
|
default: boolean;
|
|
235
235
|
};
|
|
236
|
+
/**
|
|
237
|
+
* 头部提示
|
|
238
|
+
*/
|
|
239
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
236
240
|
};
|
|
237
241
|
export declare const popupEmits: () => {
|
|
238
242
|
/**
|
|
@@ -3,5 +3,5 @@ import { popupProps } from './popup-props';
|
|
|
3
3
|
export declare const usePopupEffect: (options: {
|
|
4
4
|
props: VueProps<typeof popupProps>;
|
|
5
5
|
}) => {
|
|
6
|
-
popupEffect: import('vue').ComputedRef<"
|
|
6
|
+
popupEffect: import('vue').ComputedRef<"custom" | "compact" | "standard">;
|
|
7
7
|
};
|
|
@@ -6,6 +6,6 @@ import { popupProps } from './popup-props';
|
|
|
6
6
|
export declare const usePopupPosition: (options: {
|
|
7
7
|
props: VueProps<typeof popupProps>;
|
|
8
8
|
}) => {
|
|
9
|
-
popupPosition: import('vue').ComputedRef<"
|
|
9
|
+
popupPosition: import('vue').ComputedRef<"left" | "right" | "center" | "bottom">;
|
|
10
10
|
positionClass: import('vue').ComputedRef<string>;
|
|
11
11
|
};
|
|
@@ -174,7 +174,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
174
174
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
175
175
|
default: boolean;
|
|
176
176
|
};
|
|
177
|
-
effect: import('vue-types').VueTypeDef<"
|
|
177
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
178
178
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
179
179
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
180
180
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -200,9 +200,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
200
200
|
default: boolean;
|
|
201
201
|
};
|
|
202
202
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
203
|
-
position: import('vue-types').VueTypeDef<"
|
|
204
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
205
|
-
default: "
|
|
203
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
204
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
205
|
+
default: "left" | "right" | "center" | "bottom";
|
|
206
206
|
};
|
|
207
207
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
208
208
|
default: string;
|
|
@@ -253,6 +253,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
253
253
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
254
254
|
default: boolean;
|
|
255
255
|
};
|
|
256
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
256
257
|
}, {
|
|
257
258
|
resetScroll: () => Promise<void>;
|
|
258
259
|
setupBackAction: (data?: import('./types').PopupBackActionData) => void;
|
|
@@ -287,7 +288,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
287
288
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
288
289
|
default: boolean;
|
|
289
290
|
};
|
|
290
|
-
effect: import('vue-types').VueTypeDef<"
|
|
291
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
291
292
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
292
293
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
293
294
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -313,9 +314,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
313
314
|
default: boolean;
|
|
314
315
|
};
|
|
315
316
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
316
|
-
position: import('vue-types').VueTypeDef<"
|
|
317
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
318
|
-
default: "
|
|
317
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
318
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
319
|
+
default: "left" | "right" | "center" | "bottom";
|
|
319
320
|
};
|
|
320
321
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
321
322
|
default: string;
|
|
@@ -366,11 +367,13 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
366
367
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
367
368
|
default: boolean;
|
|
368
369
|
};
|
|
370
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
369
371
|
}>>, {
|
|
370
372
|
"v-model-key": boolean;
|
|
371
373
|
ignoreSkinColor: boolean;
|
|
372
|
-
background: string;
|
|
373
374
|
appendTo: HTMLElement | undefined;
|
|
375
|
+
padding: boolean;
|
|
376
|
+
background: string;
|
|
374
377
|
showConfirmButton: boolean;
|
|
375
378
|
confirmType: import('../../../hooks/components/use-confirm-cancel').ConfirmType;
|
|
376
379
|
showCancelButton: boolean;
|
|
@@ -379,8 +382,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
379
382
|
showHeader: boolean;
|
|
380
383
|
headerStyle: import('vue').CSSProperties;
|
|
381
384
|
headerClass: string;
|
|
382
|
-
|
|
383
|
-
horizontalScreenPosition: "center" | "left" | "right" | "bottom";
|
|
385
|
+
horizontalScreenPosition: "left" | "right" | "center" | "bottom";
|
|
384
386
|
horizontalScreenClassName: string;
|
|
385
387
|
bodyMaxHeight: string | number;
|
|
386
388
|
dynamicHeight: boolean;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export declare const PwcSplitter: 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
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
3
|
+
default: "vertical" | "horizontal";
|
|
4
|
+
};
|
|
5
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
10
|
+
default: "vertical" | "horizontal";
|
|
11
|
+
};
|
|
12
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
}>>, {}, {
|
|
16
|
+
direction: "vertical" | "horizontal";
|
|
17
|
+
lazy: boolean;
|
|
18
|
+
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
20
|
+
default: "vertical" | "horizontal";
|
|
21
|
+
};
|
|
22
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
27
|
+
default: "vertical" | "horizontal";
|
|
28
|
+
};
|
|
29
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
34
|
+
default: "vertical" | "horizontal";
|
|
35
|
+
};
|
|
36
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
40
|
+
direction: "vertical" | "horizontal";
|
|
41
|
+
lazy: boolean;
|
|
42
|
+
}> & {
|
|
43
|
+
props: {
|
|
44
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
45
|
+
default: "vertical" | "horizontal";
|
|
46
|
+
};
|
|
47
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
} & (new () => {
|
|
52
|
+
$scopedSlots: {
|
|
53
|
+
default?(_: {}): any;
|
|
54
|
+
};
|
|
55
|
+
}), import('../../vue-utils/install-utils').InstallOptions>;
|
|
56
|
+
export declare const PwcSplitterPanel: 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<{
|
|
57
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
58
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
59
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
60
|
+
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
61
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
62
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
63
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
64
|
+
}>>, {}, {}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
65
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
66
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
67
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
68
|
+
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
69
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
70
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
71
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
72
|
+
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
73
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
74
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
75
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
76
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}> & {
|
|
77
|
+
props: {
|
|
78
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
79
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
80
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
81
|
+
};
|
|
82
|
+
} & (new () => {
|
|
83
|
+
$scopedSlots: {
|
|
84
|
+
default?(_: {}): any;
|
|
85
|
+
};
|
|
86
|
+
}), import('../../vue-utils/install-utils').InstallOptions>;
|
|
87
|
+
export * from './src/props-define';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ComputedRef, InjectionKey } from 'vue';
|
|
2
|
+
import { SplitterDirection, splitterPanelProps } from './props-define';
|
|
3
|
+
import { VueProps } from '../../../vue-utils';
|
|
4
|
+
export interface SplitterPanelContext {
|
|
5
|
+
id: string;
|
|
6
|
+
props: VueProps<typeof splitterPanelProps>;
|
|
7
|
+
}
|
|
8
|
+
export interface SplitterInject {
|
|
9
|
+
direction: ComputedRef<SplitterDirection>;
|
|
10
|
+
registerPanel: (ctx: SplitterPanelContext) => void;
|
|
11
|
+
unregisterPanel: (id: string) => void;
|
|
12
|
+
getPanelStyle: (id: string) => Record<string, string>;
|
|
13
|
+
isLastPanel: (id: string) => boolean;
|
|
14
|
+
onDividerMouseDown: (panelId: string, event: MouseEvent) => void;
|
|
15
|
+
}
|
|
16
|
+
export declare const SPLITTER_INJECT_KEY: InjectionKey<SplitterInject>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const splitterDirection: readonly ["horizontal", "vertical"];
|
|
2
|
+
export type SplitterDirection = typeof splitterDirection[number];
|
|
3
|
+
export declare const splitterProps: () => {
|
|
4
|
+
/**
|
|
5
|
+
* 方向
|
|
6
|
+
* @default 'horizontal'
|
|
7
|
+
*/
|
|
8
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
9
|
+
default: "vertical" | "horizontal";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* 拖动延迟更新
|
|
13
|
+
* @default false
|
|
14
|
+
*/
|
|
15
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export declare const splitterPanelProps: () => {
|
|
20
|
+
/**
|
|
21
|
+
* 最小尺寸
|
|
22
|
+
*/
|
|
23
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
24
|
+
/**
|
|
25
|
+
* 最大尺寸
|
|
26
|
+
*/
|
|
27
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
28
|
+
/**
|
|
29
|
+
* 初始尺寸
|
|
30
|
+
*/
|
|
31
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
32
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
11
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
12
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
13
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
14
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
min: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
16
|
+
max: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
17
|
+
initialSize: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
18
|
+
}>>, {}>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$scopedSlots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {
|
|
7
|
+
containerRef: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
13
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
14
|
+
default: "vertical" | "horizontal";
|
|
15
|
+
};
|
|
16
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
20
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
|
|
21
|
+
default: "vertical" | "horizontal";
|
|
22
|
+
};
|
|
23
|
+
lazy: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
}>>, {
|
|
27
|
+
direction: "vertical" | "horizontal";
|
|
28
|
+
lazy: boolean;
|
|
29
|
+
}>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$scopedSlots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|