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