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