@polyv/vue-components 1.3.0 → 1.5.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 +9 -4
- package/styles/function.scss +60 -0
- package/styles/mixins.scss +1 -0
- package/styles/root/basic.scss +85 -0
- package/styles/root/bg.scss +25 -0
- package/styles/root/border.scss +36 -0
- package/styles/root/gray.scss +38 -0
- package/styles/root/neutral.scss +36 -0
- package/styles/root/other.scss +3 -0
- package/styles/root/radius.scss +14 -0
- package/styles/root/root.scss +9 -0
- package/styles/root/shadow.scss +8 -0
- package/styles/root/text.scss +34 -0
- package/styles/variables.scss +192 -0
- package/vue2/index.es.js +19269 -7487
- package/vue2/src/components/animation/bubble-animation/types/index.d.ts +4 -0
- package/vue2/src/components/basic-countdown/basic-countdown.vue.d.ts +7 -0
- package/vue2/src/components/basic-countdown/use-basic-countdown.d.ts +7 -0
- package/vue2/src/components/business/external-links/external-links.vue.d.ts +33 -0
- package/vue2/src/components/business/external-links/index.d.ts +2 -0
- package/vue2/src/components/business/external-links/use-external-links.d.ts +310 -0
- package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +153 -0
- package/vue2/src/components/button/index.d.ts +203 -3
- package/vue2/src/components/button/src/button.vue.d.ts +88 -0
- package/vue2/src/components/button/src/type.d.ts +8 -0
- package/vue2/src/components/button/src/use-button.d.ts +91 -0
- package/vue2/src/components/category-select/category-select-item.vue.d.ts +9 -1
- package/vue2/src/components/category-select/use-category-select.d.ts +6 -0
- package/vue2/src/components/dropdown/dropdown.vue.d.ts +5 -5
- package/vue2/src/components/dropdown/use-dropdown.d.ts +4 -4
- package/vue2/src/components/empty/index.d.ts +55 -2
- package/vue2/src/components/empty/src/empty.vue.d.ts +35 -0
- package/vue2/src/components/empty/src/props-define.d.ts +30 -0
- package/vue2/src/components/example/example.vue.d.ts +37 -0
- package/vue2/src/components/example/index.d.ts +37 -0
- package/vue2/src/components/example/props-define.d.ts +40 -0
- package/vue2/src/components/exports.d.ts +12 -0
- package/vue2/src/components/form/_common/form-base.vue.d.ts +37 -0
- package/vue2/src/components/form/area-picker/area-picker.vue.d.ts +10 -9
- package/vue2/src/components/form/area-picker/index.d.ts +1 -0
- package/vue2/src/components/form/area-picker/types.d.ts +1 -0
- package/vue2/src/components/form/area-picker/use-area-picker.d.ts +5 -9
- package/vue2/src/components/form/checkbox/index.d.ts +269 -4
- package/vue2/src/components/form/checkbox/src/checkbox-group.vue.d.ts +48 -0
- package/vue2/src/components/form/checkbox/{checkbox.vue.d.ts → src/checkbox.vue.d.ts} +2 -0
- package/vue2/src/components/form/checkbox/src/type.d.ts +1 -0
- package/vue2/src/components/form/checkbox/src/use-checkbox-group.d.ts +46 -0
- package/{vue3/src/components/form/checkbox → vue2/src/components/form/checkbox/src}/use-checkbox.d.ts +10 -17
- package/vue2/src/components/form/date-picker/index.d.ts +86 -0
- package/vue2/src/components/form/date-picker/src/components/date-presets/date-presets.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/date-select/date-select-header.vue.d.ts +24 -0
- package/vue2/src/components/form/date-picker/src/components/date-select/date-select.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/picker-popper/pick-popper.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/picker-reference/date-range-reference.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/picker-reference/date-reference.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/components/time-select/time-select-column.vue.d.ts +17 -0
- package/vue2/src/components/form/date-picker/src/components/time-select/time-select.vue.d.ts +2 -0
- package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +85 -0
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +54 -0
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +22 -0
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-range-type.d.ts +19 -0
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-type.d.ts +23 -0
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-value-item.d.ts +24 -0
- package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +84 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-input.d.ts +16 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +10 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +40 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +12 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-year-month.d.ts +10 -0
- package/vue2/src/components/form/date-picker/src/types/index.d.ts +19 -0
- package/vue2/src/components/form/date-picker/src/utils/date-utils.d.ts +34 -0
- package/vue2/src/components/form/form-group/index.d.ts +10 -0
- package/{vue3/src/components/form/radio/radio-group.vue.d.ts → vue2/src/components/form/form-group/src/form-group.vue.d.ts} +3 -8
- package/vue2/src/components/form/form-group/src/props-define.d.ts +14 -0
- package/vue2/src/components/form/form-item/index.d.ts +197 -2
- package/{vue3/src/components/form/form-item → vue2/src/components/form/form-item/src}/form-item.vue.d.ts +36 -1
- package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +10 -0
- package/{vue3/src/components/form/form-item → vue2/src/components/form/form-item/src}/use-form-item.d.ts +39 -15
- package/vue2/src/components/form/form-submit-button/index.d.ts +81 -2
- package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +81 -0
- package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +43 -0
- package/vue2/src/components/form/form-submit-button/src/use-form-submit-button.d.ts +9 -0
- package/vue2/src/components/form/form-wrap/index.d.ts +126 -2
- package/vue2/src/components/form/form-wrap/{form-wrap.vue.d.ts → src/form-wrap.vue.d.ts} +20 -16
- package/vue2/src/components/form/form-wrap/{use-form-wrap.d.ts → src/use-form-wrap.d.ts} +28 -20
- package/vue2/src/components/form/hooks/use-form-clearable.d.ts +25 -0
- package/vue2/src/components/form/hooks/use-form-entrance.d.ts +69 -0
- package/vue2/src/components/form/image-upload/index.d.ts +102 -0
- package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +126 -0
- package/vue2/src/components/form/image-upload/src/hooks/types.d.ts +40 -0
- package/vue2/src/components/form/image-upload/src/hooks/use-file-input.d.ts +7 -0
- package/vue2/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +76 -0
- package/vue2/src/components/form/image-upload/src/hooks/use-upload-controller.d.ts +7 -0
- package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +96 -0
- package/vue2/src/components/form/image-upload/src/upload-item.vue.d.ts +19 -0
- package/vue2/src/components/form/index.d.ts +7 -0
- package/vue2/src/components/form/input/index.d.ts +307 -2
- package/{vue3/src/components/form/input → vue2/src/components/form/input/src}/input.vue.d.ts +39 -33
- package/vue2/src/components/form/input/{use-input.d.ts → src/props-define.d.ts} +18 -48
- package/vue2/src/components/form/input/src/use-input.d.ts +19 -0
- package/vue2/src/components/form/input-number/index.d.ts +2 -0
- package/vue2/src/components/form/input-number/input-number.vue.d.ts +74 -0
- package/vue2/src/components/form/input-number/props-define.d.ts +55 -0
- package/vue2/src/components/form/input-number/use-input-number.d.ts +14 -0
- package/vue2/src/components/form/radio/index.d.ts +215 -4
- package/vue2/src/components/form/radio/src/radio-group.vue.d.ts +43 -0
- package/{vue3/src/components/form/radio → vue2/src/components/form/radio/src}/radio.vue.d.ts +12 -1
- package/vue2/src/components/form/radio/src/type.d.ts +1 -0
- package/vue2/src/components/form/radio/src/use-radio-group.d.ts +43 -0
- package/vue2/src/components/form/radio/{use-radio.d.ts → src/use-radio.d.ts} +19 -7
- package/vue2/src/components/form/select/index.d.ts +1056 -0
- package/vue2/src/components/form/select/src/props-define.d.ts +215 -0
- package/vue2/src/components/form/select/src/select.vue.d.ts +381 -0
- package/vue2/src/components/form/select/src/type.d.ts +19 -0
- package/vue2/src/components/form/switch/index.d.ts +54 -2
- package/vue2/src/components/{switch/use-switch.d.ts → form/switch/src/props-define.d.ts} +8 -28
- package/vue2/src/components/form/switch/src/switch.vue.d.ts +54 -0
- package/vue2/src/components/form/switch/src/use-switch.d.ts +15 -0
- package/vue2/src/components/form/transfer/hooks/props-define.d.ts +121 -0
- package/vue2/src/components/form/transfer/hooks/types.d.ts +28 -0
- package/vue2/src/components/form/transfer/hooks/use-transfer.d.ts +26 -0
- package/vue2/src/components/form/transfer/index.d.ts +3 -0
- package/vue2/src/components/form/transfer/transfer.vue.d.ts +166 -0
- package/vue2/src/components/form/types/index.d.ts +14 -18
- package/vue2/src/components/form/video-upload/hooks/props-define.d.ts +69 -0
- package/vue2/src/components/form/video-upload/hooks/types.d.ts +19 -0
- package/vue2/src/components/form/video-upload/hooks/use-upload-controller.d.ts +23 -0
- package/vue2/src/components/form/video-upload/hooks/use-video-upload.d.ts +33 -0
- package/vue2/src/components/form/video-upload/index.d.ts +4 -0
- package/vue2/src/components/form/video-upload/video-upload.vue.d.ts +73 -0
- package/{vue3/src/components/icons/icons/export → vue2/src/components/icons/icons/add}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/{arrow-circle-down → add-circle-outline}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/arrow-down-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/arrow-left-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/arrow-right-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/arrow-up-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/{down-load → calendar}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/{arrow-left → caret-down}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/{arrow-down → caret-left}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/{arrow-right → caret-right}/index.d.ts +1 -1
- package/{vue3/src/components/icons/icons/arrow-up → vue2/src/components/icons/icons/caret-up}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/{export → clock}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/close-circle-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/close-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/data-export/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/{arrow-up → delete}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/down/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/{down-file → download}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/drag/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/edit/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/error-circle-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/error-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/image/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/{arrow-circle-left → info-circle-filled}/index.d.ts +1 -1
- package/vue2/src/components/icons/icons/info-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/left/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/minus-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/more/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/question-circle-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/question-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/refresh/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/right/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/setting/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/success-circle-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/success-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/up/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/upload/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/upload-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/warning-circle-filled/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/warning-circle-outline/index.d.ts +6 -0
- package/vue2/src/components/icons/index.d.ts +3 -0
- package/vue2/src/components/icons/map.d.ts +40 -21
- package/vue2/src/components/image-preview/components/preview-controller.vue.d.ts +1 -1
- package/vue2/src/components/info-card/index.d.ts +2 -0
- package/vue2/src/components/info-card/info-card.vue.d.ts +70 -0
- package/vue2/src/components/info-card/props-define.d.ts +80 -0
- package/vue2/src/components/loading/index.d.ts +45 -6
- package/{vue3/src/components/loading → vue2/src/components/loading/src}/directive.d.ts +3 -3
- package/vue2/src/components/loading/src/loading-circle.vue.d.ts +2 -0
- package/{vue3/src/components/loading → vue2/src/components/loading/src}/loading.vue.d.ts +7 -0
- package/vue2/src/components/loading/{use-loading-component.d.ts → src/props-define.d.ts} +7 -0
- package/{vue3/src/components/loading → vue2/src/components/loading/src}/types.d.ts +4 -1
- package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +181 -25
- package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +124 -38
- package/vue2/src/components/message-box/types.d.ts +13 -46
- package/vue2/src/components/pagination/components/jumper.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/next.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/pager.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/prev.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/sizes.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/total-items.vue.d.ts +2 -0
- package/vue2/src/components/pagination/components/total-pages.vue.d.ts +2 -0
- package/vue2/src/components/pagination/index.d.ts +3 -0
- package/vue2/src/components/pagination/pagination.vue.d.ts +52 -0
- package/vue2/src/components/pagination/props-define.d.ts +52 -0
- package/vue2/src/components/pagination/types.d.ts +19 -0
- package/vue2/src/components/pagination/use-pagination.d.ts +25 -0
- package/vue2/src/components/popconfirm/index.d.ts +2 -0
- package/vue2/src/components/popconfirm/popconfirm.vue.d.ts +246 -0
- package/vue2/src/components/popconfirm/props-define.d.ts +74 -0
- package/vue2/src/components/popover/index.d.ts +191 -0
- package/vue2/src/components/popover/src/popover.vue.d.ts +87 -0
- package/vue2/src/components/popover/src/props-define.d.ts +69 -0
- package/vue2/src/components/popper/popper.vue.d.ts +5 -5
- package/vue2/src/components/popper/props-define.d.ts +4 -2
- package/vue2/src/components/popup/hooks/popup-props.d.ts +3 -3
- package/vue2/src/components/popup/hooks/use-popup-position.d.ts +1 -1
- package/vue2/src/components/popup/popup.vue.d.ts +7 -7
- package/vue2/src/components/progress/index.d.ts +129 -0
- package/vue2/src/components/{form/radio/radio-group.vue.d.ts → progress/src/circle-progress.vue.d.ts} +1 -8
- package/vue2/src/components/progress/src/line-progress.vue.d.ts +17 -0
- package/vue2/src/components/progress/src/progress.vue.d.ts +60 -0
- package/vue2/src/components/progress/src/props-define.d.ts +50 -0
- package/vue2/src/components/progress/src/use-progress.d.ts +24 -0
- package/vue2/src/components/scrollbar/index.d.ts +198 -0
- package/vue2/src/components/scrollbar/src/props-define.d.ts +106 -0
- package/vue2/src/components/scrollbar/src/scrollbar-track.vue.d.ts +81 -0
- package/vue2/src/components/scrollbar/src/scrollbar.vue.d.ts +91 -0
- package/vue2/src/components/scrollbar/src/types.d.ts +4 -0
- package/vue2/src/components/slider/index.d.ts +95 -0
- package/vue2/src/components/slider/src/props-define.d.ts +110 -0
- package/vue2/src/components/slider/src/slider-button.vue.d.ts +16 -0
- package/vue2/src/components/slider/src/slider.vue.d.ts +95 -0
- package/vue2/src/components/slider/src/use-slider-button.d.ts +26 -0
- package/vue2/src/components/slider/src/use-slider.d.ts +40 -0
- package/vue2/src/components/swiper/effects/carousel-effect/use-carousel-effect.d.ts +34 -0
- package/vue2/src/components/swiper/hooks/swiper-props.d.ts +48 -11
- package/vue2/src/components/swiper/hooks/use-swiper-options.d.ts +14 -8
- package/vue2/src/components/swiper/hooks/use-swiper-slide.d.ts +8 -1
- package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +9237 -0
- package/vue2/src/components/swiper/index.d.ts +1 -0
- package/vue2/src/components/swiper/modules/use-autoplay-module.d.ts +12 -0
- package/vue2/src/components/swiper/swiper-slide.vue.d.ts +5 -1
- package/vue2/src/components/swiper/swiper.vue.d.ts +30 -13
- package/vue2/src/components/table/index.d.ts +692 -0
- package/vue2/src/components/table/src/components/render-slot.d.ts +10 -0
- package/vue2/src/components/table/src/components/scroll/horizontal-scrollbar.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/scroll/vertical-scrollbar.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-index.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-multiple.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-single.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/table-body-cell.vue.d.ts +10 -0
- package/vue2/src/components/table/src/components/table-body-cell/use-table-body-cell-class.d.ts +9 -0
- package/vue2/src/components/table/src/components/table-body-cell/use-table-body-cell-hover.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +32 -0
- package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +22 -0
- package/vue2/src/components/table/src/components/table-body-row/use-table-body-row-class.d.ts +7 -0
- package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +25 -0
- package/vue2/src/components/table/src/components/table-body.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-colgroup/table-colgroup.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +10 -0
- package/vue2/src/components/table/src/components/table-footer/table-pagination.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-header/table-header.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-header/use-table-header-structure.d.ts +4 -0
- package/vue2/src/components/table/src/components/table-header-cell/header-cell-multiple.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-header-cell/header-cell-sort.vue.d.ts +2 -0
- package/vue2/src/components/table/src/components/table-header-cell/table-header-cell.vue.d.ts +10 -0
- package/vue2/src/components/table/src/components/table-header-cell/use-table-header-cell-class.d.ts +4 -0
- package/vue2/src/components/table/src/components/table-header-cell/use-table-header-cell.d.ts +21 -0
- package/vue2/src/components/table/src/hooks/props-define.d.ts +246 -0
- package/vue2/src/components/table/src/hooks/table-data/use-row-key.d.ts +8 -0
- package/vue2/src/components/table/src/hooks/table-data/use-table-multiple.d.ts +10 -0
- package/vue2/src/components/table/src/hooks/table-data/use-table-single.d.ts +8 -0
- package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +55 -0
- package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +101 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-element.d.ts +35 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-pagination.d.ts +12 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +13 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-scroll.d.ts +28 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table-status.d.ts +29 -0
- package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +198 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +57 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-index.d.ts +14 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-slot.d.ts +16 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-sort.d.ts +24 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-sticky.d.ts +17 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-width.d.ts +14 -0
- package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +20 -0
- package/vue2/src/components/table/src/table-column.vue.d.ts +82 -0
- package/vue2/src/components/table/src/table.vue.d.ts +199 -0
- package/vue2/src/components/table/src/types/index.d.ts +56 -0
- package/vue2/src/components/table/src/utils/index.d.ts +3 -0
- package/vue2/src/components/tag/index.d.ts +78 -0
- package/vue2/src/components/tag/src/props-define.d.ts +47 -0
- package/vue2/src/components/tag/src/tag.vue.d.ts +43 -0
- package/vue2/src/components/tooltip/index.d.ts +138 -3
- package/vue2/src/components/tooltip/{directive.d.ts → src/directive.d.ts} +4 -4
- package/vue2/src/components/tooltip/src/props-define.d.ts +54 -0
- package/vue2/src/components/tooltip/{tooltip-popper.vue.d.ts → src/tooltip-popper.vue.d.ts} +1 -1
- package/{vue3/src/components/tooltip → vue2/src/components/tooltip/src}/tooltip.vue.d.ts +19 -19
- package/{vue3/src/components/tooltip → vue2/src/components/tooltip/src}/use-tooltip.d.ts +10 -4
- package/vue2/src/hooks/business/use-app-user-agent/index.d.ts +14 -0
- package/vue2/src/hooks/business/use-business-type/index.d.ts +38 -0
- package/vue2/src/hooks/business/use-skin-color/index.d.ts +6 -22
- package/vue2/src/hooks/business/use-skin-color/types.d.ts +20 -0
- package/vue2/src/hooks/business/use-skin-color/utils.d.ts +7 -0
- package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +69 -0
- package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +8 -0
- package/vue2/src/hooks/element/use-event-listener/index.d.ts +15 -4
- package/vue2/src/hooks/element/use-overflow-count/index.d.ts +30 -0
- package/vue2/src/hooks/exports.d.ts +4 -0
- package/vue2/src/hooks/tools/use-event-bus/index.d.ts +9 -0
- package/vue2/src/hooks/tools/use-task-queue/index.d.ts +33 -0
- package/vue2/src/hooks/vue/use-model-value/index.d.ts +8 -1
- package/vue2/src/hooks/vue/use-vue/index.d.ts +1 -2
- package/vue2/src/interface/enum.d.ts +15 -0
- package/vue2/src/interface/index.d.ts +1 -0
- package/vue2/src/lang/common/en.json.d.ts +4 -1
- package/vue2/src/lang/common/ja.json.d.ts +4 -1
- package/vue2/src/lang/common/ko.json.d.ts +4 -1
- package/vue2/src/lang/common/ru.json.d.ts +4 -1
- package/vue2/src/lang/common/zh-CN.json.d.ts +4 -1
- package/vue2/src/lang/common/zh-TW.json.d.ts +4 -1
- package/vue2/src/lang/internal/en.json.d.ts +152 -1
- package/vue2/src/lang/internal/index.d.ts +153 -0
- package/vue2/src/lang/internal/ja.json.d.ts +152 -1
- package/vue2/src/lang/internal/ko.json.d.ts +152 -1
- package/vue2/src/lang/internal/ru.json.d.ts +152 -1
- package/vue2/src/lang/internal/zh-CN.json.d.ts +152 -1
- package/vue2/src/lang/internal/zh-TW.json.d.ts +152 -1
- package/vue2/src/utils/dom.d.ts +5 -0
- package/vue2/src/vue-utils/install-utils.d.ts +34 -0
- package/vue2/src/vue-utils/version-compatible/types.d.ts +1 -1
- package/vue3/index.es.js +19277 -7492
- package/vue3/src/components/animation/bubble-animation/types/index.d.ts +4 -0
- package/vue3/src/components/basic-countdown/basic-countdown.vue.d.ts +7 -0
- package/vue3/src/components/basic-countdown/use-basic-countdown.d.ts +7 -0
- package/vue3/src/components/business/external-links/external-links.vue.d.ts +33 -0
- package/vue3/src/components/business/external-links/index.d.ts +2 -0
- package/vue3/src/components/business/external-links/use-external-links.d.ts +310 -0
- package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +153 -0
- package/vue3/src/components/button/index.d.ts +203 -3
- package/vue3/src/components/button/src/button.vue.d.ts +88 -0
- package/vue3/src/components/button/src/type.d.ts +8 -0
- package/vue3/src/components/button/src/use-button.d.ts +91 -0
- package/vue3/src/components/category-select/category-select-item.vue.d.ts +9 -1
- package/vue3/src/components/category-select/use-category-select.d.ts +6 -0
- package/vue3/src/components/dropdown/dropdown.vue.d.ts +5 -5
- package/vue3/src/components/dropdown/use-dropdown.d.ts +4 -4
- package/vue3/src/components/empty/index.d.ts +55 -2
- package/vue3/src/components/empty/src/empty.vue.d.ts +35 -0
- package/vue3/src/components/empty/src/props-define.d.ts +30 -0
- package/vue3/src/components/empty/src/svgs/box-icon.vue.d.ts +2 -0
- package/vue3/src/components/empty/src/svgs/video-icon.vue.d.ts +2 -0
- package/vue3/src/components/example/example.vue.d.ts +37 -0
- package/vue3/src/components/example/index.d.ts +37 -0
- package/vue3/src/components/example/props-define.d.ts +40 -0
- package/vue3/src/components/exports.d.ts +12 -0
- package/vue3/src/components/form/_common/form-base.vue.d.ts +37 -0
- package/vue3/src/components/form/area-picker/area-picker.vue.d.ts +10 -9
- package/vue3/src/components/form/area-picker/index.d.ts +1 -0
- package/vue3/src/components/form/area-picker/types.d.ts +1 -0
- package/vue3/src/components/form/area-picker/use-area-picker.d.ts +5 -9
- package/vue3/src/components/form/checkbox/index.d.ts +269 -4
- package/vue3/src/components/form/checkbox/src/checkbox-group.vue.d.ts +48 -0
- package/vue3/src/components/form/checkbox/{checkbox.vue.d.ts → src/checkbox.vue.d.ts} +2 -0
- package/vue3/src/components/form/checkbox/src/type.d.ts +1 -0
- package/vue3/src/components/form/checkbox/src/use-checkbox-group.d.ts +46 -0
- package/{vue2/src/components/form/checkbox → vue3/src/components/form/checkbox/src}/use-checkbox.d.ts +10 -17
- package/vue3/src/components/form/date-picker/index.d.ts +86 -0
- package/vue3/src/components/form/date-picker/src/components/date-presets/date-presets.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/date-select/date-select-header.vue.d.ts +24 -0
- package/vue3/src/components/form/date-picker/src/components/date-select/date-select.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/picker-popper/pick-popper.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/picker-reference/date-range-reference.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/picker-reference/date-reference.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/components/time-select/time-select-column.vue.d.ts +17 -0
- package/vue3/src/components/form/date-picker/src/components/time-select/time-select.vue.d.ts +2 -0
- package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +85 -0
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +54 -0
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +22 -0
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-range-type.d.ts +19 -0
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-type.d.ts +23 -0
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-value-item.d.ts +24 -0
- package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +84 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-date-input.d.ts +16 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +10 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +40 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +12 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-year-month.d.ts +10 -0
- package/vue3/src/components/form/date-picker/src/types/index.d.ts +19 -0
- package/vue3/src/components/form/date-picker/src/utils/date-utils.d.ts +34 -0
- package/vue3/src/components/form/form-group/index.d.ts +10 -0
- package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +19 -0
- package/vue3/src/components/form/form-group/src/props-define.d.ts +14 -0
- package/vue3/src/components/form/form-item/index.d.ts +197 -2
- package/{vue2/src/components/form/form-item → vue3/src/components/form/form-item/src}/form-item.vue.d.ts +36 -1
- package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +10 -0
- package/{vue2/src/components/form/form-item → vue3/src/components/form/form-item/src}/use-form-item.d.ts +39 -15
- package/vue3/src/components/form/form-submit-button/index.d.ts +81 -2
- package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +81 -0
- package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +43 -0
- package/vue3/src/components/form/form-submit-button/src/use-form-submit-button.d.ts +9 -0
- package/vue3/src/components/form/form-wrap/index.d.ts +126 -2
- package/vue3/src/components/form/form-wrap/{form-wrap.vue.d.ts → src/form-wrap.vue.d.ts} +20 -16
- package/vue3/src/components/form/form-wrap/{use-form-wrap.d.ts → src/use-form-wrap.d.ts} +28 -20
- package/vue3/src/components/form/hooks/use-form-clearable.d.ts +25 -0
- package/vue3/src/components/form/hooks/use-form-entrance.d.ts +69 -0
- package/vue3/src/components/form/image-upload/index.d.ts +102 -0
- package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +126 -0
- package/vue3/src/components/form/image-upload/src/hooks/types.d.ts +40 -0
- package/vue3/src/components/form/image-upload/src/hooks/use-file-input.d.ts +7 -0
- package/vue3/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +76 -0
- package/vue3/src/components/form/image-upload/src/hooks/use-upload-controller.d.ts +7 -0
- package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +96 -0
- package/vue3/src/components/form/image-upload/src/upload-item.vue.d.ts +19 -0
- package/vue3/src/components/form/index.d.ts +7 -0
- package/vue3/src/components/form/input/index.d.ts +307 -2
- package/{vue2/src/components/form/input → vue3/src/components/form/input/src}/input.vue.d.ts +39 -33
- package/vue3/src/components/form/input/{use-input.d.ts → src/props-define.d.ts} +18 -48
- package/vue3/src/components/form/input/src/use-input.d.ts +19 -0
- package/vue3/src/components/form/input-number/index.d.ts +2 -0
- package/vue3/src/components/form/input-number/input-number.vue.d.ts +74 -0
- package/vue3/src/components/form/input-number/props-define.d.ts +55 -0
- package/vue3/src/components/form/input-number/use-input-number.d.ts +14 -0
- package/vue3/src/components/form/radio/index.d.ts +215 -4
- package/vue3/src/components/form/radio/src/radio-group.vue.d.ts +43 -0
- package/{vue2/src/components/form/radio → vue3/src/components/form/radio/src}/radio.vue.d.ts +12 -1
- package/vue3/src/components/form/radio/src/type.d.ts +1 -0
- package/vue3/src/components/form/radio/src/use-radio-group.d.ts +43 -0
- package/vue3/src/components/form/radio/{use-radio.d.ts → src/use-radio.d.ts} +19 -7
- package/vue3/src/components/form/select/index.d.ts +1056 -0
- package/vue3/src/components/form/select/src/props-define.d.ts +215 -0
- package/vue3/src/components/form/select/src/select.vue.d.ts +381 -0
- package/vue3/src/components/form/select/src/type.d.ts +19 -0
- package/vue3/src/components/form/switch/index.d.ts +54 -2
- package/vue3/src/components/{switch/use-switch.d.ts → form/switch/src/props-define.d.ts} +8 -28
- package/vue3/src/components/form/switch/src/switch.vue.d.ts +54 -0
- package/vue3/src/components/form/switch/src/use-switch.d.ts +15 -0
- package/vue3/src/components/form/transfer/hooks/props-define.d.ts +121 -0
- package/vue3/src/components/form/transfer/hooks/types.d.ts +28 -0
- package/vue3/src/components/form/transfer/hooks/use-transfer.d.ts +26 -0
- package/vue3/src/components/form/transfer/index.d.ts +3 -0
- package/vue3/src/components/form/transfer/transfer.vue.d.ts +166 -0
- package/vue3/src/components/form/types/index.d.ts +14 -18
- package/vue3/src/components/form/video-upload/hooks/props-define.d.ts +69 -0
- package/vue3/src/components/form/video-upload/hooks/types.d.ts +19 -0
- package/vue3/src/components/form/video-upload/hooks/use-upload-controller.d.ts +23 -0
- package/vue3/src/components/form/video-upload/hooks/use-video-upload.d.ts +33 -0
- package/vue3/src/components/form/video-upload/index.d.ts +4 -0
- package/vue3/src/components/form/video-upload/video-upload.vue.d.ts +73 -0
- package/vue3/src/components/icons/icons/add/index.d.ts +6 -0
- package/{vue2/src/components/icons/icons/arrow-circle-right → vue3/src/components/icons/icons/add-circle-outline}/index.d.ts +1 -1
- package/vue3/src/components/icons/icons/arrow-down-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/arrow-left-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/arrow-right-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/arrow-up-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/calendar/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/caret-down/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/caret-left/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/caret-right/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/caret-up/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/clock/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/close-circle-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/close-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/data-export/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/delete/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/down/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/download/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/drag/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/edit/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/error-circle-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/error-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/image/index.d.ts +6 -0
- package/{vue2/src/components/icons/icons/arrow-circle-up → vue3/src/components/icons/icons/info-circle-filled}/index.d.ts +1 -1
- package/vue3/src/components/icons/icons/info-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/left/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/minus-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/more/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/question-circle-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/question-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/refresh/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/right/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/setting/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/success-circle-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/success-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/up/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/upload/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/upload-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/warning-circle-filled/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/warning-circle-outline/index.d.ts +6 -0
- package/vue3/src/components/icons/index.d.ts +3 -0
- package/vue3/src/components/icons/map.d.ts +40 -21
- package/vue3/src/components/image-preview/components/preview-controller.vue.d.ts +1 -1
- package/vue3/src/components/info-card/index.d.ts +2 -0
- package/vue3/src/components/info-card/info-card.vue.d.ts +70 -0
- package/vue3/src/components/info-card/props-define.d.ts +80 -0
- package/vue3/src/components/loading/index.d.ts +45 -6
- package/{vue2/src/components/loading → vue3/src/components/loading/src}/directive.d.ts +3 -3
- package/vue3/src/components/loading/src/loading-circle.vue.d.ts +2 -0
- package/{vue2/src/components/loading → vue3/src/components/loading/src}/loading.vue.d.ts +7 -0
- package/vue3/src/components/loading/{use-loading-component.d.ts → src/props-define.d.ts} +7 -0
- package/{vue2/src/components/loading → vue3/src/components/loading/src}/types.d.ts +4 -1
- package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +181 -25
- package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +124 -38
- package/vue3/src/components/message-box/types.d.ts +13 -46
- package/vue3/src/components/pagination/components/jumper.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/next.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/pager.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/prev.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/sizes.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/total-items.vue.d.ts +2 -0
- package/vue3/src/components/pagination/components/total-pages.vue.d.ts +2 -0
- package/vue3/src/components/pagination/index.d.ts +3 -0
- package/vue3/src/components/pagination/pagination.vue.d.ts +52 -0
- package/vue3/src/components/pagination/props-define.d.ts +52 -0
- package/vue3/src/components/pagination/types.d.ts +19 -0
- package/vue3/src/components/pagination/use-pagination.d.ts +25 -0
- package/vue3/src/components/popconfirm/index.d.ts +2 -0
- package/vue3/src/components/popconfirm/popconfirm.vue.d.ts +246 -0
- package/vue3/src/components/popconfirm/props-define.d.ts +74 -0
- package/vue3/src/components/popover/index.d.ts +191 -0
- package/vue3/src/components/popover/src/popover.vue.d.ts +87 -0
- package/vue3/src/components/popover/src/props-define.d.ts +69 -0
- package/vue3/src/components/popper/popper.vue.d.ts +5 -5
- package/vue3/src/components/popper/props-define.d.ts +4 -2
- package/vue3/src/components/popup/hooks/popup-props.d.ts +3 -3
- package/vue3/src/components/popup/hooks/use-popup-position.d.ts +1 -1
- package/vue3/src/components/popup/popup.vue.d.ts +7 -7
- package/vue3/src/components/progress/index.d.ts +129 -0
- package/vue3/src/components/progress/src/circle-progress.vue.d.ts +17 -0
- package/vue3/src/components/progress/src/line-progress.vue.d.ts +17 -0
- package/vue3/src/components/progress/src/progress.vue.d.ts +60 -0
- package/vue3/src/components/progress/src/props-define.d.ts +50 -0
- package/vue3/src/components/progress/src/use-progress.d.ts +24 -0
- package/vue3/src/components/scrollbar/index.d.ts +198 -0
- package/vue3/src/components/scrollbar/src/props-define.d.ts +106 -0
- package/vue3/src/components/scrollbar/src/scrollbar-track.vue.d.ts +81 -0
- package/vue3/src/components/scrollbar/src/scrollbar.vue.d.ts +91 -0
- package/vue3/src/components/scrollbar/src/types.d.ts +4 -0
- package/vue3/src/components/slider/index.d.ts +95 -0
- package/vue3/src/components/slider/src/props-define.d.ts +110 -0
- package/vue3/src/components/slider/src/slider-button.vue.d.ts +16 -0
- package/vue3/src/components/slider/src/slider.vue.d.ts +95 -0
- package/vue3/src/components/slider/src/use-slider-button.d.ts +26 -0
- package/vue3/src/components/slider/src/use-slider.d.ts +40 -0
- package/vue3/src/components/swiper/effects/carousel-effect/use-carousel-effect.d.ts +34 -0
- package/vue3/src/components/swiper/hooks/swiper-props.d.ts +48 -11
- package/vue3/src/components/swiper/hooks/use-swiper-options.d.ts +14 -8
- package/vue3/src/components/swiper/hooks/use-swiper-slide.d.ts +8 -1
- package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +9237 -0
- package/vue3/src/components/swiper/index.d.ts +1 -0
- package/vue3/src/components/swiper/modules/use-autoplay-module.d.ts +12 -0
- package/vue3/src/components/swiper/swiper-slide.vue.d.ts +5 -1
- package/vue3/src/components/swiper/swiper.vue.d.ts +30 -13
- package/vue3/src/components/table/index.d.ts +692 -0
- package/vue3/src/components/table/src/components/render-slot.d.ts +10 -0
- package/vue3/src/components/table/src/components/scroll/horizontal-scrollbar.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/scroll/vertical-scrollbar.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-index.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-multiple.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-single.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/body-cell-tags.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/table-body-cell.vue.d.ts +10 -0
- package/vue3/src/components/table/src/components/table-body-cell/use-table-body-cell-class.d.ts +9 -0
- package/vue3/src/components/table/src/components/table-body-cell/use-table-body-cell-hover.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-body-cell/use-table-body-cell.d.ts +32 -0
- package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +22 -0
- package/vue3/src/components/table/src/components/table-body-row/use-table-body-row-class.d.ts +7 -0
- package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +25 -0
- package/vue3/src/components/table/src/components/table-body.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-colgroup/table-colgroup.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +10 -0
- package/vue3/src/components/table/src/components/table-footer/table-pagination.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-header/table-header.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-header/use-table-header-structure.d.ts +4 -0
- package/vue3/src/components/table/src/components/table-header-cell/header-cell-multiple.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-header-cell/header-cell-sort.vue.d.ts +2 -0
- package/vue3/src/components/table/src/components/table-header-cell/table-header-cell.vue.d.ts +10 -0
- package/vue3/src/components/table/src/components/table-header-cell/use-table-header-cell-class.d.ts +4 -0
- package/vue3/src/components/table/src/components/table-header-cell/use-table-header-cell.d.ts +21 -0
- package/vue3/src/components/table/src/hooks/props-define.d.ts +246 -0
- package/vue3/src/components/table/src/hooks/table-data/use-row-key.d.ts +8 -0
- package/vue3/src/components/table/src/hooks/table-data/use-table-multiple.d.ts +10 -0
- package/vue3/src/components/table/src/hooks/table-data/use-table-single.d.ts +8 -0
- package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +55 -0
- package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +101 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-element.d.ts +35 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-pagination.d.ts +12 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +13 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-scroll.d.ts +28 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table-status.d.ts +29 -0
- package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +198 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +57 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-index.d.ts +14 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-slot.d.ts +16 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-sort.d.ts +24 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-sticky.d.ts +17 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-width.d.ts +14 -0
- package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +20 -0
- package/vue3/src/components/table/src/table-column.vue.d.ts +82 -0
- package/vue3/src/components/table/src/table.vue.d.ts +199 -0
- package/vue3/src/components/table/src/types/index.d.ts +56 -0
- package/vue3/src/components/table/src/utils/index.d.ts +3 -0
- package/vue3/src/components/tag/index.d.ts +78 -0
- package/vue3/src/components/tag/src/props-define.d.ts +47 -0
- package/vue3/src/components/tag/src/tag.vue.d.ts +43 -0
- package/vue3/src/components/tooltip/index.d.ts +138 -3
- package/vue3/src/components/tooltip/{directive.d.ts → src/directive.d.ts} +4 -4
- package/vue3/src/components/tooltip/src/props-define.d.ts +54 -0
- package/vue3/src/components/tooltip/{tooltip-popper.vue.d.ts → src/tooltip-popper.vue.d.ts} +1 -1
- package/{vue2/src/components/tooltip → vue3/src/components/tooltip/src}/tooltip.vue.d.ts +19 -19
- package/{vue2/src/components/tooltip → vue3/src/components/tooltip/src}/use-tooltip.d.ts +10 -4
- package/vue3/src/hooks/business/use-app-user-agent/index.d.ts +14 -0
- package/vue3/src/hooks/business/use-business-type/index.d.ts +38 -0
- package/vue3/src/hooks/business/use-skin-color/index.d.ts +6 -22
- package/vue3/src/hooks/business/use-skin-color/types.d.ts +20 -0
- package/vue3/src/hooks/business/use-skin-color/utils.d.ts +7 -0
- package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +69 -0
- package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +8 -0
- package/vue3/src/hooks/element/use-event-listener/index.d.ts +15 -4
- package/vue3/src/hooks/element/use-overflow-count/index.d.ts +30 -0
- package/vue3/src/hooks/exports.d.ts +4 -0
- package/vue3/src/hooks/tools/use-event-bus/index.d.ts +9 -0
- package/vue3/src/hooks/tools/use-task-queue/index.d.ts +33 -0
- package/vue3/src/hooks/vue/use-model-value/index.d.ts +8 -1
- package/vue3/src/hooks/vue/use-vue/index.d.ts +1 -2
- package/vue3/src/interface/enum.d.ts +15 -0
- package/vue3/src/interface/index.d.ts +1 -0
- package/vue3/src/lang/common/en.json.d.ts +4 -1
- package/vue3/src/lang/common/ja.json.d.ts +4 -1
- package/vue3/src/lang/common/ko.json.d.ts +4 -1
- package/vue3/src/lang/common/ru.json.d.ts +4 -1
- package/vue3/src/lang/common/zh-CN.json.d.ts +4 -1
- package/vue3/src/lang/common/zh-TW.json.d.ts +4 -1
- package/vue3/src/lang/internal/en.json.d.ts +152 -1
- package/vue3/src/lang/internal/index.d.ts +153 -0
- package/vue3/src/lang/internal/ja.json.d.ts +152 -1
- package/vue3/src/lang/internal/ko.json.d.ts +152 -1
- package/vue3/src/lang/internal/ru.json.d.ts +152 -1
- package/vue3/src/lang/internal/zh-CN.json.d.ts +152 -1
- package/vue3/src/lang/internal/zh-TW.json.d.ts +152 -1
- package/vue3/src/utils/dom.d.ts +5 -0
- package/vue3/src/vue-utils/install-utils.d.ts +34 -0
- package/vue3/src/vue-utils/version-compatible/types.d.ts +1 -1
- package/vue2/src/components/button/button.vue.d.ts +0 -57
- package/vue2/src/components/button/type.d.ts +0 -50
- package/vue2/src/components/button/use-button.d.ts +0 -64
- package/vue2/src/components/empty/empty.vue.d.ts +0 -14
- package/vue2/src/components/empty/use-empty.d.ts +0 -13
- package/vue2/src/components/form/checkbox/checkbox-group.vue.d.ts +0 -30
- package/vue2/src/components/form/checkbox/type.d.ts +0 -8
- package/vue2/src/components/form/form-submit-button/form-submit-button.vue.d.ts +0 -61
- package/vue2/src/components/form/form-submit-button/use-form-submit-button.d.ts +0 -42
- package/vue2/src/components/form/hooks/use-form-common.d.ts +0 -36
- package/vue2/src/components/form/radio/type.d.ts +0 -7
- package/vue2/src/components/form/switch/switch.vue.d.ts +0 -51
- package/vue2/src/components/form/switch/use-switch.d.ts +0 -69
- package/vue2/src/components/icons/icons/check-round-fill/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/close-round/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/close-round-fill/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/error-round/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/info-round-fill/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/question-round/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/success-round/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/triangle-down/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/triangle-up/index.d.ts +0 -6
- package/vue2/src/components/icons/icons/warning-round-fill/index.d.ts +0 -6
- package/vue2/src/components/switch/index.d.ts +0 -2
- package/vue2/src/components/switch/switch.vue.d.ts +0 -51
- package/vue3/src/components/button/button.vue.d.ts +0 -57
- package/vue3/src/components/button/type.d.ts +0 -50
- package/vue3/src/components/button/use-button.d.ts +0 -64
- package/vue3/src/components/empty/empty.vue.d.ts +0 -14
- package/vue3/src/components/empty/use-empty.d.ts +0 -13
- package/vue3/src/components/form/checkbox/checkbox-group.vue.d.ts +0 -30
- package/vue3/src/components/form/checkbox/type.d.ts +0 -8
- package/vue3/src/components/form/form-submit-button/form-submit-button.vue.d.ts +0 -61
- package/vue3/src/components/form/form-submit-button/use-form-submit-button.d.ts +0 -42
- package/vue3/src/components/form/hooks/use-form-common.d.ts +0 -36
- package/vue3/src/components/form/radio/type.d.ts +0 -7
- package/vue3/src/components/form/switch/switch.vue.d.ts +0 -51
- package/vue3/src/components/form/switch/use-switch.d.ts +0 -69
- package/vue3/src/components/icons/icons/arrow-circle-down/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-circle-left/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-circle-right/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-circle-up/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-down/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-left/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/arrow-right/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/check-round-fill/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/close-round/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/close-round-fill/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/down-file/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/down-load/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/error-round/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/info-round-fill/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/question-round/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/success-round/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/triangle-down/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/triangle-up/index.d.ts +0 -6
- package/vue3/src/components/icons/icons/warning-round-fill/index.d.ts +0 -6
- package/vue3/src/components/switch/index.d.ts +0 -2
- package/vue3/src/components/switch/switch.vue.d.ts +0 -51
- /package/after-install/{index.js → index.mjs} +0 -0
- /package/vue2/src/components/{loading/loading-circle.vue.d.ts → empty/src/svgs/box-icon.vue.d.ts} +0 -0
- /package/{vue3/src/components/loading/loading-circle.vue.d.ts → vue2/src/components/empty/src/svgs/video-icon.vue.d.ts} +0 -0
- /package/vue2/src/components/loading/{hook.d.ts → src/hook.d.ts} +0 -0
- /package/vue2/src/components/loading/{service.d.ts → src/service.d.ts} +0 -0
- /package/vue3/src/components/loading/{hook.d.ts → src/hook.d.ts} +0 -0
- /package/vue3/src/components/loading/{service.d.ts → src/service.d.ts} +0 -0
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { MaybeResponsive } from '../../../vue-utils';
|
|
2
2
|
import { UseAutoListenFn } from '../../tools/use-auto-listen';
|
|
3
|
+
export interface UseEventListenerOptions extends AddEventListenerOptions {
|
|
4
|
+
/**
|
|
5
|
+
* 是否自动监听
|
|
6
|
+
* @default true
|
|
7
|
+
*/
|
|
8
|
+
autoListen?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* 是否自动移除
|
|
11
|
+
*/
|
|
12
|
+
autoRemove?: boolean;
|
|
13
|
+
}
|
|
3
14
|
export interface UseEventListenerReturn extends UseAutoListenFn {
|
|
4
15
|
}
|
|
5
16
|
export type WindowEventName = keyof WindowEventMap;
|
|
@@ -13,7 +24,7 @@ export type EventListenerCallback<E = Event> = (evt: E) => unknown;
|
|
|
13
24
|
* @param listener
|
|
14
25
|
* @param options
|
|
15
26
|
*/
|
|
16
|
-
export declare function useEventListener<E extends WindowEventName>(target: Window, event: E, listener: EventListenerCallback<WindowEventMap[E]>, options?: boolean |
|
|
27
|
+
export declare function useEventListener<E extends WindowEventName>(target: Window, event: E, listener: EventListenerCallback<WindowEventMap[E]>, options?: boolean | UseEventListenerOptions): UseEventListenerReturn;
|
|
17
28
|
/**
|
|
18
29
|
* 在挂载时使用 addEventListener 进行注册,并在卸载时自动调用removeEventListener进行移除
|
|
19
30
|
* @param target
|
|
@@ -21,7 +32,7 @@ export declare function useEventListener<E extends WindowEventName>(target: Wind
|
|
|
21
32
|
* @param listener
|
|
22
33
|
* @param options
|
|
23
34
|
*/
|
|
24
|
-
export declare function useEventListener<E extends DocumentEventName>(target: Document, event: E, listener: EventListenerCallback<DocumentEventMap[E]>, options?: boolean |
|
|
35
|
+
export declare function useEventListener<E extends DocumentEventName>(target: Document, event: E, listener: EventListenerCallback<DocumentEventMap[E]>, options?: boolean | UseEventListenerOptions): UseEventListenerReturn;
|
|
25
36
|
/**
|
|
26
37
|
* 在挂载时使用 addEventListener 进行注册,并在卸载时自动调用removeEventListener进行移除
|
|
27
38
|
* @param target
|
|
@@ -29,7 +40,7 @@ export declare function useEventListener<E extends DocumentEventName>(target: Do
|
|
|
29
40
|
* @param listener
|
|
30
41
|
* @param options
|
|
31
42
|
*/
|
|
32
|
-
export declare function useEventListener<E extends HTMLElementEventName>(target: MaybeResponsive<HTMLElement | undefined>, event: E, listener: EventListenerCallback<HTMLElementEventMap[E]>, options?: boolean |
|
|
43
|
+
export declare function useEventListener<E extends HTMLElementEventName>(target: MaybeResponsive<HTMLElement | undefined>, event: E, listener: EventListenerCallback<HTMLElementEventMap[E]>, options?: boolean | UseEventListenerOptions): UseEventListenerReturn;
|
|
33
44
|
/**
|
|
34
45
|
* 在挂载时使用 addEventListener 进行注册,并在卸载时自动调用removeEventListener进行移除
|
|
35
46
|
* @param target
|
|
@@ -37,4 +48,4 @@ export declare function useEventListener<E extends HTMLElementEventName>(target:
|
|
|
37
48
|
* @param listener
|
|
38
49
|
* @param options
|
|
39
50
|
*/
|
|
40
|
-
export declare function useEventListener<E = Event>(target: MaybeResponsive<EventTarget | string | undefined>, event: string, listener: EventListenerCallback<E>, options?: boolean |
|
|
51
|
+
export declare function useEventListener<E = Event>(target: MaybeResponsive<EventTarget | string | undefined>, event: string, listener: EventListenerCallback<E>, options?: boolean | UseEventListenerOptions): UseEventListenerReturn;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ResponsiveRef } from '../../../vue-utils';
|
|
2
|
+
export interface UseOverflowCountOptions {
|
|
3
|
+
/**
|
|
4
|
+
* 间距
|
|
5
|
+
* @default 0
|
|
6
|
+
*/
|
|
7
|
+
gap?: number;
|
|
8
|
+
/**
|
|
9
|
+
* 列表渲染响应式
|
|
10
|
+
*/
|
|
11
|
+
itemList?: ResponsiveRef;
|
|
12
|
+
/**
|
|
13
|
+
* 超出节点预设宽度
|
|
14
|
+
* @defualt 50
|
|
15
|
+
*/
|
|
16
|
+
overCountWidth?: number;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* 计算元素溢出数量
|
|
20
|
+
*/
|
|
21
|
+
export declare const useOverflowCount: (options?: UseOverflowCountOptions) => {
|
|
22
|
+
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
23
|
+
listRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
24
|
+
listStyle: import('vue').ComputedRef<{
|
|
25
|
+
width: string;
|
|
26
|
+
} | {
|
|
27
|
+
width?: undefined;
|
|
28
|
+
}>;
|
|
29
|
+
overCount: import('vue').Ref<number>;
|
|
30
|
+
};
|
|
@@ -3,6 +3,8 @@ export * from './animation/use-special-effect';
|
|
|
3
3
|
export * from './animation/use-svga-animation';
|
|
4
4
|
export * from './business/use-app-element';
|
|
5
5
|
export * from './business/use-app-unique-id';
|
|
6
|
+
export * from './business/use-app-user-agent';
|
|
7
|
+
export * from './business/use-business-type';
|
|
6
8
|
export * from './business/use-config-provider';
|
|
7
9
|
export * from './business/use-nickname';
|
|
8
10
|
export * from './business/use-page-fullscreen';
|
|
@@ -12,6 +14,7 @@ export * from './business/use-short-number';
|
|
|
12
14
|
export * from './business/use-skin-color';
|
|
13
15
|
export * from './business/use-track-event';
|
|
14
16
|
export * from './components/use-auto-topmost';
|
|
17
|
+
export * from './components/use-confirm-cancel';
|
|
15
18
|
export * from './components/use-popper';
|
|
16
19
|
export * from './element/use-append-to';
|
|
17
20
|
export * from './element/use-document-visible';
|
|
@@ -48,6 +51,7 @@ export * from './tools/use-set-interval';
|
|
|
48
51
|
export * from './tools/use-set-timeout';
|
|
49
52
|
export * from './tools/use-simple-visible';
|
|
50
53
|
export * from './tools/use-target-event-emitter';
|
|
54
|
+
export * from './tools/use-task-queue';
|
|
51
55
|
export * from './tools/use-window-resize-listener';
|
|
52
56
|
export * from './tools/use-z-index';
|
|
53
57
|
export * from './vue/use-model-value';
|
|
@@ -30,4 +30,13 @@ export interface UseEventBusListenerReturn extends UseAutoListenFn {
|
|
|
30
30
|
* @param options 选项
|
|
31
31
|
*/
|
|
32
32
|
export declare function useEventBusListener(event: string, callback: (...arg: any[]) => unknown, options?: UseEventBusListenerOptions): UseEventBusListenerReturn;
|
|
33
|
+
/**
|
|
34
|
+
* 生成事件对象
|
|
35
|
+
* @param prefix 前缀
|
|
36
|
+
* @param eventObj 事件对象
|
|
37
|
+
* @returns 生成的事件对象
|
|
38
|
+
*/
|
|
39
|
+
export declare function generateEventObject<Prefix extends string, E extends Record<string, string> = {}>(prefix: Prefix, eventObj: E): {
|
|
40
|
+
readonly [key in keyof E]: `${Prefix}.${E[key]}`;
|
|
41
|
+
};
|
|
33
42
|
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export interface UseTaskQueueOptions {
|
|
3
|
+
/**
|
|
4
|
+
* 队列最大长度,不传则不限制
|
|
5
|
+
*/
|
|
6
|
+
maxLength?: number;
|
|
7
|
+
/**
|
|
8
|
+
* 最大同时执行任务数
|
|
9
|
+
* @default 1
|
|
10
|
+
*/
|
|
11
|
+
maxConcurrent?: number;
|
|
12
|
+
}
|
|
13
|
+
export type TaskFunction = () => Promise<void>;
|
|
14
|
+
export interface UseTaskQueueReturn {
|
|
15
|
+
/**
|
|
16
|
+
* 插入任务
|
|
17
|
+
* @param task 任务函数
|
|
18
|
+
*/
|
|
19
|
+
pushTask: (task: TaskFunction) => void;
|
|
20
|
+
/**
|
|
21
|
+
* 队列长度
|
|
22
|
+
*/
|
|
23
|
+
queueLength: Ref<number>;
|
|
24
|
+
/**
|
|
25
|
+
* 正在执行的任务数
|
|
26
|
+
*/
|
|
27
|
+
runningCount: Ref<number>;
|
|
28
|
+
/**
|
|
29
|
+
* 清空队列
|
|
30
|
+
*/
|
|
31
|
+
clearQueue: () => void;
|
|
32
|
+
}
|
|
33
|
+
export declare function useTaskQueue(options?: UseTaskQueueOptions): UseTaskQueueReturn;
|
|
@@ -2,12 +2,19 @@ import { PropUtils } from '../../../vue-utils';
|
|
|
2
2
|
type MVProps = {
|
|
3
3
|
[PropUtils.modelValueKey]?: unknown;
|
|
4
4
|
};
|
|
5
|
+
export interface UseModelValueOptions<P extends MVProps> {
|
|
6
|
+
/**
|
|
7
|
+
* 外部更新回调
|
|
8
|
+
*/
|
|
9
|
+
outSideUpdate?: (value: P[typeof PropUtils.modelValueKey]) => void;
|
|
10
|
+
}
|
|
5
11
|
/**
|
|
6
12
|
* 使用 v-model 的值
|
|
7
13
|
* @param props 组件 props
|
|
8
14
|
*/
|
|
9
|
-
export declare const useModelValue: <P extends MVProps>(props: P) => {
|
|
15
|
+
export declare const useModelValue: <P extends MVProps>(props: P, options?: UseModelValueOptions<P>) => {
|
|
10
16
|
modelValue: import('vue').ComputedRef<P["v-model-key"]>;
|
|
17
|
+
getModelValue: () => P["v-model-key"];
|
|
11
18
|
updateModelValue: (value: P[typeof PropUtils.modelValueKey]) => void;
|
|
12
19
|
};
|
|
13
20
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component
|
|
1
|
+
import { Component } from 'vue';
|
|
2
2
|
/**
|
|
3
3
|
* 对 Vue 一些方法的简单封装
|
|
4
4
|
*/
|
|
@@ -10,7 +10,6 @@ export declare const useVue: () => {
|
|
|
10
10
|
createVueInstance: <Props extends Record<string, any> = {}, Emits extends Record<string, any> = {}>(vueComponent: Component, options?: {
|
|
11
11
|
props?: Props;
|
|
12
12
|
on?: Emits;
|
|
13
|
-
vnode?: VNode;
|
|
14
13
|
}) => unknown;
|
|
15
14
|
getVueInstanceElem: (instance: import('../../..').ComponentInstance<any>) => Element | undefined;
|
|
16
15
|
destroyVueInstance: (instance: import('../../..').ComponentInstance<any>) => void;
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "Cancel",
|
|
5
5
|
"close": "Close",
|
|
6
6
|
"submit": "Submit",
|
|
7
|
+
"delete": "Delete",
|
|
8
|
+
"clear": "Clear",
|
|
7
9
|
"submitSuccess": "Success",
|
|
8
10
|
"known": "I know",
|
|
9
11
|
"copySuccess": "Copy success",
|
|
10
12
|
"copyLinkSuccess": "Link copy success, you can paste it in the browser to download",
|
|
11
13
|
"tips": "Tips",
|
|
12
14
|
"success": "Success",
|
|
13
|
-
"empty": "Empty"
|
|
15
|
+
"empty": "Empty",
|
|
16
|
+
"comma": ", "
|
|
14
17
|
}
|
|
15
18
|
}
|
|
16
19
|
;
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "キャンセル",
|
|
5
5
|
"close": "閉じる",
|
|
6
6
|
"submit": "送信",
|
|
7
|
+
"delete": "削除",
|
|
8
|
+
"clear": "クリア",
|
|
7
9
|
"submitSuccess": "送信成功",
|
|
8
10
|
"known": "わかりました",
|
|
9
11
|
"copySuccess": "コピー成功",
|
|
10
12
|
"copyLinkSuccess": "リンクをコピーしました。ブラウザに貼り付けてダウンロードしてください",
|
|
11
13
|
"tips": "ヒント",
|
|
12
14
|
"success": "成功",
|
|
13
|
-
"empty": "空"
|
|
15
|
+
"empty": "空",
|
|
16
|
+
"comma": ","
|
|
14
17
|
}
|
|
15
18
|
};
|
|
16
19
|
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "취소",
|
|
5
5
|
"close": "닫기",
|
|
6
6
|
"submit": "제출",
|
|
7
|
+
"delete": "삭제",
|
|
8
|
+
"clear": "초기화",
|
|
7
9
|
"submitSuccess": "제출 성공",
|
|
8
10
|
"known": "알겠습니다",
|
|
9
11
|
"copySuccess": "복사 성공",
|
|
10
12
|
"copyLinkSuccess": "링크 복사 성공, 브라우저에 붙여넣기하여 다운로드",
|
|
11
13
|
"tips": "팁",
|
|
12
14
|
"success": "성공",
|
|
13
|
-
"empty": "비어있음"
|
|
15
|
+
"empty": "비어있음",
|
|
16
|
+
"comma": ","
|
|
14
17
|
}
|
|
15
18
|
};
|
|
16
19
|
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "Отмена",
|
|
5
5
|
"close": "Закрыть",
|
|
6
6
|
"submit": "Отправить",
|
|
7
|
+
"delete": "Удалить",
|
|
8
|
+
"clear": "Очистить",
|
|
7
9
|
"submitSuccess": "Успешно отправлено",
|
|
8
10
|
"known": "Понятно",
|
|
9
11
|
"copySuccess": "Скопировано успешно",
|
|
10
12
|
"copyLinkSuccess": "Ссылка скопирована успешно, можно перейти в браузер и вставить для загрузки",
|
|
11
13
|
"tips": "Подсказка",
|
|
12
14
|
"success": "Успешно",
|
|
13
|
-
"empty": "Пусто"
|
|
15
|
+
"empty": "Пусто",
|
|
16
|
+
"comma": ", "
|
|
14
17
|
}
|
|
15
18
|
};
|
|
16
19
|
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "取消",
|
|
5
5
|
"close": "关闭",
|
|
6
6
|
"submit": "提交",
|
|
7
|
+
"delete": "删除",
|
|
8
|
+
"clear": "清空",
|
|
7
9
|
"submitSuccess": "提交成功",
|
|
8
10
|
"known": "我知道了",
|
|
9
11
|
"copySuccess": "复制成功",
|
|
10
12
|
"copyLinkSuccess": "链接复制成功,可去浏览器粘贴下载",
|
|
11
13
|
"tips": "提示",
|
|
12
14
|
"success": "成功",
|
|
13
|
-
"empty": "暂无内容"
|
|
15
|
+
"empty": "暂无内容",
|
|
16
|
+
"comma": ","
|
|
14
17
|
}
|
|
15
18
|
}
|
|
16
19
|
;
|
|
@@ -4,13 +4,16 @@ declare const _default: {
|
|
|
4
4
|
"cancel": "取消",
|
|
5
5
|
"close": "關閉",
|
|
6
6
|
"submit": "提交",
|
|
7
|
+
"delete": "刪除",
|
|
8
|
+
"clear": "清空",
|
|
7
9
|
"submitSuccess": "提交成功",
|
|
8
10
|
"known": "我知道了",
|
|
9
11
|
"copySuccess": "複製成功",
|
|
10
12
|
"copyLinkSuccess": "連結複製成功,可去瀏覽器貼上下載",
|
|
11
13
|
"tips": "提示",
|
|
12
14
|
"success": "成功",
|
|
13
|
-
"empty": "暫無內容"
|
|
15
|
+
"empty": "暫無內容",
|
|
16
|
+
"comma": ","
|
|
14
17
|
}
|
|
15
18
|
};
|
|
16
19
|
|
|
@@ -47,7 +47,158 @@ declare const _default: {
|
|
|
47
47
|
"viewExportRecords": "You can view your export records here",
|
|
48
48
|
"gotIt": "Got it",
|
|
49
49
|
"empty": "Empty"
|
|
50
|
+
},
|
|
51
|
+
"imageUpload": {
|
|
52
|
+
"error1": "Unsupported file type",
|
|
53
|
+
"error2": "Do not upload empty files",
|
|
54
|
+
"error3": "Image size must not exceed {size}MB",
|
|
55
|
+
"error4": "Image size must not exceed {size}KB",
|
|
56
|
+
"error5": "Image is damaged, please upload it again",
|
|
57
|
+
"error6": "Image contains violent elements, please upload it again",
|
|
58
|
+
"uploading": "Uploading...",
|
|
59
|
+
"clickUpload": "Click to upload image",
|
|
60
|
+
"replace": "Replace",
|
|
61
|
+
"delete": "Delete",
|
|
62
|
+
"defaultPlaceholder1": "Supported file formats: {types}",
|
|
63
|
+
"defaultPlaceholder2": "File size must not exceed {size}"
|
|
64
|
+
},
|
|
65
|
+
"videoUpload": {
|
|
66
|
+
"error1": "Unsupported video type",
|
|
67
|
+
"error2": "Do not upload empty files",
|
|
68
|
+
"error3": "Video size must not exceed {size}MB",
|
|
69
|
+
"uploading": "Uploading...",
|
|
70
|
+
"clickUpload": "Click to upload video",
|
|
71
|
+
"replace": "Replace",
|
|
72
|
+
"delete": "Delete",
|
|
73
|
+
"failed": "Upload failed, please retry",
|
|
74
|
+
"defaultPlaceholder1": "Supported video formats: {types}",
|
|
75
|
+
"defaultPlaceholder2": "Video size must not exceed {size}"
|
|
76
|
+
},
|
|
77
|
+
"transfer": {
|
|
78
|
+
"leftTitle": "List",
|
|
79
|
+
"rightTitle": "Selected",
|
|
80
|
+
"pageSelect": "Select current page",
|
|
81
|
+
"clear": "Clear",
|
|
82
|
+
"empty": "No content",
|
|
83
|
+
"searchPlaceholder": "Search"
|
|
84
|
+
},
|
|
85
|
+
"datePicker": {
|
|
86
|
+
"headerText": "{year} year {month} month",
|
|
87
|
+
"monday": "Mon",
|
|
88
|
+
"tuesday": "Tue",
|
|
89
|
+
"wednesday": "Wed",
|
|
90
|
+
"thursday": "Thu",
|
|
91
|
+
"friday": "Fri",
|
|
92
|
+
"saturday": "Sat",
|
|
93
|
+
"sunday": "Sun",
|
|
94
|
+
"current": "Now",
|
|
95
|
+
"datePlaceholder1": "Select date",
|
|
96
|
+
"datePlaceholder2": "Select date and time",
|
|
97
|
+
"datePlaceholder3": "Select time",
|
|
98
|
+
"startPlaceholder": "Start date",
|
|
99
|
+
"endPlaceholder": "End date",
|
|
100
|
+
"today": "Today",
|
|
101
|
+
"yesterday": "Yesterday",
|
|
102
|
+
"tomorrow": "Tomorrow",
|
|
103
|
+
"30-minutes-later": "30 minutes later",
|
|
104
|
+
"1-hour-later": "1 hour later",
|
|
105
|
+
"last-7-days": "Last 7 days",
|
|
106
|
+
"last-30-days": "Last 30 days",
|
|
107
|
+
"last-90-days": "Last 90 days",
|
|
108
|
+
"last-180-days": "Last 180 days",
|
|
109
|
+
"last-360-days": "Last 360 days"
|
|
110
|
+
},
|
|
111
|
+
"select": {
|
|
112
|
+
"searchPlaceholder": "Search keywords",
|
|
113
|
+
"empty": "No options"
|
|
114
|
+
},
|
|
115
|
+
"table": {
|
|
116
|
+
"operation": "Operation",
|
|
117
|
+
"tags": "Tags",
|
|
118
|
+
"index": "Index",
|
|
119
|
+
"single": "Select",
|
|
120
|
+
"allCount": "Total {count}"
|
|
121
|
+
},
|
|
122
|
+
"pagination": {
|
|
123
|
+
"totalItems": "Total {count}",
|
|
124
|
+
"totalPages": "Total {count} pages",
|
|
125
|
+
"size": "{size}/page",
|
|
126
|
+
"goto": "Go to"
|
|
127
|
+
},
|
|
128
|
+
"example": {
|
|
129
|
+
"text": "Example"
|
|
130
|
+
},
|
|
131
|
+
"externalLinks": {
|
|
132
|
+
"form": {
|
|
133
|
+
"url": {
|
|
134
|
+
"label": "Browser URL",
|
|
135
|
+
"tips": "If only this link is filled, all environments will redirect here first. This link is also used as the final fallback when the fields below are empty.",
|
|
136
|
+
"placeholder": "Enter a link that starts with http:// or https://"
|
|
137
|
+
},
|
|
138
|
+
"jumpWay": {
|
|
139
|
+
"label": "Open Method",
|
|
140
|
+
"popup": {
|
|
141
|
+
"label": "Open in popup",
|
|
142
|
+
"tips": "Show the external page in a dialog. Best for desktop quick previews."
|
|
143
|
+
},
|
|
144
|
+
"newWindow": {
|
|
145
|
+
"label": "Open in new window",
|
|
146
|
+
"tips": "Open the external page in a new window so that desktop or mobile browsers (outside WeChat) can switch back easily."
|
|
147
|
+
},
|
|
148
|
+
"currentWindow": {
|
|
149
|
+
"label": "Open in current window",
|
|
150
|
+
"tips": "Open the external page in the current window and leave this page directly."
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"pcUrl": {
|
|
154
|
+
"label": "Desktop link",
|
|
155
|
+
"tips": "Preferentially open this link when the visitor is using a desktop browser."
|
|
156
|
+
},
|
|
157
|
+
"native": {
|
|
158
|
+
"label": "APP link",
|
|
159
|
+
"tips": "If only this link is filled, mobile devices (except apps such as WeChat/QQ) will open it first. When native links are also configured, this link works as the final fallback after a failed native invoke.",
|
|
160
|
+
"placeholder": "Use a link starting with http:// or https://",
|
|
161
|
+
"prefix": "Transfer link"
|
|
162
|
+
},
|
|
163
|
+
"ios": {
|
|
164
|
+
"placeholder": "Enter a Scheme, Universal Link or Deep Link",
|
|
165
|
+
"prefix": "iOS native"
|
|
166
|
+
},
|
|
167
|
+
"android": {
|
|
168
|
+
"placeholder": "Enter a Scheme, Deep Link or App Link",
|
|
169
|
+
"prefix": "Android native"
|
|
170
|
+
},
|
|
171
|
+
"harmony": {
|
|
172
|
+
"placeholder": "Enter a Scheme or Deep Link",
|
|
173
|
+
"prefix": "Harmony native",
|
|
174
|
+
"tips": "在移动设备下优先跳转到这里(除微信/QQ等APP)"
|
|
175
|
+
},
|
|
176
|
+
"wxMp": {
|
|
177
|
+
"label": "WeChat Mini Program",
|
|
178
|
+
"tips": {
|
|
179
|
+
"first": "If it is a small program WebView scenario, the APPID must be the current small program, and the small program does not support jumping to other small programs within WebView; If this is necessary, it is recommended to first jump to the native page within the current mini program, and then use this native transfer page to jump to other mini programs",
|
|
180
|
+
"second": "Starting from Basic Library 2.20.1, WeChat Mini Programs support opening another mini program in half screen mode. Please refer to<a style='color: #3f76fc;' href=“ https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html Target=\"_flank\">Document</a>"
|
|
181
|
+
},
|
|
182
|
+
"originId": {
|
|
183
|
+
"placeholder": "Required for H5 to Mini Program redirect",
|
|
184
|
+
"prefix": "Origin ID"
|
|
185
|
+
},
|
|
186
|
+
"appId": {
|
|
187
|
+
"placeholder": "Required for Mini Program to Mini Program redirect",
|
|
188
|
+
"prefix": "APPID"
|
|
189
|
+
},
|
|
190
|
+
"path": {
|
|
191
|
+
"placeholder": "Required to redirect to a specific Mini Program page",
|
|
192
|
+
"prefix": "Page path"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"error": {
|
|
197
|
+
"urlPattern": "Enter a valid link that starts with http:// or https://",
|
|
198
|
+
"urlEmpty": "Please fill in the browser URL"
|
|
199
|
+
}
|
|
50
200
|
}
|
|
51
|
-
}
|
|
201
|
+
}
|
|
202
|
+
;
|
|
52
203
|
|
|
53
204
|
export default _default;
|
|
@@ -49,12 +49,164 @@ declare const useInternalI18n: () => {
|
|
|
49
49
|
gotIt: string;
|
|
50
50
|
empty: string;
|
|
51
51
|
};
|
|
52
|
+
imageUpload: {
|
|
53
|
+
error1: string;
|
|
54
|
+
error2: string;
|
|
55
|
+
error3: string;
|
|
56
|
+
error4: string;
|
|
57
|
+
error5: string;
|
|
58
|
+
error6: string;
|
|
59
|
+
uploading: string;
|
|
60
|
+
clickUpload: string;
|
|
61
|
+
replace: string;
|
|
62
|
+
delete: string;
|
|
63
|
+
defaultPlaceholder1: string;
|
|
64
|
+
defaultPlaceholder2: string;
|
|
65
|
+
};
|
|
66
|
+
videoUpload: {
|
|
67
|
+
error1: string;
|
|
68
|
+
error2: string;
|
|
69
|
+
error3: string;
|
|
70
|
+
uploading: string;
|
|
71
|
+
clickUpload: string;
|
|
72
|
+
replace: string;
|
|
73
|
+
delete: string;
|
|
74
|
+
failed: string;
|
|
75
|
+
defaultPlaceholder1: string;
|
|
76
|
+
defaultPlaceholder2: string;
|
|
77
|
+
};
|
|
78
|
+
transfer: {
|
|
79
|
+
leftTitle: string;
|
|
80
|
+
rightTitle: string;
|
|
81
|
+
pageSelect: string;
|
|
82
|
+
clear: string;
|
|
83
|
+
empty: string;
|
|
84
|
+
searchPlaceholder: string;
|
|
85
|
+
};
|
|
86
|
+
datePicker: {
|
|
87
|
+
headerText: string;
|
|
88
|
+
monday: string;
|
|
89
|
+
tuesday: string;
|
|
90
|
+
wednesday: string;
|
|
91
|
+
thursday: string;
|
|
92
|
+
friday: string;
|
|
93
|
+
saturday: string;
|
|
94
|
+
sunday: string;
|
|
95
|
+
current: string;
|
|
96
|
+
datePlaceholder1: string;
|
|
97
|
+
datePlaceholder2: string;
|
|
98
|
+
datePlaceholder3: string;
|
|
99
|
+
startPlaceholder: string;
|
|
100
|
+
endPlaceholder: string;
|
|
101
|
+
today: string;
|
|
102
|
+
yesterday: string;
|
|
103
|
+
tomorrow: string;
|
|
104
|
+
"30-minutes-later": string;
|
|
105
|
+
"1-hour-later": string;
|
|
106
|
+
"last-7-days": string;
|
|
107
|
+
"last-30-days": string;
|
|
108
|
+
"last-90-days": string;
|
|
109
|
+
"last-180-days": string;
|
|
110
|
+
"last-360-days": string;
|
|
111
|
+
};
|
|
112
|
+
select: {
|
|
113
|
+
searchPlaceholder: string;
|
|
114
|
+
empty: string;
|
|
115
|
+
};
|
|
116
|
+
table: {
|
|
117
|
+
operation: string;
|
|
118
|
+
tags: string;
|
|
119
|
+
index: string;
|
|
120
|
+
single: string;
|
|
121
|
+
allCount: string;
|
|
122
|
+
};
|
|
123
|
+
pagination: {
|
|
124
|
+
totalItems: string;
|
|
125
|
+
totalPages: string;
|
|
126
|
+
size: string;
|
|
127
|
+
goto: string;
|
|
128
|
+
};
|
|
129
|
+
example: {
|
|
130
|
+
text: string;
|
|
131
|
+
};
|
|
132
|
+
externalLinks: {
|
|
133
|
+
form: {
|
|
134
|
+
url: {
|
|
135
|
+
label: string;
|
|
136
|
+
tips: string;
|
|
137
|
+
placeholder: string;
|
|
138
|
+
};
|
|
139
|
+
jumpWay: {
|
|
140
|
+
label: string;
|
|
141
|
+
popup: {
|
|
142
|
+
label: string;
|
|
143
|
+
tips: string;
|
|
144
|
+
};
|
|
145
|
+
newWindow: {
|
|
146
|
+
label: string;
|
|
147
|
+
tips: string;
|
|
148
|
+
};
|
|
149
|
+
currentWindow: {
|
|
150
|
+
label: string;
|
|
151
|
+
tips: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
pcUrl: {
|
|
155
|
+
label: string;
|
|
156
|
+
tips: string;
|
|
157
|
+
};
|
|
158
|
+
native: {
|
|
159
|
+
label: string;
|
|
160
|
+
tips: string;
|
|
161
|
+
placeholder: string;
|
|
162
|
+
prefix: string;
|
|
163
|
+
};
|
|
164
|
+
ios: {
|
|
165
|
+
placeholder: string;
|
|
166
|
+
prefix: string;
|
|
167
|
+
};
|
|
168
|
+
android: {
|
|
169
|
+
placeholder: string;
|
|
170
|
+
prefix: string;
|
|
171
|
+
};
|
|
172
|
+
harmony: {
|
|
173
|
+
placeholder: string;
|
|
174
|
+
prefix: string;
|
|
175
|
+
tips: string;
|
|
176
|
+
};
|
|
177
|
+
wxMp: {
|
|
178
|
+
label: string;
|
|
179
|
+
tips: {
|
|
180
|
+
first: string;
|
|
181
|
+
second: string;
|
|
182
|
+
};
|
|
183
|
+
originId: {
|
|
184
|
+
placeholder: string;
|
|
185
|
+
prefix: string;
|
|
186
|
+
};
|
|
187
|
+
appId: {
|
|
188
|
+
placeholder: string;
|
|
189
|
+
prefix: string;
|
|
190
|
+
};
|
|
191
|
+
path: {
|
|
192
|
+
placeholder: string;
|
|
193
|
+
prefix: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
error: {
|
|
198
|
+
urlPattern: string;
|
|
199
|
+
urlEmpty: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
52
202
|
} & {
|
|
53
203
|
common: {
|
|
54
204
|
confirm: string;
|
|
55
205
|
cancel: string;
|
|
56
206
|
close: string;
|
|
57
207
|
submit: string;
|
|
208
|
+
delete: string;
|
|
209
|
+
clear: string;
|
|
58
210
|
submitSuccess: string;
|
|
59
211
|
known: string;
|
|
60
212
|
copySuccess: string;
|
|
@@ -62,6 +214,7 @@ declare const useInternalI18n: () => {
|
|
|
62
214
|
tips: string;
|
|
63
215
|
success: string;
|
|
64
216
|
empty: string;
|
|
217
|
+
comma: string;
|
|
65
218
|
};
|
|
66
219
|
}>, options?: import('../..').UniversalParams<string | number>) => string;
|
|
67
220
|
currentLang: import('vue').ComputedRef<import('../types').I18nLangs>;
|