@polyv/vue-components 1.10.1 → 1.11.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 (141) hide show
  1. package/package.json +1 -1
  2. package/vue2/index.es.js +11205 -10718
  3. package/vue2/src/components/business/external-links/use-external-links.d.ts +1 -0
  4. package/vue2/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +1 -0
  5. package/vue2/src/components/exports.d.ts +1 -0
  6. package/vue2/src/components/form/date-picker/index.d.ts +9 -0
  7. package/vue2/src/components/form/date-picker/src/components/picker-popper/vertical-pick-popper.vue.d.ts +2 -0
  8. package/vue2/src/components/form/date-picker/src/components/time-select/time-input-select.vue.d.ts +2 -0
  9. package/vue2/src/components/form/date-picker/src/date-picker.vue.d.ts +9 -0
  10. package/vue2/src/components/form/date-picker/src/hooks/props-define.d.ts +11 -0
  11. package/vue2/src/components/form/date-picker/src/types/index.d.ts +3 -1
  12. package/vue2/src/components/form/file-upload/index.d.ts +38 -0
  13. package/vue2/src/components/form/file-upload/src/file-upload.vue.d.ts +13 -0
  14. package/vue2/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -0
  15. package/vue2/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -0
  16. package/vue2/src/components/form/form-submit-button/index.d.ts +1 -1
  17. package/vue2/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  18. package/vue2/src/components/form/image-upload/index.d.ts +12 -0
  19. package/vue2/src/components/form/image-upload/src/hooks/props-define.d.ts +6 -0
  20. package/vue2/src/components/form/image-upload/src/image-upload.vue.d.ts +12 -0
  21. package/vue2/src/components/form/select/index.d.ts +32 -0
  22. package/vue2/src/components/form/select/src/props-define.d.ts +15 -0
  23. package/vue2/src/components/form/select/src/select.vue.d.ts +11 -0
  24. package/vue2/src/components/form/timezone-picker/index.d.ts +42 -0
  25. package/vue2/src/components/form/timezone-picker/src/hooks/props-define.d.ts +22 -0
  26. package/vue2/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -0
  27. package/vue2/src/components/form/types/index.d.ts +0 -1
  28. package/vue2/src/components/icons/icons/crop-two/index.d.ts +6 -0
  29. package/vue2/src/components/icons/icons/email/index.d.ts +6 -0
  30. package/vue2/src/components/icons/icons/location/index.d.ts +6 -0
  31. package/vue2/src/components/icons/icons/number/index.d.ts +6 -0
  32. package/vue2/src/components/icons/icons/option/index.d.ts +6 -0
  33. package/vue2/src/components/icons/icons/phone/index.d.ts +6 -0
  34. package/vue2/src/components/icons/icons/qa/index.d.ts +6 -0
  35. package/vue2/src/components/icons/icons/qa-one/index.d.ts +6 -0
  36. package/vue2/src/components/icons/icons/text/index.d.ts +6 -0
  37. package/vue2/src/components/icons/map.d.ts +9 -0
  38. package/vue2/src/components/image-cropper/index.d.ts +27 -1
  39. package/vue2/src/components/image-cropper/src/hooks/props-define.d.ts +34 -0
  40. package/vue2/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +7 -14
  41. package/vue2/src/components/image-cropper/src/image-cropper-preview.vue.d.ts +16 -0
  42. package/vue2/src/components/image-cropper/src/image-cropper.vue.d.ts +13 -3
  43. package/vue2/src/components/image-preview/hooks/props-define.d.ts +7 -0
  44. package/vue2/src/components/image-preview/hooks/use-image-preview.d.ts +5 -0
  45. package/vue2/src/components/image-preview/image-preview.vue.d.ts +7 -0
  46. package/vue2/src/components/sensitive-text/index.d.ts +5 -5
  47. package/vue2/src/components/sensitive-text/src/props-define.d.ts +2 -2
  48. package/vue2/src/components/sensitive-text/src/sensitive-text.vue.d.ts +5 -5
  49. package/vue2/src/components/space/index.d.ts +76 -0
  50. package/vue2/src/components/space/src/props-define.d.ts +36 -0
  51. package/vue2/src/components/space/src/space.vue.d.ts +41 -0
  52. package/vue2/src/components/swiper/hooks/use-swiper-wrapper.d.ts +2 -0
  53. package/vue2/src/components/table/index.d.ts +48 -26
  54. package/vue2/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +6 -1
  55. package/vue2/src/components/table/src/hooks/props-define.d.ts +39 -3
  56. package/vue2/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +1 -0
  57. package/vue2/src/components/table/src/hooks/use-table/use-table-request.d.ts +1 -1
  58. package/vue2/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  59. package/vue2/src/components/table/src/table-column.vue.d.ts +7 -7
  60. package/vue2/src/components/table/src/table.vue.d.ts +14 -7
  61. package/vue2/src/components/tabs/index.d.ts +14 -14
  62. package/vue2/src/components/tabs/src/props-define.d.ts +2 -2
  63. package/vue2/src/components/tabs/src/tabs.vue.d.ts +5 -5
  64. package/vue2/src/index.d.ts +5 -0
  65. package/vue2/src/lang/internal/en.json.d.ts +2 -1
  66. package/vue2/src/lang/internal/index.d.ts +1 -0
  67. package/vue2/src/lang/internal/ja.json.d.ts +2 -1
  68. package/vue2/src/lang/internal/ko.json.d.ts +2 -1
  69. package/vue2/src/lang/internal/ru.json.d.ts +2 -1
  70. package/vue2/src/lang/internal/zh-CN.json.d.ts +2 -1
  71. package/vue2/src/lang/internal/zh-TW.json.d.ts +2 -1
  72. package/vue3/index.es.js +7105 -6618
  73. package/vue3/src/components/business/external-links/use-external-links.d.ts +1 -0
  74. package/vue3/src/components/business/reward-receive/hooks/use-reward-receive.d.ts +1 -0
  75. package/vue3/src/components/exports.d.ts +1 -0
  76. package/vue3/src/components/form/date-picker/index.d.ts +9 -0
  77. package/vue3/src/components/form/date-picker/src/components/picker-popper/vertical-pick-popper.vue.d.ts +2 -0
  78. package/vue3/src/components/form/date-picker/src/components/time-select/time-input-select.vue.d.ts +2 -0
  79. package/vue3/src/components/form/date-picker/src/date-picker.vue.d.ts +9 -0
  80. package/vue3/src/components/form/date-picker/src/hooks/props-define.d.ts +11 -0
  81. package/vue3/src/components/form/date-picker/src/types/index.d.ts +3 -1
  82. package/vue3/src/components/form/file-upload/index.d.ts +38 -0
  83. package/vue3/src/components/form/file-upload/src/file-upload.vue.d.ts +13 -0
  84. package/vue3/src/components/form/file-upload/src/hooks/props-define.d.ts +6 -0
  85. package/vue3/src/components/form/file-upload/src/hooks/use-file-upload.d.ts +1 -0
  86. package/vue3/src/components/form/form-submit-button/index.d.ts +1 -1
  87. package/vue3/src/components/form/form-submit-button/src/form-submit-button.vue.d.ts +1 -1
  88. package/vue3/src/components/form/image-upload/index.d.ts +12 -0
  89. package/vue3/src/components/form/image-upload/src/hooks/props-define.d.ts +6 -0
  90. package/vue3/src/components/form/image-upload/src/image-upload.vue.d.ts +12 -0
  91. package/vue3/src/components/form/select/index.d.ts +32 -0
  92. package/vue3/src/components/form/select/src/props-define.d.ts +15 -0
  93. package/vue3/src/components/form/select/src/select.vue.d.ts +11 -0
  94. package/vue3/src/components/form/timezone-picker/index.d.ts +42 -0
  95. package/vue3/src/components/form/timezone-picker/src/hooks/props-define.d.ts +22 -0
  96. package/vue3/src/components/form/timezone-picker/src/timezone-picker.vue.d.ts +42 -0
  97. package/vue3/src/components/form/types/index.d.ts +0 -1
  98. package/vue3/src/components/icons/icons/crop-two/index.d.ts +6 -0
  99. package/vue3/src/components/icons/icons/email/index.d.ts +6 -0
  100. package/vue3/src/components/icons/icons/location/index.d.ts +6 -0
  101. package/vue3/src/components/icons/icons/number/index.d.ts +6 -0
  102. package/vue3/src/components/icons/icons/option/index.d.ts +6 -0
  103. package/vue3/src/components/icons/icons/phone/index.d.ts +6 -0
  104. package/vue3/src/components/icons/icons/qa/index.d.ts +6 -0
  105. package/vue3/src/components/icons/icons/qa-one/index.d.ts +6 -0
  106. package/vue3/src/components/icons/icons/text/index.d.ts +6 -0
  107. package/vue3/src/components/icons/map.d.ts +9 -0
  108. package/vue3/src/components/image-cropper/index.d.ts +27 -1
  109. package/vue3/src/components/image-cropper/src/hooks/props-define.d.ts +34 -0
  110. package/vue3/src/components/image-cropper/src/hooks/use-image-cropper.d.ts +7 -14
  111. package/vue3/src/components/image-cropper/src/image-cropper-preview.vue.d.ts +16 -0
  112. package/vue3/src/components/image-cropper/src/image-cropper.vue.d.ts +13 -3
  113. package/vue3/src/components/image-preview/hooks/props-define.d.ts +7 -0
  114. package/vue3/src/components/image-preview/hooks/use-image-preview.d.ts +5 -0
  115. package/vue3/src/components/image-preview/image-preview.vue.d.ts +7 -0
  116. package/vue3/src/components/sensitive-text/index.d.ts +5 -5
  117. package/vue3/src/components/sensitive-text/src/props-define.d.ts +2 -2
  118. package/vue3/src/components/sensitive-text/src/sensitive-text.vue.d.ts +5 -5
  119. package/vue3/src/components/space/index.d.ts +76 -0
  120. package/vue3/src/components/space/src/props-define.d.ts +36 -0
  121. package/vue3/src/components/space/src/space.vue.d.ts +41 -0
  122. package/vue3/src/components/swiper/hooks/use-swiper-wrapper.d.ts +2 -0
  123. package/vue3/src/components/table/index.d.ts +48 -26
  124. package/vue3/src/components/table/src/components/table-body-row/use-table-body-row.d.ts +6 -1
  125. package/vue3/src/components/table/src/hooks/props-define.d.ts +39 -3
  126. package/vue3/src/components/table/src/hooks/use-table/use-table-render-data.d.ts +1 -0
  127. package/vue3/src/components/table/src/hooks/use-table/use-table-request.d.ts +1 -1
  128. package/vue3/src/components/table/src/hooks/use-table/use-table.d.ts +2 -1
  129. package/vue3/src/components/table/src/table-column.vue.d.ts +7 -7
  130. package/vue3/src/components/table/src/table.vue.d.ts +14 -7
  131. package/vue3/src/components/tabs/index.d.ts +14 -14
  132. package/vue3/src/components/tabs/src/props-define.d.ts +2 -2
  133. package/vue3/src/components/tabs/src/tabs.vue.d.ts +5 -5
  134. package/vue3/src/index.d.ts +5 -0
  135. package/vue3/src/lang/internal/en.json.d.ts +2 -1
  136. package/vue3/src/lang/internal/index.d.ts +1 -0
  137. package/vue3/src/lang/internal/ja.json.d.ts +2 -1
  138. package/vue3/src/lang/internal/ko.json.d.ts +2 -1
  139. package/vue3/src/lang/internal/ru.json.d.ts +2 -1
  140. package/vue3/src/lang/internal/zh-CN.json.d.ts +2 -1
  141. package/vue3/src/lang/internal/zh-TW.json.d.ts +2 -1
@@ -215,6 +215,7 @@ export declare const useExternalLinks: ({ props, emit }: UseExternalLinksOptions
215
215
  };
216
216
  timezonePicker: {
217
217
  placeholder: string;
218
+ searchPlaceholder: string;
218
219
  };
219
220
  select: {
220
221
  searchPlaceholder: string;
@@ -187,6 +187,7 @@ export declare const useRewardReceive: (options: {
187
187
  };
188
188
  timezonePicker: {
189
189
  placeholder: string;
190
+ searchPlaceholder: string;
190
191
  };
191
192
  select: {
192
193
  searchPlaceholder: string;
@@ -67,6 +67,7 @@ export * from './scrollbar';
67
67
  export * from './section';
68
68
  export * from './sensitive-text';
69
69
  export * from './slider';
70
+ export * from './space';
70
71
  export * from './splitter';
71
72
  export * from './swiper';
72
73
  export * from './table';
@@ -20,6 +20,10 @@ export declare const PwcDatePicker: import('../../../vue-utils/install-utils').S
20
20
  default: () => import('./src/types').DatePickerPresetType[];
21
21
  };
22
22
  timezone: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
+ popperDirection: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
24
+ default: "vertical" | "horizontal";
25
+ };
26
+ popperTitle: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
27
  allowDate: import('vue-types').VueTypeDef<import('./src/types').DatePickerLimitType>;
24
28
  allowRangePickCount: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
25
29
  disabledDate: import('vue-types').VueTypeDef<import('./src/types').DatePickerLimitType>;
@@ -72,6 +76,10 @@ export declare const PwcDatePicker: import('../../../vue-utils/install-utils').S
72
76
  default: () => import('./src/types').DatePickerPresetType[];
73
77
  };
74
78
  timezone: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
79
+ popperDirection: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
80
+ default: "vertical" | "horizontal";
81
+ };
82
+ popperTitle: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
75
83
  allowDate: import('vue-types').VueTypeDef<import('./src/types').DatePickerLimitType>;
76
84
  allowRangePickCount: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
77
85
  disabledDate: import('vue-types').VueTypeDef<import('./src/types').DatePickerLimitType>;
@@ -107,6 +115,7 @@ export declare const PwcDatePicker: import('../../../vue-utils/install-utils').S
107
115
  showDate: boolean;
108
116
  showTime: boolean;
109
117
  presets: import('./src/types').DatePickerPresetType[];
118
+ popperDirection: "vertical" | "horizontal";
110
119
  disabledAfterToday: boolean;
111
120
  disabledBeforeToday: boolean;
112
121
  disabledCrossMonth: boolean;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
2
+ export default _default;
@@ -20,6 +20,10 @@ declare const _default: import('vue').DefineComponent<{
20
20
  default: () => import('./types').DatePickerPresetType[];
21
21
  };
22
22
  timezone: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
+ popperDirection: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
24
+ default: "vertical" | "horizontal";
25
+ };
26
+ popperTitle: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
23
27
  allowDate: import('vue-types').VueTypeDef<import('./types').DatePickerLimitType>;
24
28
  allowRangePickCount: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
25
29
  disabledDate: import('vue-types').VueTypeDef<import('./types').DatePickerLimitType>;
@@ -72,6 +76,10 @@ declare const _default: import('vue').DefineComponent<{
72
76
  default: () => import('./types').DatePickerPresetType[];
73
77
  };
74
78
  timezone: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
79
+ popperDirection: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
80
+ default: "vertical" | "horizontal";
81
+ };
82
+ popperTitle: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
75
83
  allowDate: import('vue-types').VueTypeDef<import('./types').DatePickerLimitType>;
76
84
  allowRangePickCount: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
77
85
  disabledDate: import('vue-types').VueTypeDef<import('./types').DatePickerLimitType>;
@@ -107,6 +115,7 @@ declare const _default: import('vue').DefineComponent<{
107
115
  showDate: boolean;
108
116
  showTime: boolean;
109
117
  presets: import('./types').DatePickerPresetType[];
118
+ popperDirection: "vertical" | "horizontal";
110
119
  disabledAfterToday: boolean;
111
120
  disabledBeforeToday: boolean;
112
121
  disabledCrossMonth: boolean;
@@ -59,6 +59,17 @@ export declare const datePickerProps: () => {
59
59
  * 时区
60
60
  */
61
61
  timezone: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
62
+ /**
63
+ * 弹层布局方向
64
+ * @default 'horizontal'
65
+ */
66
+ popperDirection: import('vue-types').VueTypeDef<"vertical" | "horizontal"> & {
67
+ default: "vertical" | "horizontal";
68
+ };
69
+ /**
70
+ * 弹层标题,仅在纵向弹层布局中显示
71
+ */
72
+ popperTitle: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
62
73
  /**
63
74
  * 允许选择的日期,传入空数组表示不限制,传入函数返回 true 时表示允许选择
64
75
  */
@@ -2,13 +2,15 @@ import { Dayjs } from 'dayjs';
2
2
  export type DatePickerValue = number | string | Date;
3
3
  export declare const datePickerTypes: readonly ["date", "daterange"];
4
4
  export type DatePickerType = typeof datePickerTypes[number];
5
+ export declare const datePickerPopperDirections: readonly ["horizontal", "vertical"];
6
+ export type DatePickerPopperDirection = typeof datePickerPopperDirections[number];
5
7
  export type DatePickerFormatBase = string;
6
8
  export type DatePickerFormatFn = (value: number) => string;
7
9
  export type DatePickerFormatType = DatePickerFormatBase | DatePickerFormatFn | Array<DatePickerFormatBase | DatePickerFormatFn>;
8
10
  export type DatePickerLimitFn = (date: Date) => boolean;
9
11
  export type DatePickerLimitType = Date | Date[] | DatePickerLimitFn;
10
12
  /** 内部预设类型 */
11
- export type DatePickerPresetInternal = 'today' | 'yesterday' | 'tomorrow' | '30-minutes-later' | '1-hour-later' | 'last-7-days' | 'last-30-days' | 'last-90-days' | 'last-100-days' | 'last-180-days' | 'last-360-days';
13
+ export type DatePickerPresetInternal = 'current' | 'today' | 'yesterday' | 'tomorrow' | '30-minutes-later' | '1-hour-later' | 'last-7-days' | 'last-30-days' | 'last-90-days' | 'last-100-days' | 'last-180-days' | 'last-360-days';
12
14
  export type DatePickerPresetValue = number | number[];
13
15
  export type DatePickerPresetValueFn = () => DatePickerPresetValue;
14
16
  export interface DatePickerPresetItem {
@@ -66,6 +66,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
66
66
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
67
67
  default: boolean;
68
68
  };
69
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
70
+ default: boolean;
71
+ };
69
72
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
70
73
  target: import('vue-types').VueTypeDef<string | File | Blob>;
71
74
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -76,6 +79,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
76
79
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
77
80
  default: boolean;
78
81
  };
82
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
83
+ default: boolean;
84
+ };
79
85
  }>>>>;
80
86
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
81
87
  default: boolean;
@@ -142,6 +148,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
142
148
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
143
149
  default: boolean;
144
150
  };
151
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
152
+ default: boolean;
153
+ };
145
154
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
146
155
  target: import('vue-types').VueTypeDef<string | File | Blob>;
147
156
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -152,6 +161,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
152
161
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
153
162
  default: boolean;
154
163
  };
164
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
165
+ default: boolean;
166
+ };
155
167
  }>>>>;
156
168
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
157
169
  default: boolean;
@@ -242,6 +254,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
242
254
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
243
255
  default: boolean;
244
256
  };
257
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
258
+ default: boolean;
259
+ };
245
260
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
246
261
  target: import('vue-types').VueTypeDef<string | File | Blob>;
247
262
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -252,12 +267,16 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
252
267
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
253
268
  default: boolean;
254
269
  };
270
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
271
+ default: boolean;
272
+ };
255
273
  }>>>>;
256
274
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
257
275
  default: boolean;
258
276
  };
259
277
  }>>> & import('vue').ShallowUnwrapRef<{
260
278
  triggerUpload: () => Promise<void>;
279
+ clearItemList: () => void;
261
280
  }> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
262
281
  "v-model-key": import('vue-types').VueTypeDef<string | string[]> & {
263
282
  default: string | (() => string[]);
@@ -320,6 +339,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
320
339
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
321
340
  default: boolean;
322
341
  };
342
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
343
+ default: boolean;
344
+ };
323
345
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
324
346
  target: import('vue-types').VueTypeDef<string | File | Blob>;
325
347
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -330,6 +352,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
330
352
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
331
353
  default: boolean;
332
354
  };
355
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
356
+ default: boolean;
357
+ };
333
358
  }>>>>;
334
359
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
335
360
  default: boolean;
@@ -396,6 +421,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
396
421
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
397
422
  default: boolean;
398
423
  };
424
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
425
+ default: boolean;
426
+ };
399
427
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
400
428
  target: import('vue-types').VueTypeDef<string | File | Blob>;
401
429
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -406,12 +434,16 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
406
434
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
407
435
  default: boolean;
408
436
  };
437
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
438
+ default: boolean;
439
+ };
409
440
  }>>>>;
410
441
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
411
442
  default: boolean;
412
443
  };
413
444
  }>>, {
414
445
  triggerUpload: () => Promise<void>;
446
+ clearItemList: () => void;
415
447
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
416
448
  replace: (arg: {
417
449
  url: string;
@@ -499,6 +531,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
499
531
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
500
532
  default: boolean;
501
533
  };
534
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
535
+ default: boolean;
536
+ };
502
537
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
503
538
  target: import('vue-types').VueTypeDef<string | File | Blob>;
504
539
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -509,6 +544,9 @@ export declare const PwcFileUpload: import('../../../vue-utils/install-utils').S
509
544
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
510
545
  default: boolean;
511
546
  };
547
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
548
+ default: boolean;
549
+ };
512
550
  }>>>>;
513
551
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
514
552
  default: boolean;
@@ -82,6 +82,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
82
82
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
83
83
  default: boolean;
84
84
  };
85
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
86
+ default: boolean;
87
+ };
85
88
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
86
89
  target: import('vue-types').VueTypeDef<string | File | Blob>;
87
90
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -92,12 +95,16 @@ declare const __VLS_component: import('vue').DefineComponent<{
92
95
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
93
96
  default: boolean;
94
97
  };
98
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
99
+ default: boolean;
100
+ };
95
101
  }>>>>;
96
102
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
97
103
  default: boolean;
98
104
  };
99
105
  }, {
100
106
  triggerUpload: () => Promise<void>;
107
+ clearItemList: () => void;
101
108
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
102
109
  replace: (arg: {
103
110
  url: string;
@@ -168,6 +175,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
168
175
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
169
176
  default: boolean;
170
177
  };
178
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
179
+ default: boolean;
180
+ };
171
181
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
172
182
  target: import('vue-types').VueTypeDef<string | File | Blob>;
173
183
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -178,6 +188,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
178
188
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
179
189
  default: boolean;
180
190
  };
191
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
192
+ default: boolean;
193
+ };
181
194
  }>>>>;
182
195
  onlyChoiceFile: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
183
196
  default: boolean;
@@ -235,6 +235,9 @@ export declare const fileUploadProps: () => {
235
235
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
236
236
  default: boolean;
237
237
  };
238
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
239
+ default: boolean;
240
+ };
238
241
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
239
242
  target: import('vue-types').VueTypeDef<string | File | Blob>;
240
243
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -245,6 +248,9 @@ export declare const fileUploadProps: () => {
245
248
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
246
249
  default: boolean;
247
250
  };
251
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
252
+ default: boolean;
253
+ };
248
254
  }>>>>;
249
255
  /**
250
256
  * 仅选择文件,设置后只会触发文件选择,不会执行上传,并回调 choice-file-callback 事件
@@ -109,5 +109,6 @@ export declare const useFileUpload: (options: {
109
109
  isDragging: Ref<boolean>;
110
110
  addFiles: (files: File[]) => void;
111
111
  disabled: ComputedRef<boolean>;
112
+ clearItemList: () => void;
112
113
  };
113
114
  export {};
@@ -83,8 +83,8 @@ export declare const PwcFormSubmitButton: import('../../../vue-utils/install-uti
83
83
  }>>, {
84
84
  link: boolean;
85
85
  loading: boolean;
86
- type: "success" | "warning" | "primary" | "danger" | "ordinary";
87
86
  text: string;
87
+ type: "success" | "warning" | "primary" | "danger" | "ordinary";
88
88
  disabled: boolean;
89
89
  size: "default" | "small" | "large" | "mini";
90
90
  outline: boolean;
@@ -83,8 +83,8 @@ declare const _default: import('vue').DefineComponent<{
83
83
  }>>, {
84
84
  link: boolean;
85
85
  loading: boolean;
86
- type: "success" | "warning" | "primary" | "danger" | "ordinary";
87
86
  text: string;
87
+ type: "success" | "warning" | "primary" | "danger" | "ordinary";
88
88
  disabled: boolean;
89
89
  size: "default" | "small" | "large" | "mini";
90
90
  outline: boolean;
@@ -57,6 +57,9 @@ export declare const PwcImageUpload: import('../../../vue-utils/install-utils').
57
57
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
58
58
  default: boolean;
59
59
  };
60
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
61
+ default: boolean;
62
+ };
60
63
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
61
64
  target: import('vue-types').VueTypeDef<string | File | Blob>;
62
65
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -67,6 +70,9 @@ export declare const PwcImageUpload: import('../../../vue-utils/install-utils').
67
70
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
68
71
  default: boolean;
69
72
  };
73
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
74
+ default: boolean;
75
+ };
70
76
  }>>>>;
71
77
  customUpload: import('vue-types').VueTypeValidableDef<(options: {
72
78
  multiple: boolean;
@@ -132,6 +138,9 @@ export declare const PwcImageUpload: import('../../../vue-utils/install-utils').
132
138
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
133
139
  default: boolean;
134
140
  };
141
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
142
+ default: boolean;
143
+ };
135
144
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
136
145
  target: import('vue-types').VueTypeDef<string | File | Blob>;
137
146
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -142,6 +151,9 @@ export declare const PwcImageUpload: import('../../../vue-utils/install-utils').
142
151
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
143
152
  default: boolean;
144
153
  };
154
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
155
+ default: boolean;
156
+ };
145
157
  }>>>>;
146
158
  customUpload: import('vue-types').VueTypeValidableDef<(options: {
147
159
  multiple: boolean;
@@ -165,6 +165,9 @@ export declare const imageUploadProps: () => {
165
165
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
166
166
  default: boolean;
167
167
  };
168
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
169
+ default: boolean;
170
+ };
168
171
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
169
172
  target: import('vue-types').VueTypeDef<string | File | Blob>;
170
173
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -175,6 +178,9 @@ export declare const imageUploadProps: () => {
175
178
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
176
179
  default: boolean;
177
180
  };
181
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
182
+ default: boolean;
183
+ };
178
184
  }>>>>;
179
185
  /**
180
186
  * 自定义上传
@@ -51,6 +51,9 @@ declare const _default: import('vue').DefineComponent<{
51
51
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
52
52
  default: boolean;
53
53
  };
54
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
55
+ default: boolean;
56
+ };
54
57
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
55
58
  target: import('vue-types').VueTypeDef<string | File | Blob>;
56
59
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -61,6 +64,9 @@ declare const _default: import('vue').DefineComponent<{
61
64
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
62
65
  default: boolean;
63
66
  };
67
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
68
+ default: boolean;
69
+ };
64
70
  }>>>>;
65
71
  customUpload: import('vue-types').VueTypeValidableDef<(options: {
66
72
  multiple: boolean;
@@ -126,6 +132,9 @@ declare const _default: import('vue').DefineComponent<{
126
132
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
127
133
  default: boolean;
128
134
  };
135
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
136
+ default: boolean;
137
+ };
129
138
  }>>, import('vue-types/dist/types').ValidatorFunction<Partial<import('vue').ExtractPropTypes<{
130
139
  target: import('vue-types').VueTypeDef<string | File | Blob>;
131
140
  within: import('vue-types').VueTypeDef<"image" | "canvas"> & {
@@ -136,6 +145,9 @@ declare const _default: import('vue').DefineComponent<{
136
145
  resizeBox: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
137
146
  default: boolean;
138
147
  };
148
+ chessboard: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
149
+ default: boolean;
150
+ };
139
151
  }>>>>;
140
152
  customUpload: import('vue-types').VueTypeValidableDef<(options: {
141
153
  multiple: boolean;
@@ -14,6 +14,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
14
14
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
15
15
  default: boolean;
16
16
  };
17
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
17
18
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
18
19
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
19
20
  default: string;
@@ -193,7 +194,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
193
194
  };
194
195
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
195
196
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
197
+ 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"> & {
198
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
199
+ };
196
200
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
201
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
197
202
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
198
203
  default: boolean;
199
204
  };
@@ -226,6 +231,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
226
231
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
227
232
  default: boolean;
228
233
  };
234
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
229
235
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
230
236
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
231
237
  default: string;
@@ -405,7 +411,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
405
411
  };
406
412
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
407
413
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
414
+ 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"> & {
415
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
416
+ };
408
417
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
418
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
409
419
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
410
420
  default: boolean;
411
421
  };
@@ -493,6 +503,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
493
503
  default: import('../input').InputValueType;
494
504
  };
495
505
  }>>;
506
+ optionPlacement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
496
507
  }, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
497
508
  options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
498
509
  default: () => (import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[];
@@ -509,6 +520,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
509
520
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
510
521
  default: boolean;
511
522
  };
523
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
512
524
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
513
525
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
514
526
  default: string;
@@ -688,7 +700,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
688
700
  };
689
701
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
690
702
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
703
+ 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"> & {
704
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
705
+ };
691
706
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
707
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
692
708
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
693
709
  default: boolean;
694
710
  };
@@ -723,6 +739,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
723
739
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
724
740
  default: boolean;
725
741
  };
742
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
726
743
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
727
744
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
728
745
  default: string;
@@ -902,7 +919,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
902
919
  };
903
920
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
904
921
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
922
+ 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"> & {
923
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
924
+ };
905
925
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
926
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
906
927
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
907
928
  default: boolean;
908
929
  };
@@ -935,6 +956,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
935
956
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
936
957
  default: boolean;
937
958
  };
959
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
938
960
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
939
961
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
940
962
  default: string;
@@ -1114,7 +1136,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1114
1136
  };
1115
1137
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1116
1138
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1139
+ 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"> & {
1140
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1141
+ };
1117
1142
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
1143
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
1118
1144
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1119
1145
  default: boolean;
1120
1146
  };
@@ -1204,6 +1230,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1204
1230
  default: import('../input').InputValueType;
1205
1231
  };
1206
1232
  }>>;
1233
+ optionPlacement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1207
1234
  }> & {
1208
1235
  props: {
1209
1236
  options: import('vue-types').VueTypeValidableDef<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[], import('vue-types/dist/types').ValidatorFunction<(import('./src/type').SelectOptionItem<import('./src/type').SelectValue> | import('./src/type').SelectGroupItem<import('./src/type').SelectValue>)[]>> & {
@@ -1221,6 +1248,7 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1221
1248
  search: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1222
1249
  default: boolean;
1223
1250
  };
1251
+ searchPlaceholder: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>>;
1224
1252
  searchInputProps: import('vue-types').VueTypeValidableDef<Partial<import('vue').ExtractPropTypes<{
1225
1253
  type: import('vue-types').VueTypeValidableDef<string, import('vue-types/dist/types').ValidatorFunction<string>> & {
1226
1254
  default: string;
@@ -1400,7 +1428,11 @@ export declare const PwcSelect: import('../../../vue-utils/install-utils').SFCIn
1400
1428
  };
1401
1429
  customSearch: import('vue-types').VueTypeValidableDef<(keyword: string) => unknown, import('vue-types/dist/types').ValidatorFunction<(keyword: string) => unknown>>;
1402
1430
  optionWidth: import('vue-types').VueTypeValidableDef<number, import('vue-types/dist/types').ValidatorFunction<number>>;
1431
+ 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"> & {
1432
+ default: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
1433
+ };
1403
1434
  getOptionInfo: import('vue-types').VueTypeValidableDef<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined, import('vue-types/dist/types').ValidatorFunction<(value: import('./src/type').SelectValue) => import('./src/type').SelectOptionItem | undefined>>;
1435
+ formatLabel: import('vue-types').VueTypeValidableDef<(option: import('./src/type').SelectOptionItem) => string, import('vue-types/dist/types').ValidatorFunction<(option: import('./src/type').SelectOptionItem) => string>>;
1404
1436
  clearable: import('vue-types').VueTypeValidableDef<boolean, import('vue-types/dist/types').ValidatorFunction<boolean>> & {
1405
1437
  default: boolean;
1406
1438
  };