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