@polyv/vue-components 1.6.1 → 1.7.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 (261) hide show
  1. package/package.json +2 -2
  2. package/styles/root/basic.scss +14 -7
  3. package/styles/root/border.scss +6 -0
  4. package/styles/skin-color.scss +37 -11
  5. package/styles/variables.scss +15 -1
  6. package/vue2/index.es.js +16146 -21500
  7. package/vue2/src/components/alert/index.d.ts +2 -0
  8. package/vue2/src/components/alert/src/alert.vue.d.ts +2 -0
  9. package/vue2/src/components/alert/src/props-define.d.ts +8 -0
  10. package/vue2/src/components/business/channel-cover/index.d.ts +38 -0
  11. package/vue2/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  12. package/vue2/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  13. package/vue2/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  14. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  15. package/vue2/src/components/business/external-links/external-links.vue.d.ts +1 -2
  16. package/vue2/src/components/business/external-links/use-external-links.d.ts +111 -3
  17. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  18. package/vue2/src/components/collapse-transition/index.d.ts +36 -0
  19. package/vue2/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  20. package/vue2/src/components/collapse-transition/src/props-define.d.ts +9 -0
  21. package/vue2/src/components/example/example.vue.d.ts +16 -1
  22. package/vue2/src/components/example/index.d.ts +75 -4
  23. package/vue2/src/components/exports.d.ts +22 -1
  24. package/vue2/src/components/form/file-upload/index.d.ts +467 -0
  25. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  26. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  27. package/vue2/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  28. package/vue2/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  30. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  31. package/vue2/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  32. package/vue2/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  33. package/vue2/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  34. package/vue2/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  35. package/vue2/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  36. package/vue2/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  37. package/vue2/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  38. package/vue2/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  39. package/vue2/src/components/form/form-item/index.d.ts +2 -2
  40. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  41. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  42. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  43. package/vue2/src/components/form/form-wrap/index.d.ts +8 -2
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  46. package/vue2/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  47. package/vue2/src/components/form/input-number/index.d.ts +2 -2
  48. package/vue2/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  49. package/vue2/src/components/form/select/index.d.ts +40 -40
  50. package/vue2/src/components/form/timezone-picker/index.d.ts +70 -70
  51. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  52. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  53. package/vue2/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  54. package/vue2/src/components/form/transfer/transfer.vue.d.ts +0 -1
  55. package/vue2/src/components/icons/icons/effect/index.d.ts +6 -0
  56. package/vue2/src/components/icons/icons/file/index.d.ts +6 -0
  57. package/vue2/src/components/icons/icons/id-card/index.d.ts +6 -0
  58. package/vue2/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  59. package/vue2/src/components/icons/icons/lang/index.d.ts +6 -0
  60. package/vue2/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  61. package/vue2/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  62. package/vue2/src/components/icons/icons/platform/index.d.ts +6 -0
  63. package/vue2/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  64. package/vue2/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/upload-three/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/user/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/user-filled/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/video/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/video-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/map.d.ts +15 -0
  71. package/vue2/src/components/info-card/index.d.ts +181 -2
  72. package/{vue3/src/components/info-card → vue2/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  73. package/vue2/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  74. package/vue2/src/components/menu/index.d.ts +156 -0
  75. package/vue2/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  76. package/vue2/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  77. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  78. package/vue2/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  79. package/vue2/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  80. package/vue2/src/components/menu/src/menu-item.vue.d.ts +14 -0
  81. package/vue2/src/components/menu/src/menu.vue.d.ts +52 -0
  82. package/vue2/src/components/menu/src/props-define.d.ts +114 -0
  83. package/vue2/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  84. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  85. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  86. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  87. package/vue2/src/components/pagination/use-pagination.d.ts +3 -3
  88. package/vue2/src/components/popconfirm/index.d.ts +20 -0
  89. package/vue2/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  90. package/vue2/src/components/popconfirm/src/props-define.d.ts +3 -0
  91. package/vue2/src/components/popover/index.d.ts +20 -0
  92. package/vue2/src/components/popover/src/popover.vue.d.ts +7 -0
  93. package/vue2/src/components/popover/src/props-define.d.ts +3 -0
  94. package/vue2/src/components/popup/index.d.ts +13 -6
  95. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  96. package/vue2/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  97. package/vue2/src/components/popup/src/popup.vue.d.ts +4 -2
  98. package/vue2/src/components/popup/src/types.d.ts +3 -0
  99. package/vue2/src/components/slider/index.d.ts +8 -1
  100. package/vue2/src/components/slider/src/props-define.d.ts +7 -0
  101. package/vue2/src/components/slider/src/slider.vue.d.ts +8 -1
  102. package/vue2/src/components/table/index.d.ts +84 -12
  103. package/vue2/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  104. package/vue2/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  105. package/vue2/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  106. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  107. package/vue2/src/components/table/src/hooks/props-define.d.ts +58 -2
  108. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  110. package/vue2/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  112. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  113. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  114. package/vue2/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  115. package/vue2/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  116. package/vue2/src/components/table/src/table-column.vue.d.ts +13 -4
  117. package/vue2/src/components/table/src/table.vue.d.ts +16 -0
  118. package/vue2/src/components/table/src/types/index.d.ts +1 -1
  119. package/vue2/src/components/tooltip/index.d.ts +20 -0
  120. package/vue2/src/components/tooltip/src/props-define.d.ts +7 -0
  121. package/vue2/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  122. package/vue2/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  123. package/vue2/src/hooks/exports.d.ts +1 -0
  124. package/vue2/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  125. package/vue2/src/lang/internal/en.json.d.ts +28 -6
  126. package/vue2/src/lang/internal/index.d.ts +22 -0
  127. package/vue2/src/lang/internal/ja.json.d.ts +29 -7
  128. package/vue2/src/lang/internal/ko.json.d.ts +29 -7
  129. package/vue2/src/lang/internal/ru.json.d.ts +29 -7
  130. package/vue2/src/lang/internal/zh-CN.json.d.ts +27 -5
  131. package/vue2/src/lang/internal/zh-TW.json.d.ts +28 -6
  132. package/vue2/src/vue-utils/index.d.ts +1 -0
  133. package/vue3/index.es.js +16153 -21512
  134. package/vue3/src/components/alert/index.d.ts +2 -0
  135. package/vue3/src/components/alert/src/alert.vue.d.ts +2 -0
  136. package/vue3/src/components/alert/src/props-define.d.ts +8 -0
  137. package/vue3/src/components/business/channel-cover/index.d.ts +38 -0
  138. package/vue3/src/components/business/channel-cover/src/channel-cover.vue.d.ts +38 -0
  139. package/vue3/src/components/business/channel-cover/src/cover-list.d.ts +7 -0
  140. package/vue3/src/components/business/channel-cover/src/props-define.d.ts +47 -0
  141. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +8 -4
  142. package/vue3/src/components/business/external-links/external-links.vue.d.ts +1 -2
  143. package/vue3/src/components/business/external-links/use-external-links.d.ts +111 -3
  144. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +22 -0
  145. package/vue3/src/components/collapse-transition/index.d.ts +36 -0
  146. package/vue3/src/components/collapse-transition/src/collapse-transition.vue.d.ts +27 -0
  147. package/vue3/src/components/collapse-transition/src/props-define.d.ts +9 -0
  148. package/vue3/src/components/example/example.vue.d.ts +16 -1
  149. package/vue3/src/components/example/index.d.ts +75 -4
  150. package/vue3/src/components/exports.d.ts +22 -1
  151. package/vue3/src/components/form/file-upload/index.d.ts +467 -0
  152. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +185 -0
  153. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +296 -0
  154. package/vue3/src/components/form/file-upload/src/hooks/types.d.ts +52 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/use-file-input.d.ts +7 -0
  156. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload-slots.d.ts +10 -0
  157. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +113 -0
  158. package/vue3/src/components/form/file-upload/src/hooks/use-upload-controller.d.ts +7 -0
  159. package/vue3/src/components/form/file-upload/src/upload-add/button-add.vue.d.ts +4 -0
  160. package/vue3/src/components/form/file-upload/src/upload-add/drag-add.vue.d.ts +5 -0
  161. package/vue3/src/components/form/file-upload/src/upload-add/picture-card-add.vue.d.ts +4 -0
  162. package/vue3/src/components/form/file-upload/src/upload-item/file-upload-item.vue.d.ts +23 -0
  163. package/vue3/src/components/form/file-upload/src/upload-item/picture-card-item.vue.d.ts +14 -0
  164. package/vue3/src/components/form/file-upload/src/upload-item/text-item.vue.d.ts +16 -0
  165. package/vue3/src/components/form/file-upload/src/upload-item/use-upload-item.d.ts +10 -0
  166. package/vue3/src/components/form/form-item/index.d.ts +2 -2
  167. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +1 -1
  168. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  169. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  170. package/vue3/src/components/form/form-wrap/index.d.ts +8 -2
  171. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +3 -1
  172. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -0
  173. package/vue3/src/components/form/hooks/use-form-entrance.d.ts +3 -3
  174. package/vue3/src/components/form/input-number/index.d.ts +2 -2
  175. package/vue3/src/components/form/input-number/src/input-number.vue.d.ts +1 -1
  176. package/vue3/src/components/form/select/index.d.ts +40 -40
  177. package/vue3/src/components/form/timezone-picker/index.d.ts +70 -70
  178. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +18 -18
  179. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -42
  180. package/vue3/src/components/form/transfer/hooks/props-define.d.ts +0 -1
  181. package/vue3/src/components/form/transfer/transfer.vue.d.ts +0 -1
  182. package/vue3/src/components/icons/icons/effect/index.d.ts +6 -0
  183. package/vue3/src/components/icons/icons/file/index.d.ts +6 -0
  184. package/vue3/src/components/icons/icons/id-card/index.d.ts +6 -0
  185. package/vue3/src/components/icons/icons/id-card-filled/index.d.ts +6 -0
  186. package/vue3/src/components/icons/icons/lang/index.d.ts +6 -0
  187. package/vue3/src/components/icons/icons/menu-expand/index.d.ts +6 -0
  188. package/vue3/src/components/icons/icons/menu-fold-up/index.d.ts +6 -0
  189. package/vue3/src/components/icons/icons/platform/index.d.ts +6 -0
  190. package/vue3/src/components/icons/icons/platform-filled/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/statistics-filled/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/upload-three/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/user/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/user-filled/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/video/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/video-filled/index.d.ts +6 -0
  197. package/vue3/src/components/icons/map.d.ts +15 -0
  198. package/vue3/src/components/info-card/index.d.ts +181 -2
  199. package/{vue2/src/components/info-card → vue3/src/components/info-card/src}/info-card.vue.d.ts +11 -1
  200. package/vue3/src/components/info-card/{props-define.d.ts → src/props-define.d.ts} +18 -1
  201. package/vue3/src/components/menu/index.d.ts +156 -0
  202. package/vue3/src/components/menu/src/hooks/use-menu-item.d.ts +29 -0
  203. package/vue3/src/components/menu/src/hooks/use-menu.d.ts +14 -0
  204. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +23 -0
  205. package/vue3/src/components/menu/src/menu-divider.vue.d.ts +2 -0
  206. package/vue3/src/components/menu/src/menu-item-content.vue.d.ts +2 -0
  207. package/vue3/src/components/menu/src/menu-item.vue.d.ts +14 -0
  208. package/vue3/src/components/menu/src/menu.vue.d.ts +52 -0
  209. package/vue3/src/components/menu/src/props-define.d.ts +114 -0
  210. package/vue3/src/components/menu/src/sub-menu-popper.vue.d.ts +19 -0
  211. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +32 -0
  212. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +1 -1
  213. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +13 -9
  214. package/vue3/src/components/pagination/use-pagination.d.ts +3 -3
  215. package/vue3/src/components/popconfirm/index.d.ts +20 -0
  216. package/vue3/src/components/popconfirm/src/popconfirm.vue.d.ts +20 -0
  217. package/vue3/src/components/popconfirm/src/props-define.d.ts +3 -0
  218. package/vue3/src/components/popover/index.d.ts +20 -0
  219. package/vue3/src/components/popover/src/popover.vue.d.ts +7 -0
  220. package/vue3/src/components/popover/src/props-define.d.ts +3 -0
  221. package/vue3/src/components/popup/index.d.ts +13 -6
  222. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +6 -4
  223. package/vue3/src/components/popup/src/hooks/use-popup-provide.d.ts +9 -0
  224. package/vue3/src/components/popup/src/popup.vue.d.ts +4 -2
  225. package/vue3/src/components/popup/src/types.d.ts +3 -0
  226. package/vue3/src/components/slider/index.d.ts +8 -1
  227. package/vue3/src/components/slider/src/props-define.d.ts +7 -0
  228. package/vue3/src/components/slider/src/slider.vue.d.ts +8 -1
  229. package/vue3/src/components/table/index.d.ts +84 -12
  230. package/vue3/src/components/table/src/components/table-body-cell/body-cell-expand.vue.d.ts +2 -0
  231. package/vue3/src/components/table/src/components/table-body-row/table-body-row-expand.vue.d.ts +33 -0
  232. package/vue3/src/components/table/src/components/table-body-row/table-body-row.vue.d.ts +11 -0
  233. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +8 -0
  234. package/vue3/src/components/table/src/hooks/props-define.d.ts +58 -2
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +14 -2
  236. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +28 -4
  237. package/vue3/src/components/table/src/hooks/use-table/use-table-footer.d.ts +7 -0
  238. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +2 -0
  239. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +44 -7
  240. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +14 -2
  241. package/vue3/src/components/table/src/hooks/use-table-column/use-column-expand.d.ts +19 -0
  242. package/vue3/src/components/table/src/hooks/use-table-column/use-table-column.d.ts +2 -1
  243. package/vue3/src/components/table/src/table-column.vue.d.ts +13 -4
  244. package/vue3/src/components/table/src/table.vue.d.ts +16 -0
  245. package/vue3/src/components/table/src/types/index.d.ts +1 -1
  246. package/vue3/src/components/tooltip/index.d.ts +20 -0
  247. package/vue3/src/components/tooltip/src/props-define.d.ts +7 -0
  248. package/vue3/src/components/tooltip/src/tooltip.vue.d.ts +7 -0
  249. package/vue3/src/hooks/business/use-skin-color/utils.d.ts +1 -1
  250. package/vue3/src/hooks/exports.d.ts +1 -0
  251. package/vue3/src/hooks/vue/use-render-slots/index.d.ts +5 -3
  252. package/vue3/src/lang/internal/en.json.d.ts +28 -6
  253. package/vue3/src/lang/internal/index.d.ts +22 -0
  254. package/vue3/src/lang/internal/ja.json.d.ts +29 -7
  255. package/vue3/src/lang/internal/ko.json.d.ts +29 -7
  256. package/vue3/src/lang/internal/ru.json.d.ts +29 -7
  257. package/vue3/src/lang/internal/zh-CN.json.d.ts +27 -5
  258. package/vue3/src/lang/internal/zh-TW.json.d.ts +28 -6
  259. package/vue3/src/vue-utils/index.d.ts +1 -0
  260. package/vue2/src/components/form/index.d.ts +0 -18
  261. 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;
@@ -68,8 +68,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
68
68
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
69
69
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
70
70
  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;
71
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
72
+ default: import('../input').InputValueType;
73
73
  };
74
74
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
75
75
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -120,8 +120,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
120
120
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
121
121
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
122
122
  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;
123
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
124
+ default: import('../input').InputValueType;
125
125
  };
126
126
  }>>>> & {
127
127
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -173,14 +173,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
173
173
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
174
174
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
175
175
  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;
176
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
177
+ default: import('../input').InputValueType;
178
178
  };
179
179
  }>>;
180
180
  };
181
181
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
182
182
  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>>;
183
+ 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
184
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
185
185
  default: boolean;
186
186
  };
@@ -196,10 +196,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
196
196
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
197
197
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
198
198
  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[]>;
199
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
200
200
  }>>, 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>[];
201
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
202
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
203
203
  };
204
204
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
205
205
  default: string;
@@ -262,8 +262,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
262
262
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
263
263
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
264
264
  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;
265
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
266
+ default: import('../input').InputValueType;
267
267
  };
268
268
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
269
269
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -314,8 +314,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
314
314
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
315
315
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
316
316
  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;
317
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
318
+ default: import('../input').InputValueType;
319
319
  };
320
320
  }>>>> & {
321
321
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -367,14 +367,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
367
367
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
368
368
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
369
369
  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;
370
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
371
+ default: import('../input').InputValueType;
372
372
  };
373
373
  }>>;
374
374
  };
375
375
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
376
376
  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>>;
377
+ 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
378
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
379
379
  default: boolean;
380
380
  };
@@ -390,11 +390,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
390
390
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
391
391
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
392
392
  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[]>;
393
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
394
394
  }>>>> & {
395
395
  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>[];
396
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
397
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
398
398
  };
399
399
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
400
400
  default: string;
@@ -457,8 +457,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
457
457
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
458
458
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
459
459
  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;
460
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
461
+ default: import('../input').InputValueType;
462
462
  };
463
463
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
464
464
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -509,8 +509,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
509
509
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
510
510
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
511
511
  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;
512
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
513
+ default: import('../input').InputValueType;
514
514
  };
515
515
  }>>>> & {
516
516
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -562,14 +562,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
562
562
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
563
563
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
564
564
  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;
565
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
566
+ default: import('../input').InputValueType;
567
567
  };
568
568
  }>>;
569
569
  };
570
570
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
571
571
  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>>;
572
+ 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
573
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
574
574
  default: boolean;
575
575
  };
@@ -585,7 +585,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
585
585
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
586
586
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
587
587
  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[]>;
588
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
589
589
  }>>;
590
590
  };
591
591
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -608,8 +608,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
608
608
  default: boolean;
609
609
  };
610
610
  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>[];
611
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
612
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
613
613
  };
614
614
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
615
615
  default: string;
@@ -672,8 +672,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
672
672
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
673
673
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
674
674
  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;
675
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
676
+ default: import('../input').InputValueType;
677
677
  };
678
678
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
679
679
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -724,8 +724,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
724
724
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
725
725
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
726
726
  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;
727
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
728
+ default: import('../input').InputValueType;
729
729
  };
730
730
  }>>>> & {
731
731
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -777,14 +777,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
777
777
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
778
778
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
779
779
  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;
780
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
781
+ default: import('../input').InputValueType;
782
782
  };
783
783
  }>>;
784
784
  };
785
785
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
786
786
  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>>;
787
+ 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
788
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
789
789
  default: boolean;
790
790
  };
@@ -800,10 +800,10 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
800
800
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
801
801
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
802
802
  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[]>;
803
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
804
804
  }>>, 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>[];
805
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
806
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
807
807
  };
808
808
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
809
809
  default: string;
@@ -866,8 +866,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
866
866
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
867
867
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
868
868
  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;
869
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
870
+ default: import('../input').InputValueType;
871
871
  };
872
872
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
873
873
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -918,8 +918,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
918
918
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
919
919
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
920
920
  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;
921
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
922
+ default: import('../input').InputValueType;
923
923
  };
924
924
  }>>>> & {
925
925
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -971,14 +971,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
971
971
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
972
972
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
973
973
  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;
974
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
975
+ default: import('../input').InputValueType;
976
976
  };
977
977
  }>>;
978
978
  };
979
979
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
980
980
  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>>;
981
+ 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
982
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
983
983
  default: boolean;
984
984
  };
@@ -994,11 +994,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
994
994
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
995
995
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
996
996
  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[]>;
997
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
998
998
  }>>>> & {
999
999
  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>[];
1000
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
1001
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
1002
1002
  };
1003
1003
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1004
1004
  default: string;
@@ -1061,8 +1061,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1061
1061
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1062
1062
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1063
1063
  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;
1064
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1065
+ default: import('../input').InputValueType;
1066
1066
  };
1067
1067
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1068
1068
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1113,8 +1113,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1113
1113
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1114
1114
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1115
1115
  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;
1116
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1117
+ default: import('../input').InputValueType;
1118
1118
  };
1119
1119
  }>>>> & {
1120
1120
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1166,14 +1166,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1166
1166
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1167
1167
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1168
1168
  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;
1169
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1170
+ default: import('../input').InputValueType;
1171
1171
  };
1172
1172
  }>>;
1173
1173
  };
1174
1174
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1175
1175
  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>>;
1176
+ 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
1177
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1178
1178
  default: boolean;
1179
1179
  };
@@ -1189,7 +1189,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1189
1189
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1190
1190
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1191
1191
  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[]>;
1192
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1193
1193
  }>>;
1194
1194
  };
1195
1195
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
@@ -1208,8 +1208,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1208
1208
  validateForm: boolean;
1209
1209
  defaultTimezone: boolean;
1210
1210
  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>[];
1211
+ options: import('vue-types').VueTypeValidableDef<import('../select').SelectOptionItem<import('../select').SelectValue>[], import('vue-types/dist/types').ValidatorFunction<import('../select').SelectOptionItem<import('../select').SelectValue>[]>> & {
1212
+ default: () => import('../select').SelectOptionItem<import('../select').SelectValue>[];
1213
1213
  };
1214
1214
  placeholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1215
1215
  default: string;
@@ -1272,8 +1272,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1272
1272
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1273
1273
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1274
1274
  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;
1275
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1276
+ default: import('../input').InputValueType;
1277
1277
  };
1278
1278
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
1279
1279
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -1324,8 +1324,8 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1324
1324
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1325
1325
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1326
1326
  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;
1327
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1328
+ default: import('../input').InputValueType;
1329
1329
  };
1330
1330
  }>>>> & {
1331
1331
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -1377,14 +1377,14 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1377
1377
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1378
1378
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1379
1379
  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;
1380
+ "v-model-key": import('vue-types').VueTypeDef<import('../input').InputValueType> & {
1381
+ default: import('../input').InputValueType;
1382
1382
  };
1383
1383
  }>>;
1384
1384
  };
1385
1385
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1386
1386
  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>>;
1387
+ 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
1388
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1389
1389
  default: boolean;
1390
1390
  };
@@ -1400,7 +1400,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1400
1400
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1401
1401
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1402
1402
  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[]>;
1403
+ "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1404
1404
  }>>;
1405
1405
  }>, import('../../../vue-utils/install-utils').InstallOptions>;
1406
1406
  export * from './src/hooks/props-define';
@@ -78,8 +78,8 @@ export declare const timezonePickerProps: () => {
78
78
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
79
79
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
80
80
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
81
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
82
- default: import('../../..').InputValueType;
81
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
82
+ default: import('../../../input').InputValueType;
83
83
  };
84
84
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
85
85
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -130,8 +130,8 @@ export declare const timezonePickerProps: () => {
130
130
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
131
131
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
132
132
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
133
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
134
- default: import('../../..').InputValueType;
133
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
134
+ default: import('../../../input').InputValueType;
135
135
  };
136
136
  }>>>> & {
137
137
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -183,8 +183,8 @@ export declare const timezonePickerProps: () => {
183
183
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
184
184
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
185
185
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
186
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
187
- default: import('../../..').InputValueType;
186
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
187
+ default: import('../../../input').InputValueType;
188
188
  };
189
189
  }>>;
190
190
  };
@@ -272,8 +272,8 @@ export declare const timezonePickerProps: () => {
272
272
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
273
273
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
274
274
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
275
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
276
- default: import('../../..').InputValueType;
275
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
276
+ default: import('../../../input').InputValueType;
277
277
  };
278
278
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
279
279
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -324,8 +324,8 @@ export declare const timezonePickerProps: () => {
324
324
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
325
325
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
326
326
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
327
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
328
- default: import('../../..').InputValueType;
327
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
328
+ default: import('../../../input').InputValueType;
329
329
  };
330
330
  }>>>> & {
331
331
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -377,8 +377,8 @@ export declare const timezonePickerProps: () => {
377
377
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
378
378
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
379
379
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
380
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
381
- default: import('../../..').InputValueType;
380
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
381
+ default: import('../../../input').InputValueType;
382
382
  };
383
383
  }>>;
384
384
  };
@@ -467,8 +467,8 @@ export declare const timezonePickerProps: () => {
467
467
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
468
468
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
469
469
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
470
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
471
- default: import('../../..').InputValueType;
470
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
471
+ default: import('../../../input').InputValueType;
472
472
  };
473
473
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
474
474
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
@@ -519,8 +519,8 @@ export declare const timezonePickerProps: () => {
519
519
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
520
520
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
521
521
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
522
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
523
- default: import('../../..').InputValueType;
522
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
523
+ default: import('../../../input').InputValueType;
524
524
  };
525
525
  }>>>> & {
526
526
  default: () => Partial<import('vue').ExtractPropTypes<{
@@ -572,8 +572,8 @@ export declare const timezonePickerProps: () => {
572
572
  append: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
573
573
  prefix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
574
574
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
575
- "v-model-key": import('vue-types').VueTypeDef<import('../../..').InputValueType> & {
576
- default: import('../../..').InputValueType;
575
+ "v-model-key": import('vue-types').VueTypeDef<import('../../../input').InputValueType> & {
576
+ default: import('../../../input').InputValueType;
577
577
  };
578
578
  }>>;
579
579
  };