@pantograph/vue 0.34.30 → 0.34.32
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 +99 -97
- package/dist/nuxt.d.ts +97 -97
- package/dist/resolver.d.ts +97 -97
- package/dist/use/index.js +141 -135
- package/dist/use/index.umd.cjs +3 -3
- package/dist/use.d.ts +97 -97
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -6723,6 +6723,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
6723
6723
|
tagCls?: ClassValue;
|
|
6724
6724
|
/** CSS classes for the popup */
|
|
6725
6725
|
popupCls?: ClassValue;
|
|
6726
|
+
/** CSS classes for the popup content container (header, scroll area, footer wrapper) */
|
|
6727
|
+
containerCls?: ClassValue;
|
|
6726
6728
|
/** CSS classes for labels */
|
|
6727
6729
|
labelCls?: ClassValue;
|
|
6728
6730
|
/** CSS classes for options container */
|
|
@@ -17145,263 +17147,257 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
17145
17147
|
export { }
|
|
17146
17148
|
|
|
17147
17149
|
|
|
17150
|
+
/** component declare **/
|
|
17148
17151
|
declare module 'vue' {
|
|
17149
17152
|
interface GlobalComponents {
|
|
17150
|
-
|
|
17151
|
-
|
|
17153
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
17154
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
17152
17155
|
}
|
|
17153
17156
|
}
|
|
17154
17157
|
|
|
17155
17158
|
|
|
17156
17159
|
declare module 'vue' {
|
|
17157
17160
|
interface GlobalComponents {
|
|
17158
|
-
|
|
17161
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
17159
17162
|
}
|
|
17160
17163
|
}
|
|
17161
17164
|
|
|
17162
17165
|
|
|
17163
17166
|
declare module 'vue' {
|
|
17164
17167
|
interface GlobalComponents {
|
|
17165
|
-
|
|
17168
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
17166
17169
|
}
|
|
17167
17170
|
}
|
|
17168
17171
|
|
|
17169
17172
|
|
|
17170
17173
|
declare module 'vue' {
|
|
17171
17174
|
interface GlobalComponents {
|
|
17172
|
-
|
|
17175
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
17173
17176
|
}
|
|
17174
17177
|
}
|
|
17175
17178
|
|
|
17176
17179
|
|
|
17177
17180
|
declare module 'vue' {
|
|
17178
17181
|
interface GlobalComponents {
|
|
17179
|
-
|
|
17182
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
17180
17183
|
}
|
|
17181
17184
|
}
|
|
17182
17185
|
|
|
17183
17186
|
|
|
17184
17187
|
declare module 'vue' {
|
|
17185
17188
|
interface GlobalComponents {
|
|
17186
|
-
|
|
17189
|
+
Divider: DefineComponent<DividerProps>;
|
|
17187
17190
|
}
|
|
17188
17191
|
}
|
|
17189
17192
|
|
|
17190
17193
|
|
|
17191
|
-
/** component declare **/
|
|
17192
17194
|
declare module 'vue' {
|
|
17193
17195
|
interface GlobalComponents {
|
|
17194
|
-
|
|
17195
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
17196
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
17196
17197
|
}
|
|
17197
17198
|
}
|
|
17198
17199
|
|
|
17199
17200
|
|
|
17200
17201
|
declare module 'vue' {
|
|
17201
17202
|
interface GlobalComponents {
|
|
17202
|
-
|
|
17203
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
17204
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17203
17205
|
}
|
|
17204
17206
|
}
|
|
17205
17207
|
|
|
17206
17208
|
|
|
17207
17209
|
declare module 'vue' {
|
|
17208
17210
|
interface GlobalComponents {
|
|
17209
|
-
|
|
17211
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
17212
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17210
17213
|
}
|
|
17211
17214
|
}
|
|
17212
17215
|
|
|
17213
17216
|
|
|
17214
17217
|
declare module 'vue' {
|
|
17215
17218
|
interface GlobalComponents {
|
|
17216
|
-
|
|
17219
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
17217
17220
|
}
|
|
17218
17221
|
}
|
|
17219
17222
|
|
|
17220
17223
|
|
|
17221
17224
|
declare module 'vue' {
|
|
17222
17225
|
interface GlobalComponents {
|
|
17223
|
-
|
|
17224
|
-
|
|
17226
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
17227
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
17225
17228
|
}
|
|
17226
17229
|
}
|
|
17227
17230
|
|
|
17228
17231
|
|
|
17229
17232
|
declare module 'vue' {
|
|
17230
17233
|
interface GlobalComponents {
|
|
17231
|
-
|
|
17234
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
17232
17235
|
}
|
|
17233
17236
|
}
|
|
17234
17237
|
|
|
17235
17238
|
|
|
17236
17239
|
declare module 'vue' {
|
|
17237
17240
|
interface GlobalComponents {
|
|
17238
|
-
|
|
17241
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
17239
17242
|
}
|
|
17240
17243
|
}
|
|
17241
17244
|
|
|
17242
17245
|
|
|
17243
17246
|
declare module 'vue' {
|
|
17244
17247
|
interface GlobalComponents {
|
|
17245
|
-
|
|
17248
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
17246
17249
|
}
|
|
17247
17250
|
}
|
|
17248
17251
|
|
|
17249
17252
|
|
|
17250
17253
|
declare module 'vue' {
|
|
17251
17254
|
interface GlobalComponents {
|
|
17252
|
-
|
|
17253
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
17254
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
17255
|
-
Tr: DefineComponent<TrProps>;
|
|
17256
|
-
TBody: DefineComponent<TBodyProps>;
|
|
17257
|
-
THead: DefineComponent<THeadProps>;
|
|
17258
|
-
TFoot: DefineComponent<TFootProps>;
|
|
17255
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
17259
17256
|
}
|
|
17260
17257
|
}
|
|
17261
17258
|
|
|
17262
17259
|
|
|
17263
17260
|
declare module 'vue' {
|
|
17264
17261
|
interface GlobalComponents {
|
|
17265
|
-
|
|
17262
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
17266
17263
|
}
|
|
17267
17264
|
}
|
|
17268
17265
|
|
|
17269
17266
|
|
|
17270
17267
|
declare module 'vue' {
|
|
17271
17268
|
interface GlobalComponents {
|
|
17272
|
-
|
|
17269
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
17273
17270
|
}
|
|
17274
17271
|
}
|
|
17275
17272
|
|
|
17276
17273
|
|
|
17277
17274
|
declare module 'vue' {
|
|
17278
17275
|
interface GlobalComponents {
|
|
17279
|
-
|
|
17276
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
17280
17277
|
}
|
|
17281
17278
|
}
|
|
17282
17279
|
|
|
17283
17280
|
|
|
17284
17281
|
declare module 'vue' {
|
|
17285
17282
|
interface GlobalComponents {
|
|
17286
|
-
|
|
17283
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
17287
17284
|
}
|
|
17288
17285
|
}
|
|
17289
17286
|
|
|
17290
17287
|
|
|
17291
17288
|
declare module 'vue' {
|
|
17292
17289
|
interface GlobalComponents {
|
|
17293
|
-
|
|
17290
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
17294
17291
|
}
|
|
17295
17292
|
}
|
|
17296
17293
|
|
|
17297
17294
|
|
|
17298
17295
|
declare module 'vue' {
|
|
17299
17296
|
interface GlobalComponents {
|
|
17300
|
-
|
|
17297
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
17301
17298
|
}
|
|
17302
17299
|
}
|
|
17303
17300
|
|
|
17304
17301
|
|
|
17305
17302
|
declare module 'vue' {
|
|
17306
17303
|
interface GlobalComponents {
|
|
17307
|
-
|
|
17304
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
17308
17305
|
}
|
|
17309
17306
|
}
|
|
17310
17307
|
|
|
17311
17308
|
|
|
17312
17309
|
declare module 'vue' {
|
|
17313
17310
|
interface GlobalComponents {
|
|
17314
|
-
|
|
17311
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17312
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17313
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17315
17314
|
}
|
|
17316
17315
|
}
|
|
17317
17316
|
|
|
17318
17317
|
|
|
17319
17318
|
declare module 'vue' {
|
|
17320
17319
|
interface GlobalComponents {
|
|
17321
|
-
|
|
17320
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
17321
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17322
17322
|
}
|
|
17323
17323
|
}
|
|
17324
17324
|
|
|
17325
17325
|
|
|
17326
17326
|
declare module 'vue' {
|
|
17327
17327
|
interface GlobalComponents {
|
|
17328
|
-
|
|
17329
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17328
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
17330
17329
|
}
|
|
17331
17330
|
}
|
|
17332
17331
|
|
|
17333
17332
|
|
|
17334
17333
|
declare module 'vue' {
|
|
17335
17334
|
interface GlobalComponents {
|
|
17336
|
-
|
|
17335
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
17337
17336
|
}
|
|
17338
17337
|
}
|
|
17339
17338
|
|
|
17340
17339
|
|
|
17341
17340
|
declare module 'vue' {
|
|
17342
17341
|
interface GlobalComponents {
|
|
17343
|
-
|
|
17342
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
17343
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17344
|
+
SelectLabel: DefineComponent;
|
|
17344
17345
|
}
|
|
17345
17346
|
}
|
|
17346
17347
|
|
|
17347
17348
|
|
|
17348
17349
|
declare module 'vue' {
|
|
17349
17350
|
interface GlobalComponents {
|
|
17350
|
-
|
|
17351
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
17351
17352
|
}
|
|
17352
17353
|
}
|
|
17353
17354
|
|
|
17354
17355
|
|
|
17355
17356
|
declare module 'vue' {
|
|
17356
17357
|
interface GlobalComponents {
|
|
17357
|
-
|
|
17358
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17358
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
17359
17359
|
}
|
|
17360
17360
|
}
|
|
17361
17361
|
|
|
17362
17362
|
|
|
17363
17363
|
declare module 'vue' {
|
|
17364
17364
|
interface GlobalComponents {
|
|
17365
|
-
|
|
17366
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17367
|
-
ComboboxOption: DefineComponent;
|
|
17365
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
17368
17366
|
}
|
|
17369
17367
|
}
|
|
17370
17368
|
|
|
17371
17369
|
|
|
17372
17370
|
declare module 'vue' {
|
|
17373
17371
|
interface GlobalComponents {
|
|
17374
|
-
|
|
17372
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
17375
17373
|
}
|
|
17376
17374
|
}
|
|
17377
17375
|
|
|
17378
17376
|
|
|
17379
17377
|
declare module 'vue' {
|
|
17380
17378
|
interface GlobalComponents {
|
|
17381
|
-
|
|
17382
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17383
|
-
SelectLabel: DefineComponent;
|
|
17379
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
17384
17380
|
}
|
|
17385
17381
|
}
|
|
17386
17382
|
|
|
17387
17383
|
|
|
17388
17384
|
declare module 'vue' {
|
|
17389
17385
|
interface GlobalComponents {
|
|
17390
|
-
|
|
17386
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
17391
17387
|
}
|
|
17392
17388
|
}
|
|
17393
17389
|
|
|
17394
17390
|
|
|
17395
17391
|
declare module 'vue' {
|
|
17396
17392
|
interface GlobalComponents {
|
|
17397
|
-
|
|
17393
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
17398
17394
|
}
|
|
17399
17395
|
}
|
|
17400
17396
|
|
|
17401
17397
|
|
|
17402
17398
|
declare module 'vue' {
|
|
17403
17399
|
interface GlobalComponents {
|
|
17404
|
-
|
|
17400
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
17405
17401
|
}
|
|
17406
17402
|
}
|
|
17407
17403
|
|
|
@@ -17415,244 +17411,250 @@ declare module 'vue' {
|
|
|
17415
17411
|
|
|
17416
17412
|
declare module 'vue' {
|
|
17417
17413
|
interface GlobalComponents {
|
|
17418
|
-
|
|
17414
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
17419
17415
|
}
|
|
17420
17416
|
}
|
|
17421
17417
|
|
|
17422
17418
|
|
|
17423
17419
|
declare module 'vue' {
|
|
17424
17420
|
interface GlobalComponents {
|
|
17425
|
-
|
|
17421
|
+
Icon: DefineComponent<IconProps>;
|
|
17426
17422
|
}
|
|
17427
17423
|
}
|
|
17428
17424
|
|
|
17429
17425
|
|
|
17430
17426
|
declare module 'vue' {
|
|
17431
17427
|
interface GlobalComponents {
|
|
17432
|
-
|
|
17433
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17428
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
17434
17429
|
}
|
|
17435
17430
|
}
|
|
17436
17431
|
|
|
17437
17432
|
|
|
17438
17433
|
declare module 'vue' {
|
|
17439
17434
|
interface GlobalComponents {
|
|
17440
|
-
|
|
17435
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
17441
17436
|
}
|
|
17442
17437
|
}
|
|
17443
17438
|
|
|
17444
17439
|
|
|
17445
17440
|
declare module 'vue' {
|
|
17446
17441
|
interface GlobalComponents {
|
|
17447
|
-
|
|
17442
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
17448
17443
|
}
|
|
17449
17444
|
}
|
|
17450
17445
|
|
|
17451
17446
|
|
|
17452
17447
|
declare module 'vue' {
|
|
17453
17448
|
interface GlobalComponents {
|
|
17454
|
-
|
|
17449
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
17455
17450
|
}
|
|
17456
17451
|
}
|
|
17457
17452
|
|
|
17458
17453
|
|
|
17459
17454
|
declare module 'vue' {
|
|
17460
17455
|
interface GlobalComponents {
|
|
17461
|
-
|
|
17456
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
17457
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
17462
17458
|
}
|
|
17463
17459
|
}
|
|
17464
17460
|
|
|
17465
17461
|
|
|
17466
17462
|
declare module 'vue' {
|
|
17467
17463
|
interface GlobalComponents {
|
|
17468
|
-
|
|
17464
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
17469
17465
|
}
|
|
17470
17466
|
}
|
|
17471
17467
|
|
|
17472
17468
|
|
|
17473
17469
|
declare module 'vue' {
|
|
17474
17470
|
interface GlobalComponents {
|
|
17475
|
-
|
|
17471
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
17476
17472
|
}
|
|
17477
17473
|
}
|
|
17478
17474
|
|
|
17479
17475
|
|
|
17480
17476
|
declare module 'vue' {
|
|
17481
17477
|
interface GlobalComponents {
|
|
17482
|
-
|
|
17478
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
17483
17479
|
}
|
|
17484
17480
|
}
|
|
17485
17481
|
|
|
17486
17482
|
|
|
17487
17483
|
declare module 'vue' {
|
|
17488
17484
|
interface GlobalComponents {
|
|
17489
|
-
|
|
17485
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
17486
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17487
|
+
ComboboxOption: DefineComponent;
|
|
17490
17488
|
}
|
|
17491
17489
|
}
|
|
17492
17490
|
|
|
17493
17491
|
|
|
17494
17492
|
declare module 'vue' {
|
|
17495
17493
|
interface GlobalComponents {
|
|
17496
|
-
|
|
17494
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
17497
17495
|
}
|
|
17498
17496
|
}
|
|
17499
17497
|
|
|
17500
17498
|
|
|
17501
17499
|
declare module 'vue' {
|
|
17502
17500
|
interface GlobalComponents {
|
|
17503
|
-
|
|
17501
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
17504
17502
|
}
|
|
17505
17503
|
}
|
|
17506
17504
|
|
|
17507
17505
|
|
|
17508
17506
|
declare module 'vue' {
|
|
17509
17507
|
interface GlobalComponents {
|
|
17510
|
-
|
|
17508
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
17511
17509
|
}
|
|
17512
17510
|
}
|
|
17513
17511
|
|
|
17514
17512
|
|
|
17513
|
+
/**
|
|
17514
|
+
* Global component declaration for TypeScript support
|
|
17515
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
17516
|
+
*/
|
|
17515
17517
|
declare module 'vue' {
|
|
17516
17518
|
interface GlobalComponents {
|
|
17517
|
-
|
|
17519
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
17520
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
17518
17521
|
}
|
|
17519
17522
|
}
|
|
17520
17523
|
|
|
17521
17524
|
|
|
17522
17525
|
declare module 'vue' {
|
|
17523
17526
|
interface GlobalComponents {
|
|
17524
|
-
|
|
17527
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
17525
17528
|
}
|
|
17526
17529
|
}
|
|
17527
17530
|
|
|
17528
17531
|
|
|
17529
17532
|
declare module 'vue' {
|
|
17530
17533
|
interface GlobalComponents {
|
|
17531
|
-
|
|
17534
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
17532
17535
|
}
|
|
17533
17536
|
}
|
|
17534
17537
|
|
|
17535
17538
|
|
|
17536
17539
|
declare module 'vue' {
|
|
17537
17540
|
interface GlobalComponents {
|
|
17538
|
-
|
|
17541
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
17542
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
17543
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
17544
|
+
Tr: DefineComponent<TrProps>;
|
|
17545
|
+
TBody: DefineComponent<TBodyProps>;
|
|
17546
|
+
THead: DefineComponent<THeadProps>;
|
|
17547
|
+
TFoot: DefineComponent<TFootProps>;
|
|
17539
17548
|
}
|
|
17540
17549
|
}
|
|
17541
17550
|
|
|
17542
17551
|
|
|
17543
17552
|
declare module 'vue' {
|
|
17544
17553
|
interface GlobalComponents {
|
|
17545
|
-
|
|
17554
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
17546
17555
|
}
|
|
17547
17556
|
}
|
|
17548
17557
|
|
|
17549
17558
|
|
|
17550
17559
|
declare module 'vue' {
|
|
17551
17560
|
interface GlobalComponents {
|
|
17552
|
-
|
|
17561
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
17562
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17553
17563
|
}
|
|
17554
17564
|
}
|
|
17555
17565
|
|
|
17556
17566
|
|
|
17557
17567
|
declare module 'vue' {
|
|
17558
17568
|
interface GlobalComponents {
|
|
17559
|
-
|
|
17569
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
17570
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17571
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17572
|
+
TabContent: DefineComponent;
|
|
17560
17573
|
}
|
|
17561
17574
|
}
|
|
17562
17575
|
|
|
17563
17576
|
|
|
17564
|
-
/**
|
|
17565
|
-
* Global component declaration for TypeScript support
|
|
17566
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
17567
|
-
*/
|
|
17568
17577
|
declare module 'vue' {
|
|
17569
17578
|
interface GlobalComponents {
|
|
17570
|
-
|
|
17571
|
-
|
|
17579
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
17580
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17572
17581
|
}
|
|
17573
17582
|
}
|
|
17574
17583
|
|
|
17575
17584
|
|
|
17576
17585
|
declare module 'vue' {
|
|
17577
17586
|
interface GlobalComponents {
|
|
17578
|
-
|
|
17587
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
17579
17588
|
}
|
|
17580
17589
|
}
|
|
17581
17590
|
|
|
17582
17591
|
|
|
17583
17592
|
declare module 'vue' {
|
|
17584
17593
|
interface GlobalComponents {
|
|
17585
|
-
|
|
17586
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17594
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
17587
17595
|
}
|
|
17588
17596
|
}
|
|
17589
17597
|
|
|
17590
17598
|
|
|
17591
17599
|
declare module 'vue' {
|
|
17592
17600
|
interface GlobalComponents {
|
|
17593
|
-
|
|
17601
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
17594
17602
|
}
|
|
17595
17603
|
}
|
|
17596
17604
|
|
|
17597
17605
|
|
|
17598
17606
|
declare module 'vue' {
|
|
17599
17607
|
interface GlobalComponents {
|
|
17600
|
-
|
|
17601
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17602
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17603
|
-
TabContent: DefineComponent;
|
|
17608
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
17604
17609
|
}
|
|
17605
17610
|
}
|
|
17606
17611
|
|
|
17607
17612
|
|
|
17608
17613
|
declare module 'vue' {
|
|
17609
17614
|
interface GlobalComponents {
|
|
17610
|
-
|
|
17615
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
17611
17616
|
}
|
|
17612
17617
|
}
|
|
17613
17618
|
|
|
17614
17619
|
|
|
17615
17620
|
declare module 'vue' {
|
|
17616
17621
|
interface GlobalComponents {
|
|
17617
|
-
|
|
17622
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
17618
17623
|
}
|
|
17619
17624
|
}
|
|
17620
17625
|
|
|
17621
17626
|
|
|
17622
17627
|
declare module 'vue' {
|
|
17623
17628
|
interface GlobalComponents {
|
|
17624
|
-
|
|
17625
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17626
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17629
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
17627
17630
|
}
|
|
17628
17631
|
}
|
|
17629
17632
|
|
|
17630
17633
|
|
|
17631
17634
|
declare module 'vue' {
|
|
17632
17635
|
interface GlobalComponents {
|
|
17633
|
-
|
|
17636
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
17634
17637
|
}
|
|
17635
17638
|
}
|
|
17636
17639
|
|
|
17637
17640
|
|
|
17638
17641
|
declare module 'vue' {
|
|
17639
17642
|
interface GlobalComponents {
|
|
17640
|
-
|
|
17643
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
17641
17644
|
}
|
|
17642
17645
|
}
|
|
17643
17646
|
|
|
17644
17647
|
|
|
17645
17648
|
declare module 'vue' {
|
|
17646
17649
|
interface GlobalComponents {
|
|
17647
|
-
|
|
17648
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17650
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
17649
17651
|
}
|
|
17650
17652
|
}
|
|
17651
17653
|
|
|
17652
17654
|
|
|
17653
17655
|
declare module 'vue' {
|
|
17654
17656
|
interface GlobalComponents {
|
|
17655
|
-
|
|
17657
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
17656
17658
|
}
|
|
17657
17659
|
}
|
|
17658
17660
|
|