@polyv/vue-components 1.5.0 → 1.6.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 -1
- package/styles/function.scss +4 -2
- package/styles/root/basic.scss +43 -7
- package/styles/variables.scss +35 -4
- package/vue2/index.es.js +9742 -7045
- package/vue2/src/components/alert/index.d.ts +96 -0
- package/vue2/src/components/alert/src/alert.vue.d.ts +50 -0
- package/vue2/src/components/alert/src/props-define.d.ts +54 -0
- package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
- package/vue2/src/components/business/external-links/external-links.vue.d.ts +2 -2
- package/vue2/src/components/business/external-links/use-external-links.d.ts +19 -0
- package/vue2/src/components/business/live-status-tag/index.d.ts +84 -0
- package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
- package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
- package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
- package/vue2/src/components/button/index.d.ts +32 -6
- package/vue2/src/components/button/src/button.vue.d.ts +12 -3
- package/vue2/src/components/button/src/use-button.d.ts +13 -0
- package/vue2/src/components/card/index.d.ts +77 -0
- package/vue2/src/components/card/src/card.vue.d.ts +43 -0
- package/vue2/src/components/card/src/hooks/props-define.d.ts +46 -0
- package/vue2/src/components/dropdown/index.d.ts +175 -4
- package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
- package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
- 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 +5 -5
- package/vue2/src/components/example/props-define.d.ts +2 -2
- package/vue2/src/components/exports.d.ts +5 -0
- package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -2
- package/vue2/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
- package/vue2/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
- package/vue2/src/components/form/area-picker/use-area-picker.d.ts +89 -3
- package/vue2/src/components/form/checkbox/index.d.ts +36 -8
- package/vue2/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
- package/vue2/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
- package/vue2/src/components/form/checkbox/src/props-define.d.ts +123 -0
- package/vue2/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
- package/vue2/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
- package/vue2/src/components/form/date-picker/index.d.ts +23 -3
- package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
- package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
- package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
- package/vue2/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
- package/vue2/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
- package/vue2/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
- package/vue2/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
- package/vue2/src/components/form/date-picker/src/types/index.d.ts +21 -0
- package/vue2/src/components/form/form-item/index.d.ts +14 -4
- package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
- package/vue2/src/components/form/form-item/src/hooks/config.d.ts +1 -0
- package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
- package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
- package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
- package/vue2/src/components/form/form-item/src/use-form-item.d.ts +5 -78
- package/vue2/src/components/form/form-submit-button/index.d.ts +10 -3
- package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
- package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
- package/vue2/src/components/form/form-wrap/index.d.ts +6 -6
- package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
- package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
- package/vue2/src/components/form/hooks/use-form-clearable.d.ts +19 -0
- package/vue2/src/components/form/hooks/use-form-entrance.d.ts +40 -1
- package/vue2/src/components/form/image-upload/index.d.ts +53 -0
- package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
- package/vue2/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
- package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
- package/vue2/src/components/form/index.d.ts +2 -1
- package/vue2/src/components/form/input/index.d.ts +24 -200
- package/vue2/src/components/form/input/src/input.vue.d.ts +25 -22
- package/vue2/src/components/form/input/src/props-define.d.ts +20 -10
- package/vue2/src/components/form/input/src/use-input.d.ts +3 -1
- package/vue2/src/components/form/input-number/index.d.ts +207 -2
- package/vue2/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
- package/vue2/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
- package/{vue3/src/components/form/input-number → vue2/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
- package/vue2/src/components/form/radio/index.d.ts +70 -23
- package/vue2/src/components/form/radio/src/props-define.d.ts +115 -0
- package/vue2/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
- package/vue2/src/components/form/radio/src/radio.vue.d.ts +7 -2
- package/vue2/src/components/form/radio/src/type.d.ts +13 -1
- package/vue2/src/components/form/select/index.d.ts +280 -28
- package/vue2/src/components/form/select/src/props-define.d.ts +50 -5
- package/vue2/src/components/form/select/src/select.vue.d.ts +98 -10
- package/vue2/src/components/form/switch/index.d.ts +10 -2
- package/vue2/src/components/form/switch/src/props-define.d.ts +5 -1
- package/vue2/src/components/form/switch/src/switch.vue.d.ts +10 -2
- package/vue2/src/components/form/switch/src/use-switch.d.ts +1 -1
- package/vue2/src/components/form/timezone-picker/index.d.ts +1406 -0
- package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
- package/vue2/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
- package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
- package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue2/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
- package/vue2/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
- package/vue2/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
- package/vue2/src/components/icons/icons/clock-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/data-export-two/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/error/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/filter/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/landscape/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/portrait/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/rocket/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/statistics/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/success/index.d.ts +6 -0
- package/vue2/src/components/icons/icons/tag/index.d.ts +6 -0
- package/vue2/src/components/icons/map.d.ts +10 -0
- package/vue2/src/components/image-cropper/index.d.ts +22 -0
- package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
- package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
- package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
- package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
- package/vue2/src/components/loading/index.d.ts +6 -6
- package/vue2/src/components/loading/src/loading.vue.d.ts +6 -6
- package/vue2/src/components/loading/src/props-define.d.ts +2 -2
- package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
- package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
- package/vue2/src/components/message-box/types.d.ts +27 -0
- package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue2/src/components/popconfirm/index.d.ts +331 -2
- package/vue2/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
- package/{vue3/src/components/popconfirm → vue2/src/components/popconfirm/src}/props-define.d.ts +13 -15
- package/vue2/src/components/popover/index.d.ts +50 -30
- package/vue2/src/components/popover/src/popover.vue.d.ts +18 -11
- package/vue2/src/components/popover/src/props-define.d.ts +12 -4
- package/vue2/src/components/popup/index.d.ts +696 -4
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
- package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
- package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
- package/vue2/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
- package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
- package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
- package/vue2/src/components/popup/src/popup.vue.d.ts +402 -0
- package/vue2/src/components/resize-box/resize-box.vue.d.ts +2 -2
- package/vue2/src/components/scrollbar/index.d.ts +18 -2
- package/vue2/src/components/scrollbar/src/props-define.d.ts +13 -0
- package/vue2/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
- package/vue2/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
- package/vue2/src/components/slider/index.d.ts +1 -1
- package/vue2/src/components/slider/src/slider.vue.d.ts +1 -1
- package/vue2/src/components/swiper/hooks/swiper-props.d.ts +1 -1
- package/vue2/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
- package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
- package/vue2/src/components/swiper/swiper.vue.d.ts +2 -2
- package/vue2/src/components/table/index.d.ts +8 -8
- package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
- package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
- package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
- package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
- package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
- package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
- package/vue2/src/components/table/src/table.vue.d.ts +1 -1
- package/vue2/src/components/tabs/index.d.ts +145 -0
- package/vue2/src/components/tabs/src/props-define.d.ts +86 -0
- package/vue2/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
- package/vue2/src/components/tabs/src/tabs.vue.d.ts +48 -0
- package/vue2/src/components/tabs/src/types.d.ts +28 -0
- package/vue2/src/components/tag/index.d.ts +28 -28
- package/vue2/src/components/tag/src/props-define.d.ts +6 -6
- package/vue2/src/components/tag/src/tag.vue.d.ts +10 -10
- package/vue2/src/components/tooltip/index.d.ts +16 -16
- package/vue2/src/components/tooltip/src/props-define.d.ts +2 -2
- package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
- package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue2/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
- package/vue2/src/config/index.d.ts +4 -0
- package/vue2/src/hooks/animation/types/common.d.ts +1 -1
- package/vue2/src/hooks/animation/types/index.d.ts +5 -0
- package/vue2/src/hooks/animation/use-gif-handler/index.d.ts +26 -0
- package/vue2/src/hooks/animation/use-special-effect/index.d.ts +9 -4
- package/vue2/src/hooks/business/use-skin-color/index.d.ts +1 -0
- package/vue2/src/hooks/business/use-skin-color/types.d.ts +4 -0
- package/vue2/src/hooks/business/use-skin-color/utils.d.ts +5 -0
- package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
- package/vue2/src/hooks/exports.d.ts +1 -0
- package/vue2/src/hooks/interactive/use-scroll/index.d.ts +8 -0
- package/vue2/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
- package/vue2/src/hooks/vue/use-render-slots/index.d.ts +6 -0
- package/vue2/src/hooks/vue/use-vue/index.d.ts +0 -1
- package/vue2/src/lang/internal/en.json.d.ts +20 -1
- package/vue2/src/lang/internal/index.d.ts +19 -0
- package/vue2/src/lang/internal/ja.json.d.ts +20 -1
- package/vue2/src/lang/internal/ko.json.d.ts +20 -1
- package/vue2/src/lang/internal/ru.json.d.ts +20 -1
- package/vue2/src/lang/internal/zh-CN.json.d.ts +20 -1
- package/vue2/src/lang/internal/zh-TW.json.d.ts +20 -1
- package/vue2/src/plugins/cropperjs/index.d.ts +14 -0
- package/vue2/src/utils/string.d.ts +10 -0
- package/vue2/src/vue-utils/render-slot.d.ts +10 -0
- package/vue3/index.es.js +9742 -7045
- package/vue3/src/components/alert/index.d.ts +96 -0
- package/vue3/src/components/alert/src/alert.vue.d.ts +50 -0
- package/vue3/src/components/alert/src/props-define.d.ts +54 -0
- package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
- package/vue3/src/components/business/external-links/external-links.vue.d.ts +2 -2
- package/vue3/src/components/business/external-links/use-external-links.d.ts +19 -0
- package/vue3/src/components/business/live-status-tag/index.d.ts +84 -0
- package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
- package/vue3/src/components/business/live-status-tag/src/playing-icon.vue.d.ts +2 -0
- package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
- package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
- package/vue3/src/components/button/index.d.ts +32 -6
- package/vue3/src/components/button/src/button.vue.d.ts +12 -3
- package/vue3/src/components/button/src/use-button.d.ts +13 -0
- package/vue3/src/components/card/index.d.ts +77 -0
- package/vue3/src/components/card/src/card.vue.d.ts +43 -0
- package/vue3/src/components/card/src/hooks/props-define.d.ts +46 -0
- package/vue3/src/components/dropdown/index.d.ts +175 -4
- package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
- package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
- 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 +5 -5
- package/vue3/src/components/example/props-define.d.ts +2 -2
- package/vue3/src/components/exports.d.ts +5 -0
- package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -2
- package/vue3/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
- package/vue3/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
- package/vue3/src/components/form/area-picker/use-area-picker.d.ts +89 -3
- package/vue3/src/components/form/checkbox/index.d.ts +36 -8
- package/vue3/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
- package/vue3/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
- package/vue3/src/components/form/checkbox/src/props-define.d.ts +123 -0
- package/vue3/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
- package/vue3/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
- package/vue3/src/components/form/date-picker/index.d.ts +23 -3
- package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
- package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
- package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
- package/vue3/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
- package/vue3/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
- package/vue3/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
- package/vue3/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
- package/vue3/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
- package/vue3/src/components/form/date-picker/src/types/index.d.ts +21 -0
- package/vue3/src/components/form/form-item/index.d.ts +14 -4
- package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
- package/vue3/src/components/form/form-item/src/hooks/config.d.ts +1 -0
- package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
- package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
- package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
- package/vue3/src/components/form/form-item/src/use-form-item.d.ts +5 -78
- package/vue3/src/components/form/form-submit-button/index.d.ts +10 -3
- package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
- package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
- package/vue3/src/components/form/form-wrap/index.d.ts +6 -6
- package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
- package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
- package/vue3/src/components/form/hooks/use-form-clearable.d.ts +19 -0
- package/vue3/src/components/form/hooks/use-form-entrance.d.ts +40 -1
- package/vue3/src/components/form/image-upload/index.d.ts +53 -0
- package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
- package/vue3/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
- package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
- package/vue3/src/components/form/index.d.ts +2 -1
- package/vue3/src/components/form/input/index.d.ts +24 -200
- package/vue3/src/components/form/input/src/input.vue.d.ts +25 -22
- package/vue3/src/components/form/input/src/props-define.d.ts +20 -10
- package/vue3/src/components/form/input/src/use-input.d.ts +3 -1
- package/vue3/src/components/form/input-number/index.d.ts +207 -2
- package/vue3/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
- package/vue3/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
- package/{vue2/src/components/form/input-number → vue3/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
- package/vue3/src/components/form/radio/index.d.ts +70 -23
- package/vue3/src/components/form/radio/src/props-define.d.ts +115 -0
- package/vue3/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
- package/vue3/src/components/form/radio/src/radio.vue.d.ts +7 -2
- package/vue3/src/components/form/radio/src/type.d.ts +13 -1
- package/vue3/src/components/form/select/index.d.ts +280 -28
- package/vue3/src/components/form/select/src/props-define.d.ts +50 -5
- package/vue3/src/components/form/select/src/select.vue.d.ts +98 -10
- package/vue3/src/components/form/switch/index.d.ts +10 -2
- package/vue3/src/components/form/switch/src/props-define.d.ts +5 -1
- package/vue3/src/components/form/switch/src/switch.vue.d.ts +10 -2
- package/vue3/src/components/form/switch/src/use-switch.d.ts +1 -1
- package/vue3/src/components/form/timezone-picker/index.d.ts +1406 -0
- package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
- package/vue3/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
- package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
- package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
- package/vue3/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
- package/vue3/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
- package/vue3/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
- package/vue3/src/components/icons/icons/clock-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/data-export-two/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/error/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/filter/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/landscape/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/portrait/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/rocket/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/statistics/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/success/index.d.ts +6 -0
- package/vue3/src/components/icons/icons/tag/index.d.ts +6 -0
- package/vue3/src/components/icons/map.d.ts +10 -0
- package/vue3/src/components/image-cropper/index.d.ts +22 -0
- package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
- package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
- package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
- package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
- package/vue3/src/components/loading/index.d.ts +6 -6
- package/vue3/src/components/loading/src/loading.vue.d.ts +6 -6
- package/vue3/src/components/loading/src/props-define.d.ts +2 -2
- package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
- package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
- package/vue3/src/components/message-box/types.d.ts +27 -0
- package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
- package/vue3/src/components/popconfirm/index.d.ts +331 -2
- package/vue3/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
- package/{vue2/src/components/popconfirm → vue3/src/components/popconfirm/src}/props-define.d.ts +13 -15
- package/vue3/src/components/popover/index.d.ts +50 -30
- package/vue3/src/components/popover/src/popover.vue.d.ts +18 -11
- package/vue3/src/components/popover/src/props-define.d.ts +12 -4
- package/vue3/src/components/popup/index.d.ts +696 -4
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
- package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
- package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
- package/vue3/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
- package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
- package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
- package/vue3/src/components/popup/src/popup.vue.d.ts +402 -0
- package/vue3/src/components/resize-box/resize-box.vue.d.ts +2 -2
- package/vue3/src/components/scrollbar/index.d.ts +18 -2
- package/vue3/src/components/scrollbar/src/props-define.d.ts +13 -0
- package/vue3/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
- package/vue3/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
- package/vue3/src/components/slider/index.d.ts +1 -1
- package/vue3/src/components/slider/src/slider.vue.d.ts +1 -1
- package/vue3/src/components/swiper/hooks/swiper-props.d.ts +1 -1
- package/vue3/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
- package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
- package/vue3/src/components/swiper/swiper.vue.d.ts +2 -2
- package/vue3/src/components/table/index.d.ts +8 -8
- package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
- package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
- package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
- package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
- package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
- package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
- package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
- package/vue3/src/components/table/src/table.vue.d.ts +1 -1
- package/vue3/src/components/tabs/index.d.ts +145 -0
- package/vue3/src/components/tabs/src/props-define.d.ts +86 -0
- package/vue3/src/components/tabs/src/tab-nav.vue.d.ts +2 -0
- package/vue3/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
- package/vue3/src/components/tabs/src/tabs.vue.d.ts +48 -0
- package/vue3/src/components/tabs/src/types.d.ts +28 -0
- package/vue3/src/components/tag/index.d.ts +28 -28
- package/vue3/src/components/tag/src/props-define.d.ts +6 -6
- package/vue3/src/components/tag/src/tag.vue.d.ts +10 -10
- package/vue3/src/components/tooltip/index.d.ts +16 -16
- package/vue3/src/components/tooltip/src/props-define.d.ts +2 -2
- package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
- package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
- package/vue3/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
- package/vue3/src/config/index.d.ts +4 -0
- package/vue3/src/hooks/animation/types/common.d.ts +1 -1
- package/vue3/src/hooks/animation/types/index.d.ts +5 -0
- package/vue3/src/hooks/animation/use-gif-handler/index.d.ts +26 -0
- package/vue3/src/hooks/animation/use-special-effect/index.d.ts +9 -4
- package/vue3/src/hooks/business/use-skin-color/index.d.ts +1 -0
- package/vue3/src/hooks/business/use-skin-color/types.d.ts +4 -0
- package/vue3/src/hooks/business/use-skin-color/utils.d.ts +5 -0
- package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
- package/vue3/src/hooks/exports.d.ts +1 -0
- package/vue3/src/hooks/interactive/use-scroll/index.d.ts +8 -0
- package/vue3/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
- package/vue3/src/hooks/vue/use-render-slots/index.d.ts +6 -0
- package/vue3/src/hooks/vue/use-vue/index.d.ts +0 -1
- package/vue3/src/lang/internal/en.json.d.ts +20 -1
- package/vue3/src/lang/internal/index.d.ts +19 -0
- package/vue3/src/lang/internal/ja.json.d.ts +20 -1
- package/vue3/src/lang/internal/ko.json.d.ts +20 -1
- package/vue3/src/lang/internal/ru.json.d.ts +20 -1
- package/vue3/src/lang/internal/zh-CN.json.d.ts +20 -1
- package/vue3/src/lang/internal/zh-TW.json.d.ts +20 -1
- package/vue3/src/plugins/cropperjs/index.d.ts +14 -0
- package/vue3/src/utils/string.d.ts +10 -0
- package/vue3/src/vue-utils/render-slot.d.ts +10 -0
- package/vue2/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
- package/vue2/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
- package/vue2/src/components/form/radio/src/use-radio-group.d.ts +0 -43
- package/vue2/src/components/form/radio/src/use-radio.d.ts +0 -53
- package/vue2/src/components/popper/hooks.d.ts +0 -7
- package/vue2/src/components/popper/index.d.ts +0 -4
- package/vue2/src/components/popper/popper-content.vue.d.ts +0 -19
- package/vue2/src/components/popper/popper-reference.vue.d.ts +0 -17
- package/vue2/src/components/popper/popper.vue.d.ts +0 -58
- package/vue2/src/components/popper/props-define.d.ts +0 -41
- package/vue2/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
- package/vue2/src/components/popup/popup.vue.d.ts +0 -225
- package/vue2/src/components/slot/index.d.ts +0 -6
- package/vue3/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
- package/vue3/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
- package/vue3/src/components/form/radio/src/use-radio-group.d.ts +0 -43
- package/vue3/src/components/form/radio/src/use-radio.d.ts +0 -53
- package/vue3/src/components/popper/hooks.d.ts +0 -7
- package/vue3/src/components/popper/index.d.ts +0 -4
- package/vue3/src/components/popper/popper-content.vue.d.ts +0 -19
- package/vue3/src/components/popper/popper-reference.vue.d.ts +0 -17
- package/vue3/src/components/popper/popper.vue.d.ts +0 -58
- package/vue3/src/components/popper/props-define.d.ts +0 -41
- package/vue3/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
- package/vue3/src/components/popup/popup.vue.d.ts +0 -225
- package/vue3/src/components/slot/index.d.ts +0 -6
- /package/vue2/src/components/{form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → business/live-status-tag/src/playing-icon.vue.d.ts} +0 -0
- /package/vue2/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
- /package/vue2/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
- /package/vue2/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
- /package/{vue3/src/components/form/date-picker/src/components/picker-reference/picker-reference.vue.d.ts → vue2/src/components/tabs/src/tab-nav.vue.d.ts} +0 -0
- /package/vue3/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
- /package/vue3/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
- /package/vue3/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
|
@@ -37,7 +37,7 @@ export declare const useSwiperWrapper: (options: {
|
|
|
37
37
|
initialSlide: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
|
|
38
38
|
default: number;
|
|
39
39
|
};
|
|
40
|
-
direction: import('vue-types').VueTypeDef<"
|
|
40
|
+
direction: import('vue-types').VueTypeDef<"vertical" | "horizontal">;
|
|
41
41
|
loop: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
|
|
42
42
|
default: boolean;
|
|
43
43
|
};
|
|
@@ -290,6 +290,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
290
290
|
trimLeft: () => string;
|
|
291
291
|
trimRight: () => string;
|
|
292
292
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
293
|
+
replaceAll: {
|
|
294
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
295
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
296
|
+
};
|
|
297
|
+
at: (index: number) => string | undefined;
|
|
298
|
+
isWellFormed: () => boolean;
|
|
299
|
+
toWellFormed: () => string;
|
|
293
300
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
294
301
|
} | null | undefined;
|
|
295
302
|
preventClicks?: boolean | undefined;
|
|
@@ -394,6 +401,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
394
401
|
trimLeft: () => string;
|
|
395
402
|
trimRight: () => string;
|
|
396
403
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
404
|
+
replaceAll: {
|
|
405
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
406
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
407
|
+
};
|
|
408
|
+
at: (index: number) => string | undefined;
|
|
409
|
+
isWellFormed: () => boolean;
|
|
410
|
+
toWellFormed: () => string;
|
|
397
411
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
398
412
|
} | "window" | undefined;
|
|
399
413
|
observer?: boolean | undefined;
|
|
@@ -948,6 +962,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
948
962
|
trimLeft: () => string;
|
|
949
963
|
trimRight: () => string;
|
|
950
964
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
965
|
+
replaceAll: {
|
|
966
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
967
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
968
|
+
};
|
|
969
|
+
at: (index: number) => string | undefined;
|
|
970
|
+
isWellFormed: () => boolean;
|
|
971
|
+
toWellFormed: () => string;
|
|
951
972
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
952
973
|
} | "wrapper" | undefined;
|
|
953
974
|
thresholdDelta?: number | null | undefined;
|
|
@@ -1045,6 +1066,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1045
1066
|
trimLeft: () => string;
|
|
1046
1067
|
trimRight: () => string;
|
|
1047
1068
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1069
|
+
replaceAll: {
|
|
1070
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
1071
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
1072
|
+
};
|
|
1073
|
+
at: (index: number) => string | undefined;
|
|
1074
|
+
isWellFormed: () => boolean;
|
|
1075
|
+
toWellFormed: () => string;
|
|
1048
1076
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1049
1077
|
} | null | undefined;
|
|
1050
1078
|
prevEl?: HTMLElement | {
|
|
@@ -1136,6 +1164,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1136
1164
|
trimLeft: () => string;
|
|
1137
1165
|
trimRight: () => string;
|
|
1138
1166
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1167
|
+
replaceAll: {
|
|
1168
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
1169
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
1170
|
+
};
|
|
1171
|
+
at: (index: number) => string | undefined;
|
|
1172
|
+
isWellFormed: () => boolean;
|
|
1173
|
+
toWellFormed: () => string;
|
|
1139
1174
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1140
1175
|
} | null | undefined;
|
|
1141
1176
|
addIcons?: boolean | undefined;
|
|
@@ -1236,6 +1271,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1236
1271
|
trimLeft: () => string;
|
|
1237
1272
|
trimRight: () => string;
|
|
1238
1273
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1274
|
+
replaceAll: {
|
|
1275
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
1276
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
1277
|
+
};
|
|
1278
|
+
at: (index: number) => string | undefined;
|
|
1279
|
+
isWellFormed: () => boolean;
|
|
1280
|
+
toWellFormed: () => string;
|
|
1239
1281
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1240
1282
|
} | null | undefined;
|
|
1241
1283
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -1359,6 +1401,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1359
1401
|
trimLeft: () => string;
|
|
1360
1402
|
trimRight: () => string;
|
|
1361
1403
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1404
|
+
replaceAll: {
|
|
1405
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
1406
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
1407
|
+
};
|
|
1408
|
+
at: (index: number) => string | undefined;
|
|
1409
|
+
isWellFormed: () => boolean;
|
|
1410
|
+
toWellFormed: () => string;
|
|
1362
1411
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1363
1412
|
} | null | undefined;
|
|
1364
1413
|
hide?: boolean | undefined;
|
|
@@ -1836,6 +1885,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1836
1885
|
trimLeft: () => string;
|
|
1837
1886
|
trimRight: () => string;
|
|
1838
1887
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1888
|
+
replaceAll: {
|
|
1889
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
1890
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
1891
|
+
};
|
|
1892
|
+
at: (index: number) => string | undefined;
|
|
1893
|
+
isWellFormed: () => boolean;
|
|
1894
|
+
toWellFormed: () => string;
|
|
1839
1895
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1840
1896
|
} | null | undefined;
|
|
1841
1897
|
preventClicks?: boolean | undefined;
|
|
@@ -1940,6 +1996,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
1940
1996
|
trimLeft: () => string;
|
|
1941
1997
|
trimRight: () => string;
|
|
1942
1998
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
1999
|
+
replaceAll: {
|
|
2000
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2001
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2002
|
+
};
|
|
2003
|
+
at: (index: number) => string | undefined;
|
|
2004
|
+
isWellFormed: () => boolean;
|
|
2005
|
+
toWellFormed: () => string;
|
|
1943
2006
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
1944
2007
|
} | "window" | undefined;
|
|
1945
2008
|
observer?: boolean | undefined;
|
|
@@ -2231,6 +2294,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2231
2294
|
trimLeft: () => string;
|
|
2232
2295
|
trimRight: () => string;
|
|
2233
2296
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2297
|
+
replaceAll: {
|
|
2298
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2299
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2300
|
+
};
|
|
2301
|
+
at: (index: number) => string | undefined;
|
|
2302
|
+
isWellFormed: () => boolean;
|
|
2303
|
+
toWellFormed: () => string;
|
|
2234
2304
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2235
2305
|
} | null | undefined;
|
|
2236
2306
|
preventClicks?: boolean | undefined;
|
|
@@ -2335,6 +2405,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2335
2405
|
trimLeft: () => string;
|
|
2336
2406
|
trimRight: () => string;
|
|
2337
2407
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2408
|
+
replaceAll: {
|
|
2409
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2410
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2411
|
+
};
|
|
2412
|
+
at: (index: number) => string | undefined;
|
|
2413
|
+
isWellFormed: () => boolean;
|
|
2414
|
+
toWellFormed: () => string;
|
|
2338
2415
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2339
2416
|
} | "window" | undefined;
|
|
2340
2417
|
observer?: boolean | undefined;
|
|
@@ -2539,6 +2616,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2539
2616
|
trimLeft: () => string;
|
|
2540
2617
|
trimRight: () => string;
|
|
2541
2618
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2619
|
+
replaceAll: {
|
|
2620
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2621
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2622
|
+
};
|
|
2623
|
+
at: (index: number) => string | undefined;
|
|
2624
|
+
isWellFormed: () => boolean;
|
|
2625
|
+
toWellFormed: () => string;
|
|
2542
2626
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2543
2627
|
} | "wrapper" | undefined;
|
|
2544
2628
|
thresholdDelta?: number | null | undefined;
|
|
@@ -2636,6 +2720,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2636
2720
|
trimLeft: () => string;
|
|
2637
2721
|
trimRight: () => string;
|
|
2638
2722
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2723
|
+
replaceAll: {
|
|
2724
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2725
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2726
|
+
};
|
|
2727
|
+
at: (index: number) => string | undefined;
|
|
2728
|
+
isWellFormed: () => boolean;
|
|
2729
|
+
toWellFormed: () => string;
|
|
2639
2730
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2640
2731
|
} | null | undefined;
|
|
2641
2732
|
prevEl?: HTMLElement | {
|
|
@@ -2727,6 +2818,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2727
2818
|
trimLeft: () => string;
|
|
2728
2819
|
trimRight: () => string;
|
|
2729
2820
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2821
|
+
replaceAll: {
|
|
2822
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2823
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2824
|
+
};
|
|
2825
|
+
at: (index: number) => string | undefined;
|
|
2826
|
+
isWellFormed: () => boolean;
|
|
2827
|
+
toWellFormed: () => string;
|
|
2730
2828
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2731
2829
|
} | null | undefined;
|
|
2732
2830
|
addIcons?: boolean | undefined;
|
|
@@ -2827,6 +2925,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2827
2925
|
trimLeft: () => string;
|
|
2828
2926
|
trimRight: () => string;
|
|
2829
2927
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
2928
|
+
replaceAll: {
|
|
2929
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
2930
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2931
|
+
};
|
|
2932
|
+
at: (index: number) => string | undefined;
|
|
2933
|
+
isWellFormed: () => boolean;
|
|
2934
|
+
toWellFormed: () => string;
|
|
2830
2935
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2831
2936
|
} | null | undefined;
|
|
2832
2937
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -2950,6 +3055,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
2950
3055
|
trimLeft: () => string;
|
|
2951
3056
|
trimRight: () => string;
|
|
2952
3057
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3058
|
+
replaceAll: {
|
|
3059
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3060
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3061
|
+
};
|
|
3062
|
+
at: (index: number) => string | undefined;
|
|
3063
|
+
isWellFormed: () => boolean;
|
|
3064
|
+
toWellFormed: () => string;
|
|
2953
3065
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
2954
3066
|
} | null | undefined;
|
|
2955
3067
|
hide?: boolean | undefined;
|
|
@@ -3252,6 +3364,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3252
3364
|
trimLeft: () => string;
|
|
3253
3365
|
trimRight: () => string;
|
|
3254
3366
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3367
|
+
replaceAll: {
|
|
3368
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3369
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3370
|
+
};
|
|
3371
|
+
at: (index: number) => string | undefined;
|
|
3372
|
+
isWellFormed: () => boolean;
|
|
3373
|
+
toWellFormed: () => string;
|
|
3255
3374
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3256
3375
|
} | null | undefined;
|
|
3257
3376
|
preventClicks?: boolean | undefined;
|
|
@@ -3356,6 +3475,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3356
3475
|
trimLeft: () => string;
|
|
3357
3476
|
trimRight: () => string;
|
|
3358
3477
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3478
|
+
replaceAll: {
|
|
3479
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3480
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3481
|
+
};
|
|
3482
|
+
at: (index: number) => string | undefined;
|
|
3483
|
+
isWellFormed: () => boolean;
|
|
3484
|
+
toWellFormed: () => string;
|
|
3359
3485
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3360
3486
|
} | "window" | undefined;
|
|
3361
3487
|
observer?: boolean | undefined;
|
|
@@ -3560,6 +3686,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3560
3686
|
trimLeft: () => string;
|
|
3561
3687
|
trimRight: () => string;
|
|
3562
3688
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3689
|
+
replaceAll: {
|
|
3690
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3691
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3692
|
+
};
|
|
3693
|
+
at: (index: number) => string | undefined;
|
|
3694
|
+
isWellFormed: () => boolean;
|
|
3695
|
+
toWellFormed: () => string;
|
|
3563
3696
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3564
3697
|
} | "wrapper" | undefined;
|
|
3565
3698
|
thresholdDelta?: number | null | undefined;
|
|
@@ -3657,6 +3790,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3657
3790
|
trimLeft: () => string;
|
|
3658
3791
|
trimRight: () => string;
|
|
3659
3792
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3793
|
+
replaceAll: {
|
|
3794
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3795
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3796
|
+
};
|
|
3797
|
+
at: (index: number) => string | undefined;
|
|
3798
|
+
isWellFormed: () => boolean;
|
|
3799
|
+
toWellFormed: () => string;
|
|
3660
3800
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3661
3801
|
} | null | undefined;
|
|
3662
3802
|
prevEl?: HTMLElement | {
|
|
@@ -3748,6 +3888,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3748
3888
|
trimLeft: () => string;
|
|
3749
3889
|
trimRight: () => string;
|
|
3750
3890
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3891
|
+
replaceAll: {
|
|
3892
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
3893
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
3894
|
+
};
|
|
3895
|
+
at: (index: number) => string | undefined;
|
|
3896
|
+
isWellFormed: () => boolean;
|
|
3897
|
+
toWellFormed: () => string;
|
|
3751
3898
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3752
3899
|
} | null | undefined;
|
|
3753
3900
|
addIcons?: boolean | undefined;
|
|
@@ -3848,6 +3995,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3848
3995
|
trimLeft: () => string;
|
|
3849
3996
|
trimRight: () => string;
|
|
3850
3997
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
3998
|
+
replaceAll: {
|
|
3999
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
4000
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
4001
|
+
};
|
|
4002
|
+
at: (index: number) => string | undefined;
|
|
4003
|
+
isWellFormed: () => boolean;
|
|
4004
|
+
toWellFormed: () => string;
|
|
3851
4005
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3852
4006
|
} | null | undefined;
|
|
3853
4007
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -3971,6 +4125,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
3971
4125
|
trimLeft: () => string;
|
|
3972
4126
|
trimRight: () => string;
|
|
3973
4127
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
4128
|
+
replaceAll: {
|
|
4129
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
4130
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
4131
|
+
};
|
|
4132
|
+
at: (index: number) => string | undefined;
|
|
4133
|
+
isWellFormed: () => boolean;
|
|
4134
|
+
toWellFormed: () => string;
|
|
3974
4135
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
3975
4136
|
} | null | undefined;
|
|
3976
4137
|
hide?: boolean | undefined;
|
|
@@ -4444,6 +4605,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
4444
4605
|
trimLeft: () => string;
|
|
4445
4606
|
trimRight: () => string;
|
|
4446
4607
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
4608
|
+
replaceAll: {
|
|
4609
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
4610
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
4611
|
+
};
|
|
4612
|
+
at: (index: number) => string | undefined;
|
|
4613
|
+
isWellFormed: () => boolean;
|
|
4614
|
+
toWellFormed: () => string;
|
|
4447
4615
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
4448
4616
|
} | null | undefined;
|
|
4449
4617
|
preventClicks?: boolean | undefined;
|
|
@@ -4548,6 +4716,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
4548
4716
|
trimLeft: () => string;
|
|
4549
4717
|
trimRight: () => string;
|
|
4550
4718
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
4719
|
+
replaceAll: {
|
|
4720
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
4721
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
4722
|
+
};
|
|
4723
|
+
at: (index: number) => string | undefined;
|
|
4724
|
+
isWellFormed: () => boolean;
|
|
4725
|
+
toWellFormed: () => string;
|
|
4551
4726
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
4552
4727
|
} | "window" | undefined;
|
|
4553
4728
|
observer?: boolean | undefined;
|
|
@@ -4752,6 +4927,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
4752
4927
|
trimLeft: () => string;
|
|
4753
4928
|
trimRight: () => string;
|
|
4754
4929
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
4930
|
+
replaceAll: {
|
|
4931
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
4932
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
4933
|
+
};
|
|
4934
|
+
at: (index: number) => string | undefined;
|
|
4935
|
+
isWellFormed: () => boolean;
|
|
4936
|
+
toWellFormed: () => string;
|
|
4755
4937
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
4756
4938
|
} | "wrapper" | undefined;
|
|
4757
4939
|
thresholdDelta?: number | null | undefined;
|
|
@@ -4849,6 +5031,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
4849
5031
|
trimLeft: () => string;
|
|
4850
5032
|
trimRight: () => string;
|
|
4851
5033
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5034
|
+
replaceAll: {
|
|
5035
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5036
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5037
|
+
};
|
|
5038
|
+
at: (index: number) => string | undefined;
|
|
5039
|
+
isWellFormed: () => boolean;
|
|
5040
|
+
toWellFormed: () => string;
|
|
4852
5041
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
4853
5042
|
} | null | undefined;
|
|
4854
5043
|
prevEl?: HTMLElement | {
|
|
@@ -4940,6 +5129,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
4940
5129
|
trimLeft: () => string;
|
|
4941
5130
|
trimRight: () => string;
|
|
4942
5131
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5132
|
+
replaceAll: {
|
|
5133
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5134
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5135
|
+
};
|
|
5136
|
+
at: (index: number) => string | undefined;
|
|
5137
|
+
isWellFormed: () => boolean;
|
|
5138
|
+
toWellFormed: () => string;
|
|
4943
5139
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
4944
5140
|
} | null | undefined;
|
|
4945
5141
|
addIcons?: boolean | undefined;
|
|
@@ -5040,6 +5236,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5040
5236
|
trimLeft: () => string;
|
|
5041
5237
|
trimRight: () => string;
|
|
5042
5238
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5239
|
+
replaceAll: {
|
|
5240
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5241
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5242
|
+
};
|
|
5243
|
+
at: (index: number) => string | undefined;
|
|
5244
|
+
isWellFormed: () => boolean;
|
|
5245
|
+
toWellFormed: () => string;
|
|
5043
5246
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5044
5247
|
} | null | undefined;
|
|
5045
5248
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -5163,6 +5366,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5163
5366
|
trimLeft: () => string;
|
|
5164
5367
|
trimRight: () => string;
|
|
5165
5368
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5369
|
+
replaceAll: {
|
|
5370
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5371
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5372
|
+
};
|
|
5373
|
+
at: (index: number) => string | undefined;
|
|
5374
|
+
isWellFormed: () => boolean;
|
|
5375
|
+
toWellFormed: () => string;
|
|
5166
5376
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5167
5377
|
} | null | undefined;
|
|
5168
5378
|
hide?: boolean | undefined;
|
|
@@ -5465,6 +5675,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5465
5675
|
trimLeft: () => string;
|
|
5466
5676
|
trimRight: () => string;
|
|
5467
5677
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5678
|
+
replaceAll: {
|
|
5679
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5680
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5681
|
+
};
|
|
5682
|
+
at: (index: number) => string | undefined;
|
|
5683
|
+
isWellFormed: () => boolean;
|
|
5684
|
+
toWellFormed: () => string;
|
|
5468
5685
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5469
5686
|
} | null | undefined;
|
|
5470
5687
|
preventClicks?: boolean | undefined;
|
|
@@ -5569,6 +5786,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5569
5786
|
trimLeft: () => string;
|
|
5570
5787
|
trimRight: () => string;
|
|
5571
5788
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
5789
|
+
replaceAll: {
|
|
5790
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
5791
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
5792
|
+
};
|
|
5793
|
+
at: (index: number) => string | undefined;
|
|
5794
|
+
isWellFormed: () => boolean;
|
|
5795
|
+
toWellFormed: () => string;
|
|
5572
5796
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5573
5797
|
} | "window" | undefined;
|
|
5574
5798
|
observer?: boolean | undefined;
|
|
@@ -5773,6 +5997,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5773
5997
|
trimLeft: () => string;
|
|
5774
5998
|
trimRight: () => string;
|
|
5775
5999
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6000
|
+
replaceAll: {
|
|
6001
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6002
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6003
|
+
};
|
|
6004
|
+
at: (index: number) => string | undefined;
|
|
6005
|
+
isWellFormed: () => boolean;
|
|
6006
|
+
toWellFormed: () => string;
|
|
5776
6007
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5777
6008
|
} | "wrapper" | undefined;
|
|
5778
6009
|
thresholdDelta?: number | null | undefined;
|
|
@@ -5870,6 +6101,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5870
6101
|
trimLeft: () => string;
|
|
5871
6102
|
trimRight: () => string;
|
|
5872
6103
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6104
|
+
replaceAll: {
|
|
6105
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6106
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6107
|
+
};
|
|
6108
|
+
at: (index: number) => string | undefined;
|
|
6109
|
+
isWellFormed: () => boolean;
|
|
6110
|
+
toWellFormed: () => string;
|
|
5873
6111
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5874
6112
|
} | null | undefined;
|
|
5875
6113
|
prevEl?: HTMLElement | {
|
|
@@ -5961,6 +6199,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
5961
6199
|
trimLeft: () => string;
|
|
5962
6200
|
trimRight: () => string;
|
|
5963
6201
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6202
|
+
replaceAll: {
|
|
6203
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6204
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6205
|
+
};
|
|
6206
|
+
at: (index: number) => string | undefined;
|
|
6207
|
+
isWellFormed: () => boolean;
|
|
6208
|
+
toWellFormed: () => string;
|
|
5964
6209
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
5965
6210
|
} | null | undefined;
|
|
5966
6211
|
addIcons?: boolean | undefined;
|
|
@@ -6061,6 +6306,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6061
6306
|
trimLeft: () => string;
|
|
6062
6307
|
trimRight: () => string;
|
|
6063
6308
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6309
|
+
replaceAll: {
|
|
6310
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6311
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6312
|
+
};
|
|
6313
|
+
at: (index: number) => string | undefined;
|
|
6314
|
+
isWellFormed: () => boolean;
|
|
6315
|
+
toWellFormed: () => string;
|
|
6064
6316
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6065
6317
|
} | null | undefined;
|
|
6066
6318
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -6184,6 +6436,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6184
6436
|
trimLeft: () => string;
|
|
6185
6437
|
trimRight: () => string;
|
|
6186
6438
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6439
|
+
replaceAll: {
|
|
6440
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6441
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6442
|
+
};
|
|
6443
|
+
at: (index: number) => string | undefined;
|
|
6444
|
+
isWellFormed: () => boolean;
|
|
6445
|
+
toWellFormed: () => string;
|
|
6187
6446
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6188
6447
|
} | null | undefined;
|
|
6189
6448
|
hide?: boolean | undefined;
|
|
@@ -6574,6 +6833,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6574
6833
|
trimLeft: () => string;
|
|
6575
6834
|
trimRight: () => string;
|
|
6576
6835
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6836
|
+
replaceAll: {
|
|
6837
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6838
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6839
|
+
};
|
|
6840
|
+
at: (index: number) => string | undefined;
|
|
6841
|
+
isWellFormed: () => boolean;
|
|
6842
|
+
toWellFormed: () => string;
|
|
6577
6843
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6578
6844
|
} | "wrapper" | undefined;
|
|
6579
6845
|
thresholdDelta?: number | null | undefined;
|
|
@@ -6671,6 +6937,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6671
6937
|
trimLeft: () => string;
|
|
6672
6938
|
trimRight: () => string;
|
|
6673
6939
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
6940
|
+
replaceAll: {
|
|
6941
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
6942
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
6943
|
+
};
|
|
6944
|
+
at: (index: number) => string | undefined;
|
|
6945
|
+
isWellFormed: () => boolean;
|
|
6946
|
+
toWellFormed: () => string;
|
|
6674
6947
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6675
6948
|
} | null | undefined;
|
|
6676
6949
|
prevEl?: HTMLElement | {
|
|
@@ -6762,6 +7035,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6762
7035
|
trimLeft: () => string;
|
|
6763
7036
|
trimRight: () => string;
|
|
6764
7037
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7038
|
+
replaceAll: {
|
|
7039
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7040
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7041
|
+
};
|
|
7042
|
+
at: (index: number) => string | undefined;
|
|
7043
|
+
isWellFormed: () => boolean;
|
|
7044
|
+
toWellFormed: () => string;
|
|
6765
7045
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6766
7046
|
} | null | undefined;
|
|
6767
7047
|
addIcons?: boolean | undefined;
|
|
@@ -6862,6 +7142,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6862
7142
|
trimLeft: () => string;
|
|
6863
7143
|
trimRight: () => string;
|
|
6864
7144
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7145
|
+
replaceAll: {
|
|
7146
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7147
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7148
|
+
};
|
|
7149
|
+
at: (index: number) => string | undefined;
|
|
7150
|
+
isWellFormed: () => boolean;
|
|
7151
|
+
toWellFormed: () => string;
|
|
6865
7152
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6866
7153
|
} | null | undefined;
|
|
6867
7154
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -6985,6 +7272,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
6985
7272
|
trimLeft: () => string;
|
|
6986
7273
|
trimRight: () => string;
|
|
6987
7274
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7275
|
+
replaceAll: {
|
|
7276
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7277
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7278
|
+
};
|
|
7279
|
+
at: (index: number) => string | undefined;
|
|
7280
|
+
isWellFormed: () => boolean;
|
|
7281
|
+
toWellFormed: () => string;
|
|
6988
7282
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
6989
7283
|
} | null | undefined;
|
|
6990
7284
|
hide?: boolean | undefined;
|
|
@@ -7246,6 +7540,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7246
7540
|
trimLeft: () => string;
|
|
7247
7541
|
trimRight: () => string;
|
|
7248
7542
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7543
|
+
replaceAll: {
|
|
7544
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7545
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7546
|
+
};
|
|
7547
|
+
at: (index: number) => string | undefined;
|
|
7548
|
+
isWellFormed: () => boolean;
|
|
7549
|
+
toWellFormed: () => string;
|
|
7249
7550
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7250
7551
|
} | null | undefined;
|
|
7251
7552
|
preventClicks?: boolean | undefined;
|
|
@@ -7350,6 +7651,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7350
7651
|
trimLeft: () => string;
|
|
7351
7652
|
trimRight: () => string;
|
|
7352
7653
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7654
|
+
replaceAll: {
|
|
7655
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7656
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7657
|
+
};
|
|
7658
|
+
at: (index: number) => string | undefined;
|
|
7659
|
+
isWellFormed: () => boolean;
|
|
7660
|
+
toWellFormed: () => string;
|
|
7353
7661
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7354
7662
|
} | "window" | undefined;
|
|
7355
7663
|
observer?: boolean | undefined;
|
|
@@ -7558,6 +7866,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7558
7866
|
trimLeft: () => string;
|
|
7559
7867
|
trimRight: () => string;
|
|
7560
7868
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7869
|
+
replaceAll: {
|
|
7870
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7871
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7872
|
+
};
|
|
7873
|
+
at: (index: number) => string | undefined;
|
|
7874
|
+
isWellFormed: () => boolean;
|
|
7875
|
+
toWellFormed: () => string;
|
|
7561
7876
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7562
7877
|
} | "wrapper" | undefined;
|
|
7563
7878
|
thresholdDelta?: number | null | undefined;
|
|
@@ -7655,6 +7970,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7655
7970
|
trimLeft: () => string;
|
|
7656
7971
|
trimRight: () => string;
|
|
7657
7972
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
7973
|
+
replaceAll: {
|
|
7974
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
7975
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
7976
|
+
};
|
|
7977
|
+
at: (index: number) => string | undefined;
|
|
7978
|
+
isWellFormed: () => boolean;
|
|
7979
|
+
toWellFormed: () => string;
|
|
7658
7980
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7659
7981
|
} | null | undefined;
|
|
7660
7982
|
prevEl?: HTMLElement | {
|
|
@@ -7746,6 +8068,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7746
8068
|
trimLeft: () => string;
|
|
7747
8069
|
trimRight: () => string;
|
|
7748
8070
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8071
|
+
replaceAll: {
|
|
8072
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8073
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8074
|
+
};
|
|
8075
|
+
at: (index: number) => string | undefined;
|
|
8076
|
+
isWellFormed: () => boolean;
|
|
8077
|
+
toWellFormed: () => string;
|
|
7749
8078
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7750
8079
|
} | null | undefined;
|
|
7751
8080
|
addIcons?: boolean | undefined;
|
|
@@ -7846,6 +8175,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7846
8175
|
trimLeft: () => string;
|
|
7847
8176
|
trimRight: () => string;
|
|
7848
8177
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8178
|
+
replaceAll: {
|
|
8179
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8180
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8181
|
+
};
|
|
8182
|
+
at: (index: number) => string | undefined;
|
|
8183
|
+
isWellFormed: () => boolean;
|
|
8184
|
+
toWellFormed: () => string;
|
|
7849
8185
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7850
8186
|
} | null | undefined;
|
|
7851
8187
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -7969,6 +8305,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
7969
8305
|
trimLeft: () => string;
|
|
7970
8306
|
trimRight: () => string;
|
|
7971
8307
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8308
|
+
replaceAll: {
|
|
8309
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8310
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8311
|
+
};
|
|
8312
|
+
at: (index: number) => string | undefined;
|
|
8313
|
+
isWellFormed: () => boolean;
|
|
8314
|
+
toWellFormed: () => string;
|
|
7972
8315
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
7973
8316
|
} | null | undefined;
|
|
7974
8317
|
hide?: boolean | undefined;
|
|
@@ -8265,6 +8608,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8265
8608
|
trimLeft: () => string;
|
|
8266
8609
|
trimRight: () => string;
|
|
8267
8610
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8611
|
+
replaceAll: {
|
|
8612
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8613
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8614
|
+
};
|
|
8615
|
+
at: (index: number) => string | undefined;
|
|
8616
|
+
isWellFormed: () => boolean;
|
|
8617
|
+
toWellFormed: () => string;
|
|
8268
8618
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8269
8619
|
} | null | undefined;
|
|
8270
8620
|
preventClicks?: boolean | undefined;
|
|
@@ -8369,6 +8719,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8369
8719
|
trimLeft: () => string;
|
|
8370
8720
|
trimRight: () => string;
|
|
8371
8721
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8722
|
+
replaceAll: {
|
|
8723
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8724
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8725
|
+
};
|
|
8726
|
+
at: (index: number) => string | undefined;
|
|
8727
|
+
isWellFormed: () => boolean;
|
|
8728
|
+
toWellFormed: () => string;
|
|
8372
8729
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8373
8730
|
} | "window" | undefined;
|
|
8374
8731
|
observer?: boolean | undefined;
|
|
@@ -8577,6 +8934,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8577
8934
|
trimLeft: () => string;
|
|
8578
8935
|
trimRight: () => string;
|
|
8579
8936
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
8937
|
+
replaceAll: {
|
|
8938
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
8939
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
8940
|
+
};
|
|
8941
|
+
at: (index: number) => string | undefined;
|
|
8942
|
+
isWellFormed: () => boolean;
|
|
8943
|
+
toWellFormed: () => string;
|
|
8580
8944
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8581
8945
|
} | "wrapper" | undefined;
|
|
8582
8946
|
thresholdDelta?: number | null | undefined;
|
|
@@ -8674,6 +9038,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8674
9038
|
trimLeft: () => string;
|
|
8675
9039
|
trimRight: () => string;
|
|
8676
9040
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
9041
|
+
replaceAll: {
|
|
9042
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
9043
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
9044
|
+
};
|
|
9045
|
+
at: (index: number) => string | undefined;
|
|
9046
|
+
isWellFormed: () => boolean;
|
|
9047
|
+
toWellFormed: () => string;
|
|
8677
9048
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8678
9049
|
} | null | undefined;
|
|
8679
9050
|
prevEl?: HTMLElement | {
|
|
@@ -8765,6 +9136,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8765
9136
|
trimLeft: () => string;
|
|
8766
9137
|
trimRight: () => string;
|
|
8767
9138
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
9139
|
+
replaceAll: {
|
|
9140
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
9141
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
9142
|
+
};
|
|
9143
|
+
at: (index: number) => string | undefined;
|
|
9144
|
+
isWellFormed: () => boolean;
|
|
9145
|
+
toWellFormed: () => string;
|
|
8768
9146
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8769
9147
|
} | null | undefined;
|
|
8770
9148
|
addIcons?: boolean | undefined;
|
|
@@ -8865,6 +9243,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8865
9243
|
trimLeft: () => string;
|
|
8866
9244
|
trimRight: () => string;
|
|
8867
9245
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
9246
|
+
replaceAll: {
|
|
9247
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
9248
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
9249
|
+
};
|
|
9250
|
+
at: (index: number) => string | undefined;
|
|
9251
|
+
isWellFormed: () => boolean;
|
|
9252
|
+
toWellFormed: () => string;
|
|
8868
9253
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8869
9254
|
} | null | undefined;
|
|
8870
9255
|
type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
|
|
@@ -8988,6 +9373,13 @@ export declare const useSwiperWrapper: (options: {
|
|
|
8988
9373
|
trimLeft: () => string;
|
|
8989
9374
|
trimRight: () => string;
|
|
8990
9375
|
matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
|
|
9376
|
+
replaceAll: {
|
|
9377
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
|
9378
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
|
9379
|
+
};
|
|
9380
|
+
at: (index: number) => string | undefined;
|
|
9381
|
+
isWellFormed: () => boolean;
|
|
9382
|
+
toWellFormed: () => string;
|
|
8991
9383
|
[Symbol.iterator]: () => StringIterator<string>;
|
|
8992
9384
|
} | null | undefined;
|
|
8993
9385
|
hide?: boolean | undefined;
|