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