@pantograph/vue 0.34.40 → 0.34.41
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.
- package/dist/index.d.ts +96 -95
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +10 -8
- package/dist/use/index.umd.cjs +2 -2
- package/dist/use.d.ts +95 -95
- package/package.json +1 -1
package/dist/use.d.ts
CHANGED
|
@@ -20,195 +20,207 @@ export { }
|
|
|
20
20
|
|
|
21
21
|
declare module 'vue' {
|
|
22
22
|
interface GlobalComponents {
|
|
23
|
-
|
|
23
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
declare module 'vue' {
|
|
29
29
|
interface GlobalComponents {
|
|
30
|
-
|
|
30
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
declare module 'vue' {
|
|
36
36
|
interface GlobalComponents {
|
|
37
|
-
|
|
37
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
declare module 'vue' {
|
|
43
43
|
interface GlobalComponents {
|
|
44
|
-
|
|
44
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
declare module 'vue' {
|
|
50
50
|
interface GlobalComponents {
|
|
51
|
-
|
|
51
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
declare module 'vue' {
|
|
57
57
|
interface GlobalComponents {
|
|
58
|
-
|
|
58
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
declare module 'vue' {
|
|
64
64
|
interface GlobalComponents {
|
|
65
|
-
|
|
65
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
declare module 'vue' {
|
|
71
71
|
interface GlobalComponents {
|
|
72
|
-
|
|
72
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
declare module 'vue' {
|
|
78
78
|
interface GlobalComponents {
|
|
79
|
-
|
|
80
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
79
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
81
80
|
}
|
|
82
81
|
}
|
|
83
82
|
|
|
84
83
|
|
|
84
|
+
/**
|
|
85
|
+
* Global component declaration for TypeScript support
|
|
86
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
87
|
+
*/
|
|
85
88
|
declare module 'vue' {
|
|
86
89
|
interface GlobalComponents {
|
|
87
|
-
|
|
88
|
-
|
|
90
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
91
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
89
92
|
}
|
|
90
93
|
}
|
|
91
94
|
|
|
92
95
|
|
|
93
96
|
declare module 'vue' {
|
|
94
97
|
interface GlobalComponents {
|
|
95
|
-
|
|
98
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
96
99
|
}
|
|
97
100
|
}
|
|
98
101
|
|
|
99
102
|
|
|
100
103
|
declare module 'vue' {
|
|
101
104
|
interface GlobalComponents {
|
|
102
|
-
|
|
105
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
103
106
|
}
|
|
104
107
|
}
|
|
105
108
|
|
|
106
109
|
|
|
107
110
|
declare module 'vue' {
|
|
108
111
|
interface GlobalComponents {
|
|
109
|
-
|
|
112
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
116
|
|
|
114
117
|
declare module 'vue' {
|
|
115
118
|
interface GlobalComponents {
|
|
116
|
-
|
|
119
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
117
120
|
}
|
|
118
121
|
}
|
|
119
122
|
|
|
120
123
|
|
|
121
124
|
declare module 'vue' {
|
|
122
125
|
interface GlobalComponents {
|
|
123
|
-
|
|
126
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
124
127
|
}
|
|
125
128
|
}
|
|
126
129
|
|
|
127
130
|
|
|
128
131
|
declare module 'vue' {
|
|
129
132
|
interface GlobalComponents {
|
|
130
|
-
|
|
133
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
131
134
|
}
|
|
132
135
|
}
|
|
133
136
|
|
|
134
137
|
|
|
138
|
+
/** component declare **/
|
|
135
139
|
declare module 'vue' {
|
|
136
140
|
interface GlobalComponents {
|
|
137
|
-
|
|
141
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
142
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
138
143
|
}
|
|
139
144
|
}
|
|
140
145
|
|
|
141
146
|
|
|
142
147
|
declare module 'vue' {
|
|
143
148
|
interface GlobalComponents {
|
|
144
|
-
|
|
149
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
145
150
|
}
|
|
146
151
|
}
|
|
147
152
|
|
|
148
153
|
|
|
149
154
|
declare module 'vue' {
|
|
150
155
|
interface GlobalComponents {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
SelectLabel: DefineComponent;
|
|
156
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
157
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
154
158
|
}
|
|
155
159
|
}
|
|
156
160
|
|
|
157
161
|
|
|
158
162
|
declare module 'vue' {
|
|
159
163
|
interface GlobalComponents {
|
|
160
|
-
|
|
164
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
161
165
|
}
|
|
162
166
|
}
|
|
163
167
|
|
|
164
168
|
|
|
165
169
|
declare module 'vue' {
|
|
166
170
|
interface GlobalComponents {
|
|
167
|
-
|
|
171
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
168
172
|
}
|
|
169
173
|
}
|
|
170
174
|
|
|
171
175
|
|
|
172
176
|
declare module 'vue' {
|
|
173
177
|
interface GlobalComponents {
|
|
174
|
-
|
|
178
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
175
179
|
}
|
|
176
180
|
}
|
|
177
181
|
|
|
178
182
|
|
|
179
183
|
declare module 'vue' {
|
|
180
184
|
interface GlobalComponents {
|
|
181
|
-
|
|
185
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
182
186
|
}
|
|
183
187
|
}
|
|
184
188
|
|
|
185
189
|
|
|
186
190
|
declare module 'vue' {
|
|
187
191
|
interface GlobalComponents {
|
|
188
|
-
|
|
192
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
189
193
|
}
|
|
190
194
|
}
|
|
191
195
|
|
|
192
196
|
|
|
193
197
|
declare module 'vue' {
|
|
194
198
|
interface GlobalComponents {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
ComboboxOption: DefineComponent;
|
|
199
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
200
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
198
201
|
}
|
|
199
202
|
}
|
|
200
203
|
|
|
201
204
|
|
|
202
205
|
declare module 'vue' {
|
|
203
206
|
interface GlobalComponents {
|
|
204
|
-
|
|
207
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
208
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
209
|
+
SelectLabel: DefineComponent;
|
|
205
210
|
}
|
|
206
211
|
}
|
|
207
212
|
|
|
208
213
|
|
|
209
214
|
declare module 'vue' {
|
|
210
215
|
interface GlobalComponents {
|
|
211
|
-
|
|
216
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
declare module 'vue' {
|
|
222
|
+
interface GlobalComponents {
|
|
223
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
212
224
|
}
|
|
213
225
|
}
|
|
214
226
|
|
|
@@ -226,69 +238,59 @@ declare module 'vue' {
|
|
|
226
238
|
}
|
|
227
239
|
|
|
228
240
|
|
|
229
|
-
/** component declare **/
|
|
230
241
|
declare module 'vue' {
|
|
231
242
|
interface GlobalComponents {
|
|
232
|
-
|
|
233
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
declare module 'vue' {
|
|
239
|
-
interface GlobalComponents {
|
|
240
|
-
Icon: DefineComponent<IconProps>;
|
|
243
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
241
244
|
}
|
|
242
245
|
}
|
|
243
246
|
|
|
244
247
|
|
|
245
248
|
declare module 'vue' {
|
|
246
249
|
interface GlobalComponents {
|
|
247
|
-
|
|
250
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
248
251
|
}
|
|
249
252
|
}
|
|
250
253
|
|
|
251
254
|
|
|
252
255
|
declare module 'vue' {
|
|
253
256
|
interface GlobalComponents {
|
|
254
|
-
|
|
257
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
255
258
|
}
|
|
256
259
|
}
|
|
257
260
|
|
|
258
261
|
|
|
259
262
|
declare module 'vue' {
|
|
260
263
|
interface GlobalComponents {
|
|
261
|
-
|
|
264
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
262
265
|
}
|
|
263
266
|
}
|
|
264
267
|
|
|
265
268
|
|
|
266
269
|
declare module 'vue' {
|
|
267
270
|
interface GlobalComponents {
|
|
268
|
-
|
|
271
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
269
272
|
}
|
|
270
273
|
}
|
|
271
274
|
|
|
272
275
|
|
|
273
276
|
declare module 'vue' {
|
|
274
277
|
interface GlobalComponents {
|
|
275
|
-
|
|
276
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
278
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
277
279
|
}
|
|
278
280
|
}
|
|
279
281
|
|
|
280
282
|
|
|
281
283
|
declare module 'vue' {
|
|
282
284
|
interface GlobalComponents {
|
|
283
|
-
|
|
285
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
284
286
|
}
|
|
285
287
|
}
|
|
286
288
|
|
|
287
289
|
|
|
288
290
|
declare module 'vue' {
|
|
289
291
|
interface GlobalComponents {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
293
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
292
294
|
}
|
|
293
295
|
}
|
|
294
296
|
|
|
@@ -302,82 +304,82 @@ declare module 'vue' {
|
|
|
302
304
|
|
|
303
305
|
declare module 'vue' {
|
|
304
306
|
interface GlobalComponents {
|
|
305
|
-
|
|
307
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
306
308
|
}
|
|
307
309
|
}
|
|
308
310
|
|
|
309
311
|
|
|
310
312
|
declare module 'vue' {
|
|
311
313
|
interface GlobalComponents {
|
|
312
|
-
|
|
314
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
313
315
|
}
|
|
314
316
|
}
|
|
315
317
|
|
|
316
318
|
|
|
317
319
|
declare module 'vue' {
|
|
318
320
|
interface GlobalComponents {
|
|
319
|
-
|
|
321
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
320
322
|
}
|
|
321
323
|
}
|
|
322
324
|
|
|
323
325
|
|
|
324
326
|
declare module 'vue' {
|
|
325
327
|
interface GlobalComponents {
|
|
326
|
-
|
|
328
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
329
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
327
330
|
}
|
|
328
331
|
}
|
|
329
332
|
|
|
330
333
|
|
|
331
334
|
declare module 'vue' {
|
|
332
335
|
interface GlobalComponents {
|
|
333
|
-
|
|
334
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
335
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
336
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
336
337
|
}
|
|
337
338
|
}
|
|
338
339
|
|
|
339
340
|
|
|
340
341
|
declare module 'vue' {
|
|
341
342
|
interface GlobalComponents {
|
|
342
|
-
|
|
343
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
344
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
345
|
-
TabContent: DefineComponent;
|
|
343
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
346
344
|
}
|
|
347
345
|
}
|
|
348
346
|
|
|
349
347
|
|
|
350
348
|
declare module 'vue' {
|
|
351
349
|
interface GlobalComponents {
|
|
352
|
-
|
|
350
|
+
Icon: DefineComponent<IconProps>;
|
|
353
351
|
}
|
|
354
352
|
}
|
|
355
353
|
|
|
356
354
|
|
|
357
355
|
declare module 'vue' {
|
|
358
356
|
interface GlobalComponents {
|
|
359
|
-
|
|
357
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
358
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
359
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
360
|
+
TabContent: DefineComponent;
|
|
360
361
|
}
|
|
361
362
|
}
|
|
362
363
|
|
|
363
364
|
|
|
364
365
|
declare module 'vue' {
|
|
365
366
|
interface GlobalComponents {
|
|
366
|
-
|
|
367
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
368
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
367
369
|
}
|
|
368
370
|
}
|
|
369
371
|
|
|
370
372
|
|
|
371
373
|
declare module 'vue' {
|
|
372
374
|
interface GlobalComponents {
|
|
373
|
-
|
|
375
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
374
376
|
}
|
|
375
377
|
}
|
|
376
378
|
|
|
377
379
|
|
|
378
380
|
declare module 'vue' {
|
|
379
381
|
interface GlobalComponents {
|
|
380
|
-
|
|
382
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
381
383
|
}
|
|
382
384
|
}
|
|
383
385
|
|
|
@@ -392,147 +394,145 @@ declare module 'vue' {
|
|
|
392
394
|
|
|
393
395
|
declare module 'vue' {
|
|
394
396
|
interface GlobalComponents {
|
|
395
|
-
|
|
397
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
396
398
|
}
|
|
397
399
|
}
|
|
398
400
|
|
|
399
401
|
|
|
400
402
|
declare module 'vue' {
|
|
401
403
|
interface GlobalComponents {
|
|
402
|
-
|
|
404
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
405
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
406
|
+
ComboboxOption: DefineComponent;
|
|
403
407
|
}
|
|
404
408
|
}
|
|
405
409
|
|
|
406
410
|
|
|
407
411
|
declare module 'vue' {
|
|
408
412
|
interface GlobalComponents {
|
|
409
|
-
|
|
413
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
410
414
|
}
|
|
411
415
|
}
|
|
412
416
|
|
|
413
417
|
|
|
414
418
|
declare module 'vue' {
|
|
415
419
|
interface GlobalComponents {
|
|
416
|
-
|
|
420
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
417
421
|
}
|
|
418
422
|
}
|
|
419
423
|
|
|
420
424
|
|
|
421
425
|
declare module 'vue' {
|
|
422
426
|
interface GlobalComponents {
|
|
423
|
-
|
|
427
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
424
428
|
}
|
|
425
429
|
}
|
|
426
430
|
|
|
427
431
|
|
|
428
432
|
declare module 'vue' {
|
|
429
433
|
interface GlobalComponents {
|
|
430
|
-
|
|
434
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
431
435
|
}
|
|
432
436
|
}
|
|
433
437
|
|
|
434
438
|
|
|
435
439
|
declare module 'vue' {
|
|
436
440
|
interface GlobalComponents {
|
|
437
|
-
|
|
441
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
442
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
438
443
|
}
|
|
439
444
|
}
|
|
440
445
|
|
|
441
446
|
|
|
442
447
|
declare module 'vue' {
|
|
443
448
|
interface GlobalComponents {
|
|
444
|
-
|
|
449
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
445
450
|
}
|
|
446
451
|
}
|
|
447
452
|
|
|
448
453
|
|
|
449
|
-
/**
|
|
450
|
-
* Global component declaration for TypeScript support
|
|
451
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
452
|
-
*/
|
|
453
454
|
declare module 'vue' {
|
|
454
455
|
interface GlobalComponents {
|
|
455
|
-
|
|
456
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
456
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
457
457
|
}
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
|
|
461
461
|
declare module 'vue' {
|
|
462
462
|
interface GlobalComponents {
|
|
463
|
-
|
|
464
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
463
|
+
Spinner: DefineComponent<SpinnerProps, SpinnerSlots, SpinnerEmits>;
|
|
465
464
|
}
|
|
466
465
|
}
|
|
467
466
|
|
|
468
467
|
|
|
469
468
|
declare module 'vue' {
|
|
470
469
|
interface GlobalComponents {
|
|
471
|
-
|
|
470
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
472
471
|
}
|
|
473
472
|
}
|
|
474
473
|
|
|
475
474
|
|
|
476
475
|
declare module 'vue' {
|
|
477
476
|
interface GlobalComponents {
|
|
478
|
-
|
|
477
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
479
478
|
}
|
|
480
479
|
}
|
|
481
480
|
|
|
482
481
|
|
|
483
482
|
declare module 'vue' {
|
|
484
483
|
interface GlobalComponents {
|
|
485
|
-
|
|
486
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
484
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
487
485
|
}
|
|
488
486
|
}
|
|
489
487
|
|
|
490
488
|
|
|
491
489
|
declare module 'vue' {
|
|
492
490
|
interface GlobalComponents {
|
|
493
|
-
|
|
491
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
494
492
|
}
|
|
495
493
|
}
|
|
496
494
|
|
|
497
495
|
|
|
498
496
|
declare module 'vue' {
|
|
499
497
|
interface GlobalComponents {
|
|
500
|
-
|
|
498
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
501
499
|
}
|
|
502
500
|
}
|
|
503
501
|
|
|
504
502
|
|
|
505
503
|
declare module 'vue' {
|
|
506
504
|
interface GlobalComponents {
|
|
507
|
-
|
|
505
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
506
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
507
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
508
508
|
}
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
|
|
512
512
|
declare module 'vue' {
|
|
513
513
|
interface GlobalComponents {
|
|
514
|
-
|
|
514
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
515
515
|
}
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
|
|
519
519
|
declare module 'vue' {
|
|
520
520
|
interface GlobalComponents {
|
|
521
|
-
|
|
521
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
522
522
|
}
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
|
|
526
526
|
declare module 'vue' {
|
|
527
527
|
interface GlobalComponents {
|
|
528
|
-
|
|
528
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
529
529
|
}
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
|
|
533
533
|
declare module 'vue' {
|
|
534
534
|
interface GlobalComponents {
|
|
535
|
-
|
|
535
|
+
Divider: DefineComponent<DividerProps>;
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
538
|
|