@pantograph/vue 0.34.26 → 0.34.28

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