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