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