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