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