@polyv/vue-components 1.6.1 → 1.8.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 -2
  2. package/styles/function.scss +4 -1
  3. package/styles/root/basic.scss +14 -7
  4. package/styles/root/border.scss +6 -0
  5. package/styles/skin-color.scss +37 -11
  6. package/styles/variables.scss +15 -1
  7. package/vue2/index.es.js +18218 -22763
  8. package/vue2/src/components/alert/index.d.ts +2 -0
  9. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  10. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  11. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  13. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  14. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  15. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  16. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  17. package/vue2/src/components/business/external-links/use-external-links.d.ts +116 -3
  18. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  19. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  20. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  21. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  22. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  23. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  24. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  25. package/vue2/src/components/button/index.d.ts +26 -0
  26. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  27. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  28. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  29. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  30. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  31. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  32. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  33. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  34. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  35. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  36. package/vue2/src/components/dropdown/index.d.ts +6 -0
  37. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  38. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  39. package/vue2/src/components/example/example.vue.d.ts +16 -1
  40. package/vue2/src/components/example/index.d.ts +75 -4
  41. package/vue2/src/components/exports.d.ts +26 -1
  42. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  43. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  44. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  45. package/vue2/src/components/form/file-upload/index.d.ts +469 -0
  46. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  47. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  48. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  49. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  50. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  51. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  52. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  53. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  54. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  55. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  56. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  57. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  58. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  59. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  60. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  61. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  62. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  63. package/vue2/src/components/form/form-item/index.d.ts +37 -32
  64. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  65. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  66. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  67. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  68. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  69. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  70. package/vue2/src/components/form/form-submit-button/index.d.ts +10 -1
  71. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  72. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  73. package/vue2/src/components/form/form-wrap/index.d.ts +32 -26
  74. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  75. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  76. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  77. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  78. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  79. package/vue2/src/components/form/input/index.d.ts +7 -0
  80. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  81. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  82. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  83. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  84. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  85. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  86. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  87. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  88. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  89. package/vue2/src/components/form/select/index.d.ts +100 -40
  90. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  91. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  92. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  93. package/vue2/src/components/form/timezone-picker/index.d.ts +133 -70
  94. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  95. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  96. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  97. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  98. package/vue2/src/components/form/types/index.d.ts +1 -1
  99. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  100. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  101. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  102. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  103. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  104. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  105. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  106. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  107. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  108. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  109. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  110. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  111. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  112. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  113. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  114. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  115. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  116. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  117. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  118. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  119. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  120. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  121. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  122. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  123. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  124. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  125. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  126. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  127. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  128. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  129. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  130. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  131. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  132. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  133. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  134. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  135. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  136. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  137. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  138. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  139. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  140. package/vue2/src/components/icons/map.d.ts +40 -0
  141. package/vue2/src/components/image/index.d.ts +150 -0
  142. package/vue2/src/components/image/src/events.d.ts +6 -0
  143. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  144. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  145. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  146. package/vue2/src/components/info-card/index.d.ts +181 -2
  147. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  148. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  149. package/vue2/src/components/menu/index.d.ts +195 -0
  150. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  151. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  152. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  153. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  154. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  155. package/vue2/src/components/menu/src/menu-item.vue.d.ts +24 -0
  156. package/vue2/src/components/menu/src/menu.vue.d.ts +55 -0
  157. package/vue2/src/components/menu/src/props-define.d.ts +140 -0
  158. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  159. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  160. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  161. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  162. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  163. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  164. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  165. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  166. package/vue2/src/components/popover/index.d.ts +20 -0
  167. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  168. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  169. package/vue2/src/components/popup/index.d.ts +13 -6
  170. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  171. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  172. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  173. package/vue2/src/components/popup/src/types.d.ts +3 -0
  174. package/vue2/src/components/section/index.d.ts +27 -0
  175. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  176. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  177. package/vue2/src/components/slider/index.d.ts +8 -1
  178. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  179. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  180. package/vue2/src/components/table/index.d.ts +84 -12
  181. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  182. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  183. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  184. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  185. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  186. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  187. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  188. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  189. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  190. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  191. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  192. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  193. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  194. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  195. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  196. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  197. package/vue2/src/components/tag/index.d.ts +14 -14
  198. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  199. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  200. package/vue2/src/components/tooltip/index.d.ts +20 -0
  201. package/vue2/src/components/tooltip/src/props-define.d.ts +13 -0
  202. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  203. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  204. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  205. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  206. package/vue2/src/hooks/exports.d.ts +1 -0
  207. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  208. package/vue2/src/lang/hook.d.ts +4 -0
  209. package/vue2/src/lang/internal/en.json.d.ts +33 -6
  210. package/vue2/src/lang/internal/index.d.ts +27 -0
  211. package/vue2/src/lang/internal/ja.json.d.ts +34 -7
  212. package/vue2/src/lang/internal/ko.json.d.ts +34 -7
  213. package/vue2/src/lang/internal/ru.json.d.ts +34 -7
  214. package/vue2/src/lang/internal/zh-CN.json.d.ts +32 -5
  215. package/vue2/src/lang/internal/zh-TW.json.d.ts +33 -6
  216. package/vue2/src/vue-utils/index.d.ts +1 -0
  217. package/vue3/index.es.js +18206 -22756
  218. package/vue3/src/components/alert/index.d.ts +2 -0
  219. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  220. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  221. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  222. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  223. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  224. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  225. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  226. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  227. package/vue3/src/components/business/external-links/use-external-links.d.ts +116 -3
  228. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  229. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  230. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  231. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  232. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  233. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  234. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +31 -0
  235. package/vue3/src/components/button/index.d.ts +26 -0
  236. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  237. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  238. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  239. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  240. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  241. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  242. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  243. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  244. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  245. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  246. package/vue3/src/components/dropdown/index.d.ts +6 -0
  247. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  248. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  249. package/vue3/src/components/example/example.vue.d.ts +16 -1
  250. package/vue3/src/components/example/index.d.ts +75 -4
  251. package/vue3/src/components/exports.d.ts +26 -1
  252. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  253. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  254. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  255. package/vue3/src/components/form/file-upload/index.d.ts +469 -0
  256. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +186 -0
  257. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +297 -0
  258. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  259. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  260. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  261. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  262. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  263. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  264. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  265. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  266. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  267. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  268. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  269. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  270. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  271. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  272. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  273. package/vue3/src/components/form/form-item/index.d.ts +37 -32
  274. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  275. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +17 -16
  276. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  277. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  278. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  279. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  280. package/vue3/src/components/form/form-submit-button/index.d.ts +10 -1
  281. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +10 -1
  282. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  283. package/vue3/src/components/form/form-wrap/index.d.ts +32 -26
  284. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +11 -9
  285. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +8 -4
  286. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  287. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  288. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  289. package/vue3/src/components/form/input/index.d.ts +7 -0
  290. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  291. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  292. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  293. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  294. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  295. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  296. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  297. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  298. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  299. package/vue3/src/components/form/select/index.d.ts +100 -40
  300. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  301. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  302. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  303. package/vue3/src/components/form/timezone-picker/index.d.ts +133 -70
  304. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +45 -18
  305. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +105 -42
  306. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  307. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  308. package/vue3/src/components/form/types/index.d.ts +1 -1
  309. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  310. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  311. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  312. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  313. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  314. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  315. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  316. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  317. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  318. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  319. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  320. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  321. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  322. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  323. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  324. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  325. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  326. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  327. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  328. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  329. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  330. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  331. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  332. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  333. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  334. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  335. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  336. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  337. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  338. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  339. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  340. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  341. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  342. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  343. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  344. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  345. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  346. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  347. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  348. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  349. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  350. package/vue3/src/components/icons/map.d.ts +40 -0
  351. package/vue3/src/components/image/index.d.ts +150 -0
  352. package/vue3/src/components/image/src/events.d.ts +6 -0
  353. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  354. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  355. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  356. package/vue3/src/components/info-card/index.d.ts +181 -2
  357. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  358. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  359. package/vue3/src/components/menu/index.d.ts +195 -0
  360. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  361. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  362. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +26 -0
  363. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  364. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  365. package/vue3/src/components/menu/src/menu-item.vue.d.ts +24 -0
  366. package/vue3/src/components/menu/src/menu.vue.d.ts +55 -0
  367. package/vue3/src/components/menu/src/props-define.d.ts +140 -0
  368. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  369. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +40 -0
  370. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +13 -1
  371. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +35 -25
  372. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  373. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  374. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  375. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  376. package/vue3/src/components/popover/index.d.ts +20 -0
  377. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  378. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  379. package/vue3/src/components/popup/index.d.ts +13 -6
  380. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  381. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  382. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  383. package/vue3/src/components/popup/src/types.d.ts +3 -0
  384. package/vue3/src/components/section/index.d.ts +27 -0
  385. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  386. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  387. package/vue3/src/components/slider/index.d.ts +8 -1
  388. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  389. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  390. package/vue3/src/components/table/index.d.ts +84 -12
  391. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  392. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  393. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  394. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  395. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  396. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  397. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  398. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  399. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  400. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  401. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  402. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  403. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  404. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  405. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  406. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  407. package/vue3/src/components/tag/index.d.ts +14 -14
  408. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  409. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  410. package/vue3/src/components/tooltip/index.d.ts +20 -0
  411. package/vue3/src/components/tooltip/src/props-define.d.ts +13 -0
  412. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  413. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  414. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  415. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  416. package/vue3/src/hooks/exports.d.ts +1 -0
  417. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  418. package/vue3/src/lang/hook.d.ts +4 -0
  419. package/vue3/src/lang/internal/en.json.d.ts +33 -6
  420. package/vue3/src/lang/internal/index.d.ts +27 -0
  421. package/vue3/src/lang/internal/ja.json.d.ts +34 -7
  422. package/vue3/src/lang/internal/ko.json.d.ts +34 -7
  423. package/vue3/src/lang/internal/ru.json.d.ts +34 -7
  424. package/vue3/src/lang/internal/zh-CN.json.d.ts +32 -5
  425. package/vue3/src/lang/internal/zh-TW.json.d.ts +33 -6
  426. package/vue3/src/vue-utils/index.d.ts +1 -0
  427. package/vue2/src/components/form/index.d.ts +0 -18
  428. package/vue3/src/components/form/index.d.ts +0 -18
@@ -4,8 +4,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
4
4
  default: boolean;
5
5
  };
6
6
  selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
7
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
8
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
7
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
8
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
9
9
  };
10
10
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
11
11
  default: string;
@@ -53,6 +53,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
53
53
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
54
54
  default: number;
55
55
  };
56
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
57
+ default: boolean;
58
+ };
56
59
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
57
60
  default: boolean;
58
61
  };
@@ -68,8 +71,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
68
71
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
69
72
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
70
73
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
71
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
72
- default: import('..').InputValueType;
74
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
75
+ default: import('../input').InputValueType;
73
76
  };
74
77
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
75
78
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -105,6 +108,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
105
108
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
106
109
  default: number;
107
110
  };
111
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
112
+ default: boolean;
113
+ };
108
114
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
109
115
  default: boolean;
110
116
  };
@@ -120,8 +126,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
120
126
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
121
127
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
122
128
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
123
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
124
- default: import('..').InputValueType;
129
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
130
+ default: import('../input').InputValueType;
125
131
  };
126
132
  }>>>> & {
127
133
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -158,6 +164,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
158
164
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
159
165
  default: number;
160
166
  };
167
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
168
+ default: boolean;
169
+ };
161
170
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
162
171
  default: boolean;
163
172
  };
@@ -173,14 +182,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
173
182
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
174
183
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
175
184
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
176
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
177
- default: import('..').InputValueType;
185
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
186
+ default: import('../input').InputValueType;
178
187
  };
179
188
  }>>;
180
189
  };
181
190
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
182
191
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
183
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
192
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
184
193
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
185
194
  default: boolean;
186
195
  };
@@ -196,10 +205,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
196
205
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
197
206
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
198
207
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
199
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
208
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
200
209
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
201
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
202
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
210
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
211
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
203
212
  };
204
213
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
205
214
  default: string;
@@ -247,6 +256,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
247
256
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
248
257
  default: number;
249
258
  };
259
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
260
+ default: boolean;
261
+ };
250
262
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
251
263
  default: boolean;
252
264
  };
@@ -262,8 +274,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
262
274
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
263
275
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
264
276
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
265
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
266
- default: import('..').InputValueType;
277
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
278
+ default: import('../input').InputValueType;
267
279
  };
268
280
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
269
281
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -299,6 +311,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
299
311
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
300
312
  default: number;
301
313
  };
314
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
315
+ default: boolean;
316
+ };
302
317
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
303
318
  default: boolean;
304
319
  };
@@ -314,8 +329,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
314
329
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
315
330
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
316
331
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
317
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
318
- default: import('..').InputValueType;
332
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
333
+ default: import('../input').InputValueType;
319
334
  };
320
335
  }>>>> & {
321
336
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -352,6 +367,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
352
367
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
353
368
  default: number;
354
369
  };
370
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
371
+ default: boolean;
372
+ };
355
373
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
356
374
  default: boolean;
357
375
  };
@@ -367,14 +385,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
367
385
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
368
386
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
369
387
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
370
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
371
- default: import('..').InputValueType;
388
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
389
+ default: import('../input').InputValueType;
372
390
  };
373
391
  }>>;
374
392
  };
375
393
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
376
394
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
377
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
395
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
378
396
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
379
397
  default: boolean;
380
398
  };
@@ -390,11 +408,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
390
408
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
391
409
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
392
410
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
393
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
411
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
394
412
  }>>>> & {
395
413
  default: () => Partial<import('vue').ExtractPropTypes<{
396
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
397
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
414
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
415
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
398
416
  };
399
417
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
400
418
  default: string;
@@ -442,6 +460,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
442
460
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
443
461
  default: number;
444
462
  };
463
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
464
+ default: boolean;
465
+ };
445
466
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
446
467
  default: boolean;
447
468
  };
@@ -457,8 +478,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
457
478
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
458
479
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
459
480
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
460
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
461
- default: import('..').InputValueType;
481
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
482
+ default: import('../input').InputValueType;
462
483
  };
463
484
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
464
485
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -494,6 +515,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
494
515
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
495
516
  default: number;
496
517
  };
518
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
519
+ default: boolean;
520
+ };
497
521
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
498
522
  default: boolean;
499
523
  };
@@ -509,8 +533,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
509
533
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
510
534
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
511
535
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
512
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
513
- default: import('..').InputValueType;
536
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
537
+ default: import('../input').InputValueType;
514
538
  };
515
539
  }>>>> & {
516
540
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -547,6 +571,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
547
571
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
548
572
  default: number;
549
573
  };
574
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
575
+ default: boolean;
576
+ };
550
577
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
551
578
  default: boolean;
552
579
  };
@@ -562,14 +589,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
562
589
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
563
590
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
564
591
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
565
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
566
- default: import('..').InputValueType;
592
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
593
+ default: import('../input').InputValueType;
567
594
  };
568
595
  }>>;
569
596
  };
570
597
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
571
598
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
572
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
599
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
573
600
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
574
601
  default: boolean;
575
602
  };
@@ -585,7 +612,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
585
612
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
586
613
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
587
614
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
588
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
615
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
589
616
  }>>;
590
617
  };
591
618
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -608,8 +635,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
608
635
  default: boolean;
609
636
  };
610
637
  selectProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
611
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
612
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
638
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
639
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
613
640
  };
614
641
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
615
642
  default: string;
@@ -657,6 +684,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
657
684
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
658
685
  default: number;
659
686
  };
687
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
688
+ default: boolean;
689
+ };
660
690
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
661
691
  default: boolean;
662
692
  };
@@ -672,8 +702,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
672
702
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
673
703
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
674
704
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
675
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
676
- default: import('..').InputValueType;
705
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
706
+ default: import('../input').InputValueType;
677
707
  };
678
708
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
679
709
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -709,6 +739,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
709
739
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
710
740
  default: number;
711
741
  };
742
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
743
+ default: boolean;
744
+ };
712
745
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
713
746
  default: boolean;
714
747
  };
@@ -724,8 +757,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
724
757
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
725
758
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
726
759
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
727
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
728
- default: import('..').InputValueType;
760
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
761
+ default: import('../input').InputValueType;
729
762
  };
730
763
  }>>>> & {
731
764
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -762,6 +795,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
762
795
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
763
796
  default: number;
764
797
  };
798
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
799
+ default: boolean;
800
+ };
765
801
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
766
802
  default: boolean;
767
803
  };
@@ -777,14 +813,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
777
813
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
778
814
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
779
815
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
780
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
781
- default: import('..').InputValueType;
816
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
817
+ default: import('../input').InputValueType;
782
818
  };
783
819
  }>>;
784
820
  };
785
821
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
786
822
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
787
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
823
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
788
824
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
789
825
  default: boolean;
790
826
  };
@@ -800,10 +836,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
800
836
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
801
837
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
802
838
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
803
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
839
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
804
840
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
805
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
806
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
841
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
842
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
807
843
  };
808
844
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
809
845
  default: string;
@@ -851,6 +887,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
851
887
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
852
888
  default: number;
853
889
  };
890
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
891
+ default: boolean;
892
+ };
854
893
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
855
894
  default: boolean;
856
895
  };
@@ -866,8 +905,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
866
905
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
867
906
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
868
907
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
869
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
870
- default: import('..').InputValueType;
908
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
909
+ default: import('../input').InputValueType;
871
910
  };
872
911
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
873
912
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -903,6 +942,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
903
942
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
904
943
  default: number;
905
944
  };
945
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
946
+ default: boolean;
947
+ };
906
948
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
907
949
  default: boolean;
908
950
  };
@@ -918,8 +960,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
918
960
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
919
961
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
920
962
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
921
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
922
- default: import('..').InputValueType;
963
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
964
+ default: import('../input').InputValueType;
923
965
  };
924
966
  }>>>> & {
925
967
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -956,6 +998,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
956
998
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
957
999
  default: number;
958
1000
  };
1001
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1002
+ default: boolean;
1003
+ };
959
1004
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
960
1005
  default: boolean;
961
1006
  };
@@ -971,14 +1016,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
971
1016
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
972
1017
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
973
1018
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
974
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
975
- default: import('..').InputValueType;
1019
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1020
+ default: import('../input').InputValueType;
976
1021
  };
977
1022
  }>>;
978
1023
  };
979
1024
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
980
1025
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
981
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
1026
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
982
1027
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
983
1028
  default: boolean;
984
1029
  };
@@ -994,11 +1039,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
994
1039
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
995
1040
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
996
1041
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
997
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
1042
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
998
1043
  }>>>> & {
999
1044
  default: () => Partial<import('vue').ExtractPropTypes<{
1000
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
1001
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
1045
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
1046
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
1002
1047
  };
1003
1048
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1004
1049
  default: string;
@@ -1046,6 +1091,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1046
1091
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1047
1092
  default: number;
1048
1093
  };
1094
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1095
+ default: boolean;
1096
+ };
1049
1097
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1050
1098
  default: boolean;
1051
1099
  };
@@ -1061,8 +1109,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1061
1109
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1062
1110
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1063
1111
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1064
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1065
- default: import('..').InputValueType;
1112
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1113
+ default: import('../input').InputValueType;
1066
1114
  };
1067
1115
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1068
1116
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1098,6 +1146,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1098
1146
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1099
1147
  default: number;
1100
1148
  };
1149
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1150
+ default: boolean;
1151
+ };
1101
1152
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1102
1153
  default: boolean;
1103
1154
  };
@@ -1113,8 +1164,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1113
1164
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1114
1165
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1115
1166
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1116
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1117
- default: import('..').InputValueType;
1167
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1168
+ default: import('../input').InputValueType;
1118
1169
  };
1119
1170
  }>>>> & {
1120
1171
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1151,6 +1202,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1151
1202
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1152
1203
  default: number;
1153
1204
  };
1205
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1206
+ default: boolean;
1207
+ };
1154
1208
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1155
1209
  default: boolean;
1156
1210
  };
@@ -1166,14 +1220,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1166
1220
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1167
1221
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1168
1222
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1169
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1170
- default: import('..').InputValueType;
1223
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1224
+ default: import('../input').InputValueType;
1171
1225
  };
1172
1226
  }>>;
1173
1227
  };
1174
1228
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1175
1229
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1176
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
1230
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
1177
1231
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1178
1232
  default: boolean;
1179
1233
  };
@@ -1189,7 +1243,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1189
1243
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1190
1244
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1191
1245
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1192
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
1246
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1193
1247
  }>>;
1194
1248
  };
1195
1249
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -1208,8 +1262,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1208
1262
  validateForm: boolean;
1209
1263
  defaultTimezone: boolean;
1210
1264
  selectProps: Partial<import('vue').ExtractPropTypes<{
1211
- options: import('vue-types').VueTypeValidableDef<import('..').SelectOptionItem<import('..').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('..').SelectOptionItem<import('..').SelectValue>[]>> & {
1212
- default: () => import('..').SelectOptionItem<import('..').SelectValue>[];
1265
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
1266
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
1213
1267
  };
1214
1268
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1215
1269
  default: string;
@@ -1257,6 +1311,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1257
1311
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1258
1312
  default: number;
1259
1313
  };
1314
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1315
+ default: boolean;
1316
+ };
1260
1317
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1261
1318
  default: boolean;
1262
1319
  };
@@ -1272,8 +1329,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1272
1329
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1273
1330
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1274
1331
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1275
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1276
- default: import('..').InputValueType;
1332
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1333
+ default: import('../input').InputValueType;
1277
1334
  };
1278
1335
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1279
1336
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1309,6 +1366,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1309
1366
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1310
1367
  default: number;
1311
1368
  };
1369
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1370
+ default: boolean;
1371
+ };
1312
1372
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1313
1373
  default: boolean;
1314
1374
  };
@@ -1324,8 +1384,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1324
1384
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1325
1385
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1326
1386
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1327
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1328
- default: import('..').InputValueType;
1387
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1388
+ default: import('../input').InputValueType;
1329
1389
  };
1330
1390
  }>>>> & {
1331
1391
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1362,6 +1422,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1362
1422
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1363
1423
  default: number;
1364
1424
  };
1425
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1426
+ default: boolean;
1427
+ };
1365
1428
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1366
1429
  default: boolean;
1367
1430
  };
@@ -1377,14 +1440,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1377
1440
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1378
1441
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1379
1442
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1380
- "v-model-key": import('vue-types').VueTypeDef<import('..').InputValueType> & {
1381
- default: import('..').InputValueType;
1443
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1444
+ default: import('../input').InputValueType;
1382
1445
  };
1383
1446
  }>>;
1384
1447
  };
1385
1448
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1386
1449
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1387
- getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('..').SelectValue) => import('..').SelectOptionItem | undefined>>;
1450
+ getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../select').SelectValue) => import('../select').SelectOptionItem | undefined>>;
1388
1451
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1389
1452
  default: boolean;
1390
1453
  };
@@ -1400,7 +1463,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1400
1463
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1401
1464
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1402
1465
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1403
- "v-model-key": import('vue-types').VueTypeDef<import('..').SelectValue | import('..').SelectValue[]>;
1466
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1404
1467
  }>>;
1405
1468
  }>, import('../../../vue-utils/install-utils').InstallOptions>;
1406
1469
  export * from './src/hooks/props-define';