@antsoo-lib/components 0.1.4 → 0.1.6

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 (133) hide show
  1. package/dist/index.mjs +6360 -6412
  2. package/dist/index.umd.js +83 -83
  3. package/dist/src/_util/ActionButton.d.ts +385 -0
  4. package/dist/src/_util/BaseInput.d.ts +80 -0
  5. package/dist/src/_util/BaseInputInner.d.ts +76 -0
  6. package/dist/src/_util/Portal.d.ts +22 -0
  7. package/dist/src/_util/PortalWrapper.d.ts +42 -0
  8. package/dist/src/alert/index.d.ts +158 -0
  9. package/dist/src/auto-complete/index.d.ts +773 -0
  10. package/dist/src/avatar/Avatar.d.ts +88 -0
  11. package/dist/src/badge/Badge.d.ts +128 -0
  12. package/dist/src/badge/Ribbon.d.ts +43 -0
  13. package/dist/src/badge/ScrollNumber.d.ts +28 -0
  14. package/dist/src/breadcrumb/Breadcrumb.d.ts +66 -0
  15. package/dist/src/breadcrumb/BreadcrumbItem.d.ts +1489 -0
  16. package/dist/src/button/button.d.ts +115 -0
  17. package/dist/src/button/buttonTypes.d.ts +59 -0
  18. package/dist/src/card/Card.d.ts +155 -0
  19. package/dist/src/carousel/index.d.ts +576 -0
  20. package/dist/src/cascader/index.d.ts +735 -0
  21. package/dist/src/checkbox/Checkbox.d.ts +117 -0
  22. package/dist/src/checkbox/interface.d.ts +168 -0
  23. package/dist/src/collapse/Collapse.d.ts +133 -0
  24. package/dist/src/collapse/CollapsePanel.d.ts +133 -0
  25. package/dist/src/collapse/PanelContent.d.ts +126 -0
  26. package/dist/src/collapse/commonProps.d.ts +125 -0
  27. package/dist/src/comment/index.d.ts +81 -0
  28. package/dist/src/date-picker/generatePicker/index.d.ts +7404 -0
  29. package/dist/src/descriptions/index.d.ts +173 -0
  30. package/dist/src/drawer/index.d.ts +501 -0
  31. package/dist/src/dropdown/dropdown-button.d.ts +556 -0
  32. package/dist/src/dropdown/dropdown.d.ts +503 -0
  33. package/dist/src/dropdown/props.d.ts +465 -0
  34. package/dist/src/float-button/BackTop.d.ts +67 -0
  35. package/dist/src/float-button/FloatButton.d.ts +57 -0
  36. package/dist/src/float-button/FloatButtonGroup.d.ts +92 -0
  37. package/dist/src/float-button/interface.d.ts +108 -0
  38. package/dist/src/form/Form.d.ts +796 -0
  39. package/dist/src/form/FormItem.d.ts +192 -0
  40. package/dist/src/image/index.d.ts +75 -0
  41. package/dist/src/input/Input.d.ts +198 -0
  42. package/dist/src/input/Password.d.ts +222 -0
  43. package/dist/src/input/ResizableTextArea.d.ts +222 -0
  44. package/dist/src/input/Search.d.ts +199 -0
  45. package/dist/src/input/TextArea.d.ts +223 -0
  46. package/dist/src/input/inputProps.d.ts +211 -0
  47. package/dist/src/input-number/index.d.ts +611 -0
  48. package/dist/src/layout/Sider.d.ts +115 -0
  49. package/dist/src/layout/index.d.ts +298 -0
  50. package/dist/src/list/Item.d.ts +48 -0
  51. package/dist/src/list/ItemMeta.d.ts +27 -0
  52. package/dist/src/list/index.d.ts +962 -0
  53. package/dist/src/mentions/index.d.ts +351 -0
  54. package/dist/src/menu/src/ItemGroup.d.ts +31 -0
  55. package/dist/src/menu/src/MenuItem.d.ts +75 -0
  56. package/dist/src/menu/src/SubMenu.d.ts +87 -0
  57. package/dist/src/modal/Modal.d.ts +1026 -0
  58. package/dist/src/page-header/index.d.ts +456 -0
  59. package/dist/src/pagination/Select.d.ts +723 -0
  60. package/dist/src/popconfirm/index.d.ts +1105 -0
  61. package/dist/src/radio/Group.d.ts +123 -0
  62. package/dist/src/radio/Radio.d.ts +155 -0
  63. package/dist/src/radio/RadioButton.d.ts +107 -0
  64. package/dist/src/rate/Star.d.ts +76 -0
  65. package/dist/src/rate/index.d.ts +160 -0
  66. package/dist/src/result/index.d.ts +70 -0
  67. package/dist/src/select/index.d.ts +567 -0
  68. package/dist/src/slider/SliderTooltip.d.ts +144 -0
  69. package/dist/src/spin/Spin.d.ts +44 -0
  70. package/dist/src/switch/index.d.ts +220 -0
  71. package/dist/src/table/Table.d.ts +1162 -0
  72. package/dist/src/table/index.d.ts +1494 -0
  73. package/dist/src/tabs/src/TabNavList/OperationNode.d.ts +150 -0
  74. package/dist/src/tabs/src/TabNavList/index.d.ts +171 -0
  75. package/dist/src/tabs/src/TabPanelList/TabPane.d.ts +105 -0
  76. package/dist/src/tabs/src/Tabs.d.ts +305 -0
  77. package/dist/src/tag/index.d.ts +102 -0
  78. package/dist/src/timeline/Timeline.d.ts +43 -0
  79. package/dist/src/timeline/TimelineItem.d.ts +50 -0
  80. package/dist/src/tooltip/Tooltip.d.ts +233 -0
  81. package/dist/src/tooltip/index.d.ts +251 -0
  82. package/dist/src/tour/index.d.ts +1024 -0
  83. package/dist/src/tour/interface.d.ts +208 -0
  84. package/dist/src/transfer/ListBody.d.ts +81 -0
  85. package/dist/src/transfer/ListItem.d.ts +70 -0
  86. package/dist/src/transfer/index.d.ts +712 -0
  87. package/dist/src/transfer/list.d.ts +166 -0
  88. package/dist/src/tree/DirectoryTree.d.ts +799 -0
  89. package/dist/src/tree/Tree.d.ts +895 -0
  90. package/dist/src/tree/index.d.ts +1636 -0
  91. package/dist/src/tree-select/index.d.ts +1078 -0
  92. package/dist/src/vc-cascader/Cascader.d.ts +973 -0
  93. package/dist/src/vc-checkbox/Checkbox.d.ts +78 -0
  94. package/dist/src/vc-dialog/Content.d.ts +182 -0
  95. package/dist/src/vc-dialog/Dialog.d.ts +170 -0
  96. package/dist/src/vc-dialog/DialogWrap.d.ts +167 -0
  97. package/dist/src/vc-dialog/IDialogPropTypes.d.ts +80 -0
  98. package/dist/src/vc-drawer/src/DrawerChild.d.ts +165 -0
  99. package/dist/src/vc-drawer/src/IDrawerPropTypes.d.ts +148 -0
  100. package/dist/src/vc-dropdown/Dropdown.d.ts +167 -0
  101. package/dist/src/vc-image/src/Image.d.ts +115 -0
  102. package/dist/src/vc-image/src/Preview.d.ts +293 -0
  103. package/dist/src/vc-input/BaseInput.d.ts +99 -0
  104. package/dist/src/vc-input/Input.d.ts +197 -0
  105. package/dist/src/vc-input/inputProps.d.ts +170 -0
  106. package/dist/src/vc-mentions/src/Mentions.d.ts +94 -0
  107. package/dist/src/vc-mentions/src/mentionsProps.d.ts +127 -0
  108. package/dist/src/vc-overflow/Item.d.ts +35 -0
  109. package/dist/src/vc-overflow/Overflow.d.ts +90 -0
  110. package/dist/src/vc-overflow/RawItem.d.ts +46 -0
  111. package/dist/src/vc-pagination/Options.d.ts +62 -0
  112. package/dist/src/vc-pagination/Pager.d.ts +76 -0
  113. package/dist/src/vc-pagination/Pagination.d.ts +246 -0
  114. package/dist/src/vc-select/BaseSelect.d.ts +579 -0
  115. package/dist/src/vc-select/Select.d.ts +510 -0
  116. package/dist/src/vc-select/Selector/Input.d.ts +187 -0
  117. package/dist/src/vc-slider/src/Range.d.ts +238 -0
  118. package/dist/src/vc-slider/src/Slider.d.ts +238 -0
  119. package/dist/src/vc-slider/src/common/createSlider.d.ts +237 -0
  120. package/dist/src/vc-steps/Step.d.ts +164 -0
  121. package/dist/src/vc-steps/Steps.d.ts +154 -0
  122. package/dist/src/vc-tooltip/src/Content.d.ts +18 -0
  123. package/dist/src/vc-tooltip/src/Tooltip.d.ts +195 -0
  124. package/dist/src/vc-tour/Tour.d.ts +654 -0
  125. package/dist/src/vc-tree/MotionTreeNode.d.ts +123 -0
  126. package/dist/src/vc-tree/Tree.d.ts +439 -0
  127. package/dist/src/vc-tree/TreeNode.d.ts +115 -0
  128. package/dist/src/vc-tree/props.d.ts +354 -0
  129. package/dist/src/vc-tree-select/TreeSelect.d.ts +708 -0
  130. package/dist/src/vc-trigger/Trigger.d.ts +358 -0
  131. package/dist/src/vc-trigger/interface.d.ts +208 -0
  132. package/dist/src/vc-virtual-list/List.d.ts +107 -0
  133. package/package.json +7 -7
@@ -0,0 +1,773 @@
1
+ import { App, CSSProperties, ExtractPropTypes, PropType, CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
2
+ import { InputStatus } from '../_util/statusUtils';
3
+ import { CustomSlotsType, VueNode } from '../_util/type';
4
+ import { ButtonSize } from '../button';
5
+ import { SelectValue, DefaultOptionType, LabeledValue } from '../select';
6
+ import { SelectHandler, FieldNames } from '../vc-select/Select';
7
+ import { RenderDOMFunc, CustomTagProps, DropdownRender } from '../vc-select/BaseSelect';
8
+ import { AlignType } from '../vc-trigger/interface';
9
+ import { VueTypeValidableDef } from 'vue-types';
10
+ import { OptionFC } from './Option';
11
+ import { OptionGroupFC } from './OptGroup';
12
+ export declare const autoCompleteProps: () => {
13
+ dataSource: PropType<{
14
+ value: any;
15
+ text: any;
16
+ }[] | string[]>;
17
+ dropdownMenuStyle: {
18
+ type: PropType<CSSProperties>;
19
+ default: CSSProperties;
20
+ };
21
+ dropdownMatchSelectWidth: {
22
+ type: (BooleanConstructor | NumberConstructor)[];
23
+ default: boolean;
24
+ };
25
+ prefixCls: StringConstructor;
26
+ showSearch: {
27
+ type: BooleanConstructor;
28
+ default: undefined;
29
+ };
30
+ transitionName: StringConstructor;
31
+ choiceTransitionName: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ autofocus: {
36
+ type: BooleanConstructor;
37
+ default: undefined;
38
+ };
39
+ backfill: {
40
+ type: BooleanConstructor;
41
+ default: undefined;
42
+ };
43
+ filterOption: {
44
+ type: (FunctionConstructor | BooleanConstructor)[];
45
+ default: boolean;
46
+ };
47
+ defaultActiveFirstOption: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ status: PropType<InputStatus>;
52
+ open: {
53
+ type: BooleanConstructor;
54
+ default: undefined;
55
+ };
56
+ size: {
57
+ type: PropType< ButtonSize>;
58
+ default: ButtonSize;
59
+ };
60
+ value: {
61
+ type: PropType< SelectValue>;
62
+ default: SelectValue;
63
+ };
64
+ animation: StringConstructor;
65
+ direction: {
66
+ type: PropType<"ltr" | "rtl">;
67
+ };
68
+ disabled: {
69
+ type: BooleanConstructor;
70
+ default: undefined;
71
+ };
72
+ onFocus: {
73
+ type: PropType<(e: FocusEvent) => void>;
74
+ };
75
+ onBlur: {
76
+ type: PropType<(e: FocusEvent) => void>;
77
+ };
78
+ onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
79
+ onKeydown: PropType<(e: KeyboardEvent) => void>;
80
+ onKeyup: PropType<(e: KeyboardEvent) => void>;
81
+ onMousedown: PropType<(e: MouseEvent) => void>;
82
+ onMouseenter: PropType<(e: MouseEvent) => void>;
83
+ onMouseleave: PropType<(e: MouseEvent) => void>;
84
+ onSelect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
85
+ onClick: PropType<(e: MouseEvent) => void>;
86
+ children: PropType< VueNode[]>;
87
+ listHeight: NumberConstructor;
88
+ id: StringConstructor;
89
+ getPopupContainer: {
90
+ type: PropType< RenderDOMFunc>;
91
+ };
92
+ virtual: {
93
+ type: BooleanConstructor;
94
+ default: undefined;
95
+ };
96
+ bordered: {
97
+ type: BooleanConstructor;
98
+ default: boolean;
99
+ };
100
+ defaultValue: {
101
+ type: PropType< SelectValue>;
102
+ default: SelectValue;
103
+ };
104
+ tabindex: NumberConstructor;
105
+ showAction: {
106
+ type: PropType<("focus" | "click")[]>;
107
+ };
108
+ popupClassName: StringConstructor;
109
+ dropdownClassName: StringConstructor;
110
+ dropdownAlign: PropType< AlignType>;
111
+ placeholder: VueTypeValidableDef<any>;
112
+ allowClear: {
113
+ type: BooleanConstructor;
114
+ default: undefined;
115
+ };
116
+ defaultOpen: {
117
+ type: BooleanConstructor;
118
+ default: undefined;
119
+ };
120
+ suffixIcon: VueTypeValidableDef<any>;
121
+ clearIcon: VueTypeValidableDef<any>;
122
+ 'onUpdate:value': {
123
+ type: PropType<(val: SelectValue) => void>;
124
+ default: (val: SelectValue) => void;
125
+ };
126
+ placement: {
127
+ type: PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight">;
128
+ default: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
129
+ };
130
+ notFoundContent: VueTypeValidableDef<any>;
131
+ fieldNames: PropType< FieldNames>;
132
+ tagRender: {
133
+ type: PropType<(props: CustomTagProps) => any>;
134
+ };
135
+ optionLabelRender: {
136
+ type: PropType<(option: Record<string, any>) => any>;
137
+ };
138
+ onClear: PropType<() => void>;
139
+ onDropdownVisibleChange: {
140
+ type: PropType<(open: boolean) => void>;
141
+ };
142
+ maxTagTextLength: NumberConstructor;
143
+ maxTagCount: {
144
+ type: PropType<number | "responsive">;
145
+ };
146
+ maxTagPlaceholder: VueTypeValidableDef<any>;
147
+ tokenSeparators: {
148
+ type: PropType<string[]>;
149
+ };
150
+ showArrow: {
151
+ type: BooleanConstructor;
152
+ default: undefined;
153
+ };
154
+ removeIcon: VueTypeValidableDef<any>;
155
+ dropdownStyle: {
156
+ type: PropType<CSSProperties>;
157
+ };
158
+ dropdownRender: {
159
+ type: PropType< DropdownRender>;
160
+ };
161
+ onPopupScroll: PropType<(e: UIEvent) => void>;
162
+ onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
163
+ searchValue: StringConstructor;
164
+ onSearch: PropType<(value: string) => void>;
165
+ menuItemSelectedIcon: VueTypeValidableDef<any>;
166
+ listItemHeight: NumberConstructor;
167
+ options: PropType< DefaultOptionType[]>;
168
+ inputValue: StringConstructor;
169
+ autoClearSearchValue: {
170
+ type: BooleanConstructor;
171
+ default: undefined;
172
+ };
173
+ onDeselect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
174
+ filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
175
+ optionFilterProp: StringConstructor;
176
+ itemIcon: VueTypeValidableDef<any>;
177
+ };
178
+ export type AutoCompleteProps = Partial<ExtractPropTypes<ReturnType<typeof autoCompleteProps>>>;
179
+ export declare const AutoCompleteOption: OptionFC;
180
+ export declare const AutoCompleteOptGroup: OptionGroupFC;
181
+ declare const _default: {
182
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes<{
183
+ dataSource: PropType<{
184
+ value: any;
185
+ text: any;
186
+ }[] | string[]>;
187
+ dropdownMenuStyle: {
188
+ type: PropType<CSSProperties>;
189
+ default: CSSProperties;
190
+ };
191
+ dropdownMatchSelectWidth: {
192
+ type: (BooleanConstructor | NumberConstructor)[];
193
+ default: boolean;
194
+ };
195
+ prefixCls: StringConstructor;
196
+ showSearch: {
197
+ type: BooleanConstructor;
198
+ default: undefined;
199
+ };
200
+ transitionName: StringConstructor;
201
+ choiceTransitionName: {
202
+ type: StringConstructor;
203
+ default: string;
204
+ };
205
+ autofocus: {
206
+ type: BooleanConstructor;
207
+ default: undefined;
208
+ };
209
+ backfill: {
210
+ type: BooleanConstructor;
211
+ default: undefined;
212
+ };
213
+ filterOption: {
214
+ type: (FunctionConstructor | BooleanConstructor)[];
215
+ default: boolean;
216
+ };
217
+ defaultActiveFirstOption: {
218
+ type: BooleanConstructor;
219
+ default: boolean;
220
+ };
221
+ status: PropType<InputStatus>;
222
+ open: {
223
+ type: BooleanConstructor;
224
+ default: undefined;
225
+ };
226
+ size: {
227
+ type: PropType< ButtonSize>;
228
+ default: ButtonSize;
229
+ };
230
+ value: {
231
+ type: PropType< SelectValue>;
232
+ default: SelectValue;
233
+ };
234
+ animation: StringConstructor;
235
+ direction: {
236
+ type: PropType<"ltr" | "rtl">;
237
+ };
238
+ disabled: {
239
+ type: BooleanConstructor;
240
+ default: undefined;
241
+ };
242
+ onFocus: {
243
+ type: PropType<(e: FocusEvent) => void>;
244
+ };
245
+ onBlur: {
246
+ type: PropType<(e: FocusEvent) => void>;
247
+ };
248
+ onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
249
+ onKeydown: PropType<(e: KeyboardEvent) => void>;
250
+ onKeyup: PropType<(e: KeyboardEvent) => void>;
251
+ onMousedown: PropType<(e: MouseEvent) => void>;
252
+ onMouseenter: PropType<(e: MouseEvent) => void>;
253
+ onMouseleave: PropType<(e: MouseEvent) => void>;
254
+ onSelect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
255
+ onClick: PropType<(e: MouseEvent) => void>;
256
+ children: PropType< VueNode[]>;
257
+ listHeight: NumberConstructor;
258
+ id: StringConstructor;
259
+ getPopupContainer: {
260
+ type: PropType< RenderDOMFunc>;
261
+ };
262
+ virtual: {
263
+ type: BooleanConstructor;
264
+ default: undefined;
265
+ };
266
+ bordered: {
267
+ type: BooleanConstructor;
268
+ default: boolean;
269
+ };
270
+ defaultValue: {
271
+ type: PropType< SelectValue>;
272
+ default: SelectValue;
273
+ };
274
+ tabindex: NumberConstructor;
275
+ showAction: {
276
+ type: PropType<("focus" | "click")[]>;
277
+ };
278
+ popupClassName: StringConstructor;
279
+ dropdownClassName: StringConstructor;
280
+ dropdownAlign: PropType< AlignType>;
281
+ placeholder: VueTypeValidableDef<any>;
282
+ allowClear: {
283
+ type: BooleanConstructor;
284
+ default: undefined;
285
+ };
286
+ defaultOpen: {
287
+ type: BooleanConstructor;
288
+ default: undefined;
289
+ };
290
+ suffixIcon: VueTypeValidableDef<any>;
291
+ clearIcon: VueTypeValidableDef<any>;
292
+ 'onUpdate:value': {
293
+ type: PropType<(val: SelectValue) => void>;
294
+ default: (val: SelectValue) => void;
295
+ };
296
+ placement: {
297
+ type: PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight">;
298
+ default: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
299
+ };
300
+ notFoundContent: VueTypeValidableDef<any>;
301
+ fieldNames: PropType< FieldNames>;
302
+ tagRender: {
303
+ type: PropType<(props: CustomTagProps) => any>;
304
+ };
305
+ optionLabelRender: {
306
+ type: PropType<(option: Record<string, any>) => any>;
307
+ };
308
+ onClear: PropType<() => void>;
309
+ onDropdownVisibleChange: {
310
+ type: PropType<(open: boolean) => void>;
311
+ };
312
+ maxTagTextLength: NumberConstructor;
313
+ maxTagCount: {
314
+ type: PropType<number | "responsive">;
315
+ };
316
+ maxTagPlaceholder: VueTypeValidableDef<any>;
317
+ tokenSeparators: {
318
+ type: PropType<string[]>;
319
+ };
320
+ showArrow: {
321
+ type: BooleanConstructor;
322
+ default: undefined;
323
+ };
324
+ removeIcon: VueTypeValidableDef<any>;
325
+ dropdownStyle: {
326
+ type: PropType<CSSProperties>;
327
+ };
328
+ dropdownRender: {
329
+ type: PropType< DropdownRender>;
330
+ };
331
+ onPopupScroll: PropType<(e: UIEvent) => void>;
332
+ onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
333
+ searchValue: StringConstructor;
334
+ onSearch: PropType<(value: string) => void>;
335
+ menuItemSelectedIcon: VueTypeValidableDef<any>;
336
+ listItemHeight: NumberConstructor;
337
+ options: PropType< DefaultOptionType[]>;
338
+ inputValue: StringConstructor;
339
+ autoClearSearchValue: {
340
+ type: BooleanConstructor;
341
+ default: undefined;
342
+ };
343
+ onDeselect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
344
+ filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
345
+ optionFilterProp: StringConstructor;
346
+ itemIcon: VueTypeValidableDef<any>;
347
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
348
+ open: boolean;
349
+ size: ButtonSize;
350
+ value: SelectValue;
351
+ disabled: boolean;
352
+ autofocus: boolean;
353
+ virtual: boolean;
354
+ dropdownMatchSelectWidth: number | boolean;
355
+ bordered: boolean;
356
+ defaultValue: SelectValue;
357
+ allowClear: boolean;
358
+ defaultOpen: boolean;
359
+ 'onUpdate:value': (val: SelectValue) => void;
360
+ placement: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
361
+ showSearch: boolean;
362
+ choiceTransitionName: string;
363
+ showArrow: boolean;
364
+ backfill: boolean;
365
+ autoClearSearchValue: boolean;
366
+ filterOption: boolean | Function;
367
+ defaultActiveFirstOption: boolean;
368
+ dropdownMenuStyle: CSSProperties;
369
+ }, true, {}, CustomSlotsType<{
370
+ option: any;
371
+ options: any;
372
+ default: any;
373
+ notFoundContent: any;
374
+ dataSource: any;
375
+ clearIcon: any;
376
+ }>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
377
+ P: {};
378
+ B: {};
379
+ D: {};
380
+ C: {};
381
+ M: {};
382
+ Defaults: {};
383
+ }, Readonly<ExtractPropTypes<{
384
+ dataSource: PropType<{
385
+ value: any;
386
+ text: any;
387
+ }[] | string[]>;
388
+ dropdownMenuStyle: {
389
+ type: PropType<CSSProperties>;
390
+ default: CSSProperties;
391
+ };
392
+ dropdownMatchSelectWidth: {
393
+ type: (BooleanConstructor | NumberConstructor)[];
394
+ default: boolean;
395
+ };
396
+ prefixCls: StringConstructor;
397
+ showSearch: {
398
+ type: BooleanConstructor;
399
+ default: undefined;
400
+ };
401
+ transitionName: StringConstructor;
402
+ choiceTransitionName: {
403
+ type: StringConstructor;
404
+ default: string;
405
+ };
406
+ autofocus: {
407
+ type: BooleanConstructor;
408
+ default: undefined;
409
+ };
410
+ backfill: {
411
+ type: BooleanConstructor;
412
+ default: undefined;
413
+ };
414
+ filterOption: {
415
+ type: (FunctionConstructor | BooleanConstructor)[];
416
+ default: boolean;
417
+ };
418
+ defaultActiveFirstOption: {
419
+ type: BooleanConstructor;
420
+ default: boolean;
421
+ };
422
+ status: PropType<InputStatus>;
423
+ open: {
424
+ type: BooleanConstructor;
425
+ default: undefined;
426
+ };
427
+ size: {
428
+ type: PropType< ButtonSize>;
429
+ default: ButtonSize;
430
+ };
431
+ value: {
432
+ type: PropType< SelectValue>;
433
+ default: SelectValue;
434
+ };
435
+ animation: StringConstructor;
436
+ direction: {
437
+ type: PropType<"ltr" | "rtl">;
438
+ };
439
+ disabled: {
440
+ type: BooleanConstructor;
441
+ default: undefined;
442
+ };
443
+ onFocus: {
444
+ type: PropType<(e: FocusEvent) => void>;
445
+ };
446
+ onBlur: {
447
+ type: PropType<(e: FocusEvent) => void>;
448
+ };
449
+ onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
450
+ onKeydown: PropType<(e: KeyboardEvent) => void>;
451
+ onKeyup: PropType<(e: KeyboardEvent) => void>;
452
+ onMousedown: PropType<(e: MouseEvent) => void>;
453
+ onMouseenter: PropType<(e: MouseEvent) => void>;
454
+ onMouseleave: PropType<(e: MouseEvent) => void>;
455
+ onSelect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
456
+ onClick: PropType<(e: MouseEvent) => void>;
457
+ children: PropType< VueNode[]>;
458
+ listHeight: NumberConstructor;
459
+ id: StringConstructor;
460
+ getPopupContainer: {
461
+ type: PropType< RenderDOMFunc>;
462
+ };
463
+ virtual: {
464
+ type: BooleanConstructor;
465
+ default: undefined;
466
+ };
467
+ bordered: {
468
+ type: BooleanConstructor;
469
+ default: boolean;
470
+ };
471
+ defaultValue: {
472
+ type: PropType< SelectValue>;
473
+ default: SelectValue;
474
+ };
475
+ tabindex: NumberConstructor;
476
+ showAction: {
477
+ type: PropType<("focus" | "click")[]>;
478
+ };
479
+ popupClassName: StringConstructor;
480
+ dropdownClassName: StringConstructor;
481
+ dropdownAlign: PropType< AlignType>;
482
+ placeholder: VueTypeValidableDef<any>;
483
+ allowClear: {
484
+ type: BooleanConstructor;
485
+ default: undefined;
486
+ };
487
+ defaultOpen: {
488
+ type: BooleanConstructor;
489
+ default: undefined;
490
+ };
491
+ suffixIcon: VueTypeValidableDef<any>;
492
+ clearIcon: VueTypeValidableDef<any>;
493
+ 'onUpdate:value': {
494
+ type: PropType<(val: SelectValue) => void>;
495
+ default: (val: SelectValue) => void;
496
+ };
497
+ placement: {
498
+ type: PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight">;
499
+ default: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
500
+ };
501
+ notFoundContent: VueTypeValidableDef<any>;
502
+ fieldNames: PropType< FieldNames>;
503
+ tagRender: {
504
+ type: PropType<(props: CustomTagProps) => any>;
505
+ };
506
+ optionLabelRender: {
507
+ type: PropType<(option: Record<string, any>) => any>;
508
+ };
509
+ onClear: PropType<() => void>;
510
+ onDropdownVisibleChange: {
511
+ type: PropType<(open: boolean) => void>;
512
+ };
513
+ maxTagTextLength: NumberConstructor;
514
+ maxTagCount: {
515
+ type: PropType<number | "responsive">;
516
+ };
517
+ maxTagPlaceholder: VueTypeValidableDef<any>;
518
+ tokenSeparators: {
519
+ type: PropType<string[]>;
520
+ };
521
+ showArrow: {
522
+ type: BooleanConstructor;
523
+ default: undefined;
524
+ };
525
+ removeIcon: VueTypeValidableDef<any>;
526
+ dropdownStyle: {
527
+ type: PropType<CSSProperties>;
528
+ };
529
+ dropdownRender: {
530
+ type: PropType< DropdownRender>;
531
+ };
532
+ onPopupScroll: PropType<(e: UIEvent) => void>;
533
+ onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
534
+ searchValue: StringConstructor;
535
+ onSearch: PropType<(value: string) => void>;
536
+ menuItemSelectedIcon: VueTypeValidableDef<any>;
537
+ listItemHeight: NumberConstructor;
538
+ options: PropType< DefaultOptionType[]>;
539
+ inputValue: StringConstructor;
540
+ autoClearSearchValue: {
541
+ type: BooleanConstructor;
542
+ default: undefined;
543
+ };
544
+ onDeselect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
545
+ filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
546
+ optionFilterProp: StringConstructor;
547
+ itemIcon: VueTypeValidableDef<any>;
548
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
549
+ open: boolean;
550
+ size: ButtonSize;
551
+ value: SelectValue;
552
+ disabled: boolean;
553
+ autofocus: boolean;
554
+ virtual: boolean;
555
+ dropdownMatchSelectWidth: number | boolean;
556
+ bordered: boolean;
557
+ defaultValue: SelectValue;
558
+ allowClear: boolean;
559
+ defaultOpen: boolean;
560
+ 'onUpdate:value': (val: SelectValue) => void;
561
+ placement: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
562
+ showSearch: boolean;
563
+ choiceTransitionName: string;
564
+ showArrow: boolean;
565
+ backfill: boolean;
566
+ autoClearSearchValue: boolean;
567
+ filterOption: boolean | Function;
568
+ defaultActiveFirstOption: boolean;
569
+ dropdownMenuStyle: CSSProperties;
570
+ }>;
571
+ __isFragment?: never;
572
+ __isTeleport?: never;
573
+ __isSuspense?: never;
574
+ } & ComponentOptionsBase<Readonly<ExtractPropTypes<{
575
+ dataSource: PropType<{
576
+ value: any;
577
+ text: any;
578
+ }[] | string[]>;
579
+ dropdownMenuStyle: {
580
+ type: PropType<CSSProperties>;
581
+ default: CSSProperties;
582
+ };
583
+ dropdownMatchSelectWidth: {
584
+ type: (BooleanConstructor | NumberConstructor)[];
585
+ default: boolean;
586
+ };
587
+ prefixCls: StringConstructor;
588
+ showSearch: {
589
+ type: BooleanConstructor;
590
+ default: undefined;
591
+ };
592
+ transitionName: StringConstructor;
593
+ choiceTransitionName: {
594
+ type: StringConstructor;
595
+ default: string;
596
+ };
597
+ autofocus: {
598
+ type: BooleanConstructor;
599
+ default: undefined;
600
+ };
601
+ backfill: {
602
+ type: BooleanConstructor;
603
+ default: undefined;
604
+ };
605
+ filterOption: {
606
+ type: (FunctionConstructor | BooleanConstructor)[];
607
+ default: boolean;
608
+ };
609
+ defaultActiveFirstOption: {
610
+ type: BooleanConstructor;
611
+ default: boolean;
612
+ };
613
+ status: PropType<InputStatus>;
614
+ open: {
615
+ type: BooleanConstructor;
616
+ default: undefined;
617
+ };
618
+ size: {
619
+ type: PropType< ButtonSize>;
620
+ default: ButtonSize;
621
+ };
622
+ value: {
623
+ type: PropType< SelectValue>;
624
+ default: SelectValue;
625
+ };
626
+ animation: StringConstructor;
627
+ direction: {
628
+ type: PropType<"ltr" | "rtl">;
629
+ };
630
+ disabled: {
631
+ type: BooleanConstructor;
632
+ default: undefined;
633
+ };
634
+ onFocus: {
635
+ type: PropType<(e: FocusEvent) => void>;
636
+ };
637
+ onBlur: {
638
+ type: PropType<(e: FocusEvent) => void>;
639
+ };
640
+ onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
641
+ onKeydown: PropType<(e: KeyboardEvent) => void>;
642
+ onKeyup: PropType<(e: KeyboardEvent) => void>;
643
+ onMousedown: PropType<(e: MouseEvent) => void>;
644
+ onMouseenter: PropType<(e: MouseEvent) => void>;
645
+ onMouseleave: PropType<(e: MouseEvent) => void>;
646
+ onSelect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
647
+ onClick: PropType<(e: MouseEvent) => void>;
648
+ children: PropType< VueNode[]>;
649
+ listHeight: NumberConstructor;
650
+ id: StringConstructor;
651
+ getPopupContainer: {
652
+ type: PropType< RenderDOMFunc>;
653
+ };
654
+ virtual: {
655
+ type: BooleanConstructor;
656
+ default: undefined;
657
+ };
658
+ bordered: {
659
+ type: BooleanConstructor;
660
+ default: boolean;
661
+ };
662
+ defaultValue: {
663
+ type: PropType< SelectValue>;
664
+ default: SelectValue;
665
+ };
666
+ tabindex: NumberConstructor;
667
+ showAction: {
668
+ type: PropType<("focus" | "click")[]>;
669
+ };
670
+ popupClassName: StringConstructor;
671
+ dropdownClassName: StringConstructor;
672
+ dropdownAlign: PropType< AlignType>;
673
+ placeholder: VueTypeValidableDef<any>;
674
+ allowClear: {
675
+ type: BooleanConstructor;
676
+ default: undefined;
677
+ };
678
+ defaultOpen: {
679
+ type: BooleanConstructor;
680
+ default: undefined;
681
+ };
682
+ suffixIcon: VueTypeValidableDef<any>;
683
+ clearIcon: VueTypeValidableDef<any>;
684
+ 'onUpdate:value': {
685
+ type: PropType<(val: SelectValue) => void>;
686
+ default: (val: SelectValue) => void;
687
+ };
688
+ placement: {
689
+ type: PropType<"bottomLeft" | "bottomRight" | "topLeft" | "topRight">;
690
+ default: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
691
+ };
692
+ notFoundContent: VueTypeValidableDef<any>;
693
+ fieldNames: PropType< FieldNames>;
694
+ tagRender: {
695
+ type: PropType<(props: CustomTagProps) => any>;
696
+ };
697
+ optionLabelRender: {
698
+ type: PropType<(option: Record<string, any>) => any>;
699
+ };
700
+ onClear: PropType<() => void>;
701
+ onDropdownVisibleChange: {
702
+ type: PropType<(open: boolean) => void>;
703
+ };
704
+ maxTagTextLength: NumberConstructor;
705
+ maxTagCount: {
706
+ type: PropType<number | "responsive">;
707
+ };
708
+ maxTagPlaceholder: VueTypeValidableDef<any>;
709
+ tokenSeparators: {
710
+ type: PropType<string[]>;
711
+ };
712
+ showArrow: {
713
+ type: BooleanConstructor;
714
+ default: undefined;
715
+ };
716
+ removeIcon: VueTypeValidableDef<any>;
717
+ dropdownStyle: {
718
+ type: PropType<CSSProperties>;
719
+ };
720
+ dropdownRender: {
721
+ type: PropType< DropdownRender>;
722
+ };
723
+ onPopupScroll: PropType<(e: UIEvent) => void>;
724
+ onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
725
+ searchValue: StringConstructor;
726
+ onSearch: PropType<(value: string) => void>;
727
+ menuItemSelectedIcon: VueTypeValidableDef<any>;
728
+ listItemHeight: NumberConstructor;
729
+ options: PropType< DefaultOptionType[]>;
730
+ inputValue: StringConstructor;
731
+ autoClearSearchValue: {
732
+ type: BooleanConstructor;
733
+ default: undefined;
734
+ };
735
+ onDeselect: PropType< SelectHandler<(string | number) | LabeledValue | undefined, DefaultOptionType>>;
736
+ filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
737
+ optionFilterProp: StringConstructor;
738
+ itemIcon: VueTypeValidableDef<any>;
739
+ }>> & Readonly<{}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
740
+ open: boolean;
741
+ size: ButtonSize;
742
+ value: SelectValue;
743
+ disabled: boolean;
744
+ autofocus: boolean;
745
+ virtual: boolean;
746
+ dropdownMatchSelectWidth: number | boolean;
747
+ bordered: boolean;
748
+ defaultValue: SelectValue;
749
+ allowClear: boolean;
750
+ defaultOpen: boolean;
751
+ 'onUpdate:value': (val: SelectValue) => void;
752
+ placement: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
753
+ showSearch: boolean;
754
+ choiceTransitionName: string;
755
+ showArrow: boolean;
756
+ backfill: boolean;
757
+ autoClearSearchValue: boolean;
758
+ filterOption: boolean | Function;
759
+ defaultActiveFirstOption: boolean;
760
+ dropdownMenuStyle: CSSProperties;
761
+ }, {}, string, CustomSlotsType<{
762
+ option: any;
763
+ options: any;
764
+ default: any;
765
+ notFoundContent: any;
766
+ dataSource: any;
767
+ clearIcon: any;
768
+ }>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
769
+ Option: OptionFC;
770
+ OptGroup: OptionGroupFC;
771
+ install(app: App): App<any>;
772
+ };
773
+ export default _default;