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