@polyv/vue-components 1.10.1 → 1.12.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 (185) hide show
  1. package/package.json +2 -1
  2. package/vue2/index.es.js +11567 -10343
  3. package/vue2/src/components/basic-countdown/basic-countdown.vue.d.ts +17 -28
  4. package/vue2/src/components/basic-countdown/use-basic-countdown.d.ts +25 -2
  5. package/vue2/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +26 -0
  6. package/vue2/src/components/business/external-links/use-external-links.d.ts +2 -0
  7. package/vue2/src/components/business/normal-pendant/normal-pendant.vue.d.ts +16 -1
  8. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +2 -0
  9. package/vue2/src/components/exports.d.ts +1 -0
  10. package/vue2/src/components/form/date-picker/index.d.ts +16 -0
  11. package/vue2/src/components/form/date-picker/src/components/mobile-picker/mobile-picker-column.vue.d.ts +28 -0
  12. package/vue2/src/components/form/date-picker/src/components/mobile-picker/mobile-picker-popup.vue.d.ts +2 -0
  13. package/vue2/src/components/form/date-picker/src/components/picker-popper/vertical-pick-popper.vue.d.ts +2 -0
  14. package/vue2/src/components/form/date-picker/src/components/time-select/time-input-select.vue.d.ts +2 -0
  15. package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +16 -0
  16. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +18 -0
  17. package/vue2/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +6 -1
  18. package/vue2/src/components/form/date-picker/src/types/index.d.ts +5 -1
  19. package/vue2/src/components/form/file-upload/index.d.ts +38 -0
  20. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +13 -0
  21. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -0
  22. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -0
  23. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  24. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  25. package/vue2/src/components/form/image-upload/index.d.ts +12 -0
  26. package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +6 -0
  27. package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +12 -0
  28. package/vue2/src/components/form/select/index.d.ts +32 -0
  29. package/vue2/src/components/form/select/src/props-define.d.ts +15 -0
  30. package/vue2/src/components/form/select/src/select-mobile-picker-column.vue.d.ts +17 -0
  31. package/vue2/src/components/form/select/src/select.vue.d.ts +27 -15
  32. package/vue2/src/components/form/timezone-picker/index.d.ts +42 -0
  33. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +22 -0
  34. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -0
  35. package/vue2/src/components/form/types/index.d.ts +0 -1
  36. package/vue2/src/components/icons/icons/crop-two/index.d.ts +6 -0
  37. package/vue2/src/components/icons/icons/email/index.d.ts +6 -0
  38. package/vue2/src/components/icons/icons/location/index.d.ts +6 -0
  39. package/vue2/src/components/icons/icons/logout/index.d.ts +6 -0
  40. package/vue2/src/components/icons/icons/number/index.d.ts +6 -0
  41. package/vue2/src/components/icons/icons/option/index.d.ts +6 -0
  42. package/vue2/src/components/icons/icons/phone/index.d.ts +6 -0
  43. package/vue2/src/components/icons/icons/qa/index.d.ts +6 -0
  44. package/vue2/src/components/icons/icons/qa-one/index.d.ts +6 -0
  45. package/vue2/src/components/icons/icons/return/index.d.ts +6 -0
  46. package/vue2/src/components/icons/icons/text/index.d.ts +6 -0
  47. package/vue2/src/components/icons/map.d.ts +11 -0
  48. package/vue2/src/components/image-cropper/index.d.ts +27 -1
  49. package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +34 -0
  50. package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +7 -14
  51. package/vue2/src/components/image-cropper/src/image-cropper-preview.vue.d.ts +16 -0
  52. package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +13 -3
  53. package/vue2/src/components/image-preview/components/image-zoom-wrap.vue.d.ts +2 -0
  54. package/vue2/src/components/image-preview/components/preview-controller.vue.d.ts +2 -0
  55. package/vue2/src/components/image-preview/hooks/props-define.d.ts +54 -3
  56. package/vue2/src/components/image-preview/hooks/use-image-preview-component.d.ts +0 -2
  57. package/vue2/src/components/image-preview/hooks/use-image-preview-intercept.d.ts +14 -0
  58. package/vue2/src/components/image-preview/hooks/use-image-preview.d.ts +14 -1
  59. package/vue2/src/components/image-preview/image-preview-container.vue.d.ts +33 -0
  60. package/vue2/src/components/image-preview/image-preview.vue.d.ts +17 -6
  61. package/vue2/src/components/image-preview/index.d.ts +2 -0
  62. package/vue2/src/components/popup/index.d.ts +40 -0
  63. package/vue2/src/components/popup/src/hooks/popup-props.d.ts +16 -2
  64. package/vue2/src/components/popup/src/popup.vue.d.ts +14 -0
  65. package/vue2/src/components/sensitive-text/index.d.ts +5 -5
  66. package/vue2/src/components/sensitive-text/src/props-define.d.ts +2 -2
  67. package/vue2/src/components/sensitive-text/src/sensitive-text.vue.d.ts +5 -5
  68. package/vue2/src/components/space/index.d.ts +76 -0
  69. package/vue2/src/components/space/src/props-define.d.ts +36 -0
  70. package/vue2/src/components/space/src/space.vue.d.ts +41 -0
  71. package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +2 -0
  72. package/vue2/src/components/table/index.d.ts +48 -26
  73. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +6 -1
  74. package/vue2/src/components/table/src/hooks/props-define.d.ts +39 -3
  75. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +1 -0
  76. package/vue2/src/components/table/src/hooks/use-table/use-table-request.d.ts +1 -1
  77. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  78. package/vue2/src/components/table/src/table-column.vue.d.ts +7 -7
  79. package/vue2/src/components/table/src/table.vue.d.ts +14 -7
  80. package/vue2/src/components/tabs/index.d.ts +14 -14
  81. package/vue2/src/components/tabs/src/props-define.d.ts +2 -2
  82. package/vue2/src/components/tabs/src/tabs.vue.d.ts +5 -5
  83. package/vue2/src/components/zoom-container/hooks/use-zoom-size.d.ts +1 -1
  84. package/vue2/src/components/zoom-container/use-zoom-container.d.ts +4 -0
  85. package/vue2/src/components/zoom-container/zoom-container.vue.d.ts +2 -0
  86. package/vue2/src/index.d.ts +5 -0
  87. package/vue2/src/lang/internal/en.json.d.ts +3 -1
  88. package/vue2/src/lang/internal/index.d.ts +2 -0
  89. package/vue2/src/lang/internal/ja.json.d.ts +3 -1
  90. package/vue2/src/lang/internal/ko.json.d.ts +3 -1
  91. package/vue2/src/lang/internal/ru.json.d.ts +3 -1
  92. package/vue2/src/lang/internal/zh-CN.json.d.ts +3 -1
  93. package/vue2/src/lang/internal/zh-TW.json.d.ts +3 -1
  94. package/vue3/index.es.js +14175 -12951
  95. package/vue3/src/components/basic-countdown/basic-countdown.vue.d.ts +17 -28
  96. package/vue3/src/components/basic-countdown/use-basic-countdown.d.ts +25 -2
  97. package/vue3/src/components/business/data-export/data-export-record/use-data-export-record.d.ts +26 -0
  98. package/vue3/src/components/business/external-links/use-external-links.d.ts +2 -0
  99. package/vue3/src/components/business/normal-pendant/normal-pendant.vue.d.ts +16 -1
  100. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +2 -0
  101. package/vue3/src/components/exports.d.ts +1 -0
  102. package/vue3/src/components/form/date-picker/index.d.ts +16 -0
  103. package/vue3/src/components/form/date-picker/src/components/mobile-picker/mobile-picker-column.vue.d.ts +28 -0
  104. package/vue3/src/components/form/date-picker/src/components/mobile-picker/mobile-picker-popup.vue.d.ts +2 -0
  105. package/vue3/src/components/form/date-picker/src/components/picker-popper/vertical-pick-popper.vue.d.ts +2 -0
  106. package/vue3/src/components/form/date-picker/src/components/time-select/time-input-select.vue.d.ts +2 -0
  107. package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +16 -0
  108. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +18 -0
  109. package/vue3/src/components/form/date-picker/src/hooks/use-date-picker-utils.d.ts +6 -1
  110. package/vue3/src/components/form/date-picker/src/types/index.d.ts +5 -1
  111. package/vue3/src/components/form/file-upload/index.d.ts +38 -0
  112. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +13 -0
  113. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -0
  114. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -0
  115. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  116. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  117. package/vue3/src/components/form/image-upload/index.d.ts +12 -0
  118. package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +6 -0
  119. package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +12 -0
  120. package/vue3/src/components/form/select/index.d.ts +32 -0
  121. package/vue3/src/components/form/select/src/props-define.d.ts +15 -0
  122. package/vue3/src/components/form/select/src/select-mobile-picker-column.vue.d.ts +17 -0
  123. package/vue3/src/components/form/select/src/select.vue.d.ts +27 -15
  124. package/vue3/src/components/form/timezone-picker/index.d.ts +42 -0
  125. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +22 -0
  126. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -0
  127. package/vue3/src/components/form/types/index.d.ts +0 -1
  128. package/vue3/src/components/icons/icons/crop-two/index.d.ts +6 -0
  129. package/vue3/src/components/icons/icons/email/index.d.ts +6 -0
  130. package/vue3/src/components/icons/icons/location/index.d.ts +6 -0
  131. package/vue3/src/components/icons/icons/logout/index.d.ts +6 -0
  132. package/vue3/src/components/icons/icons/number/index.d.ts +6 -0
  133. package/vue3/src/components/icons/icons/option/index.d.ts +6 -0
  134. package/vue3/src/components/icons/icons/phone/index.d.ts +6 -0
  135. package/vue3/src/components/icons/icons/qa/index.d.ts +6 -0
  136. package/vue3/src/components/icons/icons/qa-one/index.d.ts +6 -0
  137. package/vue3/src/components/icons/icons/return/index.d.ts +6 -0
  138. package/vue3/src/components/icons/icons/text/index.d.ts +6 -0
  139. package/vue3/src/components/icons/map.d.ts +11 -0
  140. package/vue3/src/components/image-cropper/index.d.ts +27 -1
  141. package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +34 -0
  142. package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +7 -14
  143. package/vue3/src/components/image-cropper/src/image-cropper-preview.vue.d.ts +16 -0
  144. package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +13 -3
  145. package/vue3/src/components/image-preview/components/image-zoom-wrap.vue.d.ts +2 -0
  146. package/vue3/src/components/image-preview/components/preview-controller.vue.d.ts +2 -0
  147. package/vue3/src/components/image-preview/hooks/props-define.d.ts +54 -3
  148. package/vue3/src/components/image-preview/hooks/use-image-preview-component.d.ts +0 -2
  149. package/vue3/src/components/image-preview/hooks/use-image-preview-intercept.d.ts +14 -0
  150. package/vue3/src/components/image-preview/hooks/use-image-preview.d.ts +14 -1
  151. package/vue3/src/components/image-preview/image-preview-container.vue.d.ts +33 -0
  152. package/vue3/src/components/image-preview/image-preview.vue.d.ts +17 -6
  153. package/vue3/src/components/image-preview/index.d.ts +2 -0
  154. package/vue3/src/components/popup/index.d.ts +40 -0
  155. package/vue3/src/components/popup/src/hooks/popup-props.d.ts +16 -2
  156. package/vue3/src/components/popup/src/popup.vue.d.ts +14 -0
  157. package/vue3/src/components/sensitive-text/index.d.ts +5 -5
  158. package/vue3/src/components/sensitive-text/src/props-define.d.ts +2 -2
  159. package/vue3/src/components/sensitive-text/src/sensitive-text.vue.d.ts +5 -5
  160. package/vue3/src/components/space/index.d.ts +76 -0
  161. package/vue3/src/components/space/src/props-define.d.ts +36 -0
  162. package/vue3/src/components/space/src/space.vue.d.ts +41 -0
  163. package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +2 -0
  164. package/vue3/src/components/table/index.d.ts +48 -26
  165. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +6 -1
  166. package/vue3/src/components/table/src/hooks/props-define.d.ts +39 -3
  167. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +1 -0
  168. package/vue3/src/components/table/src/hooks/use-table/use-table-request.d.ts +1 -1
  169. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  170. package/vue3/src/components/table/src/table-column.vue.d.ts +7 -7
  171. package/vue3/src/components/table/src/table.vue.d.ts +14 -7
  172. package/vue3/src/components/tabs/index.d.ts +14 -14
  173. package/vue3/src/components/tabs/src/props-define.d.ts +2 -2
  174. package/vue3/src/components/tabs/src/tabs.vue.d.ts +5 -5
  175. package/vue3/src/components/zoom-container/hooks/use-zoom-size.d.ts +1 -1
  176. package/vue3/src/components/zoom-container/use-zoom-container.d.ts +4 -0
  177. package/vue3/src/components/zoom-container/zoom-container.vue.d.ts +2 -0
  178. package/vue3/src/index.d.ts +5 -0
  179. package/vue3/src/lang/internal/en.json.d.ts +3 -1
  180. package/vue3/src/lang/internal/index.d.ts +2 -0
  181. package/vue3/src/lang/internal/ja.json.d.ts +3 -1
  182. package/vue3/src/lang/internal/ko.json.d.ts +3 -1
  183. package/vue3/src/lang/internal/ru.json.d.ts +3 -1
  184. package/vue3/src/lang/internal/zh-CN.json.d.ts +3 -1
  185. package/vue3/src/lang/internal/zh-TW.json.d.ts +3 -1
@@ -19,6 +19,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
19
19
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
20
20
  default: boolean;
21
21
  };
22
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
22
23
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
23
24
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
24
25
  default: string;
@@ -198,7 +199,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
198
199
  };
199
200
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
200
201
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
202
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
203
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
204
+ };
201
205
  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>>;
206
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
202
207
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
203
208
  default: boolean;
204
209
  };
@@ -231,6 +236,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
231
236
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
232
237
  default: boolean;
233
238
  };
239
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
234
240
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
235
241
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
236
242
  default: string;
@@ -410,7 +416,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
410
416
  };
411
417
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
412
418
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
419
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
420
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
421
+ };
413
422
  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>>;
423
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
414
424
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
415
425
  default: boolean;
416
426
  };
@@ -444,6 +454,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
444
454
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
445
455
  default: boolean;
446
456
  };
457
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
447
458
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
448
459
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
449
460
  default: string;
@@ -623,7 +634,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
623
634
  };
624
635
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
625
636
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
637
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
638
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
639
+ };
626
640
  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>>;
641
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
627
642
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
628
643
  default: boolean;
629
644
  };
@@ -642,6 +657,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
642
657
  "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
643
658
  }>>;
644
659
  };
660
+ fullText: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
661
+ default: boolean;
662
+ };
645
663
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
646
664
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
647
665
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -677,6 +695,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
677
695
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
678
696
  default: boolean;
679
697
  };
698
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
680
699
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
681
700
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
682
701
  default: string;
@@ -856,7 +875,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
856
875
  };
857
876
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
858
877
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
878
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
879
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
880
+ };
859
881
  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>>;
882
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
860
883
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
861
884
  default: boolean;
862
885
  };
@@ -889,6 +912,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
889
912
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
890
913
  default: boolean;
891
914
  };
915
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
892
916
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
893
917
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
894
918
  default: string;
@@ -1068,7 +1092,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1068
1092
  };
1069
1093
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1070
1094
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1095
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1096
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1097
+ };
1071
1098
  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>>;
1099
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
1072
1100
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1073
1101
  default: boolean;
1074
1102
  };
@@ -1102,6 +1130,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1102
1130
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1103
1131
  default: boolean;
1104
1132
  };
1133
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1105
1134
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1106
1135
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1107
1136
  default: string;
@@ -1281,7 +1310,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1281
1310
  };
1282
1311
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1283
1312
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1313
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1314
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1315
+ };
1284
1316
  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>>;
1317
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
1285
1318
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1286
1319
  default: boolean;
1287
1320
  };
@@ -1300,6 +1333,9 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1300
1333
  "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1301
1334
  }>>;
1302
1335
  };
1336
+ fullText: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1337
+ default: boolean;
1338
+ };
1303
1339
  business: import('vue-types').VueTypeValidableDef<import('../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../..').BusinessType>>;
1304
1340
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1305
1341
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -1330,6 +1366,7 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1330
1366
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1331
1367
  default: boolean;
1332
1368
  };
1369
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1333
1370
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1334
1371
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1335
1372
  default: string;
@@ -1509,7 +1546,11 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1509
1546
  };
1510
1547
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1511
1548
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1549
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1550
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1551
+ };
1512
1552
  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>>;
1553
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../select').SelectOptionItem) => string>>;
1513
1554
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1514
1555
  default: boolean;
1515
1556
  };
@@ -1528,5 +1569,6 @@ export declare const PwcTimezonePicker: import('../../../vue-utils/install-utils
1528
1569
  "v-model-key": import('vue-types').VueTypeDef<import('../select').SelectValue | import('../select').SelectValue[]>;
1529
1570
  }>>;
1530
1571
  defaultTimezone: boolean;
1572
+ fullText: boolean;
1531
1573
  }>, import('../../../vue-utils/install-utils').InstallOptions>;
1532
1574
  export * from './src/hooks/props-define';
@@ -29,6 +29,7 @@ export declare const timezonePickerProps: () => {
29
29
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
30
30
  default: boolean;
31
31
  };
32
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
32
33
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
33
34
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
34
35
  default: string;
@@ -208,7 +209,11 @@ export declare const timezonePickerProps: () => {
208
209
  };
209
210
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
210
211
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
212
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
213
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
214
+ };
211
215
  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>>;
216
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../../../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../../../select').SelectOptionItem) => string>>;
212
217
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
213
218
  default: boolean;
214
219
  };
@@ -241,6 +246,7 @@ export declare const timezonePickerProps: () => {
241
246
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
242
247
  default: boolean;
243
248
  };
249
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
244
250
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
245
251
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
246
252
  default: string;
@@ -420,7 +426,11 @@ export declare const timezonePickerProps: () => {
420
426
  };
421
427
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
422
428
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
429
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
430
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
431
+ };
423
432
  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>>;
433
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../../../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../../../select').SelectOptionItem) => string>>;
424
434
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
425
435
  default: boolean;
426
436
  };
@@ -454,6 +464,7 @@ export declare const timezonePickerProps: () => {
454
464
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
455
465
  default: boolean;
456
466
  };
467
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
457
468
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
458
469
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
459
470
  default: string;
@@ -633,7 +644,11 @@ export declare const timezonePickerProps: () => {
633
644
  };
634
645
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
635
646
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
647
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
648
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
649
+ };
636
650
  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>>;
651
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('../../../select').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('../../../select').SelectOptionItem) => string>>;
637
652
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
638
653
  default: boolean;
639
654
  };
@@ -652,6 +667,13 @@ export declare const timezonePickerProps: () => {
652
667
  "v-model-key": import('vue-types').VueTypeDef<import('../../../select').SelectValue | import('../../../select').SelectValue[]>;
653
668
  }>>;
654
669
  };
670
+ /**
671
+ * 完整文案
672
+ * @default false
673
+ */
674
+ fullText: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
675
+ default: boolean;
676
+ };
655
677
  business: import('vue-types').VueTypeValidableDef<import('../../../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../../../..').BusinessType>>;
656
678
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
657
679
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -20,6 +20,7 @@ declare const _default: import('vue').DefineComponent<{
20
20
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
21
21
  default: boolean;
22
22
  };
23
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
24
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
24
25
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
25
26
  default: string;
@@ -199,7 +200,11 @@ declare const _default: import('vue').DefineComponent<{
199
200
  };
200
201
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
201
202
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
203
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
204
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
205
+ };
202
206
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
207
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
203
208
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
204
209
  default: boolean;
205
210
  };
@@ -232,6 +237,7 @@ declare const _default: import('vue').DefineComponent<{
232
237
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
233
238
  default: boolean;
234
239
  };
240
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
235
241
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
236
242
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
237
243
  default: string;
@@ -411,7 +417,11 @@ declare const _default: import('vue').DefineComponent<{
411
417
  };
412
418
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
413
419
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
420
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
421
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
422
+ };
414
423
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
424
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
415
425
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
416
426
  default: boolean;
417
427
  };
@@ -445,6 +455,7 @@ declare const _default: import('vue').DefineComponent<{
445
455
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
446
456
  default: boolean;
447
457
  };
458
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
448
459
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
449
460
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
450
461
  default: string;
@@ -624,7 +635,11 @@ declare const _default: import('vue').DefineComponent<{
624
635
  };
625
636
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
626
637
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
638
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
639
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
640
+ };
627
641
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
642
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
628
643
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
629
644
  default: boolean;
630
645
  };
@@ -643,6 +658,9 @@ declare const _default: import('vue').DefineComponent<{
643
658
  "v-model-key": import('vue-types').VueTypeDef<import('../../select').SelectValue | import('../../select').SelectValue[]>;
644
659
  }>>;
645
660
  };
661
+ fullText: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
662
+ default: boolean;
663
+ };
646
664
  business: import('vue-types').VueTypeValidableDef<import('../../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../../..').BusinessType>>;
647
665
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
648
666
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -678,6 +696,7 @@ declare const _default: import('vue').DefineComponent<{
678
696
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
679
697
  default: boolean;
680
698
  };
699
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
681
700
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
682
701
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
683
702
  default: string;
@@ -857,7 +876,11 @@ declare const _default: import('vue').DefineComponent<{
857
876
  };
858
877
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
859
878
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
879
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
880
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
881
+ };
860
882
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
883
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
861
884
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
862
885
  default: boolean;
863
886
  };
@@ -890,6 +913,7 @@ declare const _default: import('vue').DefineComponent<{
890
913
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
891
914
  default: boolean;
892
915
  };
916
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
893
917
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
894
918
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
895
919
  default: string;
@@ -1069,7 +1093,11 @@ declare const _default: import('vue').DefineComponent<{
1069
1093
  };
1070
1094
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1071
1095
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1096
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1097
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1098
+ };
1072
1099
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
1100
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
1073
1101
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1074
1102
  default: boolean;
1075
1103
  };
@@ -1103,6 +1131,7 @@ declare const _default: import('vue').DefineComponent<{
1103
1131
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1104
1132
  default: boolean;
1105
1133
  };
1134
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1106
1135
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1107
1136
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1108
1137
  default: string;
@@ -1282,7 +1311,11 @@ declare const _default: import('vue').DefineComponent<{
1282
1311
  };
1283
1312
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1284
1313
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1314
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1315
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1316
+ };
1285
1317
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
1318
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
1286
1319
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1287
1320
  default: boolean;
1288
1321
  };
@@ -1301,6 +1334,9 @@ declare const _default: import('vue').DefineComponent<{
1301
1334
  "v-model-key": import('vue-types').VueTypeDef<import('../../select').SelectValue | import('../../select').SelectValue[]>;
1302
1335
  }>>;
1303
1336
  };
1337
+ fullText: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1338
+ default: boolean;
1339
+ };
1304
1340
  business: import('vue-types').VueTypeValidableDef<import('../../../..').BusinessType, import('vue-types/dist/types').ValidatorFunction<import('../../../..').BusinessType>>;
1305
1341
  size: import('vue-types').VueTypeDef<"small" | "large" | "medium">;
1306
1342
  disabled: import('vue-types').VueTypeValidableDef<boolean | undefined, import('vue-types/dist/types').ValidatorFunction<boolean | undefined>>;
@@ -1331,6 +1367,7 @@ declare const _default: import('vue').DefineComponent<{
1331
1367
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1332
1368
  default: boolean;
1333
1369
  };
1370
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1334
1371
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1335
1372
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1336
1373
  default: string;
@@ -1510,7 +1547,11 @@ declare const _default: import('vue').DefineComponent<{
1510
1547
  };
1511
1548
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1512
1549
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1550
+ optionPlacement: import('vue-types').VueTypeDef<"left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end"> & {
1551
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1552
+ };
1513
1553
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('../../select').SelectValue) => SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('../../select').SelectValue) => SelectOptionItem | undefined>>;
1554
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: SelectOptionItem) => string>>;
1514
1555
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1515
1556
  default: boolean;
1516
1557
  };
@@ -1529,5 +1570,6 @@ declare const _default: import('vue').DefineComponent<{
1529
1570
  "v-model-key": import('vue-types').VueTypeDef<import('../../select').SelectValue | import('../../select').SelectValue[]>;
1530
1571
  }>>;
1531
1572
  defaultTimezone: boolean;
1573
+ fullText: boolean;
1532
1574
  }>;
1533
1575
  export default _default;
@@ -6,7 +6,6 @@ export type FormEffect = typeof formEffects[number];
6
6
  /** 表单大小 */
7
7
  export declare const formSizes: readonly ["large", "medium", "small"];
8
8
  export type FormSize = typeof formSizes[number];
9
- /** 表单尺寸 */
10
9
  /**
11
10
  * 表单验证选项
12
11
  */
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file CropTwo Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Email Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Location Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Logout Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Number Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Option Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Phone Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Qa Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file QaOne Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Return Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @file Text Icon
3
+ * @author Auto Generated by @polyv/icons-cli
4
+ */
5
+ declare const _default: import('@polyv/icons-vue-middle/icon-builder').IconComponentOption;
6
+ export default _default;
@@ -29,6 +29,7 @@ export { default as PwcIconComputerFilled } from './icons/computer-filled';
29
29
  export { default as PwcIconComputerPlay } from './icons/computer-play';
30
30
  export { default as PwcIconCopy } from './icons/copy';
31
31
  export { default as PwcIconCrop } from './icons/crop';
32
+ export { default as PwcIconCropTwo } from './icons/crop-two';
32
33
  export { default as PwcIconCustomerService } from './icons/customer-service';
33
34
  export { default as PwcIconDataExport } from './icons/data-export';
34
35
  export { default as PwcIconDataExportTwo } from './icons/data-export-two';
@@ -40,6 +41,7 @@ export { default as PwcIconDrag } from './icons/drag';
40
41
  export { default as PwcIconEdit } from './icons/edit';
41
42
  export { default as PwcIconEditTwo } from './icons/edit-two';
42
43
  export { default as PwcIconEffect } from './icons/effect';
44
+ export { default as PwcIconEmail } from './icons/email';
43
45
  export { default as PwcIconEmptyPrize } from './icons/empty-prize';
44
46
  export { default as PwcIconError } from './icons/error';
45
47
  export { default as PwcIconErrorCircleFilled } from './icons/error-circle-filled';
@@ -65,6 +67,8 @@ export { default as PwcIconLeft } from './icons/left';
65
67
  export { default as PwcIconLink } from './icons/link';
66
68
  export { default as PwcIconList } from './icons/list';
67
69
  export { default as PwcIconLoading } from './icons/loading';
70
+ export { default as PwcIconLocation } from './icons/location';
71
+ export { default as PwcIconLogout } from './icons/logout';
68
72
  export { default as PwcIconMenuExpand } from './icons/menu-expand';
69
73
  export { default as PwcIconMenuFoldUp } from './icons/menu-fold-up';
70
74
  export { default as PwcIconMinus } from './icons/minus';
@@ -73,8 +77,11 @@ export { default as PwcIconMoney } from './icons/money';
73
77
  export { default as PwcIconMore } from './icons/more';
74
78
  export { default as PwcIconMoveDown } from './icons/move-down';
75
79
  export { default as PwcIconMoveUp } from './icons/move-up';
80
+ export { default as PwcIconNumber } from './icons/number';
81
+ export { default as PwcIconOption } from './icons/option';
76
82
  export { default as PwcIconPause } from './icons/pause';
77
83
  export { default as PwcIconPeoples } from './icons/peoples';
84
+ export { default as PwcIconPhone } from './icons/phone';
78
85
  export { default as PwcIconPlatform } from './icons/platform';
79
86
  export { default as PwcIconPlatformFilled } from './icons/platform-filled';
80
87
  export { default as PwcIconPlay } from './icons/play';
@@ -85,11 +92,14 @@ export { default as PwcIconPreviewClose } from './icons/preview-close';
85
92
  export { default as PwcIconPreviewOpen } from './icons/preview-open';
86
93
  export { default as PwcIconProduct } from './icons/product';
87
94
  export { default as PwcIconProtect } from './icons/protect';
95
+ export { default as PwcIconQa } from './icons/qa';
96
+ export { default as PwcIconQaOne } from './icons/qa-one';
88
97
  export { default as PwcIconQuestionCircleFilled } from './icons/question-circle-filled';
89
98
  export { default as PwcIconQuestionCircleOutline } from './icons/question-circle-outline';
90
99
  export { default as PwcIconRefresh } from './icons/refresh';
91
100
  export { default as PwcIconRemindOff } from './icons/remind-off';
92
101
  export { default as PwcIconRemindOn } from './icons/remind-on';
102
+ export { default as PwcIconReturn } from './icons/return';
93
103
  export { default as PwcIconRight } from './icons/right';
94
104
  export { default as PwcIconRocket } from './icons/rocket';
95
105
  export { default as PwcIconSearch } from './icons/search';
@@ -104,6 +114,7 @@ export { default as PwcIconSuccess } from './icons/success';
104
114
  export { default as PwcIconSuccessCircleFilled } from './icons/success-circle-filled';
105
115
  export { default as PwcIconSuccessCircleOutline } from './icons/success-circle-outline';
106
116
  export { default as PwcIconTag } from './icons/tag';
117
+ export { default as PwcIconText } from './icons/text';
107
118
  export { default as PwcIconTransfer } from './icons/transfer';
108
119
  export { default as PwcIconTranslate } from './icons/translate';
109
120
  export { default as PwcIconUp } from './icons/up';