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