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