@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
package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
43
43
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
44
44
|
default: boolean;
|
|
45
45
|
};
|
|
46
|
-
effect: import('vue-types').VueTypeDef<"
|
|
46
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
47
47
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
48
48
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
49
49
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -69,9 +69,9 @@ export declare const useDataExportRecord: (options: {
|
|
|
69
69
|
default: boolean;
|
|
70
70
|
};
|
|
71
71
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
72
|
-
position: import('vue-types').VueTypeDef<"
|
|
73
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
74
|
-
default: "
|
|
72
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
73
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
74
|
+
default: "left" | "right" | "center" | "bottom";
|
|
75
75
|
};
|
|
76
76
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
77
77
|
default: string;
|
|
@@ -122,6 +122,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
122
122
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
123
123
|
default: boolean;
|
|
124
124
|
};
|
|
125
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
125
126
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
126
127
|
ignoreSkinColor: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
127
128
|
default: boolean;
|
|
@@ -144,7 +145,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
144
145
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
145
146
|
default: boolean;
|
|
146
147
|
};
|
|
147
|
-
effect: import('vue-types').VueTypeDef<"
|
|
148
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
148
149
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
149
150
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
150
151
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -170,9 +171,9 @@ export declare const useDataExportRecord: (options: {
|
|
|
170
171
|
default: boolean;
|
|
171
172
|
};
|
|
172
173
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
173
|
-
position: import('vue-types').VueTypeDef<"
|
|
174
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
175
|
-
default: "
|
|
174
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
175
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
176
|
+
default: "left" | "right" | "center" | "bottom";
|
|
176
177
|
};
|
|
177
178
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
178
179
|
default: string;
|
|
@@ -223,6 +224,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
223
224
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
224
225
|
default: boolean;
|
|
225
226
|
};
|
|
227
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
226
228
|
}>>, {
|
|
227
229
|
close: (arg?: void | undefined) => void;
|
|
228
230
|
cancel: (arg?: void | undefined) => void;
|
|
@@ -234,8 +236,9 @@ export declare const useDataExportRecord: (options: {
|
|
|
234
236
|
}, {
|
|
235
237
|
"v-model-key": boolean;
|
|
236
238
|
ignoreSkinColor: boolean;
|
|
237
|
-
background: string;
|
|
238
239
|
appendTo: HTMLElement | undefined;
|
|
240
|
+
padding: boolean;
|
|
241
|
+
background: string;
|
|
239
242
|
showConfirmButton: boolean;
|
|
240
243
|
confirmType: ConfirmType;
|
|
241
244
|
showCancelButton: boolean;
|
|
@@ -244,8 +247,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
244
247
|
showHeader: boolean;
|
|
245
248
|
headerStyle: import('vue').CSSProperties;
|
|
246
249
|
headerClass: string;
|
|
247
|
-
|
|
248
|
-
horizontalScreenPosition: "center" | "left" | "right" | "bottom";
|
|
250
|
+
horizontalScreenPosition: "left" | "right" | "center" | "bottom";
|
|
249
251
|
horizontalScreenClassName: string;
|
|
250
252
|
bodyMaxHeight: string | number;
|
|
251
253
|
dynamicHeight: boolean;
|
|
@@ -281,7 +283,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
281
283
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
282
284
|
default: boolean;
|
|
283
285
|
};
|
|
284
|
-
effect: import('vue-types').VueTypeDef<"
|
|
286
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
285
287
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
286
288
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
287
289
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -307,9 +309,9 @@ export declare const useDataExportRecord: (options: {
|
|
|
307
309
|
default: boolean;
|
|
308
310
|
};
|
|
309
311
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
310
|
-
position: import('vue-types').VueTypeDef<"
|
|
311
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
312
|
-
default: "
|
|
312
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
313
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
314
|
+
default: "left" | "right" | "center" | "bottom";
|
|
313
315
|
};
|
|
314
316
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
315
317
|
default: string;
|
|
@@ -360,6 +362,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
360
362
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
361
363
|
default: boolean;
|
|
362
364
|
};
|
|
365
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
363
366
|
}>>> & import('vue').ShallowUnwrapRef<{
|
|
364
367
|
resetScroll: () => Promise<void>;
|
|
365
368
|
setupBackAction: (data?: import('../../../popup').PopupBackActionData) => void;
|
|
@@ -386,7 +389,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
386
389
|
"v-model-key": import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
387
390
|
default: boolean;
|
|
388
391
|
};
|
|
389
|
-
effect: import('vue-types').VueTypeDef<"
|
|
392
|
+
effect: import('vue-types').VueTypeDef<"custom" | "compact" | "standard">;
|
|
390
393
|
purpose: import('vue-types').VueTypeDef<"gray" | "marketing" | "interaction">;
|
|
391
394
|
title: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
392
395
|
titleStyle: import('vue-types').VueTypeValidableDef<import('vue').CSSProperties, import('vue-types/dist/types').ValidatorFunction<import('vue').CSSProperties>> & {
|
|
@@ -412,9 +415,9 @@ export declare const useDataExportRecord: (options: {
|
|
|
412
415
|
default: boolean;
|
|
413
416
|
};
|
|
414
417
|
openEvent: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
415
|
-
position: import('vue-types').VueTypeDef<"
|
|
416
|
-
horizontalScreenPosition: import('vue-types').VueTypeDef<"
|
|
417
|
-
default: "
|
|
418
|
+
position: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom">;
|
|
419
|
+
horizontalScreenPosition: import('vue-types').VueTypeDef<"left" | "right" | "center" | "bottom"> & {
|
|
420
|
+
default: "left" | "right" | "center" | "bottom";
|
|
418
421
|
};
|
|
419
422
|
horizontalScreenClassName: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
420
423
|
default: string;
|
|
@@ -465,6 +468,7 @@ export declare const useDataExportRecord: (options: {
|
|
|
465
468
|
showFooterBtn: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
466
469
|
default: boolean;
|
|
467
470
|
};
|
|
471
|
+
headerTooltip: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
468
472
|
}>> & {
|
|
469
473
|
$scopedSlots: {
|
|
470
474
|
'body-prefix'?(_: {}): any;
|
|
@@ -9,6 +9,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
9
9
|
hidePcLink: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
10
10
|
default: boolean;
|
|
11
11
|
};
|
|
12
|
+
labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box"> & {
|
|
13
|
+
default: "header" | "inline" | "box";
|
|
14
|
+
};
|
|
12
15
|
}, {
|
|
13
16
|
validateCurrentForm: () => Promise<void>;
|
|
14
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -24,9 +27,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
24
27
|
hidePcLink: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
25
28
|
default: boolean;
|
|
26
29
|
};
|
|
30
|
+
labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box"> & {
|
|
31
|
+
default: "header" | "inline" | "box";
|
|
32
|
+
};
|
|
27
33
|
}>>, {
|
|
28
34
|
"v-model-key": import('./use-external-links').ExternalLinksModelValue;
|
|
29
35
|
desc: string;
|
|
36
|
+
labelModel: "header" | "inline" | "box";
|
|
30
37
|
hidePcLink: boolean;
|
|
31
38
|
}>;
|
|
32
39
|
export default _default;
|
|
@@ -1,2 +1,39 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare const PwcExternalLinks: import('../../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
|
|
2
|
+
"v-model-key": import('vue-types').VueTypeValidableDef<import('./use-external-links').ExternalLinksModelValue, import('vue-types/dist/types').ValidatorFunction<import('./use-external-links').ExternalLinksModelValue>> & {
|
|
3
|
+
default: () => import('./use-external-links').ExternalLinksModelValue;
|
|
4
|
+
};
|
|
5
|
+
desc: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
customLabels: import('vue-types').VueTypeValidableDef<import('./use-external-links').ExternalLinksCustomLabels, import('vue-types/dist/types').ValidatorFunction<import('./use-external-links').ExternalLinksCustomLabels>>;
|
|
9
|
+
hidePcLink: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box"> & {
|
|
13
|
+
default: "header" | "inline" | "box";
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
validateCurrentForm: () => Promise<void>;
|
|
17
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
+
change: (arg: import('./use-external-links').ExternalLinksModelValue) => void;
|
|
19
|
+
}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
20
|
+
"v-model-key": import('vue-types').VueTypeValidableDef<import('./use-external-links').ExternalLinksModelValue, import('vue-types/dist/types').ValidatorFunction<import('./use-external-links').ExternalLinksModelValue>> & {
|
|
21
|
+
default: () => import('./use-external-links').ExternalLinksModelValue;
|
|
22
|
+
};
|
|
23
|
+
desc: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
customLabels: import('vue-types').VueTypeValidableDef<import('./use-external-links').ExternalLinksCustomLabels, import('vue-types/dist/types').ValidatorFunction<import('./use-external-links').ExternalLinksCustomLabels>>;
|
|
27
|
+
hidePcLink: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box"> & {
|
|
31
|
+
default: "header" | "inline" | "box";
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
"v-model-key": import('./use-external-links').ExternalLinksModelValue;
|
|
35
|
+
desc: string;
|
|
36
|
+
labelModel: "header" | "inline" | "box";
|
|
37
|
+
hidePcLink: boolean;
|
|
38
|
+
}>, import('../../../vue-utils/install-utils').InstallOptions>;
|
|
2
39
|
export * from './use-external-links';
|
|
@@ -23,12 +23,14 @@ export interface ExternalLinksModel {
|
|
|
23
23
|
linkType?: LinkType;
|
|
24
24
|
link?: string;
|
|
25
25
|
jumpWay?: LinkJumpWay;
|
|
26
|
+
pcLinkJumpWay?: LinkJumpWay;
|
|
26
27
|
mobileLink?: string;
|
|
27
28
|
pcLink?: string;
|
|
28
29
|
wxMiniprogramOriginalId?: string;
|
|
29
30
|
wxMiniprogramAppId?: string;
|
|
30
31
|
wxMiniprogramLink?: string;
|
|
31
32
|
mobileAppLink?: string;
|
|
33
|
+
mobileAppLinkJumpWay?: LinkJumpWay;
|
|
32
34
|
iosLink?: string;
|
|
33
35
|
androidLink?: string;
|
|
34
36
|
harmonyLink?: string;
|
|
@@ -41,12 +43,14 @@ export interface ExternalLinksFormModel {
|
|
|
41
43
|
linkType: LinkType;
|
|
42
44
|
link: string;
|
|
43
45
|
jumpWay: LinkJumpWay;
|
|
46
|
+
pcLinkJumpWay: LinkJumpWay;
|
|
44
47
|
mobileLink: string;
|
|
45
48
|
pcLink: string;
|
|
46
49
|
wxMiniprogramOriginalId: string;
|
|
47
50
|
wxMiniprogramAppId: string;
|
|
48
51
|
wxMiniprogramLink: string;
|
|
49
52
|
mobileAppLink: string;
|
|
53
|
+
mobileAppLinkJumpWay: LinkJumpWay;
|
|
50
54
|
iosLink: string;
|
|
51
55
|
androidLink: string;
|
|
52
56
|
harmonyLink: string;
|
|
@@ -62,6 +66,9 @@ export declare const externalLinksProps: () => {
|
|
|
62
66
|
hidePcLink: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
63
67
|
default: boolean;
|
|
64
68
|
};
|
|
69
|
+
labelModel: import('vue-types').VueTypeDef<"header" | "inline" | "box"> & {
|
|
70
|
+
default: "header" | "inline" | "box";
|
|
71
|
+
};
|
|
65
72
|
};
|
|
66
73
|
export declare const externalLinksEmits: () => {
|
|
67
74
|
change: import('../../../vue-utils').EmitFuncType<ExternalLinksModelValue>;
|
|
@@ -70,6 +77,8 @@ interface UseExternalLinksOptions {
|
|
|
70
77
|
props: VueProps<typeof externalLinksProps>;
|
|
71
78
|
emit: VueEmit<typeof externalLinksEmits>;
|
|
72
79
|
}
|
|
80
|
+
declare const advancedFieldKeys: readonly ["pc", "transit", "app", "wxMp"];
|
|
81
|
+
type AdvancedFieldKey = (typeof advancedFieldKeys)[number];
|
|
73
82
|
export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions) => {
|
|
74
83
|
$t: (key: import('../../../lang/types').NestedKeys<{
|
|
75
84
|
rewardReceive: {
|
|
@@ -265,6 +274,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
265
274
|
placeholder: string;
|
|
266
275
|
prefix: string;
|
|
267
276
|
};
|
|
277
|
+
app: {
|
|
278
|
+
label: string;
|
|
279
|
+
title: string;
|
|
280
|
+
tips: string;
|
|
281
|
+
};
|
|
268
282
|
ios: {
|
|
269
283
|
placeholder: string;
|
|
270
284
|
prefix: string;
|
|
@@ -298,6 +312,11 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
298
312
|
};
|
|
299
313
|
};
|
|
300
314
|
};
|
|
315
|
+
advanced: {
|
|
316
|
+
label: string;
|
|
317
|
+
tips: string;
|
|
318
|
+
panelTips: string;
|
|
319
|
+
};
|
|
301
320
|
error: {
|
|
302
321
|
urlPattern: string;
|
|
303
322
|
urlEmpty: string;
|
|
@@ -336,6 +355,10 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
336
355
|
placeholder: string;
|
|
337
356
|
empty: string;
|
|
338
357
|
};
|
|
358
|
+
colorPicker: {
|
|
359
|
+
placeholder: string;
|
|
360
|
+
customColor: string;
|
|
361
|
+
};
|
|
339
362
|
} & {
|
|
340
363
|
common: {
|
|
341
364
|
confirm: string;
|
|
@@ -414,7 +437,7 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
414
437
|
gap: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
|
|
415
438
|
effect: import('vue-types').VueTypeDef<"fill" | "outline">;
|
|
416
439
|
}>>> & import('vue').ShallowUnwrapRef<{
|
|
417
|
-
validateCurrentForm: (validateOptions?: import('../../
|
|
440
|
+
validateCurrentForm: (validateOptions?: import('../../form/types').FormValidateOptions) => Promise<void>;
|
|
418
441
|
buildFormData: <D extends Record<string | number, any>>() => D;
|
|
419
442
|
}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
420
443
|
business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
|
|
@@ -443,12 +466,14 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
443
466
|
linkType: LinkType;
|
|
444
467
|
link: string;
|
|
445
468
|
jumpWay: LinkJumpWay;
|
|
469
|
+
pcLinkJumpWay: LinkJumpWay;
|
|
446
470
|
mobileLink: string;
|
|
447
471
|
pcLink: string;
|
|
448
472
|
wxMiniprogramOriginalId: string;
|
|
449
473
|
wxMiniprogramAppId: string;
|
|
450
474
|
wxMiniprogramLink: string;
|
|
451
475
|
mobileAppLink: string;
|
|
476
|
+
mobileAppLinkJumpWay: LinkJumpWay;
|
|
452
477
|
iosLink: string;
|
|
453
478
|
androidLink: string;
|
|
454
479
|
harmonyLink: string;
|
|
@@ -456,6 +481,19 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
|
|
|
456
481
|
formRules: import('vue').ComputedRef<ValidatorRules>;
|
|
457
482
|
jumpWayOptions: import('vue').ComputedRef<SelectOptionItem<LinkJumpWay>[]>;
|
|
458
483
|
jumpWayTipsText: import('vue').ComputedRef<string>;
|
|
484
|
+
pcLinkJumpWayTipsText: import('vue').ComputedRef<string>;
|
|
485
|
+
mobileAppLinkJumpWayTipsText: import('vue').ComputedRef<string>;
|
|
486
|
+
showMainJumpWay: import('vue').ComputedRef<boolean>;
|
|
487
|
+
showPcJumpWay: import('vue').ComputedRef<boolean>;
|
|
488
|
+
showTransitJumpWay: import('vue').ComputedRef<boolean>;
|
|
489
|
+
advancedExpanded: import('vue').Ref<boolean>;
|
|
490
|
+
advancedFieldOptions: import('vue').ComputedRef<{
|
|
491
|
+
key: AdvancedFieldKey;
|
|
492
|
+
label: string;
|
|
493
|
+
}[]>;
|
|
494
|
+
activeAdvancedFields: import('vue').Ref<("app" | "wxMp" | "pc" | "transit")[]>;
|
|
495
|
+
toggleAdvancedPanel: () => void;
|
|
496
|
+
isAdvancedFieldActive: (field: AdvancedFieldKey) => boolean;
|
|
459
497
|
validateCurrentForm: () => Promise<void>;
|
|
460
498
|
};
|
|
461
499
|
export {};
|
|
@@ -246,6 +246,11 @@ export declare const useRewardReceive: (options: {
|
|
|
246
246
|
placeholder: string;
|
|
247
247
|
prefix: string;
|
|
248
248
|
};
|
|
249
|
+
app: {
|
|
250
|
+
label: string;
|
|
251
|
+
title: string;
|
|
252
|
+
tips: string;
|
|
253
|
+
};
|
|
249
254
|
ios: {
|
|
250
255
|
placeholder: string;
|
|
251
256
|
prefix: string;
|
|
@@ -279,6 +284,11 @@ export declare const useRewardReceive: (options: {
|
|
|
279
284
|
};
|
|
280
285
|
};
|
|
281
286
|
};
|
|
287
|
+
advanced: {
|
|
288
|
+
label: string;
|
|
289
|
+
tips: string;
|
|
290
|
+
panelTips: string;
|
|
291
|
+
};
|
|
282
292
|
error: {
|
|
283
293
|
urlPattern: string;
|
|
284
294
|
urlEmpty: string;
|
|
@@ -317,6 +327,10 @@ export declare const useRewardReceive: (options: {
|
|
|
317
327
|
placeholder: string;
|
|
318
328
|
empty: string;
|
|
319
329
|
};
|
|
330
|
+
colorPicker: {
|
|
331
|
+
placeholder: string;
|
|
332
|
+
customColor: string;
|
|
333
|
+
};
|
|
320
334
|
} & {
|
|
321
335
|
common: {
|
|
322
336
|
confirm: string;
|
|
@@ -75,6 +75,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
|
|
|
75
75
|
"click-native": (arg: MouseEvent) => void;
|
|
76
76
|
}, {
|
|
77
77
|
link: boolean;
|
|
78
|
+
loading: boolean;
|
|
78
79
|
type: "success" | "warning" | "primary" | "danger" | "ordinary";
|
|
79
80
|
disabled: boolean;
|
|
80
81
|
size: "default" | "small" | "large" | "mini";
|
|
@@ -83,7 +84,6 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
|
|
|
83
84
|
block: boolean;
|
|
84
85
|
gradient: boolean;
|
|
85
86
|
minWidth: number | boolean;
|
|
86
|
-
loading: boolean;
|
|
87
87
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
88
88
|
business: import('vue-types').VueTypeValidableDef<import('../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../..').BusinessType>>;
|
|
89
89
|
text: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
@@ -197,6 +197,7 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
|
|
|
197
197
|
"click-native": (arg: MouseEvent) => void;
|
|
198
198
|
}, string, {
|
|
199
199
|
link: boolean;
|
|
200
|
+
loading: boolean;
|
|
200
201
|
type: "success" | "warning" | "primary" | "danger" | "ordinary";
|
|
201
202
|
disabled: boolean;
|
|
202
203
|
size: "default" | "small" | "large" | "mini";
|
|
@@ -205,7 +206,6 @@ export declare const PwcButton: import('../../vue-utils/install-utils').SFCInsta
|
|
|
205
206
|
block: boolean;
|
|
206
207
|
gradient: boolean;
|
|
207
208
|
minWidth: number | boolean;
|
|
208
|
-
loading: boolean;
|
|
209
209
|
}> & {
|
|
210
210
|
props: {
|
|
211
211
|
business: import('vue-types').VueTypeValidableDef<import('../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../..').BusinessType>>;
|
|
@@ -87,6 +87,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
87
87
|
};
|
|
88
88
|
}>>, {
|
|
89
89
|
link: boolean;
|
|
90
|
+
loading: boolean;
|
|
90
91
|
type: "success" | "warning" | "primary" | "danger" | "ordinary";
|
|
91
92
|
disabled: boolean;
|
|
92
93
|
size: "default" | "small" | "large" | "mini";
|
|
@@ -95,7 +96,6 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
95
96
|
block: boolean;
|
|
96
97
|
gradient: boolean;
|
|
97
98
|
minWidth: number | boolean;
|
|
98
|
-
loading: boolean;
|
|
99
99
|
}>;
|
|
100
100
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
101
101
|
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const PwcColorCell: import('../../vue-utils/install-utils').SFCInstall<import('vue').DefineComponent<{
|
|
2
|
+
color: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
3
|
+
default: string;
|
|
4
|
+
};
|
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
6
|
+
color: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
}>>, {
|
|
10
|
+
color: string;
|
|
11
|
+
}>, import('../../vue-utils/install-utils').InstallOptions>;
|
|
12
|
+
export * from './src/props-define';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
color: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
3
|
+
default: string;
|
|
4
|
+
};
|
|
5
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
6
|
+
color: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
}>>, {
|
|
10
|
+
color: string;
|
|
11
|
+
}>;
|
|
12
|
+
export default _default;
|
|
@@ -17,6 +17,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
17
17
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
18
18
|
default: string;
|
|
19
19
|
};
|
|
20
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
20
23
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
21
24
|
"v-model-key": import('vue-types').VueTypeValidableDef<{
|
|
22
25
|
[key: string]: any;
|
|
@@ -36,6 +39,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
36
39
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
37
40
|
default: string;
|
|
38
41
|
};
|
|
42
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
39
45
|
}>>, {
|
|
40
46
|
search: (arg: any) => void;
|
|
41
47
|
reset: (arg?: void | undefined) => void;
|
|
@@ -46,6 +52,7 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
46
52
|
showSearch: boolean;
|
|
47
53
|
resetFilter: boolean | (() => any);
|
|
48
54
|
allOptionValue: string;
|
|
55
|
+
freeLayout: boolean;
|
|
49
56
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
50
57
|
"v-model-key": import('vue-types').VueTypeValidableDef<{
|
|
51
58
|
[key: string]: any;
|
|
@@ -65,6 +72,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
65
72
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
66
73
|
default: string;
|
|
67
74
|
};
|
|
75
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
76
|
+
default: boolean;
|
|
77
|
+
};
|
|
68
78
|
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
69
79
|
"v-model-key": import('vue-types').VueTypeValidableDef<{
|
|
70
80
|
[key: string]: any;
|
|
@@ -84,6 +94,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
84
94
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
85
95
|
default: string;
|
|
86
96
|
};
|
|
97
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
87
100
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
88
101
|
"v-model-key": import('vue-types').VueTypeValidableDef<{
|
|
89
102
|
[key: string]: any;
|
|
@@ -103,6 +116,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
103
116
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
104
117
|
default: string;
|
|
105
118
|
};
|
|
119
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
106
122
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
107
123
|
search: (arg: any) => void;
|
|
108
124
|
reset: (arg?: void | undefined) => void;
|
|
@@ -113,6 +129,7 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
113
129
|
showSearch: boolean;
|
|
114
130
|
resetFilter: boolean | (() => any);
|
|
115
131
|
allOptionValue: string;
|
|
132
|
+
freeLayout: boolean;
|
|
116
133
|
}> & {
|
|
117
134
|
props: {
|
|
118
135
|
"v-model-key": import('vue-types').VueTypeValidableDef<{
|
|
@@ -133,6 +150,9 @@ export declare const PwcConditionFilter: import('../../vue-utils/install-utils')
|
|
|
133
150
|
allOptionValue: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
|
|
134
151
|
default: string;
|
|
135
152
|
};
|
|
153
|
+
freeLayout: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
136
156
|
};
|
|
137
157
|
} & (new () => {
|
|
138
158
|
$scopedSlots: {
|
|
@@ -148,36 +168,62 @@ export declare const PwcConditionFilterItem: import('../../vue-utils/install-uti
|
|
|
148
168
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
149
169
|
default: boolean;
|
|
150
170
|
};
|
|
171
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
172
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
173
|
+
default: boolean;
|
|
174
|
+
};
|
|
151
175
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
152
176
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
153
177
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
154
178
|
default: boolean;
|
|
155
179
|
};
|
|
180
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
181
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
182
|
+
default: boolean;
|
|
183
|
+
};
|
|
156
184
|
}>>, {}, {
|
|
157
185
|
injectAllOption: boolean;
|
|
186
|
+
ignoreChangeCallback: boolean;
|
|
158
187
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
159
188
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
160
189
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
161
190
|
default: boolean;
|
|
162
191
|
};
|
|
192
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
193
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
163
196
|
}>>> & import('vue').ShallowUnwrapRef<{}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
164
197
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
165
198
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
166
199
|
default: boolean;
|
|
167
200
|
};
|
|
201
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
202
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
203
|
+
default: boolean;
|
|
204
|
+
};
|
|
168
205
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
169
206
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
170
207
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
171
208
|
default: boolean;
|
|
172
209
|
};
|
|
210
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
211
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
212
|
+
default: boolean;
|
|
213
|
+
};
|
|
173
214
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
174
215
|
injectAllOption: boolean;
|
|
216
|
+
ignoreChangeCallback: boolean;
|
|
175
217
|
}> & {
|
|
176
218
|
props: {
|
|
177
219
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
178
220
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
179
221
|
default: boolean;
|
|
180
222
|
};
|
|
223
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
224
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
225
|
+
default: boolean;
|
|
226
|
+
};
|
|
181
227
|
};
|
|
182
228
|
} & (new () => {
|
|
183
229
|
$scopedSlots: {
|
|
@@ -12,13 +12,22 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
12
12
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
13
13
|
default: boolean;
|
|
14
14
|
};
|
|
15
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
16
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
15
19
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
16
20
|
label: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
|
|
17
21
|
injectAllOption: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
18
22
|
default: boolean;
|
|
19
23
|
};
|
|
24
|
+
width: import('vue-types').VueTypeDef<string | number>;
|
|
25
|
+
ignoreChangeCallback: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
20
28
|
}>>, {
|
|
21
29
|
injectAllOption: boolean;
|
|
30
|
+
ignoreChangeCallback: boolean;
|
|
22
31
|
}>;
|
|
23
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
33
|
export default _default;
|