@polyv/vue-components 1.7.0 → 1.8.1

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 (254) hide show
  1. package/package.json +1 -1
  2. package/styles/function.scss +4 -1
  3. package/vue2/index.es.js +9348 -8533
  4. package/vue2/src/components/business/external-links/use-external-links.d.ts +21 -16
  5. package/vue2/src/components/business/live-status-tag/index.d.ts +14 -14
  6. package/vue2/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  7. package/vue2/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  8. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  9. package/vue2/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  10. package/vue2/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  11. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  12. package/vue2/src/components/button/index.d.ts +26 -0
  13. package/vue2/src/components/button/src/button.vue.d.ts +9 -0
  14. package/vue2/src/components/button/src/use-button.d.ts +13 -0
  15. package/vue2/src/components/condition-filter/index.d.ts +122 -0
  16. package/vue2/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  17. package/vue2/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  18. package/vue2/src/components/condition-filter/src/hooks.d.ts +5 -0
  19. package/vue2/src/components/condition-filter/src/props-define.d.ts +43 -0
  20. package/vue2/src/components/dropdown/index.d.ts +6 -0
  21. package/vue2/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  22. package/vue2/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  23. package/vue2/src/components/exports.d.ts +4 -0
  24. package/vue2/src/components/form/_common/form-base.vue.d.ts +1 -0
  25. package/vue2/src/components/form/checkbox/src/props-define.d.ts +0 -5
  26. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  27. package/vue2/src/components/form/file-upload/index.d.ts +2 -0
  28. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  29. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  30. package/vue2/src/components/form/form-group/index.d.ts +20 -2
  31. package/vue2/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  32. package/vue2/src/components/form/form-group/src/props-define.d.ts +12 -0
  33. package/vue2/src/components/form/form-item/index.d.ts +35 -30
  34. package/vue2/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  35. package/vue2/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  36. package/vue2/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  37. package/vue2/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  38. package/vue2/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  39. package/vue2/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  40. package/vue2/src/components/form/form-submit-button/index.d.ts +9 -0
  41. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  42. package/vue2/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  43. package/vue2/src/components/form/form-wrap/index.d.ts +24 -24
  44. package/vue2/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  45. package/vue2/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  46. package/vue2/src/components/form/hooks/use-form-change.d.ts +20 -0
  47. package/vue2/src/components/form/hooks/use-form-extra.d.ts +21 -0
  48. package/vue2/src/components/form/input/index.d.ts +7 -0
  49. package/vue2/src/components/form/input/src/input.vue.d.ts +7 -0
  50. package/vue2/src/components/form/input/src/props-define.d.ts +8 -6
  51. package/vue2/src/components/form/input-number/src/props-define.d.ts +1 -6
  52. package/vue2/src/components/form/input-url/index.d.ts +21 -0
  53. package/vue2/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  54. package/vue2/src/components/form/input-url/src/props-define.d.ts +13 -0
  55. package/vue2/src/components/form/radio/src/props-define.d.ts +0 -5
  56. package/vue2/src/components/form/select/index.d.ts +60 -0
  57. package/vue2/src/components/form/select/src/props-define.d.ts +10 -6
  58. package/vue2/src/components/form/select/src/select.vue.d.ts +21 -0
  59. package/vue2/src/components/form/switch/src/props-define.d.ts +0 -5
  60. package/vue2/src/components/form/timezone-picker/index.d.ts +63 -0
  61. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  62. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  63. package/vue2/src/components/form/types/index.d.ts +1 -1
  64. package/vue2/src/components/icons/icons/application/index.d.ts +6 -0
  65. package/vue2/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  66. package/vue2/src/components/icons/icons/computer/index.d.ts +6 -0
  67. package/vue2/src/components/icons/icons/computer-data/index.d.ts +6 -0
  68. package/vue2/src/components/icons/icons/computer-down/index.d.ts +6 -0
  69. package/vue2/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  70. package/vue2/src/components/icons/icons/computer-play/index.d.ts +6 -0
  71. package/vue2/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  72. package/vue2/src/components/icons/icons/edit-two/index.d.ts +6 -0
  73. package/vue2/src/components/icons/icons/feedback/index.d.ts +6 -0
  74. package/vue2/src/components/icons/icons/home/index.d.ts +6 -0
  75. package/vue2/src/components/icons/icons/instruction/index.d.ts +6 -0
  76. package/vue2/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  77. package/vue2/src/components/icons/icons/money/index.d.ts +6 -0
  78. package/vue2/src/components/icons/icons/move-down/index.d.ts +6 -0
  79. package/vue2/src/components/icons/icons/move-up/index.d.ts +6 -0
  80. package/vue2/src/components/icons/icons/play-fast/index.d.ts +6 -0
  81. package/vue2/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  82. package/vue2/src/components/icons/icons/preview-close/index.d.ts +6 -0
  83. package/vue2/src/components/icons/icons/preview-open/index.d.ts +6 -0
  84. package/vue2/src/components/icons/icons/protect/index.d.ts +6 -0
  85. package/vue2/src/components/icons/icons/remind-off/index.d.ts +6 -0
  86. package/vue2/src/components/icons/icons/remind-on/index.d.ts +6 -0
  87. package/vue2/src/components/icons/icons/setting-two/index.d.ts +6 -0
  88. package/vue2/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  89. package/vue2/src/components/icons/icons/share/index.d.ts +6 -0
  90. package/vue2/src/components/icons/map.d.ts +25 -0
  91. package/vue2/src/components/image/index.d.ts +150 -0
  92. package/vue2/src/components/image/src/events.d.ts +6 -0
  93. package/vue2/src/components/image/src/image.vue.d.ts +69 -0
  94. package/vue2/src/components/image/src/props-define.d.ts +57 -0
  95. package/vue2/src/components/image/src/use-image.d.ts +16 -0
  96. package/vue2/src/components/menu/index.d.ts +56 -17
  97. package/vue2/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  98. package/vue2/src/components/menu/src/menu-item.vue.d.ts +11 -1
  99. package/vue2/src/components/menu/src/menu.vue.d.ts +8 -5
  100. package/vue2/src/components/menu/src/props-define.d.ts +29 -3
  101. package/vue2/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  102. package/vue2/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  103. package/vue2/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  104. package/vue2/src/components/section/index.d.ts +27 -0
  105. package/vue2/src/components/section/src/props-define.d.ts +24 -0
  106. package/vue2/src/components/section/src/section.vue.d.ts +24 -0
  107. package/vue2/src/components/table/index.d.ts +6 -6
  108. package/vue2/src/components/table/src/hooks/props-define.d.ts +1 -1
  109. package/vue2/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  110. package/vue2/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  111. package/vue2/src/components/table/src/hooks/use-table/use-table-pagination.d.ts +3 -1
  112. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +7 -6
  113. package/vue2/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  114. package/vue2/src/components/table/src/table-column.vue.d.ts +2 -2
  115. package/vue2/src/components/tag/index.d.ts +14 -14
  116. package/vue2/src/components/tag/src/props-define.d.ts +2 -2
  117. package/vue2/src/components/tag/src/tag.vue.d.ts +5 -5
  118. package/vue2/src/components/tooltip/src/props-define.d.ts +6 -0
  119. package/vue2/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  120. package/vue2/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  121. package/vue2/src/lang/hook.d.ts +4 -0
  122. package/vue2/src/lang/internal/en.json.d.ts +5 -0
  123. package/vue2/src/lang/internal/index.d.ts +5 -0
  124. package/vue2/src/lang/internal/ja.json.d.ts +5 -0
  125. package/vue2/src/lang/internal/ko.json.d.ts +5 -0
  126. package/vue2/src/lang/internal/ru.json.d.ts +5 -0
  127. package/vue2/src/lang/internal/zh-CN.json.d.ts +5 -0
  128. package/vue2/src/lang/internal/zh-TW.json.d.ts +5 -0
  129. package/vue3/index.es.js +9366 -8551
  130. package/vue3/src/components/business/external-links/use-external-links.d.ts +21 -16
  131. package/vue3/src/components/business/live-status-tag/index.d.ts +14 -14
  132. package/vue3/src/components/business/live-status-tag/src/live-status-tag.vue.d.ts +5 -5
  133. package/vue3/src/components/business/live-status-tag/src/props-define.d.ts +2 -2
  134. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +1 -0
  135. package/vue3/src/components/business/normal-pendant/use-normal-pendant.d.ts +4 -0
  136. package/vue3/src/components/business/reward-receive/entrance/reward-receive.vue.d.ts +1 -0
  137. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +9 -0
  138. package/vue3/src/components/button/index.d.ts +26 -0
  139. package/vue3/src/components/button/src/button.vue.d.ts +9 -0
  140. package/vue3/src/components/button/src/use-button.d.ts +13 -0
  141. package/vue3/src/components/condition-filter/index.d.ts +122 -0
  142. package/vue3/src/components/condition-filter/src/condition-filter-item.vue.d.ts +21 -0
  143. package/vue3/src/components/condition-filter/src/condition-filter.vue.d.ts +52 -0
  144. package/vue3/src/components/condition-filter/src/hooks.d.ts +5 -0
  145. package/vue3/src/components/condition-filter/src/props-define.d.ts +43 -0
  146. package/vue3/src/components/dropdown/index.d.ts +6 -0
  147. package/vue3/src/components/dropdown/src/dropdown-item.vue.d.ts +2 -0
  148. package/vue3/src/components/dropdown/src/use-dropdown.d.ts +4 -0
  149. package/vue3/src/components/exports.d.ts +4 -0
  150. package/vue3/src/components/form/_common/form-base.vue.d.ts +1 -0
  151. package/vue3/src/components/form/checkbox/src/props-define.d.ts +0 -5
  152. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +0 -4
  153. package/vue3/src/components/form/file-upload/index.d.ts +2 -0
  154. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +1 -0
  155. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -5
  156. package/vue3/src/components/form/form-group/index.d.ts +20 -2
  157. package/vue3/src/components/form/form-group/src/form-group.vue.d.ts +7 -1
  158. package/vue3/src/components/form/form-group/src/props-define.d.ts +12 -0
  159. package/vue3/src/components/form/form-item/index.d.ts +35 -30
  160. package/vue3/src/components/form/form-item/src/form-item-label.vue.d.ts +2 -0
  161. package/vue3/src/components/form/form-item/src/form-item.vue.d.ts +16 -15
  162. package/vue3/src/components/form/form-item/src/hooks/props-define.d.ts +12 -4
  163. package/vue3/src/components/form/form-item/src/hooks/use-item-label.d.ts +3 -1
  164. package/vue3/src/components/form/form-item/src/hooks/use-item-slots.d.ts +0 -1
  165. package/vue3/src/components/form/form-item/src/use-form-item.d.ts +15 -6
  166. package/vue3/src/components/form/form-submit-button/index.d.ts +9 -0
  167. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +9 -0
  168. package/vue3/src/components/form/form-submit-button/src/props-define.d.ts +4 -0
  169. package/vue3/src/components/form/form-wrap/index.d.ts +24 -24
  170. package/vue3/src/components/form/form-wrap/src/form-wrap.vue.d.ts +8 -8
  171. package/vue3/src/components/form/form-wrap/src/use-form-wrap.d.ts +4 -4
  172. package/vue3/src/components/form/hooks/use-form-change.d.ts +20 -0
  173. package/vue3/src/components/form/hooks/use-form-extra.d.ts +21 -0
  174. package/vue3/src/components/form/input/index.d.ts +7 -0
  175. package/vue3/src/components/form/input/src/input.vue.d.ts +7 -0
  176. package/vue3/src/components/form/input/src/props-define.d.ts +8 -6
  177. package/vue3/src/components/form/input-number/src/props-define.d.ts +1 -6
  178. package/vue3/src/components/form/input-url/index.d.ts +21 -0
  179. package/vue3/src/components/form/input-url/src/input-url.vue.d.ts +21 -0
  180. package/vue3/src/components/form/input-url/src/props-define.d.ts +13 -0
  181. package/vue3/src/components/form/radio/src/props-define.d.ts +0 -5
  182. package/vue3/src/components/form/select/index.d.ts +60 -0
  183. package/vue3/src/components/form/select/src/props-define.d.ts +10 -6
  184. package/vue3/src/components/form/select/src/select.vue.d.ts +21 -0
  185. package/vue3/src/components/form/switch/src/props-define.d.ts +0 -5
  186. package/vue3/src/components/form/timezone-picker/index.d.ts +63 -0
  187. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +27 -0
  188. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +63 -0
  189. package/vue3/src/components/form/types/index.d.ts +1 -1
  190. package/vue3/src/components/icons/icons/application/index.d.ts +6 -0
  191. package/vue3/src/components/icons/icons/chart-graph/index.d.ts +6 -0
  192. package/vue3/src/components/icons/icons/computer/index.d.ts +6 -0
  193. package/vue3/src/components/icons/icons/computer-data/index.d.ts +6 -0
  194. package/vue3/src/components/icons/icons/computer-down/index.d.ts +6 -0
  195. package/vue3/src/components/icons/icons/computer-filled/index.d.ts +6 -0
  196. package/vue3/src/components/icons/icons/computer-play/index.d.ts +6 -0
  197. package/vue3/src/components/icons/icons/copmuter-play/index.d.ts +6 -0
  198. package/vue3/src/components/icons/icons/edit-two/index.d.ts +6 -0
  199. package/vue3/src/components/icons/icons/feedback/index.d.ts +6 -0
  200. package/vue3/src/components/icons/icons/home/index.d.ts +6 -0
  201. package/vue3/src/components/icons/icons/instruction/index.d.ts +6 -0
  202. package/vue3/src/components/icons/icons/instruction-filled/index.d.ts +6 -0
  203. package/vue3/src/components/icons/icons/money/index.d.ts +6 -0
  204. package/vue3/src/components/icons/icons/move-down/index.d.ts +6 -0
  205. package/vue3/src/components/icons/icons/move-up/index.d.ts +6 -0
  206. package/vue3/src/components/icons/icons/play-fast/index.d.ts +6 -0
  207. package/vue3/src/components/icons/icons/play-rollback/index.d.ts +6 -0
  208. package/vue3/src/components/icons/icons/preview-close/index.d.ts +6 -0
  209. package/vue3/src/components/icons/icons/preview-open/index.d.ts +6 -0
  210. package/vue3/src/components/icons/icons/protect/index.d.ts +6 -0
  211. package/vue3/src/components/icons/icons/remind-off/index.d.ts +6 -0
  212. package/vue3/src/components/icons/icons/remind-on/index.d.ts +6 -0
  213. package/vue3/src/components/icons/icons/setting-two/index.d.ts +6 -0
  214. package/vue3/src/components/icons/icons/setting-two-filled/index.d.ts +6 -0
  215. package/vue3/src/components/icons/icons/share/index.d.ts +6 -0
  216. package/vue3/src/components/icons/map.d.ts +25 -0
  217. package/vue3/src/components/image/index.d.ts +150 -0
  218. package/vue3/src/components/image/src/events.d.ts +6 -0
  219. package/vue3/src/components/image/src/image.vue.d.ts +69 -0
  220. package/vue3/src/components/image/src/props-define.d.ts +57 -0
  221. package/vue3/src/components/image/src/use-image.d.ts +16 -0
  222. package/vue3/src/components/menu/index.d.ts +56 -17
  223. package/vue3/src/components/menu/src/hooks/use-sub-menu.d.ts +3 -0
  224. package/vue3/src/components/menu/src/menu-item.vue.d.ts +11 -1
  225. package/vue3/src/components/menu/src/menu.vue.d.ts +8 -5
  226. package/vue3/src/components/menu/src/props-define.d.ts +29 -3
  227. package/vue3/src/components/menu/src/sub-menu.vue.d.ts +9 -1
  228. package/vue3/src/components/message-box/_component/message-box-element.vue.d.ts +12 -0
  229. package/vue3/src/components/message-box/_component/use-message-box-element.d.ts +22 -16
  230. package/vue3/src/components/section/index.d.ts +27 -0
  231. package/vue3/src/components/section/src/props-define.d.ts +24 -0
  232. package/vue3/src/components/section/src/section.vue.d.ts +24 -0
  233. package/vue3/src/components/table/index.d.ts +6 -6
  234. package/vue3/src/components/table/src/hooks/props-define.d.ts +1 -1
  235. package/vue3/src/components/table/src/hooks/use-table/use-column-computed.d.ts +2 -2
  236. package/vue3/src/components/table/src/hooks/use-table/use-column-list.d.ts +4 -4
  237. package/vue3/src/components/table/src/hooks/use-table/use-table-pagination.d.ts +3 -1
  238. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +7 -6
  239. package/vue3/src/components/table/src/hooks/use-table-column/use-column-children.d.ts +2 -2
  240. package/vue3/src/components/table/src/table-column.vue.d.ts +2 -2
  241. package/vue3/src/components/tag/index.d.ts +14 -14
  242. package/vue3/src/components/tag/src/props-define.d.ts +2 -2
  243. package/vue3/src/components/tag/src/tag.vue.d.ts +5 -5
  244. package/vue3/src/components/tooltip/src/props-define.d.ts +6 -0
  245. package/vue3/src/hooks/components/use-confirm-cancel/index.d.ts +8 -0
  246. package/vue3/src/hooks/components/use-popper/_popper-type.d.ts +5 -0
  247. package/vue3/src/lang/hook.d.ts +4 -0
  248. package/vue3/src/lang/internal/en.json.d.ts +5 -0
  249. package/vue3/src/lang/internal/index.d.ts +5 -0
  250. package/vue3/src/lang/internal/ja.json.d.ts +5 -0
  251. package/vue3/src/lang/internal/ko.json.d.ts +5 -0
  252. package/vue3/src/lang/internal/ru.json.d.ts +5 -0
  253. package/vue3/src/lang/internal/zh-CN.json.d.ts +5 -0
  254. package/vue3/src/lang/internal/zh-TW.json.d.ts +5 -0
@@ -48,6 +48,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
48
48
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
49
49
  default: number;
50
50
  };
51
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
52
+ default: boolean;
53
+ };
51
54
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
52
55
  default: boolean;
53
56
  };
@@ -100,6 +103,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
100
103
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
101
104
  default: number;
102
105
  };
106
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
107
+ default: boolean;
108
+ };
103
109
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
104
110
  default: boolean;
105
111
  };
@@ -153,6 +159,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
153
159
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
154
160
  default: number;
155
161
  };
162
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
163
+ default: boolean;
164
+ };
156
165
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
157
166
  default: boolean;
158
167
  };
@@ -242,6 +251,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
242
251
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
243
252
  default: number;
244
253
  };
254
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
255
+ default: boolean;
256
+ };
245
257
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
246
258
  default: boolean;
247
259
  };
@@ -294,6 +306,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
294
306
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
295
307
  default: number;
296
308
  };
309
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
310
+ default: boolean;
311
+ };
297
312
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
298
313
  default: boolean;
299
314
  };
@@ -347,6 +362,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
347
362
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
348
363
  default: number;
349
364
  };
365
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
366
+ default: boolean;
367
+ };
350
368
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
351
369
  default: boolean;
352
370
  };
@@ -432,6 +450,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
432
450
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
433
451
  default: number;
434
452
  };
453
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
454
+ default: boolean;
455
+ };
435
456
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
436
457
  default: boolean;
437
458
  };
@@ -501,6 +522,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
501
522
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
502
523
  default: number;
503
524
  };
525
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
526
+ default: boolean;
527
+ };
504
528
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
505
529
  default: boolean;
506
530
  };
@@ -553,6 +577,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
553
577
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
554
578
  default: number;
555
579
  };
580
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
581
+ default: boolean;
582
+ };
556
583
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
557
584
  default: boolean;
558
585
  };
@@ -606,6 +633,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
606
633
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
607
634
  default: number;
608
635
  };
636
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
637
+ default: boolean;
638
+ };
609
639
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
610
640
  default: boolean;
611
641
  };
@@ -695,6 +725,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
695
725
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
696
726
  default: number;
697
727
  };
728
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
729
+ default: boolean;
730
+ };
698
731
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
699
732
  default: boolean;
700
733
  };
@@ -747,6 +780,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
747
780
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
748
781
  default: number;
749
782
  };
783
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
784
+ default: boolean;
785
+ };
750
786
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
751
787
  default: boolean;
752
788
  };
@@ -800,6 +836,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
800
836
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
801
837
  default: number;
802
838
  };
839
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
840
+ default: boolean;
841
+ };
803
842
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
804
843
  default: boolean;
805
844
  };
@@ -889,6 +928,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
889
928
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
890
929
  default: number;
891
930
  };
931
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
932
+ default: boolean;
933
+ };
892
934
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
893
935
  default: boolean;
894
936
  };
@@ -941,6 +983,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
941
983
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
942
984
  default: number;
943
985
  };
986
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
987
+ default: boolean;
988
+ };
944
989
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
945
990
  default: boolean;
946
991
  };
@@ -994,6 +1039,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
994
1039
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
995
1040
  default: number;
996
1041
  };
1042
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1043
+ default: boolean;
1044
+ };
997
1045
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
998
1046
  default: boolean;
999
1047
  };
@@ -1079,6 +1127,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1079
1127
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1080
1128
  default: number;
1081
1129
  };
1130
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1131
+ default: boolean;
1132
+ };
1082
1133
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1083
1134
  default: boolean;
1084
1135
  };
@@ -1149,6 +1200,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1149
1200
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1150
1201
  default: number;
1151
1202
  };
1203
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1204
+ default: boolean;
1205
+ };
1152
1206
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1153
1207
  default: boolean;
1154
1208
  };
@@ -1201,6 +1255,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1201
1255
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1202
1256
  default: number;
1203
1257
  };
1258
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1259
+ default: boolean;
1260
+ };
1204
1261
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1205
1262
  default: boolean;
1206
1263
  };
@@ -1254,6 +1311,9 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1254
1311
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
1255
1312
  default: number;
1256
1313
  };
1314
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1315
+ default: boolean;
1316
+ };
1257
1317
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1258
1318
  default: boolean;
1259
1319
  };
@@ -74,6 +74,9 @@ export declare const selectProps: () => {
74
74
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
75
75
  default: number;
76
76
  };
77
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
78
+ default: boolean;
79
+ };
77
80
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
78
81
  default: boolean;
79
82
  };
@@ -126,6 +129,9 @@ export declare const selectProps: () => {
126
129
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
127
130
  default: number;
128
131
  };
132
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
133
+ default: boolean;
134
+ };
129
135
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
130
136
  default: boolean;
131
137
  };
@@ -179,6 +185,9 @@ export declare const selectProps: () => {
179
185
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
180
186
  default: number;
181
187
  };
188
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
189
+ default: boolean;
190
+ };
182
191
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
183
192
  default: boolean;
184
193
  };
@@ -233,16 +242,11 @@ export declare const selectProps: () => {
233
242
  };
234
243
  export type SelectProps = FormatProps<typeof selectProps>;
235
244
  export declare const selectEmits: () => {
236
- /**
237
- * 选择值变化
238
- * @cbName 选择值
239
- * @cbType SelectValue
240
- */
241
- change: import('../../../../vue-utils').EmitFuncType<SelectValue | SelectValue[]>;
242
245
  /**
243
246
  * 选项滚动到底部
244
247
  */
245
248
  'options-end-reached': import('../../../../vue-utils').EmitFuncType<void>;
249
+ change: import('../../../../vue-utils').EmitFuncType<SelectValue | SelectValue[]>;
246
250
  clear: import('../../../../vue-utils').EmitFuncType<void>;
247
251
  };
248
252
  export interface SelectOptionSlotData {
@@ -50,6 +50,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
50
50
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
51
51
  default: number;
52
52
  };
53
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
54
+ default: boolean;
55
+ };
53
56
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
54
57
  default: boolean;
55
58
  };
@@ -102,6 +105,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
102
105
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
103
106
  default: number;
104
107
  };
108
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
109
+ default: boolean;
110
+ };
105
111
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
106
112
  default: boolean;
107
113
  };
@@ -155,6 +161,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
155
161
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
156
162
  default: number;
157
163
  };
164
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
165
+ default: boolean;
166
+ };
158
167
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
159
168
  default: boolean;
160
169
  };
@@ -248,6 +257,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
248
257
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
249
258
  default: number;
250
259
  };
260
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
261
+ default: boolean;
262
+ };
251
263
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
252
264
  default: boolean;
253
265
  };
@@ -300,6 +312,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
300
312
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
301
313
  default: number;
302
314
  };
315
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
316
+ default: boolean;
317
+ };
303
318
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
304
319
  default: boolean;
305
320
  };
@@ -353,6 +368,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
353
368
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
354
369
  default: number;
355
370
  };
371
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
372
+ default: boolean;
373
+ };
356
374
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
357
375
  default: boolean;
358
376
  };
@@ -434,6 +452,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
434
452
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
435
453
  default: number;
436
454
  };
455
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
456
+ default: boolean;
457
+ };
437
458
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
438
459
  default: boolean;
439
460
  };
@@ -44,10 +44,5 @@ export declare const switchProps: () => {
44
44
  suffix: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
45
45
  };
46
46
  export declare const switchEmits: () => {
47
- /**
48
- * 开关切换
49
- * @cbName 开关值
50
- * @cbType SwitchValue
51
- */
52
47
  change: import('../../../../vue-utils').EmitFuncType<SwitchValue>;
53
48
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -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
  };
@@ -63,6 +63,9 @@ export declare const timezonePickerProps: () => {
63
63
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
64
64
  default: number;
65
65
  };
66
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
67
+ default: boolean;
68
+ };
66
69
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
67
70
  default: boolean;
68
71
  };
@@ -115,6 +118,9 @@ export declare const timezonePickerProps: () => {
115
118
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
116
119
  default: number;
117
120
  };
121
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
122
+ default: boolean;
123
+ };
118
124
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
119
125
  default: boolean;
120
126
  };
@@ -168,6 +174,9 @@ export declare const timezonePickerProps: () => {
168
174
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
169
175
  default: number;
170
176
  };
177
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
178
+ default: boolean;
179
+ };
171
180
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
172
181
  default: boolean;
173
182
  };
@@ -257,6 +266,9 @@ export declare const timezonePickerProps: () => {
257
266
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
258
267
  default: number;
259
268
  };
269
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
270
+ default: boolean;
271
+ };
260
272
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
261
273
  default: boolean;
262
274
  };
@@ -309,6 +321,9 @@ export declare const timezonePickerProps: () => {
309
321
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
310
322
  default: number;
311
323
  };
324
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
325
+ default: boolean;
326
+ };
312
327
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
313
328
  default: boolean;
314
329
  };
@@ -362,6 +377,9 @@ export declare const timezonePickerProps: () => {
362
377
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
363
378
  default: number;
364
379
  };
380
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
381
+ default: boolean;
382
+ };
365
383
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
366
384
  default: boolean;
367
385
  };
@@ -452,6 +470,9 @@ export declare const timezonePickerProps: () => {
452
470
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
453
471
  default: number;
454
472
  };
473
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
474
+ default: boolean;
475
+ };
455
476
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
456
477
  default: boolean;
457
478
  };
@@ -504,6 +525,9 @@ export declare const timezonePickerProps: () => {
504
525
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
505
526
  default: number;
506
527
  };
528
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
529
+ default: boolean;
530
+ };
507
531
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
508
532
  default: boolean;
509
533
  };
@@ -557,6 +581,9 @@ export declare const timezonePickerProps: () => {
557
581
  enLength: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>> & {
558
582
  default: number;
559
583
  };
584
+ search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
585
+ default: boolean;
586
+ };
560
587
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
561
588
  default: boolean;
562
589
  };