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