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