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