@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,654 @@
1
+ import { CSSProperties, ExtractPropTypes, PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { VueNode } from '../_util/type';
3
+ import { Gap } from './hooks/useTarget';
4
+ import { TourStepProps } from './interface';
5
+ import { PlacementType } from './placements';
6
+ import { VueTypeValidableDef } from 'vue-types';
7
+ export declare const tourProps: () => {
8
+ builtinPlacements: VueTypeValidableDef<{
9
+ [key: string]: any;
10
+ }> & {
11
+ default: () => {
12
+ [key: string]: any;
13
+ };
14
+ };
15
+ popupAlign: VueTypeValidableDef<{
16
+ [key: string]: any;
17
+ }> & {
18
+ default: () => {
19
+ [key: string]: any;
20
+ };
21
+ } & {
22
+ default: () => {
23
+ [key: string]: any;
24
+ };
25
+ };
26
+ steps: {
27
+ type: PropType<Partial<ExtractPropTypes<{
28
+ arrow: {
29
+ type: PropType<boolean | {
30
+ pointAtCenter: boolean;
31
+ }>;
32
+ default: boolean | {
33
+ pointAtCenter: boolean;
34
+ };
35
+ };
36
+ target: {
37
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
38
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
39
+ };
40
+ title: {
41
+ type: PropType<VueNode>;
42
+ default: VueNode;
43
+ };
44
+ description: {
45
+ type: PropType<VueNode>;
46
+ default: VueNode;
47
+ };
48
+ placement: {
49
+ type: PropType<PlacementType>;
50
+ default: PlacementType;
51
+ };
52
+ mask: {
53
+ type: PropType<boolean | {
54
+ style?: CSSProperties;
55
+ color?: string;
56
+ }>;
57
+ default: boolean | {
58
+ style?: CSSProperties;
59
+ color?: string;
60
+ };
61
+ };
62
+ className: {
63
+ type: StringConstructor;
64
+ };
65
+ style: {
66
+ type: PropType<CSSProperties>;
67
+ default: CSSProperties;
68
+ };
69
+ scrollIntoViewOptions: {
70
+ type: PropType<boolean | ScrollIntoViewOptions>;
71
+ default: boolean | ScrollIntoViewOptions;
72
+ };
73
+ }>>[]>;
74
+ default: Partial<ExtractPropTypes<{
75
+ arrow: {
76
+ type: PropType<boolean | {
77
+ pointAtCenter: boolean;
78
+ }>;
79
+ default: boolean | {
80
+ pointAtCenter: boolean;
81
+ };
82
+ };
83
+ target: {
84
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
85
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
86
+ };
87
+ title: {
88
+ type: PropType<VueNode>;
89
+ default: VueNode;
90
+ };
91
+ description: {
92
+ type: PropType<VueNode>;
93
+ default: VueNode;
94
+ };
95
+ placement: {
96
+ type: PropType<PlacementType>;
97
+ default: PlacementType;
98
+ };
99
+ mask: {
100
+ type: PropType<boolean | {
101
+ style?: CSSProperties;
102
+ color?: string;
103
+ }>;
104
+ default: boolean | {
105
+ style?: CSSProperties;
106
+ color?: string;
107
+ };
108
+ };
109
+ className: {
110
+ type: StringConstructor;
111
+ };
112
+ style: {
113
+ type: PropType<CSSProperties>;
114
+ default: CSSProperties;
115
+ };
116
+ scrollIntoViewOptions: {
117
+ type: PropType<boolean | ScrollIntoViewOptions>;
118
+ default: boolean | ScrollIntoViewOptions;
119
+ };
120
+ }>>[];
121
+ };
122
+ open: {
123
+ type: BooleanConstructor;
124
+ default: boolean;
125
+ };
126
+ defaultCurrent: {
127
+ type: NumberConstructor;
128
+ };
129
+ current: {
130
+ type: NumberConstructor;
131
+ };
132
+ onChange: {
133
+ type: PropType<(current: number) => void>;
134
+ default: (current: number) => void;
135
+ };
136
+ onClose: {
137
+ type: PropType<(current: number) => void>;
138
+ default: (current: number) => void;
139
+ };
140
+ onFinish: {
141
+ type: PropType<() => void>;
142
+ default: () => void;
143
+ };
144
+ mask: {
145
+ type: PropType<boolean | {
146
+ style?: CSSProperties;
147
+ color?: string;
148
+ }>;
149
+ default: boolean | {
150
+ style?: CSSProperties;
151
+ color?: string;
152
+ };
153
+ };
154
+ arrow: {
155
+ type: PropType<boolean | {
156
+ pointAtCenter: boolean;
157
+ }>;
158
+ default: boolean | {
159
+ pointAtCenter: boolean;
160
+ };
161
+ };
162
+ rootClassName: {
163
+ type: StringConstructor;
164
+ };
165
+ placement: {
166
+ type: PropType<PlacementType>;
167
+ default: PlacementType;
168
+ };
169
+ prefixCls: {
170
+ type: StringConstructor;
171
+ default: string;
172
+ };
173
+ renderPanel: {
174
+ type: PropType<(props: TourStepProps, current: number) => VueNode>;
175
+ default: (props: TourStepProps, current: number) => VueNode;
176
+ };
177
+ gap: {
178
+ type: PropType<Gap>;
179
+ default: Gap;
180
+ };
181
+ animated: {
182
+ type: PropType<boolean | {
183
+ placeholder: boolean;
184
+ }>;
185
+ default: boolean | {
186
+ placeholder: boolean;
187
+ };
188
+ };
189
+ scrollIntoViewOptions: {
190
+ type: PropType<boolean | ScrollIntoViewOptions>;
191
+ default: boolean | ScrollIntoViewOptions;
192
+ };
193
+ zIndex: {
194
+ type: NumberConstructor;
195
+ default: number;
196
+ };
197
+ };
198
+ export type TourProps = Partial<ExtractPropTypes<ReturnType<typeof tourProps>>>;
199
+ declare const Tour: DefineComponent<ExtractPropTypes<{
200
+ builtinPlacements: VueTypeValidableDef<{
201
+ [key: string]: any;
202
+ }> & {
203
+ default: () => {
204
+ [key: string]: any;
205
+ };
206
+ };
207
+ popupAlign: VueTypeValidableDef<{
208
+ [key: string]: any;
209
+ }> & {
210
+ default: () => {
211
+ [key: string]: any;
212
+ };
213
+ } & {
214
+ default: () => {
215
+ [key: string]: any;
216
+ };
217
+ };
218
+ steps: {
219
+ type: PropType<Partial<ExtractPropTypes<{
220
+ arrow: {
221
+ type: PropType<boolean | {
222
+ pointAtCenter: boolean;
223
+ }>;
224
+ default: boolean | {
225
+ pointAtCenter: boolean;
226
+ };
227
+ };
228
+ target: {
229
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
230
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
231
+ };
232
+ title: {
233
+ type: PropType<VueNode>;
234
+ default: VueNode;
235
+ };
236
+ description: {
237
+ type: PropType<VueNode>;
238
+ default: VueNode;
239
+ };
240
+ placement: {
241
+ type: PropType<PlacementType>;
242
+ default: PlacementType;
243
+ };
244
+ mask: {
245
+ type: PropType<boolean | {
246
+ style?: CSSProperties;
247
+ color?: string;
248
+ }>;
249
+ default: boolean | {
250
+ style?: CSSProperties;
251
+ color?: string;
252
+ };
253
+ };
254
+ className: {
255
+ type: StringConstructor;
256
+ };
257
+ style: {
258
+ type: PropType<CSSProperties>;
259
+ default: CSSProperties;
260
+ };
261
+ scrollIntoViewOptions: {
262
+ type: PropType<boolean | ScrollIntoViewOptions>;
263
+ default: boolean | ScrollIntoViewOptions;
264
+ };
265
+ }>>[]>;
266
+ default: Partial<ExtractPropTypes<{
267
+ arrow: {
268
+ type: PropType<boolean | {
269
+ pointAtCenter: boolean;
270
+ }>;
271
+ default: boolean | {
272
+ pointAtCenter: boolean;
273
+ };
274
+ };
275
+ target: {
276
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
277
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
278
+ };
279
+ title: {
280
+ type: PropType<VueNode>;
281
+ default: VueNode;
282
+ };
283
+ description: {
284
+ type: PropType<VueNode>;
285
+ default: VueNode;
286
+ };
287
+ placement: {
288
+ type: PropType<PlacementType>;
289
+ default: PlacementType;
290
+ };
291
+ mask: {
292
+ type: PropType<boolean | {
293
+ style?: CSSProperties;
294
+ color?: string;
295
+ }>;
296
+ default: boolean | {
297
+ style?: CSSProperties;
298
+ color?: string;
299
+ };
300
+ };
301
+ className: {
302
+ type: StringConstructor;
303
+ };
304
+ style: {
305
+ type: PropType<CSSProperties>;
306
+ default: CSSProperties;
307
+ };
308
+ scrollIntoViewOptions: {
309
+ type: PropType<boolean | ScrollIntoViewOptions>;
310
+ default: boolean | ScrollIntoViewOptions;
311
+ };
312
+ }>>[];
313
+ };
314
+ open: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ defaultCurrent: {
319
+ type: NumberConstructor;
320
+ };
321
+ current: {
322
+ type: NumberConstructor;
323
+ };
324
+ onChange: {
325
+ type: PropType<(current: number) => void>;
326
+ default: (current: number) => void;
327
+ };
328
+ onClose: {
329
+ type: PropType<(current: number) => void>;
330
+ default: (current: number) => void;
331
+ };
332
+ onFinish: {
333
+ type: PropType<() => void>;
334
+ default: () => void;
335
+ };
336
+ mask: {
337
+ type: PropType<boolean | {
338
+ style?: CSSProperties;
339
+ color?: string;
340
+ }>;
341
+ default: boolean | {
342
+ style?: CSSProperties;
343
+ color?: string;
344
+ };
345
+ };
346
+ arrow: {
347
+ type: PropType<boolean | {
348
+ pointAtCenter: boolean;
349
+ }>;
350
+ default: boolean | {
351
+ pointAtCenter: boolean;
352
+ };
353
+ };
354
+ rootClassName: {
355
+ type: StringConstructor;
356
+ };
357
+ placement: {
358
+ type: PropType<PlacementType>;
359
+ default: PlacementType;
360
+ };
361
+ prefixCls: {
362
+ type: StringConstructor;
363
+ default: string;
364
+ };
365
+ renderPanel: {
366
+ type: PropType<(props: TourStepProps, current: number) => VueNode>;
367
+ default: (props: TourStepProps, current: number) => VueNode;
368
+ };
369
+ gap: {
370
+ type: PropType<Gap>;
371
+ default: Gap;
372
+ };
373
+ animated: {
374
+ type: PropType<boolean | {
375
+ placeholder: boolean;
376
+ }>;
377
+ default: boolean | {
378
+ placeholder: boolean;
379
+ };
380
+ };
381
+ scrollIntoViewOptions: {
382
+ type: PropType<boolean | ScrollIntoViewOptions>;
383
+ default: boolean | ScrollIntoViewOptions;
384
+ };
385
+ zIndex: {
386
+ type: NumberConstructor;
387
+ default: number;
388
+ };
389
+ }>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
390
+ builtinPlacements: VueTypeValidableDef<{
391
+ [key: string]: any;
392
+ }> & {
393
+ default: () => {
394
+ [key: string]: any;
395
+ };
396
+ };
397
+ popupAlign: VueTypeValidableDef<{
398
+ [key: string]: any;
399
+ }> & {
400
+ default: () => {
401
+ [key: string]: any;
402
+ };
403
+ } & {
404
+ default: () => {
405
+ [key: string]: any;
406
+ };
407
+ };
408
+ steps: {
409
+ type: PropType<Partial<ExtractPropTypes<{
410
+ arrow: {
411
+ type: PropType<boolean | {
412
+ pointAtCenter: boolean;
413
+ }>;
414
+ default: boolean | {
415
+ pointAtCenter: boolean;
416
+ };
417
+ };
418
+ target: {
419
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
420
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
421
+ };
422
+ title: {
423
+ type: PropType<VueNode>;
424
+ default: VueNode;
425
+ };
426
+ description: {
427
+ type: PropType<VueNode>;
428
+ default: VueNode;
429
+ };
430
+ placement: {
431
+ type: PropType<PlacementType>;
432
+ default: PlacementType;
433
+ };
434
+ mask: {
435
+ type: PropType<boolean | {
436
+ style?: CSSProperties;
437
+ color?: string;
438
+ }>;
439
+ default: boolean | {
440
+ style?: CSSProperties;
441
+ color?: string;
442
+ };
443
+ };
444
+ className: {
445
+ type: StringConstructor;
446
+ };
447
+ style: {
448
+ type: PropType<CSSProperties>;
449
+ default: CSSProperties;
450
+ };
451
+ scrollIntoViewOptions: {
452
+ type: PropType<boolean | ScrollIntoViewOptions>;
453
+ default: boolean | ScrollIntoViewOptions;
454
+ };
455
+ }>>[]>;
456
+ default: Partial<ExtractPropTypes<{
457
+ arrow: {
458
+ type: PropType<boolean | {
459
+ pointAtCenter: boolean;
460
+ }>;
461
+ default: boolean | {
462
+ pointAtCenter: boolean;
463
+ };
464
+ };
465
+ target: {
466
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
467
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
468
+ };
469
+ title: {
470
+ type: PropType<VueNode>;
471
+ default: VueNode;
472
+ };
473
+ description: {
474
+ type: PropType<VueNode>;
475
+ default: VueNode;
476
+ };
477
+ placement: {
478
+ type: PropType<PlacementType>;
479
+ default: PlacementType;
480
+ };
481
+ mask: {
482
+ type: PropType<boolean | {
483
+ style?: CSSProperties;
484
+ color?: string;
485
+ }>;
486
+ default: boolean | {
487
+ style?: CSSProperties;
488
+ color?: string;
489
+ };
490
+ };
491
+ className: {
492
+ type: StringConstructor;
493
+ };
494
+ style: {
495
+ type: PropType<CSSProperties>;
496
+ default: CSSProperties;
497
+ };
498
+ scrollIntoViewOptions: {
499
+ type: PropType<boolean | ScrollIntoViewOptions>;
500
+ default: boolean | ScrollIntoViewOptions;
501
+ };
502
+ }>>[];
503
+ };
504
+ open: {
505
+ type: BooleanConstructor;
506
+ default: boolean;
507
+ };
508
+ defaultCurrent: {
509
+ type: NumberConstructor;
510
+ };
511
+ current: {
512
+ type: NumberConstructor;
513
+ };
514
+ onChange: {
515
+ type: PropType<(current: number) => void>;
516
+ default: (current: number) => void;
517
+ };
518
+ onClose: {
519
+ type: PropType<(current: number) => void>;
520
+ default: (current: number) => void;
521
+ };
522
+ onFinish: {
523
+ type: PropType<() => void>;
524
+ default: () => void;
525
+ };
526
+ mask: {
527
+ type: PropType<boolean | {
528
+ style?: CSSProperties;
529
+ color?: string;
530
+ }>;
531
+ default: boolean | {
532
+ style?: CSSProperties;
533
+ color?: string;
534
+ };
535
+ };
536
+ arrow: {
537
+ type: PropType<boolean | {
538
+ pointAtCenter: boolean;
539
+ }>;
540
+ default: boolean | {
541
+ pointAtCenter: boolean;
542
+ };
543
+ };
544
+ rootClassName: {
545
+ type: StringConstructor;
546
+ };
547
+ placement: {
548
+ type: PropType<PlacementType>;
549
+ default: PlacementType;
550
+ };
551
+ prefixCls: {
552
+ type: StringConstructor;
553
+ default: string;
554
+ };
555
+ renderPanel: {
556
+ type: PropType<(props: TourStepProps, current: number) => VueNode>;
557
+ default: (props: TourStepProps, current: number) => VueNode;
558
+ };
559
+ gap: {
560
+ type: PropType<Gap>;
561
+ default: Gap;
562
+ };
563
+ animated: {
564
+ type: PropType<boolean | {
565
+ placeholder: boolean;
566
+ }>;
567
+ default: boolean | {
568
+ placeholder: boolean;
569
+ };
570
+ };
571
+ scrollIntoViewOptions: {
572
+ type: PropType<boolean | ScrollIntoViewOptions>;
573
+ default: boolean | ScrollIntoViewOptions;
574
+ };
575
+ zIndex: {
576
+ type: NumberConstructor;
577
+ default: number;
578
+ };
579
+ }>> & Readonly<{}>, {
580
+ open: boolean;
581
+ mask: boolean | {
582
+ style?: CSSProperties;
583
+ color?: string;
584
+ };
585
+ zIndex: number;
586
+ gap: Gap;
587
+ onChange: (current: number) => void;
588
+ prefixCls: string;
589
+ onClose: (current: number) => void;
590
+ arrow: boolean | {
591
+ pointAtCenter: boolean;
592
+ };
593
+ builtinPlacements: {
594
+ [key: string]: any;
595
+ };
596
+ popupAlign: {
597
+ [key: string]: any;
598
+ };
599
+ placement: PlacementType;
600
+ scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
601
+ animated: boolean | {
602
+ placeholder: boolean;
603
+ };
604
+ onFinish: () => void;
605
+ renderPanel: (props: TourStepProps, current: number) => VueNode;
606
+ steps: Partial<ExtractPropTypes<{
607
+ arrow: {
608
+ type: PropType<boolean | {
609
+ pointAtCenter: boolean;
610
+ }>;
611
+ default: boolean | {
612
+ pointAtCenter: boolean;
613
+ };
614
+ };
615
+ target: {
616
+ type: PropType<HTMLElement | (() => HTMLElement) | (() => null) | null>;
617
+ default: HTMLElement | (() => HTMLElement) | (() => null) | null;
618
+ };
619
+ title: {
620
+ type: PropType<VueNode>;
621
+ default: VueNode;
622
+ };
623
+ description: {
624
+ type: PropType<VueNode>;
625
+ default: VueNode;
626
+ };
627
+ placement: {
628
+ type: PropType<PlacementType>;
629
+ default: PlacementType;
630
+ };
631
+ mask: {
632
+ type: PropType<boolean | {
633
+ style?: CSSProperties;
634
+ color?: string;
635
+ }>;
636
+ default: boolean | {
637
+ style?: CSSProperties;
638
+ color?: string;
639
+ };
640
+ };
641
+ className: {
642
+ type: StringConstructor;
643
+ };
644
+ style: {
645
+ type: PropType<CSSProperties>;
646
+ default: CSSProperties;
647
+ };
648
+ scrollIntoViewOptions: {
649
+ type: PropType<boolean | ScrollIntoViewOptions>;
650
+ default: boolean | ScrollIntoViewOptions;
651
+ };
652
+ }>>[];
653
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
654
+ export default Tour;