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