@polyv/vue-components 1.5.1 → 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.
Files changed (428) hide show
  1. package/package.json +2 -1
  2. package/styles/function.scss +4 -2
  3. package/styles/root/basic.scss +43 -7
  4. package/styles/variables.scss +35 -4
  5. package/vue2/index.es.js +8644 -6695
  6. package/vue2/src/components/alert/index.d.ts +96 -0
  7. package/vue2/src/components/alert/src/alert.vue.d.ts +50 -0
  8. package/vue2/src/components/alert/src/props-define.d.ts +54 -0
  9. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
  10. package/vue2/src/components/business/external-links/external-links.vue.d.ts +2 -2
  11. package/vue2/src/components/business/external-links/use-external-links.d.ts +19 -0
  12. package/vue2/src/components/business/live-status-tag/index.d.ts +84 -0
  13. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
  14. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
  15. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
  16. package/vue2/src/components/button/index.d.ts +32 -6
  17. package/vue2/src/components/button/src/button.vue.d.ts +12 -3
  18. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  19. package/vue2/src/components/card/index.d.ts +77 -0
  20. package/vue2/src/components/card/src/card.vue.d.ts +43 -0
  21. package/vue2/src/components/card/src/hooks/props-define.d.ts +46 -0
  22. package/vue2/src/components/dropdown/index.d.ts +175 -4
  23. package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
  24. package/{vue3/src/components/dropdown → vue2/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
  25. package/vue2/src/components/empty/index.d.ts +6 -6
  26. package/vue2/src/components/empty/src/empty.vue.d.ts +2 -2
  27. package/vue2/src/components/empty/src/props-define.d.ts +1 -1
  28. package/vue2/src/components/example/example.vue.d.ts +5 -5
  29. package/vue2/src/components/example/index.d.ts +5 -5
  30. package/vue2/src/components/example/props-define.d.ts +2 -2
  31. package/vue2/src/components/exports.d.ts +5 -0
  32. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -2
  33. package/vue2/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
  34. package/vue2/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
  35. package/vue2/src/components/form/area-picker/use-area-picker.d.ts +89 -3
  36. package/vue2/src/components/form/checkbox/index.d.ts +36 -8
  37. package/vue2/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
  38. package/vue2/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
  39. package/vue2/src/components/form/checkbox/src/props-define.d.ts +123 -0
  40. package/vue2/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
  41. package/vue2/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
  42. package/vue2/src/components/form/date-picker/index.d.ts +23 -3
  43. package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
  44. package/vue2/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
  45. package/vue2/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
  46. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
  47. package/vue2/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
  48. package/vue2/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
  49. package/vue2/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
  50. package/vue2/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
  51. package/vue2/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
  52. package/vue2/src/components/form/date-picker/src/types/index.d.ts +21 -0
  53. package/vue2/src/components/form/form-item/index.d.ts +14 -4
  54. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
  55. package/vue2/src/components/form/form-item/src/hooks/config.d.ts +1 -0
  56. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
  57. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
  58. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
  59. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +5 -78
  60. package/vue2/src/components/form/form-submit-button/index.d.ts +10 -3
  61. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
  62. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
  63. package/vue2/src/components/form/form-wrap/index.d.ts +6 -6
  64. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
  65. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
  66. package/vue2/src/components/form/hooks/use-form-clearable.d.ts +19 -0
  67. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +40 -1
  68. package/vue2/src/components/form/image-upload/index.d.ts +53 -0
  69. package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
  70. package/vue2/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
  71. package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
  72. package/vue2/src/components/form/index.d.ts +2 -1
  73. package/vue2/src/components/form/input/index.d.ts +24 -200
  74. package/vue2/src/components/form/input/src/input.vue.d.ts +25 -22
  75. package/vue2/src/components/form/input/src/props-define.d.ts +20 -10
  76. package/vue2/src/components/form/input/src/use-input.d.ts +3 -1
  77. package/vue2/src/components/form/input-number/index.d.ts +207 -2
  78. package/vue2/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
  79. package/vue2/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
  80. package/{vue3/src/components/form/input-number → vue2/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
  81. package/vue2/src/components/form/radio/index.d.ts +70 -23
  82. package/vue2/src/components/form/radio/src/props-define.d.ts +115 -0
  83. package/vue2/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
  84. package/vue2/src/components/form/radio/src/radio.vue.d.ts +7 -2
  85. package/vue2/src/components/form/radio/src/type.d.ts +13 -1
  86. package/vue2/src/components/form/select/index.d.ts +280 -28
  87. package/vue2/src/components/form/select/src/props-define.d.ts +50 -5
  88. package/vue2/src/components/form/select/src/select.vue.d.ts +98 -10
  89. package/vue2/src/components/form/switch/index.d.ts +10 -2
  90. package/vue2/src/components/form/switch/src/props-define.d.ts +5 -1
  91. package/vue2/src/components/form/switch/src/switch.vue.d.ts +10 -2
  92. package/vue2/src/components/form/switch/src/use-switch.d.ts +1 -1
  93. package/vue2/src/components/form/timezone-picker/index.d.ts +1406 -0
  94. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
  95. package/vue2/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
  96. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
  97. package/vue2/src/components/form/transfer/transfer.vue.d.ts +2 -2
  98. package/vue2/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
  99. package/vue2/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
  100. package/vue2/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
  101. package/vue2/src/components/icons/icons/clock-two/index.d.ts +6 -0
  102. package/vue2/src/components/icons/icons/data-export-two/index.d.ts +6 -0
  103. package/vue2/src/components/icons/icons/error/index.d.ts +6 -0
  104. package/vue2/src/components/icons/icons/filter/index.d.ts +6 -0
  105. package/vue2/src/components/icons/icons/landscape/index.d.ts +6 -0
  106. package/vue2/src/components/icons/icons/portrait/index.d.ts +6 -0
  107. package/vue2/src/components/icons/icons/rocket/index.d.ts +6 -0
  108. package/vue2/src/components/icons/icons/statistics/index.d.ts +6 -0
  109. package/vue2/src/components/icons/icons/success/index.d.ts +6 -0
  110. package/vue2/src/components/icons/icons/tag/index.d.ts +6 -0
  111. package/vue2/src/components/icons/map.d.ts +10 -0
  112. package/vue2/src/components/image-cropper/index.d.ts +22 -0
  113. package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
  114. package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
  115. package/vue2/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
  116. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
  117. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
  118. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
  119. package/vue2/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
  120. package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
  121. package/vue2/src/components/loading/index.d.ts +6 -6
  122. package/vue2/src/components/loading/src/loading.vue.d.ts +6 -6
  123. package/vue2/src/components/loading/src/props-define.d.ts +2 -2
  124. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
  125. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
  126. package/vue2/src/components/message-box/types.d.ts +27 -0
  127. package/vue2/src/components/pagination/pagination.vue.d.ts +1 -1
  128. package/vue2/src/components/popconfirm/index.d.ts +331 -2
  129. package/vue2/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
  130. package/{vue3/src/components/popconfirm → vue2/src/components/popconfirm/src}/props-define.d.ts +13 -15
  131. package/vue2/src/components/popover/index.d.ts +50 -30
  132. package/vue2/src/components/popover/src/popover.vue.d.ts +18 -11
  133. package/vue2/src/components/popover/src/props-define.d.ts +12 -4
  134. package/vue2/src/components/popup/index.d.ts +696 -4
  135. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
  136. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
  137. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
  138. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
  139. package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
  140. package/vue2/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
  141. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
  142. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
  143. package/vue2/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
  144. package/vue2/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
  145. package/{vue3/src/components/popup → vue2/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
  146. package/vue2/src/components/popup/src/popup.vue.d.ts +402 -0
  147. package/vue2/src/components/resize-box/resize-box.vue.d.ts +2 -2
  148. package/vue2/src/components/scrollbar/index.d.ts +18 -2
  149. package/vue2/src/components/scrollbar/src/props-define.d.ts +13 -0
  150. package/vue2/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
  151. package/vue2/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
  152. package/vue2/src/components/slider/index.d.ts +1 -1
  153. package/vue2/src/components/slider/src/slider.vue.d.ts +1 -1
  154. package/vue2/src/components/swiper/hooks/swiper-props.d.ts +1 -1
  155. package/vue2/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
  156. package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
  157. package/vue2/src/components/swiper/swiper.vue.d.ts +2 -2
  158. package/vue2/src/components/table/index.d.ts +8 -8
  159. package/vue2/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  160. package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
  161. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  162. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
  163. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
  164. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  165. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  166. package/vue2/src/components/table/src/table.vue.d.ts +1 -1
  167. package/vue2/src/components/tabs/index.d.ts +145 -0
  168. package/vue2/src/components/tabs/src/props-define.d.ts +86 -0
  169. package/vue2/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
  170. package/vue2/src/components/tabs/src/tabs.vue.d.ts +48 -0
  171. package/vue2/src/components/tabs/src/types.d.ts +28 -0
  172. package/vue2/src/components/tag/index.d.ts +28 -28
  173. package/vue2/src/components/tag/src/props-define.d.ts +6 -6
  174. package/vue2/src/components/tag/src/tag.vue.d.ts +10 -10
  175. package/vue2/src/components/tooltip/index.d.ts +16 -16
  176. package/vue2/src/components/tooltip/src/props-define.d.ts +2 -2
  177. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
  178. package/vue2/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  179. package/vue2/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
  180. package/vue2/src/config/index.d.ts +4 -0
  181. package/vue2/src/hooks/business/use-skin-color/index.d.ts +1 -0
  182. package/vue2/src/hooks/business/use-skin-color/types.d.ts +4 -0
  183. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +5 -0
  184. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
  185. package/vue2/src/hooks/interactive/use-scroll/index.d.ts +8 -0
  186. package/vue2/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
  187. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +6 -0
  188. package/vue2/src/hooks/vue/use-vue/index.d.ts +0 -1
  189. package/vue2/src/lang/internal/en.json.d.ts +20 -1
  190. package/vue2/src/lang/internal/index.d.ts +19 -0
  191. package/vue2/src/lang/internal/ja.json.d.ts +20 -1
  192. package/vue2/src/lang/internal/ko.json.d.ts +20 -1
  193. package/vue2/src/lang/internal/ru.json.d.ts +20 -1
  194. package/vue2/src/lang/internal/zh-CN.json.d.ts +20 -1
  195. package/vue2/src/lang/internal/zh-TW.json.d.ts +20 -1
  196. package/vue2/src/plugins/cropperjs/index.d.ts +14 -0
  197. package/vue2/src/utils/string.d.ts +10 -0
  198. package/vue2/src/vue-utils/render-slot.d.ts +10 -0
  199. package/vue3/index.es.js +8644 -6695
  200. package/vue3/src/components/alert/index.d.ts +96 -0
  201. package/vue3/src/components/alert/src/alert.vue.d.ts +50 -0
  202. package/vue3/src/components/alert/src/props-define.d.ts +54 -0
  203. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +453 -1
  204. package/vue3/src/components/business/external-links/external-links.vue.d.ts +2 -2
  205. package/vue3/src/components/business/external-links/use-external-links.d.ts +19 -0
  206. package/vue3/src/components/business/live-status-tag/index.d.ts +84 -0
  207. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +46 -0
  208. package/vue3/src/components/business/live-status-tag/src/playing-icon.vue.d.ts +2 -0
  209. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +44 -0
  210. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +19 -0
  211. package/vue3/src/components/button/index.d.ts +32 -6
  212. package/vue3/src/components/button/src/button.vue.d.ts +12 -3
  213. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  214. package/vue3/src/components/card/index.d.ts +77 -0
  215. package/vue3/src/components/card/src/card.vue.d.ts +43 -0
  216. package/vue3/src/components/card/src/hooks/props-define.d.ts +46 -0
  217. package/vue3/src/components/dropdown/index.d.ts +175 -4
  218. package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/dropdown.vue.d.ts +13 -11
  219. package/{vue2/src/components/dropdown → vue3/src/components/dropdown/src}/use-dropdown.d.ts +21 -6
  220. package/vue3/src/components/empty/index.d.ts +6 -6
  221. package/vue3/src/components/empty/src/empty.vue.d.ts +2 -2
  222. package/vue3/src/components/empty/src/props-define.d.ts +1 -1
  223. package/vue3/src/components/example/example.vue.d.ts +5 -5
  224. package/vue3/src/components/example/index.d.ts +5 -5
  225. package/vue3/src/components/example/props-define.d.ts +2 -2
  226. package/vue3/src/components/exports.d.ts +5 -0
  227. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -2
  228. package/vue3/src/components/form/area-picker/area-picker.vue.d.ts +18 -3
  229. package/vue3/src/components/form/area-picker/components/picker-popup.vue.d.ts +20 -1
  230. package/vue3/src/components/form/area-picker/use-area-picker.d.ts +89 -3
  231. package/vue3/src/components/form/checkbox/index.d.ts +36 -8
  232. package/vue3/src/components/form/checkbox/src/checkbox-group.vue.d.ts +10 -2
  233. package/vue3/src/components/form/checkbox/src/checkbox.vue.d.ts +5 -0
  234. package/vue3/src/components/form/checkbox/src/props-define.d.ts +123 -0
  235. package/vue3/src/components/form/checkbox/src/use-checkbox-group.d.ts +1 -29
  236. package/vue3/src/components/form/checkbox/src/use-checkbox.d.ts +1 -67
  237. package/vue3/src/components/form/date-picker/index.d.ts +23 -3
  238. package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +23 -3
  239. package/vue3/src/components/form/date-picker/src/hooks/picker-types/common.d.ts +1 -1
  240. package/vue3/src/components/form/date-picker/src/hooks/picker-types/use-date-input.d.ts +1 -1
  241. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +25 -2
  242. package/vue3/src/components/form/date-picker/src/hooks/use-date-limit.d.ts +6 -5
  243. package/vue3/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +14 -0
  244. package/vue3/src/components/form/date-picker/src/hooks/use-date-picker.d.ts +9 -7
  245. package/vue3/src/components/form/date-picker/src/hooks/use-picker-value.d.ts +4 -4
  246. package/vue3/src/components/form/date-picker/src/hooks/use-year-month.d.ts +2 -1
  247. package/vue3/src/components/form/date-picker/src/types/index.d.ts +21 -0
  248. package/vue3/src/components/form/form-item/index.d.ts +14 -4
  249. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +7 -2
  250. package/vue3/src/components/form/form-item/src/hooks/config.d.ts +1 -0
  251. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +113 -0
  252. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +1 -1
  253. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +8 -0
  254. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +5 -78
  255. package/vue3/src/components/form/form-submit-button/index.d.ts +10 -3
  256. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -3
  257. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +3 -0
  258. package/vue3/src/components/form/form-wrap/index.d.ts +6 -6
  259. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +2 -2
  260. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +1 -1
  261. package/vue3/src/components/form/hooks/use-form-clearable.d.ts +19 -0
  262. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +40 -1
  263. package/vue3/src/components/form/image-upload/index.d.ts +53 -0
  264. package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +65 -2
  265. package/vue3/src/components/form/image-upload/src/hooks/use-image-upload.d.ts +8 -0
  266. package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +53 -0
  267. package/vue3/src/components/form/index.d.ts +2 -1
  268. package/vue3/src/components/form/input/index.d.ts +24 -200
  269. package/vue3/src/components/form/input/src/input.vue.d.ts +25 -22
  270. package/vue3/src/components/form/input/src/props-define.d.ts +20 -10
  271. package/vue3/src/components/form/input/src/use-input.d.ts +3 -1
  272. package/vue3/src/components/form/input-number/index.d.ts +207 -2
  273. package/vue3/src/components/form/input-number/{input-number.vue.d.ts → src/input-number.vue.d.ts} +20 -4
  274. package/vue3/src/components/form/input-number/{props-define.d.ts → src/props-define.d.ts} +16 -5
  275. package/{vue2/src/components/form/input-number → vue3/src/components/form/input-number/src}/use-input-number.d.ts +1 -1
  276. package/vue3/src/components/form/radio/index.d.ts +70 -23
  277. package/vue3/src/components/form/radio/src/props-define.d.ts +115 -0
  278. package/vue3/src/components/form/radio/src/radio-group.vue.d.ts +21 -5
  279. package/vue3/src/components/form/radio/src/radio.vue.d.ts +7 -2
  280. package/vue3/src/components/form/radio/src/type.d.ts +13 -1
  281. package/vue3/src/components/form/select/index.d.ts +280 -28
  282. package/vue3/src/components/form/select/src/props-define.d.ts +50 -5
  283. package/vue3/src/components/form/select/src/select.vue.d.ts +98 -10
  284. package/vue3/src/components/form/switch/index.d.ts +10 -2
  285. package/vue3/src/components/form/switch/src/props-define.d.ts +5 -1
  286. package/vue3/src/components/form/switch/src/switch.vue.d.ts +10 -2
  287. package/vue3/src/components/form/switch/src/use-switch.d.ts +1 -1
  288. package/vue3/src/components/form/timezone-picker/index.d.ts +1406 -0
  289. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +619 -0
  290. package/vue3/src/components/form/timezone-picker/src/hooks/use-timezone-data.d.ts +25 -0
  291. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +1407 -0
  292. package/vue3/src/components/form/transfer/transfer.vue.d.ts +2 -2
  293. package/vue3/src/components/form/video-upload/hooks/props-define.d.ts +11 -0
  294. package/vue3/src/components/form/video-upload/hooks/use-video-upload.d.ts +2 -0
  295. package/vue3/src/components/form/video-upload/video-upload.vue.d.ts +9 -0
  296. package/vue3/src/components/icons/icons/clock-two/index.d.ts +6 -0
  297. package/vue3/src/components/icons/icons/data-export-two/index.d.ts +6 -0
  298. package/vue3/src/components/icons/icons/error/index.d.ts +6 -0
  299. package/vue3/src/components/icons/icons/filter/index.d.ts +6 -0
  300. package/vue3/src/components/icons/icons/landscape/index.d.ts +6 -0
  301. package/vue3/src/components/icons/icons/portrait/index.d.ts +6 -0
  302. package/vue3/src/components/icons/icons/rocket/index.d.ts +6 -0
  303. package/vue3/src/components/icons/icons/statistics/index.d.ts +6 -0
  304. package/vue3/src/components/icons/icons/success/index.d.ts +6 -0
  305. package/vue3/src/components/icons/icons/tag/index.d.ts +6 -0
  306. package/vue3/src/components/icons/map.d.ts +10 -0
  307. package/vue3/src/components/image-cropper/index.d.ts +22 -0
  308. package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +52 -0
  309. package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +31 -0
  310. package/vue3/src/components/image-cropper/src/image-cropper-viewport/image-cropper-viewport.vue.d.ts +6 -0
  311. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-data.d.ts +9 -0
  312. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-elem.d.ts +8 -0
  313. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-options.d.ts +23 -0
  314. package/vue3/src/components/image-cropper/src/image-cropper-viewport/use-cropper-within.d.ts +8 -0
  315. package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +22 -0
  316. package/vue3/src/components/loading/index.d.ts +6 -6
  317. package/vue3/src/components/loading/src/loading.vue.d.ts +6 -6
  318. package/vue3/src/components/loading/src/props-define.d.ts +2 -2
  319. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +75 -45
  320. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +37 -21
  321. package/vue3/src/components/message-box/types.d.ts +27 -0
  322. package/vue3/src/components/pagination/pagination.vue.d.ts +1 -1
  323. package/vue3/src/components/popconfirm/index.d.ts +331 -2
  324. package/vue3/src/components/popconfirm/{popconfirm.vue.d.ts → src/popconfirm.vue.d.ts} +68 -46
  325. package/{vue2/src/components/popconfirm → vue3/src/components/popconfirm/src}/props-define.d.ts +13 -15
  326. package/vue3/src/components/popover/index.d.ts +50 -30
  327. package/vue3/src/components/popover/src/popover.vue.d.ts +18 -11
  328. package/vue3/src/components/popover/src/props-define.d.ts +12 -4
  329. package/vue3/src/components/popup/index.d.ts +696 -4
  330. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/popup-props.d.ts +68 -24
  331. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-append.d.ts +1 -1
  332. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-back.d.ts +1 -1
  333. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-config.d.ts +1 -1
  334. package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-draggable.d.ts +1 -1
  335. package/vue3/src/components/popup/src/hooks/use-popup-effect.d.ts +7 -0
  336. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-height.d.ts +6 -3
  337. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-position.d.ts +2 -2
  338. package/vue3/src/components/popup/src/hooks/use-popup-scroll.d.ts +149 -0
  339. package/vue3/src/components/popup/{hooks → src/hooks}/use-popup-visible.d.ts +1 -1
  340. package/{vue2/src/components/popup → vue3/src/components/popup/src}/hooks/use-popup-width.d.ts +3 -2
  341. package/vue3/src/components/popup/src/popup.vue.d.ts +402 -0
  342. package/vue3/src/components/resize-box/resize-box.vue.d.ts +2 -2
  343. package/vue3/src/components/scrollbar/index.d.ts +18 -2
  344. package/vue3/src/components/scrollbar/src/props-define.d.ts +13 -0
  345. package/vue3/src/components/scrollbar/src/scrollbar-track.vue.d.ts +2 -2
  346. package/vue3/src/components/scrollbar/src/scrollbar.vue.d.ts +7 -1
  347. package/vue3/src/components/slider/index.d.ts +1 -1
  348. package/vue3/src/components/slider/src/slider.vue.d.ts +1 -1
  349. package/vue3/src/components/swiper/hooks/swiper-props.d.ts +1 -1
  350. package/vue3/src/components/swiper/hooks/use-swiper-options.d.ts +393 -1
  351. package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +393 -1
  352. package/vue3/src/components/swiper/swiper.vue.d.ts +2 -2
  353. package/vue3/src/components/table/index.d.ts +8 -8
  354. package/vue3/src/components/table/src/components/table-fixed-shadow.vue.d.ts +2 -2
  355. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  356. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  357. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +5 -5
  358. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +9 -9
  359. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  360. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  361. package/vue3/src/components/table/src/table.vue.d.ts +1 -1
  362. package/vue3/src/components/tabs/index.d.ts +145 -0
  363. package/vue3/src/components/tabs/src/props-define.d.ts +86 -0
  364. package/vue3/src/components/tabs/src/tab-nav.vue.d.ts +2 -0
  365. package/vue3/src/components/tabs/src/tab-pane.vue.d.ts +35 -0
  366. package/vue3/src/components/tabs/src/tabs.vue.d.ts +48 -0
  367. package/vue3/src/components/tabs/src/types.d.ts +28 -0
  368. package/vue3/src/components/tag/index.d.ts +28 -28
  369. package/vue3/src/components/tag/src/props-define.d.ts +6 -6
  370. package/vue3/src/components/tag/src/tag.vue.d.ts +10 -10
  371. package/vue3/src/components/tooltip/index.d.ts +16 -16
  372. package/vue3/src/components/tooltip/src/props-define.d.ts +2 -2
  373. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +9 -82
  374. package/vue3/src/components/tooltip/src/use-tooltip.d.ts +2 -2
  375. package/vue3/src/components/zoom-container/hooks/use-zoom-drag.d.ts +1 -0
  376. package/vue3/src/config/index.d.ts +4 -0
  377. package/vue3/src/hooks/business/use-skin-color/index.d.ts +1 -0
  378. package/vue3/src/hooks/business/use-skin-color/types.d.ts +4 -0
  379. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +5 -0
  380. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +93 -19
  381. package/vue3/src/hooks/interactive/use-scroll/index.d.ts +8 -0
  382. package/vue3/src/hooks/pagination/use-scroll-pagintaion/index.d.ts +8 -0
  383. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +6 -0
  384. package/vue3/src/hooks/vue/use-vue/index.d.ts +0 -1
  385. package/vue3/src/lang/internal/en.json.d.ts +20 -1
  386. package/vue3/src/lang/internal/index.d.ts +19 -0
  387. package/vue3/src/lang/internal/ja.json.d.ts +20 -1
  388. package/vue3/src/lang/internal/ko.json.d.ts +20 -1
  389. package/vue3/src/lang/internal/ru.json.d.ts +20 -1
  390. package/vue3/src/lang/internal/zh-CN.json.d.ts +20 -1
  391. package/vue3/src/lang/internal/zh-TW.json.d.ts +20 -1
  392. package/vue3/src/plugins/cropperjs/index.d.ts +14 -0
  393. package/vue3/src/utils/string.d.ts +10 -0
  394. package/vue3/src/vue-utils/render-slot.d.ts +10 -0
  395. package/vue2/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
  396. package/vue2/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
  397. package/vue2/src/components/form/radio/src/use-radio-group.d.ts +0 -43
  398. package/vue2/src/components/form/radio/src/use-radio.d.ts +0 -53
  399. package/vue2/src/components/popper/hooks.d.ts +0 -7
  400. package/vue2/src/components/popper/index.d.ts +0 -4
  401. package/vue2/src/components/popper/popper-content.vue.d.ts +0 -19
  402. package/vue2/src/components/popper/popper-reference.vue.d.ts +0 -17
  403. package/vue2/src/components/popper/popper.vue.d.ts +0 -58
  404. package/vue2/src/components/popper/props-define.d.ts +0 -41
  405. package/vue2/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
  406. package/vue2/src/components/popup/popup.vue.d.ts +0 -225
  407. package/vue2/src/components/slot/index.d.ts +0 -6
  408. package/vue3/src/components/form/date-picker/src/hooks/use-date-input.d.ts +0 -16
  409. package/vue3/src/components/form/date-picker/src/utils/date-utils.d.ts +0 -34
  410. package/vue3/src/components/form/radio/src/use-radio-group.d.ts +0 -43
  411. package/vue3/src/components/form/radio/src/use-radio.d.ts +0 -53
  412. package/vue3/src/components/popper/hooks.d.ts +0 -7
  413. package/vue3/src/components/popper/index.d.ts +0 -4
  414. package/vue3/src/components/popper/popper-content.vue.d.ts +0 -19
  415. package/vue3/src/components/popper/popper-reference.vue.d.ts +0 -17
  416. package/vue3/src/components/popper/popper.vue.d.ts +0 -58
  417. package/vue3/src/components/popper/props-define.d.ts +0 -41
  418. package/vue3/src/components/popup/hooks/use-popup-scroll.d.ts +0 -9
  419. package/vue3/src/components/popup/popup.vue.d.ts +0 -225
  420. package/vue3/src/components/slot/index.d.ts +0 -6
  421. /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
  422. /package/vue2/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
  423. /package/vue2/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
  424. /package/vue2/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
  425. /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
  426. /package/vue3/src/components/dropdown/{dropdown-item.vue.d.ts → src/dropdown-item.vue.d.ts} +0 -0
  427. /package/vue3/src/components/dropdown/{dropdown-menu.vue.d.ts → src/dropdown-menu.vue.d.ts} +0 -0
  428. /package/vue3/src/components/popup/{types.d.ts → src/types.d.ts} +0 -0
@@ -24,7 +24,7 @@ export declare const useSwiperOptions: (options: {
24
24
  initialSlide: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
25
25
  default: number;
26
26
  };
27
- direction: import('vue-types').VueTypeDef<"horizontal" | "vertical">;
27
+ direction: import('vue-types').VueTypeDef<"vertical" | "horizontal">;
28
28
  loop: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
29
29
  default: boolean;
30
30
  };
@@ -277,6 +277,13 @@ export declare const useSwiperOptions: (options: {
277
277
  trimLeft: () => string;
278
278
  trimRight: () => string;
279
279
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
280
+ replaceAll: {
281
+ (searchValue: string | RegExp, replaceValue: string): string;
282
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
283
+ };
284
+ at: (index: number) => string | undefined;
285
+ isWellFormed: () => boolean;
286
+ toWellFormed: () => string;
280
287
  [Symbol.iterator]: () => StringIterator<string>;
281
288
  } | null | undefined;
282
289
  preventClicks?: boolean | undefined;
@@ -381,6 +388,13 @@ export declare const useSwiperOptions: (options: {
381
388
  trimLeft: () => string;
382
389
  trimRight: () => string;
383
390
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
391
+ replaceAll: {
392
+ (searchValue: string | RegExp, replaceValue: string): string;
393
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
394
+ };
395
+ at: (index: number) => string | undefined;
396
+ isWellFormed: () => boolean;
397
+ toWellFormed: () => string;
384
398
  [Symbol.iterator]: () => StringIterator<string>;
385
399
  } | "window" | undefined;
386
400
  observer?: boolean | undefined;
@@ -935,6 +949,13 @@ export declare const useSwiperOptions: (options: {
935
949
  trimLeft: () => string;
936
950
  trimRight: () => string;
937
951
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
952
+ replaceAll: {
953
+ (searchValue: string | RegExp, replaceValue: string): string;
954
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
955
+ };
956
+ at: (index: number) => string | undefined;
957
+ isWellFormed: () => boolean;
958
+ toWellFormed: () => string;
938
959
  [Symbol.iterator]: () => StringIterator<string>;
939
960
  } | "wrapper" | undefined;
940
961
  thresholdDelta?: number | null | undefined;
@@ -1032,6 +1053,13 @@ export declare const useSwiperOptions: (options: {
1032
1053
  trimLeft: () => string;
1033
1054
  trimRight: () => string;
1034
1055
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1056
+ replaceAll: {
1057
+ (searchValue: string | RegExp, replaceValue: string): string;
1058
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1059
+ };
1060
+ at: (index: number) => string | undefined;
1061
+ isWellFormed: () => boolean;
1062
+ toWellFormed: () => string;
1035
1063
  [Symbol.iterator]: () => StringIterator<string>;
1036
1064
  } | null | undefined;
1037
1065
  prevEl?: HTMLElement | {
@@ -1123,6 +1151,13 @@ export declare const useSwiperOptions: (options: {
1123
1151
  trimLeft: () => string;
1124
1152
  trimRight: () => string;
1125
1153
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1154
+ replaceAll: {
1155
+ (searchValue: string | RegExp, replaceValue: string): string;
1156
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1157
+ };
1158
+ at: (index: number) => string | undefined;
1159
+ isWellFormed: () => boolean;
1160
+ toWellFormed: () => string;
1126
1161
  [Symbol.iterator]: () => StringIterator<string>;
1127
1162
  } | null | undefined;
1128
1163
  addIcons?: boolean | undefined;
@@ -1223,6 +1258,13 @@ export declare const useSwiperOptions: (options: {
1223
1258
  trimLeft: () => string;
1224
1259
  trimRight: () => string;
1225
1260
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1261
+ replaceAll: {
1262
+ (searchValue: string | RegExp, replaceValue: string): string;
1263
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1264
+ };
1265
+ at: (index: number) => string | undefined;
1266
+ isWellFormed: () => boolean;
1267
+ toWellFormed: () => string;
1226
1268
  [Symbol.iterator]: () => StringIterator<string>;
1227
1269
  } | null | undefined;
1228
1270
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -1346,6 +1388,13 @@ export declare const useSwiperOptions: (options: {
1346
1388
  trimLeft: () => string;
1347
1389
  trimRight: () => string;
1348
1390
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1391
+ replaceAll: {
1392
+ (searchValue: string | RegExp, replaceValue: string): string;
1393
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1394
+ };
1395
+ at: (index: number) => string | undefined;
1396
+ isWellFormed: () => boolean;
1397
+ toWellFormed: () => string;
1349
1398
  [Symbol.iterator]: () => StringIterator<string>;
1350
1399
  } | null | undefined;
1351
1400
  hide?: boolean | undefined;
@@ -1823,6 +1872,13 @@ export declare const useSwiperOptions: (options: {
1823
1872
  trimLeft: () => string;
1824
1873
  trimRight: () => string;
1825
1874
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1875
+ replaceAll: {
1876
+ (searchValue: string | RegExp, replaceValue: string): string;
1877
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1878
+ };
1879
+ at: (index: number) => string | undefined;
1880
+ isWellFormed: () => boolean;
1881
+ toWellFormed: () => string;
1826
1882
  [Symbol.iterator]: () => StringIterator<string>;
1827
1883
  } | null | undefined;
1828
1884
  preventClicks?: boolean | undefined;
@@ -1927,6 +1983,13 @@ export declare const useSwiperOptions: (options: {
1927
1983
  trimLeft: () => string;
1928
1984
  trimRight: () => string;
1929
1985
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
1986
+ replaceAll: {
1987
+ (searchValue: string | RegExp, replaceValue: string): string;
1988
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1989
+ };
1990
+ at: (index: number) => string | undefined;
1991
+ isWellFormed: () => boolean;
1992
+ toWellFormed: () => string;
1930
1993
  [Symbol.iterator]: () => StringIterator<string>;
1931
1994
  } | "window" | undefined;
1932
1995
  observer?: boolean | undefined;
@@ -2218,6 +2281,13 @@ export declare const useSwiperOptions: (options: {
2218
2281
  trimLeft: () => string;
2219
2282
  trimRight: () => string;
2220
2283
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2284
+ replaceAll: {
2285
+ (searchValue: string | RegExp, replaceValue: string): string;
2286
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2287
+ };
2288
+ at: (index: number) => string | undefined;
2289
+ isWellFormed: () => boolean;
2290
+ toWellFormed: () => string;
2221
2291
  [Symbol.iterator]: () => StringIterator<string>;
2222
2292
  } | null | undefined;
2223
2293
  preventClicks?: boolean | undefined;
@@ -2322,6 +2392,13 @@ export declare const useSwiperOptions: (options: {
2322
2392
  trimLeft: () => string;
2323
2393
  trimRight: () => string;
2324
2394
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2395
+ replaceAll: {
2396
+ (searchValue: string | RegExp, replaceValue: string): string;
2397
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2398
+ };
2399
+ at: (index: number) => string | undefined;
2400
+ isWellFormed: () => boolean;
2401
+ toWellFormed: () => string;
2325
2402
  [Symbol.iterator]: () => StringIterator<string>;
2326
2403
  } | "window" | undefined;
2327
2404
  observer?: boolean | undefined;
@@ -2526,6 +2603,13 @@ export declare const useSwiperOptions: (options: {
2526
2603
  trimLeft: () => string;
2527
2604
  trimRight: () => string;
2528
2605
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2606
+ replaceAll: {
2607
+ (searchValue: string | RegExp, replaceValue: string): string;
2608
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2609
+ };
2610
+ at: (index: number) => string | undefined;
2611
+ isWellFormed: () => boolean;
2612
+ toWellFormed: () => string;
2529
2613
  [Symbol.iterator]: () => StringIterator<string>;
2530
2614
  } | "wrapper" | undefined;
2531
2615
  thresholdDelta?: number | null | undefined;
@@ -2623,6 +2707,13 @@ export declare const useSwiperOptions: (options: {
2623
2707
  trimLeft: () => string;
2624
2708
  trimRight: () => string;
2625
2709
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2710
+ replaceAll: {
2711
+ (searchValue: string | RegExp, replaceValue: string): string;
2712
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2713
+ };
2714
+ at: (index: number) => string | undefined;
2715
+ isWellFormed: () => boolean;
2716
+ toWellFormed: () => string;
2626
2717
  [Symbol.iterator]: () => StringIterator<string>;
2627
2718
  } | null | undefined;
2628
2719
  prevEl?: HTMLElement | {
@@ -2714,6 +2805,13 @@ export declare const useSwiperOptions: (options: {
2714
2805
  trimLeft: () => string;
2715
2806
  trimRight: () => string;
2716
2807
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2808
+ replaceAll: {
2809
+ (searchValue: string | RegExp, replaceValue: string): string;
2810
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2811
+ };
2812
+ at: (index: number) => string | undefined;
2813
+ isWellFormed: () => boolean;
2814
+ toWellFormed: () => string;
2717
2815
  [Symbol.iterator]: () => StringIterator<string>;
2718
2816
  } | null | undefined;
2719
2817
  addIcons?: boolean | undefined;
@@ -2814,6 +2912,13 @@ export declare const useSwiperOptions: (options: {
2814
2912
  trimLeft: () => string;
2815
2913
  trimRight: () => string;
2816
2914
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
2915
+ replaceAll: {
2916
+ (searchValue: string | RegExp, replaceValue: string): string;
2917
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2918
+ };
2919
+ at: (index: number) => string | undefined;
2920
+ isWellFormed: () => boolean;
2921
+ toWellFormed: () => string;
2817
2922
  [Symbol.iterator]: () => StringIterator<string>;
2818
2923
  } | null | undefined;
2819
2924
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -2937,6 +3042,13 @@ export declare const useSwiperOptions: (options: {
2937
3042
  trimLeft: () => string;
2938
3043
  trimRight: () => string;
2939
3044
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3045
+ replaceAll: {
3046
+ (searchValue: string | RegExp, replaceValue: string): string;
3047
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3048
+ };
3049
+ at: (index: number) => string | undefined;
3050
+ isWellFormed: () => boolean;
3051
+ toWellFormed: () => string;
2940
3052
  [Symbol.iterator]: () => StringIterator<string>;
2941
3053
  } | null | undefined;
2942
3054
  hide?: boolean | undefined;
@@ -3239,6 +3351,13 @@ export declare const useSwiperOptions: (options: {
3239
3351
  trimLeft: () => string;
3240
3352
  trimRight: () => string;
3241
3353
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3354
+ replaceAll: {
3355
+ (searchValue: string | RegExp, replaceValue: string): string;
3356
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3357
+ };
3358
+ at: (index: number) => string | undefined;
3359
+ isWellFormed: () => boolean;
3360
+ toWellFormed: () => string;
3242
3361
  [Symbol.iterator]: () => StringIterator<string>;
3243
3362
  } | null | undefined;
3244
3363
  preventClicks?: boolean | undefined;
@@ -3343,6 +3462,13 @@ export declare const useSwiperOptions: (options: {
3343
3462
  trimLeft: () => string;
3344
3463
  trimRight: () => string;
3345
3464
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3465
+ replaceAll: {
3466
+ (searchValue: string | RegExp, replaceValue: string): string;
3467
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3468
+ };
3469
+ at: (index: number) => string | undefined;
3470
+ isWellFormed: () => boolean;
3471
+ toWellFormed: () => string;
3346
3472
  [Symbol.iterator]: () => StringIterator<string>;
3347
3473
  } | "window" | undefined;
3348
3474
  observer?: boolean | undefined;
@@ -3547,6 +3673,13 @@ export declare const useSwiperOptions: (options: {
3547
3673
  trimLeft: () => string;
3548
3674
  trimRight: () => string;
3549
3675
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3676
+ replaceAll: {
3677
+ (searchValue: string | RegExp, replaceValue: string): string;
3678
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3679
+ };
3680
+ at: (index: number) => string | undefined;
3681
+ isWellFormed: () => boolean;
3682
+ toWellFormed: () => string;
3550
3683
  [Symbol.iterator]: () => StringIterator<string>;
3551
3684
  } | "wrapper" | undefined;
3552
3685
  thresholdDelta?: number | null | undefined;
@@ -3644,6 +3777,13 @@ export declare const useSwiperOptions: (options: {
3644
3777
  trimLeft: () => string;
3645
3778
  trimRight: () => string;
3646
3779
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3780
+ replaceAll: {
3781
+ (searchValue: string | RegExp, replaceValue: string): string;
3782
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3783
+ };
3784
+ at: (index: number) => string | undefined;
3785
+ isWellFormed: () => boolean;
3786
+ toWellFormed: () => string;
3647
3787
  [Symbol.iterator]: () => StringIterator<string>;
3648
3788
  } | null | undefined;
3649
3789
  prevEl?: HTMLElement | {
@@ -3735,6 +3875,13 @@ export declare const useSwiperOptions: (options: {
3735
3875
  trimLeft: () => string;
3736
3876
  trimRight: () => string;
3737
3877
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3878
+ replaceAll: {
3879
+ (searchValue: string | RegExp, replaceValue: string): string;
3880
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3881
+ };
3882
+ at: (index: number) => string | undefined;
3883
+ isWellFormed: () => boolean;
3884
+ toWellFormed: () => string;
3738
3885
  [Symbol.iterator]: () => StringIterator<string>;
3739
3886
  } | null | undefined;
3740
3887
  addIcons?: boolean | undefined;
@@ -3835,6 +3982,13 @@ export declare const useSwiperOptions: (options: {
3835
3982
  trimLeft: () => string;
3836
3983
  trimRight: () => string;
3837
3984
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
3985
+ replaceAll: {
3986
+ (searchValue: string | RegExp, replaceValue: string): string;
3987
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
3988
+ };
3989
+ at: (index: number) => string | undefined;
3990
+ isWellFormed: () => boolean;
3991
+ toWellFormed: () => string;
3838
3992
  [Symbol.iterator]: () => StringIterator<string>;
3839
3993
  } | null | undefined;
3840
3994
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -3958,6 +4112,13 @@ export declare const useSwiperOptions: (options: {
3958
4112
  trimLeft: () => string;
3959
4113
  trimRight: () => string;
3960
4114
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
4115
+ replaceAll: {
4116
+ (searchValue: string | RegExp, replaceValue: string): string;
4117
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
4118
+ };
4119
+ at: (index: number) => string | undefined;
4120
+ isWellFormed: () => boolean;
4121
+ toWellFormed: () => string;
3961
4122
  [Symbol.iterator]: () => StringIterator<string>;
3962
4123
  } | null | undefined;
3963
4124
  hide?: boolean | undefined;
@@ -4431,6 +4592,13 @@ export declare const useSwiperOptions: (options: {
4431
4592
  trimLeft: () => string;
4432
4593
  trimRight: () => string;
4433
4594
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
4595
+ replaceAll: {
4596
+ (searchValue: string | RegExp, replaceValue: string): string;
4597
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
4598
+ };
4599
+ at: (index: number) => string | undefined;
4600
+ isWellFormed: () => boolean;
4601
+ toWellFormed: () => string;
4434
4602
  [Symbol.iterator]: () => StringIterator<string>;
4435
4603
  } | null | undefined;
4436
4604
  preventClicks?: boolean | undefined;
@@ -4535,6 +4703,13 @@ export declare const useSwiperOptions: (options: {
4535
4703
  trimLeft: () => string;
4536
4704
  trimRight: () => string;
4537
4705
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
4706
+ replaceAll: {
4707
+ (searchValue: string | RegExp, replaceValue: string): string;
4708
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
4709
+ };
4710
+ at: (index: number) => string | undefined;
4711
+ isWellFormed: () => boolean;
4712
+ toWellFormed: () => string;
4538
4713
  [Symbol.iterator]: () => StringIterator<string>;
4539
4714
  } | "window" | undefined;
4540
4715
  observer?: boolean | undefined;
@@ -4739,6 +4914,13 @@ export declare const useSwiperOptions: (options: {
4739
4914
  trimLeft: () => string;
4740
4915
  trimRight: () => string;
4741
4916
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
4917
+ replaceAll: {
4918
+ (searchValue: string | RegExp, replaceValue: string): string;
4919
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
4920
+ };
4921
+ at: (index: number) => string | undefined;
4922
+ isWellFormed: () => boolean;
4923
+ toWellFormed: () => string;
4742
4924
  [Symbol.iterator]: () => StringIterator<string>;
4743
4925
  } | "wrapper" | undefined;
4744
4926
  thresholdDelta?: number | null | undefined;
@@ -4836,6 +5018,13 @@ export declare const useSwiperOptions: (options: {
4836
5018
  trimLeft: () => string;
4837
5019
  trimRight: () => string;
4838
5020
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5021
+ replaceAll: {
5022
+ (searchValue: string | RegExp, replaceValue: string): string;
5023
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5024
+ };
5025
+ at: (index: number) => string | undefined;
5026
+ isWellFormed: () => boolean;
5027
+ toWellFormed: () => string;
4839
5028
  [Symbol.iterator]: () => StringIterator<string>;
4840
5029
  } | null | undefined;
4841
5030
  prevEl?: HTMLElement | {
@@ -4927,6 +5116,13 @@ export declare const useSwiperOptions: (options: {
4927
5116
  trimLeft: () => string;
4928
5117
  trimRight: () => string;
4929
5118
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5119
+ replaceAll: {
5120
+ (searchValue: string | RegExp, replaceValue: string): string;
5121
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5122
+ };
5123
+ at: (index: number) => string | undefined;
5124
+ isWellFormed: () => boolean;
5125
+ toWellFormed: () => string;
4930
5126
  [Symbol.iterator]: () => StringIterator<string>;
4931
5127
  } | null | undefined;
4932
5128
  addIcons?: boolean | undefined;
@@ -5027,6 +5223,13 @@ export declare const useSwiperOptions: (options: {
5027
5223
  trimLeft: () => string;
5028
5224
  trimRight: () => string;
5029
5225
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5226
+ replaceAll: {
5227
+ (searchValue: string | RegExp, replaceValue: string): string;
5228
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5229
+ };
5230
+ at: (index: number) => string | undefined;
5231
+ isWellFormed: () => boolean;
5232
+ toWellFormed: () => string;
5030
5233
  [Symbol.iterator]: () => StringIterator<string>;
5031
5234
  } | null | undefined;
5032
5235
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -5150,6 +5353,13 @@ export declare const useSwiperOptions: (options: {
5150
5353
  trimLeft: () => string;
5151
5354
  trimRight: () => string;
5152
5355
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5356
+ replaceAll: {
5357
+ (searchValue: string | RegExp, replaceValue: string): string;
5358
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5359
+ };
5360
+ at: (index: number) => string | undefined;
5361
+ isWellFormed: () => boolean;
5362
+ toWellFormed: () => string;
5153
5363
  [Symbol.iterator]: () => StringIterator<string>;
5154
5364
  } | null | undefined;
5155
5365
  hide?: boolean | undefined;
@@ -5452,6 +5662,13 @@ export declare const useSwiperOptions: (options: {
5452
5662
  trimLeft: () => string;
5453
5663
  trimRight: () => string;
5454
5664
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5665
+ replaceAll: {
5666
+ (searchValue: string | RegExp, replaceValue: string): string;
5667
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5668
+ };
5669
+ at: (index: number) => string | undefined;
5670
+ isWellFormed: () => boolean;
5671
+ toWellFormed: () => string;
5455
5672
  [Symbol.iterator]: () => StringIterator<string>;
5456
5673
  } | null | undefined;
5457
5674
  preventClicks?: boolean | undefined;
@@ -5556,6 +5773,13 @@ export declare const useSwiperOptions: (options: {
5556
5773
  trimLeft: () => string;
5557
5774
  trimRight: () => string;
5558
5775
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5776
+ replaceAll: {
5777
+ (searchValue: string | RegExp, replaceValue: string): string;
5778
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5779
+ };
5780
+ at: (index: number) => string | undefined;
5781
+ isWellFormed: () => boolean;
5782
+ toWellFormed: () => string;
5559
5783
  [Symbol.iterator]: () => StringIterator<string>;
5560
5784
  } | "window" | undefined;
5561
5785
  observer?: boolean | undefined;
@@ -5760,6 +5984,13 @@ export declare const useSwiperOptions: (options: {
5760
5984
  trimLeft: () => string;
5761
5985
  trimRight: () => string;
5762
5986
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
5987
+ replaceAll: {
5988
+ (searchValue: string | RegExp, replaceValue: string): string;
5989
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
5990
+ };
5991
+ at: (index: number) => string | undefined;
5992
+ isWellFormed: () => boolean;
5993
+ toWellFormed: () => string;
5763
5994
  [Symbol.iterator]: () => StringIterator<string>;
5764
5995
  } | "wrapper" | undefined;
5765
5996
  thresholdDelta?: number | null | undefined;
@@ -5857,6 +6088,13 @@ export declare const useSwiperOptions: (options: {
5857
6088
  trimLeft: () => string;
5858
6089
  trimRight: () => string;
5859
6090
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6091
+ replaceAll: {
6092
+ (searchValue: string | RegExp, replaceValue: string): string;
6093
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6094
+ };
6095
+ at: (index: number) => string | undefined;
6096
+ isWellFormed: () => boolean;
6097
+ toWellFormed: () => string;
5860
6098
  [Symbol.iterator]: () => StringIterator<string>;
5861
6099
  } | null | undefined;
5862
6100
  prevEl?: HTMLElement | {
@@ -5948,6 +6186,13 @@ export declare const useSwiperOptions: (options: {
5948
6186
  trimLeft: () => string;
5949
6187
  trimRight: () => string;
5950
6188
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6189
+ replaceAll: {
6190
+ (searchValue: string | RegExp, replaceValue: string): string;
6191
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6192
+ };
6193
+ at: (index: number) => string | undefined;
6194
+ isWellFormed: () => boolean;
6195
+ toWellFormed: () => string;
5951
6196
  [Symbol.iterator]: () => StringIterator<string>;
5952
6197
  } | null | undefined;
5953
6198
  addIcons?: boolean | undefined;
@@ -6048,6 +6293,13 @@ export declare const useSwiperOptions: (options: {
6048
6293
  trimLeft: () => string;
6049
6294
  trimRight: () => string;
6050
6295
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6296
+ replaceAll: {
6297
+ (searchValue: string | RegExp, replaceValue: string): string;
6298
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6299
+ };
6300
+ at: (index: number) => string | undefined;
6301
+ isWellFormed: () => boolean;
6302
+ toWellFormed: () => string;
6051
6303
  [Symbol.iterator]: () => StringIterator<string>;
6052
6304
  } | null | undefined;
6053
6305
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -6171,6 +6423,13 @@ export declare const useSwiperOptions: (options: {
6171
6423
  trimLeft: () => string;
6172
6424
  trimRight: () => string;
6173
6425
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6426
+ replaceAll: {
6427
+ (searchValue: string | RegExp, replaceValue: string): string;
6428
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6429
+ };
6430
+ at: (index: number) => string | undefined;
6431
+ isWellFormed: () => boolean;
6432
+ toWellFormed: () => string;
6174
6433
  [Symbol.iterator]: () => StringIterator<string>;
6175
6434
  } | null | undefined;
6176
6435
  hide?: boolean | undefined;
@@ -6561,6 +6820,13 @@ export declare const useSwiperOptions: (options: {
6561
6820
  trimLeft: () => string;
6562
6821
  trimRight: () => string;
6563
6822
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6823
+ replaceAll: {
6824
+ (searchValue: string | RegExp, replaceValue: string): string;
6825
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6826
+ };
6827
+ at: (index: number) => string | undefined;
6828
+ isWellFormed: () => boolean;
6829
+ toWellFormed: () => string;
6564
6830
  [Symbol.iterator]: () => StringIterator<string>;
6565
6831
  } | "wrapper" | undefined;
6566
6832
  thresholdDelta?: number | null | undefined;
@@ -6658,6 +6924,13 @@ export declare const useSwiperOptions: (options: {
6658
6924
  trimLeft: () => string;
6659
6925
  trimRight: () => string;
6660
6926
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
6927
+ replaceAll: {
6928
+ (searchValue: string | RegExp, replaceValue: string): string;
6929
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
6930
+ };
6931
+ at: (index: number) => string | undefined;
6932
+ isWellFormed: () => boolean;
6933
+ toWellFormed: () => string;
6661
6934
  [Symbol.iterator]: () => StringIterator<string>;
6662
6935
  } | null | undefined;
6663
6936
  prevEl?: HTMLElement | {
@@ -6749,6 +7022,13 @@ export declare const useSwiperOptions: (options: {
6749
7022
  trimLeft: () => string;
6750
7023
  trimRight: () => string;
6751
7024
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7025
+ replaceAll: {
7026
+ (searchValue: string | RegExp, replaceValue: string): string;
7027
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7028
+ };
7029
+ at: (index: number) => string | undefined;
7030
+ isWellFormed: () => boolean;
7031
+ toWellFormed: () => string;
6752
7032
  [Symbol.iterator]: () => StringIterator<string>;
6753
7033
  } | null | undefined;
6754
7034
  addIcons?: boolean | undefined;
@@ -6849,6 +7129,13 @@ export declare const useSwiperOptions: (options: {
6849
7129
  trimLeft: () => string;
6850
7130
  trimRight: () => string;
6851
7131
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7132
+ replaceAll: {
7133
+ (searchValue: string | RegExp, replaceValue: string): string;
7134
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7135
+ };
7136
+ at: (index: number) => string | undefined;
7137
+ isWellFormed: () => boolean;
7138
+ toWellFormed: () => string;
6852
7139
  [Symbol.iterator]: () => StringIterator<string>;
6853
7140
  } | null | undefined;
6854
7141
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -6972,6 +7259,13 @@ export declare const useSwiperOptions: (options: {
6972
7259
  trimLeft: () => string;
6973
7260
  trimRight: () => string;
6974
7261
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7262
+ replaceAll: {
7263
+ (searchValue: string | RegExp, replaceValue: string): string;
7264
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7265
+ };
7266
+ at: (index: number) => string | undefined;
7267
+ isWellFormed: () => boolean;
7268
+ toWellFormed: () => string;
6975
7269
  [Symbol.iterator]: () => StringIterator<string>;
6976
7270
  } | null | undefined;
6977
7271
  hide?: boolean | undefined;
@@ -7233,6 +7527,13 @@ export declare const useSwiperOptions: (options: {
7233
7527
  trimLeft: () => string;
7234
7528
  trimRight: () => string;
7235
7529
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7530
+ replaceAll: {
7531
+ (searchValue: string | RegExp, replaceValue: string): string;
7532
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7533
+ };
7534
+ at: (index: number) => string | undefined;
7535
+ isWellFormed: () => boolean;
7536
+ toWellFormed: () => string;
7236
7537
  [Symbol.iterator]: () => StringIterator<string>;
7237
7538
  } | null | undefined;
7238
7539
  preventClicks?: boolean | undefined;
@@ -7337,6 +7638,13 @@ export declare const useSwiperOptions: (options: {
7337
7638
  trimLeft: () => string;
7338
7639
  trimRight: () => string;
7339
7640
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7641
+ replaceAll: {
7642
+ (searchValue: string | RegExp, replaceValue: string): string;
7643
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7644
+ };
7645
+ at: (index: number) => string | undefined;
7646
+ isWellFormed: () => boolean;
7647
+ toWellFormed: () => string;
7340
7648
  [Symbol.iterator]: () => StringIterator<string>;
7341
7649
  } | "window" | undefined;
7342
7650
  observer?: boolean | undefined;
@@ -7545,6 +7853,13 @@ export declare const useSwiperOptions: (options: {
7545
7853
  trimLeft: () => string;
7546
7854
  trimRight: () => string;
7547
7855
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7856
+ replaceAll: {
7857
+ (searchValue: string | RegExp, replaceValue: string): string;
7858
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7859
+ };
7860
+ at: (index: number) => string | undefined;
7861
+ isWellFormed: () => boolean;
7862
+ toWellFormed: () => string;
7548
7863
  [Symbol.iterator]: () => StringIterator<string>;
7549
7864
  } | "wrapper" | undefined;
7550
7865
  thresholdDelta?: number | null | undefined;
@@ -7642,6 +7957,13 @@ export declare const useSwiperOptions: (options: {
7642
7957
  trimLeft: () => string;
7643
7958
  trimRight: () => string;
7644
7959
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
7960
+ replaceAll: {
7961
+ (searchValue: string | RegExp, replaceValue: string): string;
7962
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
7963
+ };
7964
+ at: (index: number) => string | undefined;
7965
+ isWellFormed: () => boolean;
7966
+ toWellFormed: () => string;
7645
7967
  [Symbol.iterator]: () => StringIterator<string>;
7646
7968
  } | null | undefined;
7647
7969
  prevEl?: HTMLElement | {
@@ -7733,6 +8055,13 @@ export declare const useSwiperOptions: (options: {
7733
8055
  trimLeft: () => string;
7734
8056
  trimRight: () => string;
7735
8057
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8058
+ replaceAll: {
8059
+ (searchValue: string | RegExp, replaceValue: string): string;
8060
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8061
+ };
8062
+ at: (index: number) => string | undefined;
8063
+ isWellFormed: () => boolean;
8064
+ toWellFormed: () => string;
7736
8065
  [Symbol.iterator]: () => StringIterator<string>;
7737
8066
  } | null | undefined;
7738
8067
  addIcons?: boolean | undefined;
@@ -7833,6 +8162,13 @@ export declare const useSwiperOptions: (options: {
7833
8162
  trimLeft: () => string;
7834
8163
  trimRight: () => string;
7835
8164
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8165
+ replaceAll: {
8166
+ (searchValue: string | RegExp, replaceValue: string): string;
8167
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8168
+ };
8169
+ at: (index: number) => string | undefined;
8170
+ isWellFormed: () => boolean;
8171
+ toWellFormed: () => string;
7836
8172
  [Symbol.iterator]: () => StringIterator<string>;
7837
8173
  } | null | undefined;
7838
8174
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -7956,6 +8292,13 @@ export declare const useSwiperOptions: (options: {
7956
8292
  trimLeft: () => string;
7957
8293
  trimRight: () => string;
7958
8294
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8295
+ replaceAll: {
8296
+ (searchValue: string | RegExp, replaceValue: string): string;
8297
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8298
+ };
8299
+ at: (index: number) => string | undefined;
8300
+ isWellFormed: () => boolean;
8301
+ toWellFormed: () => string;
7959
8302
  [Symbol.iterator]: () => StringIterator<string>;
7960
8303
  } | null | undefined;
7961
8304
  hide?: boolean | undefined;
@@ -8252,6 +8595,13 @@ export declare const useSwiperOptions: (options: {
8252
8595
  trimLeft: () => string;
8253
8596
  trimRight: () => string;
8254
8597
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8598
+ replaceAll: {
8599
+ (searchValue: string | RegExp, replaceValue: string): string;
8600
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8601
+ };
8602
+ at: (index: number) => string | undefined;
8603
+ isWellFormed: () => boolean;
8604
+ toWellFormed: () => string;
8255
8605
  [Symbol.iterator]: () => StringIterator<string>;
8256
8606
  } | null | undefined;
8257
8607
  preventClicks?: boolean | undefined;
@@ -8356,6 +8706,13 @@ export declare const useSwiperOptions: (options: {
8356
8706
  trimLeft: () => string;
8357
8707
  trimRight: () => string;
8358
8708
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8709
+ replaceAll: {
8710
+ (searchValue: string | RegExp, replaceValue: string): string;
8711
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8712
+ };
8713
+ at: (index: number) => string | undefined;
8714
+ isWellFormed: () => boolean;
8715
+ toWellFormed: () => string;
8359
8716
  [Symbol.iterator]: () => StringIterator<string>;
8360
8717
  } | "window" | undefined;
8361
8718
  observer?: boolean | undefined;
@@ -8564,6 +8921,13 @@ export declare const useSwiperOptions: (options: {
8564
8921
  trimLeft: () => string;
8565
8922
  trimRight: () => string;
8566
8923
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
8924
+ replaceAll: {
8925
+ (searchValue: string | RegExp, replaceValue: string): string;
8926
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
8927
+ };
8928
+ at: (index: number) => string | undefined;
8929
+ isWellFormed: () => boolean;
8930
+ toWellFormed: () => string;
8567
8931
  [Symbol.iterator]: () => StringIterator<string>;
8568
8932
  } | "wrapper" | undefined;
8569
8933
  thresholdDelta?: number | null | undefined;
@@ -8661,6 +9025,13 @@ export declare const useSwiperOptions: (options: {
8661
9025
  trimLeft: () => string;
8662
9026
  trimRight: () => string;
8663
9027
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
9028
+ replaceAll: {
9029
+ (searchValue: string | RegExp, replaceValue: string): string;
9030
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
9031
+ };
9032
+ at: (index: number) => string | undefined;
9033
+ isWellFormed: () => boolean;
9034
+ toWellFormed: () => string;
8664
9035
  [Symbol.iterator]: () => StringIterator<string>;
8665
9036
  } | null | undefined;
8666
9037
  prevEl?: HTMLElement | {
@@ -8752,6 +9123,13 @@ export declare const useSwiperOptions: (options: {
8752
9123
  trimLeft: () => string;
8753
9124
  trimRight: () => string;
8754
9125
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
9126
+ replaceAll: {
9127
+ (searchValue: string | RegExp, replaceValue: string): string;
9128
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
9129
+ };
9130
+ at: (index: number) => string | undefined;
9131
+ isWellFormed: () => boolean;
9132
+ toWellFormed: () => string;
8755
9133
  [Symbol.iterator]: () => StringIterator<string>;
8756
9134
  } | null | undefined;
8757
9135
  addIcons?: boolean | undefined;
@@ -8852,6 +9230,13 @@ export declare const useSwiperOptions: (options: {
8852
9230
  trimLeft: () => string;
8853
9231
  trimRight: () => string;
8854
9232
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
9233
+ replaceAll: {
9234
+ (searchValue: string | RegExp, replaceValue: string): string;
9235
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
9236
+ };
9237
+ at: (index: number) => string | undefined;
9238
+ isWellFormed: () => boolean;
9239
+ toWellFormed: () => string;
8855
9240
  [Symbol.iterator]: () => StringIterator<string>;
8856
9241
  } | null | undefined;
8857
9242
  type?: "bullets" | "fraction" | "progressbar" | "custom" | undefined;
@@ -8975,6 +9360,13 @@ export declare const useSwiperOptions: (options: {
8975
9360
  trimLeft: () => string;
8976
9361
  trimRight: () => string;
8977
9362
  matchAll: (regexp: RegExp) => RegExpStringIterator<RegExpExecArray>;
9363
+ replaceAll: {
9364
+ (searchValue: string | RegExp, replaceValue: string): string;
9365
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
9366
+ };
9367
+ at: (index: number) => string | undefined;
9368
+ isWellFormed: () => boolean;
9369
+ toWellFormed: () => string;
8978
9370
  [Symbol.iterator]: () => StringIterator<string>;
8979
9371
  } | null | undefined;
8980
9372
  hide?: boolean | undefined;