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