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