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