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