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