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