@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,1024 @@
1
+ import { VueNode } from '../_util/type';
2
+ import { TourProps, TourStepProps, TourBtnProps } from './interface';
3
+ import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, CSSProperties, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
4
+ import { PlacementType } from '../vc-tour/placements';
5
+ import { VueTypeValidableDef } from 'vue-types';
6
+ import { Gap } from '../vc-tour/hooks/useTarget';
7
+ import { TourStepProps } from '../vc-tour';
8
+ export { TourProps, TourStepProps };
9
+ declare const _default: {
10
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
11
+ steps: {
12
+ type: PropType<Partial< ExtractPropTypes<{
13
+ cover: {
14
+ type: PropType<VueNode>;
15
+ };
16
+ nextButtonProps: {
17
+ type: PropType<TourBtnProps>;
18
+ };
19
+ prevButtonProps: {
20
+ type: PropType<TourBtnProps>;
21
+ };
22
+ current: {
23
+ type: NumberConstructor;
24
+ };
25
+ type: {
26
+ type: PropType<"default" | "primary">;
27
+ };
28
+ prefixCls: {
29
+ type: StringConstructor;
30
+ };
31
+ total: {
32
+ type: NumberConstructor;
33
+ };
34
+ onClose: {
35
+ type: PropType<(e: MouseEvent) => void>;
36
+ default: (e: MouseEvent) => void;
37
+ };
38
+ onFinish: {
39
+ type: PropType<(e: MouseEvent) => void>;
40
+ default: (e: MouseEvent) => void;
41
+ };
42
+ renderPanel: {
43
+ type: PropType<(step: any, current: number) => VueNode>;
44
+ default: (step: any, current: number) => VueNode;
45
+ };
46
+ onPrev: {
47
+ type: PropType<(e: MouseEvent) => void>;
48
+ default: (e: MouseEvent) => void;
49
+ };
50
+ onNext: {
51
+ type: PropType<(e: MouseEvent) => void>;
52
+ default: (e: MouseEvent) => void;
53
+ };
54
+ arrow: {
55
+ type: PropType<boolean | {
56
+ pointAtCenter: boolean;
57
+ }>;
58
+ default: boolean | {
59
+ pointAtCenter: boolean;
60
+ };
61
+ };
62
+ target: {
63
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
64
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
65
+ };
66
+ title: {
67
+ type: PropType<VueNode>;
68
+ default: VueNode;
69
+ };
70
+ description: {
71
+ type: PropType<VueNode>;
72
+ default: VueNode;
73
+ };
74
+ placement: {
75
+ type: PropType<PlacementType>;
76
+ default: PlacementType;
77
+ };
78
+ mask: {
79
+ type: PropType<boolean | {
80
+ style?: CSSProperties;
81
+ color?: string;
82
+ }>;
83
+ default: boolean | {
84
+ style?: CSSProperties;
85
+ color?: string;
86
+ };
87
+ };
88
+ className: {
89
+ type: StringConstructor;
90
+ };
91
+ style: {
92
+ type: PropType<CSSProperties>;
93
+ default: CSSProperties;
94
+ };
95
+ scrollIntoViewOptions: {
96
+ type: PropType<boolean | ScrollIntoViewOptions>;
97
+ default: boolean | ScrollIntoViewOptions;
98
+ };
99
+ }>>[]>;
100
+ };
101
+ prefixCls: {
102
+ type: StringConstructor;
103
+ };
104
+ current: {
105
+ type: NumberConstructor;
106
+ };
107
+ type: {
108
+ type: PropType<"default" | "primary">;
109
+ };
110
+ 'onUpdate:current': PropType<(val: number) => void>;
111
+ builtinPlacements: VueTypeValidableDef<{
112
+ [key: string]: any;
113
+ }> & {
114
+ default: () => {
115
+ [key: string]: any;
116
+ };
117
+ };
118
+ popupAlign: VueTypeValidableDef<{
119
+ [key: string]: any;
120
+ }> & {
121
+ default: () => {
122
+ [key: string]: any;
123
+ };
124
+ } & {
125
+ default: () => {
126
+ [key: string]: any;
127
+ };
128
+ };
129
+ open: {
130
+ type: BooleanConstructor;
131
+ default: boolean;
132
+ };
133
+ defaultCurrent: {
134
+ type: NumberConstructor;
135
+ };
136
+ onChange: {
137
+ type: PropType<(current: number) => void>;
138
+ default: (current: number) => void;
139
+ };
140
+ onClose: {
141
+ type: PropType<(current: number) => void>;
142
+ default: (current: number) => void;
143
+ };
144
+ onFinish: {
145
+ type: PropType<() => void>;
146
+ default: () => void;
147
+ };
148
+ mask: {
149
+ type: PropType<boolean | {
150
+ style?: CSSProperties;
151
+ color?: string;
152
+ }>;
153
+ default: boolean | {
154
+ style?: CSSProperties;
155
+ color?: string;
156
+ };
157
+ };
158
+ arrow: {
159
+ type: PropType<boolean | {
160
+ pointAtCenter: boolean;
161
+ }>;
162
+ default: boolean | {
163
+ pointAtCenter: boolean;
164
+ };
165
+ };
166
+ rootClassName: {
167
+ type: StringConstructor;
168
+ };
169
+ placement: {
170
+ type: PropType<PlacementType>;
171
+ default: PlacementType;
172
+ };
173
+ renderPanel: {
174
+ type: PropType<(props: Partial< ExtractPropTypes<{
175
+ prefixCls: {
176
+ type: StringConstructor;
177
+ };
178
+ total: {
179
+ type: NumberConstructor;
180
+ };
181
+ current: {
182
+ type: NumberConstructor;
183
+ };
184
+ onClose: {
185
+ type: PropType<(e: MouseEvent) => void>;
186
+ default: (e: MouseEvent) => void;
187
+ };
188
+ onFinish: {
189
+ type: PropType<(e: MouseEvent) => void>;
190
+ default: (e: MouseEvent) => void;
191
+ };
192
+ renderPanel: {
193
+ type: PropType<(step: any, current: number) => VueNode>;
194
+ default: (step: any, current: number) => VueNode;
195
+ };
196
+ onPrev: {
197
+ type: PropType<(e: MouseEvent) => void>;
198
+ default: (e: MouseEvent) => void;
199
+ };
200
+ onNext: {
201
+ type: PropType<(e: MouseEvent) => void>;
202
+ default: (e: MouseEvent) => void;
203
+ };
204
+ arrow: {
205
+ type: PropType<boolean | {
206
+ pointAtCenter: boolean;
207
+ }>;
208
+ default: boolean | {
209
+ pointAtCenter: boolean;
210
+ };
211
+ };
212
+ target: {
213
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
214
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
215
+ };
216
+ title: {
217
+ type: PropType<VueNode>;
218
+ default: VueNode;
219
+ };
220
+ description: {
221
+ type: PropType<VueNode>;
222
+ default: VueNode;
223
+ };
224
+ placement: {
225
+ type: PropType<PlacementType>;
226
+ default: PlacementType;
227
+ };
228
+ mask: {
229
+ type: PropType<boolean | {
230
+ style?: CSSProperties;
231
+ color?: string;
232
+ }>;
233
+ default: boolean | {
234
+ style?: CSSProperties;
235
+ color?: string;
236
+ };
237
+ };
238
+ className: {
239
+ type: StringConstructor;
240
+ };
241
+ style: {
242
+ type: PropType<CSSProperties>;
243
+ default: CSSProperties;
244
+ };
245
+ scrollIntoViewOptions: {
246
+ type: PropType<boolean | ScrollIntoViewOptions>;
247
+ default: boolean | ScrollIntoViewOptions;
248
+ };
249
+ }>>, current: number) => VueNode>;
250
+ default: (props: Partial< ExtractPropTypes<{
251
+ prefixCls: {
252
+ type: StringConstructor;
253
+ };
254
+ total: {
255
+ type: NumberConstructor;
256
+ };
257
+ current: {
258
+ type: NumberConstructor;
259
+ };
260
+ onClose: {
261
+ type: PropType<(e: MouseEvent) => void>;
262
+ default: (e: MouseEvent) => void;
263
+ };
264
+ onFinish: {
265
+ type: PropType<(e: MouseEvent) => void>;
266
+ default: (e: MouseEvent) => void;
267
+ };
268
+ renderPanel: {
269
+ type: PropType<(step: any, current: number) => VueNode>;
270
+ default: (step: any, current: number) => VueNode;
271
+ };
272
+ onPrev: {
273
+ type: PropType<(e: MouseEvent) => void>;
274
+ default: (e: MouseEvent) => void;
275
+ };
276
+ onNext: {
277
+ type: PropType<(e: MouseEvent) => void>;
278
+ default: (e: MouseEvent) => void;
279
+ };
280
+ arrow: {
281
+ type: PropType<boolean | {
282
+ pointAtCenter: boolean;
283
+ }>;
284
+ default: boolean | {
285
+ pointAtCenter: boolean;
286
+ };
287
+ };
288
+ target: {
289
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
290
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
291
+ };
292
+ title: {
293
+ type: PropType<VueNode>;
294
+ default: VueNode;
295
+ };
296
+ description: {
297
+ type: PropType<VueNode>;
298
+ default: VueNode;
299
+ };
300
+ placement: {
301
+ type: PropType<PlacementType>;
302
+ default: PlacementType;
303
+ };
304
+ mask: {
305
+ type: PropType<boolean | {
306
+ style?: CSSProperties;
307
+ color?: string;
308
+ }>;
309
+ default: boolean | {
310
+ style?: CSSProperties;
311
+ color?: string;
312
+ };
313
+ };
314
+ className: {
315
+ type: StringConstructor;
316
+ };
317
+ style: {
318
+ type: PropType<CSSProperties>;
319
+ default: CSSProperties;
320
+ };
321
+ scrollIntoViewOptions: {
322
+ type: PropType<boolean | ScrollIntoViewOptions>;
323
+ default: boolean | ScrollIntoViewOptions;
324
+ };
325
+ }>>, current: number) => VueNode;
326
+ };
327
+ gap: {
328
+ type: PropType<Gap>;
329
+ default: Gap;
330
+ };
331
+ animated: {
332
+ type: PropType<boolean | {
333
+ placeholder: boolean;
334
+ }>;
335
+ default: boolean | {
336
+ placeholder: boolean;
337
+ };
338
+ };
339
+ scrollIntoViewOptions: {
340
+ type: PropType<boolean | ScrollIntoViewOptions>;
341
+ default: boolean | ScrollIntoViewOptions;
342
+ };
343
+ zIndex: {
344
+ type: NumberConstructor;
345
+ default: number;
346
+ };
347
+ }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
348
+ open: boolean;
349
+ mask: boolean | {
350
+ style?: CSSProperties;
351
+ color?: string;
352
+ };
353
+ zIndex: number;
354
+ gap: Gap;
355
+ onChange: (current: number) => void;
356
+ onClose: (current: number) => void;
357
+ arrow: boolean | {
358
+ pointAtCenter: boolean;
359
+ };
360
+ builtinPlacements: {
361
+ [key: string]: any;
362
+ };
363
+ popupAlign: {
364
+ [key: string]: any;
365
+ };
366
+ placement: PlacementType;
367
+ scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
368
+ animated: boolean | {
369
+ placeholder: boolean;
370
+ };
371
+ onFinish: () => void;
372
+ renderPanel: (props: Partial< ExtractPropTypes<{
373
+ prefixCls: {
374
+ type: StringConstructor;
375
+ };
376
+ total: {
377
+ type: NumberConstructor;
378
+ };
379
+ current: {
380
+ type: NumberConstructor;
381
+ };
382
+ onClose: {
383
+ type: PropType<(e: MouseEvent) => void>;
384
+ default: (e: MouseEvent) => void;
385
+ };
386
+ onFinish: {
387
+ type: PropType<(e: MouseEvent) => void>;
388
+ default: (e: MouseEvent) => void;
389
+ };
390
+ renderPanel: {
391
+ type: PropType<(step: any, current: number) => VueNode>;
392
+ default: (step: any, current: number) => VueNode;
393
+ };
394
+ onPrev: {
395
+ type: PropType<(e: MouseEvent) => void>;
396
+ default: (e: MouseEvent) => void;
397
+ };
398
+ onNext: {
399
+ type: PropType<(e: MouseEvent) => void>;
400
+ default: (e: MouseEvent) => void;
401
+ };
402
+ arrow: {
403
+ type: PropType<boolean | {
404
+ pointAtCenter: boolean;
405
+ }>;
406
+ default: boolean | {
407
+ pointAtCenter: boolean;
408
+ };
409
+ };
410
+ target: {
411
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
412
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
413
+ };
414
+ title: {
415
+ type: PropType<VueNode>;
416
+ default: VueNode;
417
+ };
418
+ description: {
419
+ type: PropType<VueNode>;
420
+ default: VueNode;
421
+ };
422
+ placement: {
423
+ type: PropType<PlacementType>;
424
+ default: PlacementType;
425
+ };
426
+ mask: {
427
+ type: PropType<boolean | {
428
+ style?: CSSProperties;
429
+ color?: string;
430
+ }>;
431
+ default: boolean | {
432
+ style?: CSSProperties;
433
+ color?: string;
434
+ };
435
+ };
436
+ className: {
437
+ type: StringConstructor;
438
+ };
439
+ style: {
440
+ type: PropType<CSSProperties>;
441
+ default: CSSProperties;
442
+ };
443
+ scrollIntoViewOptions: {
444
+ type: PropType<boolean | ScrollIntoViewOptions>;
445
+ default: boolean | ScrollIntoViewOptions;
446
+ };
447
+ }>>, current: number) => VueNode;
448
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
449
+ P: {};
450
+ B: {};
451
+ D: {};
452
+ C: {};
453
+ M: {};
454
+ Defaults: {};
455
+ }, Readonly< ExtractPropTypes<{
456
+ steps: {
457
+ type: PropType<Partial< ExtractPropTypes<{
458
+ cover: {
459
+ type: PropType<VueNode>;
460
+ };
461
+ nextButtonProps: {
462
+ type: PropType<TourBtnProps>;
463
+ };
464
+ prevButtonProps: {
465
+ type: PropType<TourBtnProps>;
466
+ };
467
+ current: {
468
+ type: NumberConstructor;
469
+ };
470
+ type: {
471
+ type: PropType<"default" | "primary">;
472
+ };
473
+ prefixCls: {
474
+ type: StringConstructor;
475
+ };
476
+ total: {
477
+ type: NumberConstructor;
478
+ };
479
+ onClose: {
480
+ type: PropType<(e: MouseEvent) => void>;
481
+ default: (e: MouseEvent) => void;
482
+ };
483
+ onFinish: {
484
+ type: PropType<(e: MouseEvent) => void>;
485
+ default: (e: MouseEvent) => void;
486
+ };
487
+ renderPanel: {
488
+ type: PropType<(step: any, current: number) => VueNode>;
489
+ default: (step: any, current: number) => VueNode;
490
+ };
491
+ onPrev: {
492
+ type: PropType<(e: MouseEvent) => void>;
493
+ default: (e: MouseEvent) => void;
494
+ };
495
+ onNext: {
496
+ type: PropType<(e: MouseEvent) => void>;
497
+ default: (e: MouseEvent) => void;
498
+ };
499
+ arrow: {
500
+ type: PropType<boolean | {
501
+ pointAtCenter: boolean;
502
+ }>;
503
+ default: boolean | {
504
+ pointAtCenter: boolean;
505
+ };
506
+ };
507
+ target: {
508
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
509
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
510
+ };
511
+ title: {
512
+ type: PropType<VueNode>;
513
+ default: VueNode;
514
+ };
515
+ description: {
516
+ type: PropType<VueNode>;
517
+ default: VueNode;
518
+ };
519
+ placement: {
520
+ type: PropType<PlacementType>;
521
+ default: PlacementType;
522
+ };
523
+ mask: {
524
+ type: PropType<boolean | {
525
+ style?: CSSProperties;
526
+ color?: string;
527
+ }>;
528
+ default: boolean | {
529
+ style?: CSSProperties;
530
+ color?: string;
531
+ };
532
+ };
533
+ className: {
534
+ type: StringConstructor;
535
+ };
536
+ style: {
537
+ type: PropType<CSSProperties>;
538
+ default: CSSProperties;
539
+ };
540
+ scrollIntoViewOptions: {
541
+ type: PropType<boolean | ScrollIntoViewOptions>;
542
+ default: boolean | ScrollIntoViewOptions;
543
+ };
544
+ }>>[]>;
545
+ };
546
+ prefixCls: {
547
+ type: StringConstructor;
548
+ };
549
+ current: {
550
+ type: NumberConstructor;
551
+ };
552
+ type: {
553
+ type: PropType<"default" | "primary">;
554
+ };
555
+ 'onUpdate:current': PropType<(val: number) => void>;
556
+ builtinPlacements: VueTypeValidableDef<{
557
+ [key: string]: any;
558
+ }> & {
559
+ default: () => {
560
+ [key: string]: any;
561
+ };
562
+ };
563
+ popupAlign: VueTypeValidableDef<{
564
+ [key: string]: any;
565
+ }> & {
566
+ default: () => {
567
+ [key: string]: any;
568
+ };
569
+ } & {
570
+ default: () => {
571
+ [key: string]: any;
572
+ };
573
+ };
574
+ open: {
575
+ type: BooleanConstructor;
576
+ default: boolean;
577
+ };
578
+ defaultCurrent: {
579
+ type: NumberConstructor;
580
+ };
581
+ onChange: {
582
+ type: PropType<(current: number) => void>;
583
+ default: (current: number) => void;
584
+ };
585
+ onClose: {
586
+ type: PropType<(current: number) => void>;
587
+ default: (current: number) => void;
588
+ };
589
+ onFinish: {
590
+ type: PropType<() => void>;
591
+ default: () => void;
592
+ };
593
+ mask: {
594
+ type: PropType<boolean | {
595
+ style?: CSSProperties;
596
+ color?: string;
597
+ }>;
598
+ default: boolean | {
599
+ style?: CSSProperties;
600
+ color?: string;
601
+ };
602
+ };
603
+ arrow: {
604
+ type: PropType<boolean | {
605
+ pointAtCenter: boolean;
606
+ }>;
607
+ default: boolean | {
608
+ pointAtCenter: boolean;
609
+ };
610
+ };
611
+ rootClassName: {
612
+ type: StringConstructor;
613
+ };
614
+ placement: {
615
+ type: PropType<PlacementType>;
616
+ default: PlacementType;
617
+ };
618
+ renderPanel: {
619
+ type: PropType<(props: Partial< ExtractPropTypes<{
620
+ prefixCls: {
621
+ type: StringConstructor;
622
+ };
623
+ total: {
624
+ type: NumberConstructor;
625
+ };
626
+ current: {
627
+ type: NumberConstructor;
628
+ };
629
+ onClose: {
630
+ type: PropType<(e: MouseEvent) => void>;
631
+ default: (e: MouseEvent) => void;
632
+ };
633
+ onFinish: {
634
+ type: PropType<(e: MouseEvent) => void>;
635
+ default: (e: MouseEvent) => void;
636
+ };
637
+ renderPanel: {
638
+ type: PropType<(step: any, current: number) => VueNode>;
639
+ default: (step: any, current: number) => VueNode;
640
+ };
641
+ onPrev: {
642
+ type: PropType<(e: MouseEvent) => void>;
643
+ default: (e: MouseEvent) => void;
644
+ };
645
+ onNext: {
646
+ type: PropType<(e: MouseEvent) => void>;
647
+ default: (e: MouseEvent) => void;
648
+ };
649
+ arrow: {
650
+ type: PropType<boolean | {
651
+ pointAtCenter: boolean;
652
+ }>;
653
+ default: boolean | {
654
+ pointAtCenter: boolean;
655
+ };
656
+ };
657
+ target: {
658
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
659
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
660
+ };
661
+ title: {
662
+ type: PropType<VueNode>;
663
+ default: VueNode;
664
+ };
665
+ description: {
666
+ type: PropType<VueNode>;
667
+ default: VueNode;
668
+ };
669
+ placement: {
670
+ type: PropType<PlacementType>;
671
+ default: PlacementType;
672
+ };
673
+ mask: {
674
+ type: PropType<boolean | {
675
+ style?: CSSProperties;
676
+ color?: string;
677
+ }>;
678
+ default: boolean | {
679
+ style?: CSSProperties;
680
+ color?: string;
681
+ };
682
+ };
683
+ className: {
684
+ type: StringConstructor;
685
+ };
686
+ style: {
687
+ type: PropType<CSSProperties>;
688
+ default: CSSProperties;
689
+ };
690
+ scrollIntoViewOptions: {
691
+ type: PropType<boolean | ScrollIntoViewOptions>;
692
+ default: boolean | ScrollIntoViewOptions;
693
+ };
694
+ }>>, current: number) => VueNode>;
695
+ default: (props: Partial< ExtractPropTypes<{
696
+ prefixCls: {
697
+ type: StringConstructor;
698
+ };
699
+ total: {
700
+ type: NumberConstructor;
701
+ };
702
+ current: {
703
+ type: NumberConstructor;
704
+ };
705
+ onClose: {
706
+ type: PropType<(e: MouseEvent) => void>;
707
+ default: (e: MouseEvent) => void;
708
+ };
709
+ onFinish: {
710
+ type: PropType<(e: MouseEvent) => void>;
711
+ default: (e: MouseEvent) => void;
712
+ };
713
+ renderPanel: {
714
+ type: PropType<(step: any, current: number) => VueNode>;
715
+ default: (step: any, current: number) => VueNode;
716
+ };
717
+ onPrev: {
718
+ type: PropType<(e: MouseEvent) => void>;
719
+ default: (e: MouseEvent) => void;
720
+ };
721
+ onNext: {
722
+ type: PropType<(e: MouseEvent) => void>;
723
+ default: (e: MouseEvent) => void;
724
+ };
725
+ arrow: {
726
+ type: PropType<boolean | {
727
+ pointAtCenter: boolean;
728
+ }>;
729
+ default: boolean | {
730
+ pointAtCenter: boolean;
731
+ };
732
+ };
733
+ target: {
734
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
735
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
736
+ };
737
+ title: {
738
+ type: PropType<VueNode>;
739
+ default: VueNode;
740
+ };
741
+ description: {
742
+ type: PropType<VueNode>;
743
+ default: VueNode;
744
+ };
745
+ placement: {
746
+ type: PropType<PlacementType>;
747
+ default: PlacementType;
748
+ };
749
+ mask: {
750
+ type: PropType<boolean | {
751
+ style?: CSSProperties;
752
+ color?: string;
753
+ }>;
754
+ default: boolean | {
755
+ style?: CSSProperties;
756
+ color?: string;
757
+ };
758
+ };
759
+ className: {
760
+ type: StringConstructor;
761
+ };
762
+ style: {
763
+ type: PropType<CSSProperties>;
764
+ default: CSSProperties;
765
+ };
766
+ scrollIntoViewOptions: {
767
+ type: PropType<boolean | ScrollIntoViewOptions>;
768
+ default: boolean | ScrollIntoViewOptions;
769
+ };
770
+ }>>, current: number) => VueNode;
771
+ };
772
+ gap: {
773
+ type: PropType<Gap>;
774
+ default: Gap;
775
+ };
776
+ animated: {
777
+ type: PropType<boolean | {
778
+ placeholder: boolean;
779
+ }>;
780
+ default: boolean | {
781
+ placeholder: boolean;
782
+ };
783
+ };
784
+ scrollIntoViewOptions: {
785
+ type: PropType<boolean | ScrollIntoViewOptions>;
786
+ default: boolean | ScrollIntoViewOptions;
787
+ };
788
+ zIndex: {
789
+ type: NumberConstructor;
790
+ default: number;
791
+ };
792
+ }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
793
+ open: boolean;
794
+ mask: boolean | {
795
+ style?: CSSProperties;
796
+ color?: string;
797
+ };
798
+ zIndex: number;
799
+ gap: Gap;
800
+ onChange: (current: number) => void;
801
+ onClose: (current: number) => void;
802
+ arrow: boolean | {
803
+ pointAtCenter: boolean;
804
+ };
805
+ builtinPlacements: {
806
+ [key: string]: any;
807
+ };
808
+ popupAlign: {
809
+ [key: string]: any;
810
+ };
811
+ placement: PlacementType;
812
+ scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
813
+ animated: boolean | {
814
+ placeholder: boolean;
815
+ };
816
+ onFinish: () => void;
817
+ renderPanel: (props: Partial< ExtractPropTypes<{
818
+ prefixCls: {
819
+ type: StringConstructor;
820
+ };
821
+ total: {
822
+ type: NumberConstructor;
823
+ };
824
+ current: {
825
+ type: NumberConstructor;
826
+ };
827
+ onClose: {
828
+ type: PropType<(e: MouseEvent) => void>;
829
+ default: (e: MouseEvent) => void;
830
+ };
831
+ onFinish: {
832
+ type: PropType<(e: MouseEvent) => void>;
833
+ default: (e: MouseEvent) => void;
834
+ };
835
+ renderPanel: {
836
+ type: PropType<(step: any, current: number) => VueNode>;
837
+ default: (step: any, current: number) => VueNode;
838
+ };
839
+ onPrev: {
840
+ type: PropType<(e: MouseEvent) => void>;
841
+ default: (e: MouseEvent) => void;
842
+ };
843
+ onNext: {
844
+ type: PropType<(e: MouseEvent) => void>;
845
+ default: (e: MouseEvent) => void;
846
+ };
847
+ arrow: {
848
+ type: PropType<boolean | {
849
+ pointAtCenter: boolean;
850
+ }>;
851
+ default: boolean | {
852
+ pointAtCenter: boolean;
853
+ };
854
+ };
855
+ target: {
856
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
857
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
858
+ };
859
+ title: {
860
+ type: PropType<VueNode>;
861
+ default: VueNode;
862
+ };
863
+ description: {
864
+ type: PropType<VueNode>;
865
+ default: VueNode;
866
+ };
867
+ placement: {
868
+ type: PropType<PlacementType>;
869
+ default: PlacementType;
870
+ };
871
+ mask: {
872
+ type: PropType<boolean | {
873
+ style?: CSSProperties;
874
+ color?: string;
875
+ }>;
876
+ default: boolean | {
877
+ style?: CSSProperties;
878
+ color?: string;
879
+ };
880
+ };
881
+ className: {
882
+ type: StringConstructor;
883
+ };
884
+ style: {
885
+ type: PropType<CSSProperties>;
886
+ default: CSSProperties;
887
+ };
888
+ scrollIntoViewOptions: {
889
+ type: PropType<boolean | ScrollIntoViewOptions>;
890
+ default: boolean | ScrollIntoViewOptions;
891
+ };
892
+ }>>, current: number) => VueNode;
893
+ }>;
894
+ __isFragment?: never;
895
+ __isTeleport?: never;
896
+ __isSuspense?: never;
897
+ } & ComponentOptionsBase<Readonly< ExtractPropTypes<{
898
+ steps: {
899
+ type: PropType<TourStepProps[]>;
900
+ };
901
+ prefixCls: {
902
+ type: StringConstructor;
903
+ };
904
+ current: {
905
+ type: NumberConstructor;
906
+ };
907
+ type: {
908
+ type: PropType<"default" | "primary">;
909
+ };
910
+ 'onUpdate:current': PropType<(val: number) => void>;
911
+ builtinPlacements: VueTypeValidableDef<{
912
+ [key: string]: any;
913
+ }> & {
914
+ default: () => {
915
+ [key: string]: any;
916
+ };
917
+ };
918
+ popupAlign: VueTypeValidableDef<{
919
+ [key: string]: any;
920
+ }> & {
921
+ default: () => {
922
+ [key: string]: any;
923
+ };
924
+ } & {
925
+ default: () => {
926
+ [key: string]: any;
927
+ };
928
+ };
929
+ open: {
930
+ type: BooleanConstructor;
931
+ default: boolean;
932
+ };
933
+ defaultCurrent: {
934
+ type: NumberConstructor;
935
+ };
936
+ onChange: {
937
+ type: PropType<(current: number) => void>;
938
+ default: (current: number) => void;
939
+ };
940
+ onClose: {
941
+ type: PropType<(current: number) => void>;
942
+ default: (current: number) => void;
943
+ };
944
+ onFinish: {
945
+ type: PropType<() => void>;
946
+ default: () => void;
947
+ };
948
+ mask: {
949
+ type: PropType<boolean | {
950
+ style?: CSSProperties;
951
+ color?: string;
952
+ }>;
953
+ default: boolean | {
954
+ style?: CSSProperties;
955
+ color?: string;
956
+ };
957
+ };
958
+ arrow: {
959
+ type: PropType<boolean | {
960
+ pointAtCenter: boolean;
961
+ }>;
962
+ default: boolean | {
963
+ pointAtCenter: boolean;
964
+ };
965
+ };
966
+ rootClassName: {
967
+ type: StringConstructor;
968
+ };
969
+ placement: {
970
+ type: PropType<PlacementType>;
971
+ default: PlacementType;
972
+ };
973
+ renderPanel: {
974
+ type: PropType<(props: TourStepProps, current: number) => VueNode>;
975
+ default: (props: TourStepProps, current: number) => VueNode;
976
+ };
977
+ gap: {
978
+ type: PropType<Gap>;
979
+ default: Gap;
980
+ };
981
+ animated: {
982
+ type: PropType<boolean | {
983
+ placeholder: boolean;
984
+ }>;
985
+ default: boolean | {
986
+ placeholder: boolean;
987
+ };
988
+ };
989
+ scrollIntoViewOptions: {
990
+ type: PropType<boolean | ScrollIntoViewOptions>;
991
+ default: boolean | ScrollIntoViewOptions;
992
+ };
993
+ zIndex: {
994
+ type: NumberConstructor;
995
+ default: number;
996
+ };
997
+ }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
998
+ open: boolean;
999
+ mask: boolean | {
1000
+ style?: CSSProperties;
1001
+ color?: string;
1002
+ };
1003
+ zIndex: number;
1004
+ gap: Gap;
1005
+ onChange: (current: number) => void;
1006
+ onClose: (current: number) => void;
1007
+ arrow: boolean | {
1008
+ pointAtCenter: boolean;
1009
+ };
1010
+ builtinPlacements: {
1011
+ [key: string]: any;
1012
+ };
1013
+ popupAlign: {
1014
+ [key: string]: any;
1015
+ };
1016
+ placement: PlacementType;
1017
+ scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
1018
+ animated: boolean | {
1019
+ placeholder: boolean;
1020
+ };
1021
+ onFinish: () => void;
1022
+ renderPanel: (props: TourStepProps, current: number) => VueNode;
1023
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin;
1024
+ export default _default;