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