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