@pantograph/vue 0.34.41 → 0.34.42

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