@pantograph/vue 0.34.25 → 0.34.27
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 +102 -102
- package/dist/index.js +3 -3
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +93 -93
- package/dist/resolver.d.ts +93 -93
- package/dist/use/index.js +10 -10
- package/dist/use/index.umd.cjs +3 -3
- package/dist/use.d.ts +93 -93
- 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,133 +17145,131 @@ 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
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
17158
17160
|
}
|
|
17159
17161
|
}
|
|
17160
17162
|
|
|
17161
17163
|
|
|
17162
17164
|
declare module 'vue' {
|
|
17163
17165
|
interface GlobalComponents {
|
|
17164
|
-
|
|
17166
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
17165
17167
|
}
|
|
17166
17168
|
}
|
|
17167
17169
|
|
|
17168
17170
|
|
|
17169
17171
|
declare module 'vue' {
|
|
17170
17172
|
interface GlobalComponents {
|
|
17171
|
-
|
|
17173
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
17172
17174
|
}
|
|
17173
17175
|
}
|
|
17174
17176
|
|
|
17175
17177
|
|
|
17176
17178
|
declare module 'vue' {
|
|
17177
17179
|
interface GlobalComponents {
|
|
17178
|
-
|
|
17180
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
17179
17181
|
}
|
|
17180
17182
|
}
|
|
17181
17183
|
|
|
17182
17184
|
|
|
17183
17185
|
declare module 'vue' {
|
|
17184
17186
|
interface GlobalComponents {
|
|
17185
|
-
|
|
17187
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
17186
17188
|
}
|
|
17187
17189
|
}
|
|
17188
17190
|
|
|
17189
17191
|
|
|
17190
17192
|
declare module 'vue' {
|
|
17191
17193
|
interface GlobalComponents {
|
|
17192
|
-
|
|
17194
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
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
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
17205
17202
|
}
|
|
17206
17203
|
}
|
|
17207
17204
|
|
|
17208
17205
|
|
|
17209
17206
|
declare module 'vue' {
|
|
17210
17207
|
interface GlobalComponents {
|
|
17211
|
-
|
|
17208
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
17212
17209
|
}
|
|
17213
17210
|
}
|
|
17214
17211
|
|
|
17215
17212
|
|
|
17216
17213
|
declare module 'vue' {
|
|
17217
17214
|
interface GlobalComponents {
|
|
17218
|
-
|
|
17215
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
17219
17216
|
}
|
|
17220
17217
|
}
|
|
17221
17218
|
|
|
17222
17219
|
|
|
17223
17220
|
declare module 'vue' {
|
|
17224
17221
|
interface GlobalComponents {
|
|
17225
|
-
|
|
17222
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
17226
17223
|
}
|
|
17227
17224
|
}
|
|
17228
17225
|
|
|
17229
17226
|
|
|
17230
17227
|
declare module 'vue' {
|
|
17231
17228
|
interface GlobalComponents {
|
|
17232
|
-
|
|
17229
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
17233
17230
|
}
|
|
17234
17231
|
}
|
|
17235
17232
|
|
|
17236
17233
|
|
|
17237
17234
|
declare module 'vue' {
|
|
17238
17235
|
interface GlobalComponents {
|
|
17239
|
-
|
|
17236
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
17237
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
17240
17238
|
}
|
|
17241
17239
|
}
|
|
17242
17240
|
|
|
17243
17241
|
|
|
17244
17242
|
declare module 'vue' {
|
|
17245
17243
|
interface GlobalComponents {
|
|
17246
|
-
|
|
17244
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
17247
17245
|
}
|
|
17248
17246
|
}
|
|
17249
17247
|
|
|
17250
17248
|
|
|
17251
17249
|
declare module 'vue' {
|
|
17252
17250
|
interface GlobalComponents {
|
|
17253
|
-
|
|
17251
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
17254
17252
|
}
|
|
17255
17253
|
}
|
|
17256
17254
|
|
|
17257
17255
|
|
|
17258
17256
|
declare module 'vue' {
|
|
17259
17257
|
interface GlobalComponents {
|
|
17260
|
-
|
|
17258
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
17261
17259
|
}
|
|
17262
17260
|
}
|
|
17263
17261
|
|
|
17264
17262
|
|
|
17265
17263
|
declare module 'vue' {
|
|
17266
17264
|
interface GlobalComponents {
|
|
17267
|
-
|
|
17265
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
17268
17266
|
}
|
|
17269
17267
|
}
|
|
17270
17268
|
|
|
17271
17269
|
|
|
17272
17270
|
declare module 'vue' {
|
|
17273
17271
|
interface GlobalComponents {
|
|
17274
|
-
|
|
17272
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
17275
17273
|
}
|
|
17276
17274
|
}
|
|
17277
17275
|
|
|
@@ -17285,7 +17283,15 @@ declare module 'vue' {
|
|
|
17285
17283
|
|
|
17286
17284
|
declare module 'vue' {
|
|
17287
17285
|
interface GlobalComponents {
|
|
17288
|
-
|
|
17286
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
17287
|
+
}
|
|
17288
|
+
}
|
|
17289
|
+
|
|
17290
|
+
|
|
17291
|
+
declare module 'vue' {
|
|
17292
|
+
interface GlobalComponents {
|
|
17293
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
17294
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17289
17295
|
}
|
|
17290
17296
|
}
|
|
17291
17297
|
|
|
@@ -17305,199 +17311,193 @@ declare module 'vue' {
|
|
|
17305
17311
|
|
|
17306
17312
|
declare module 'vue' {
|
|
17307
17313
|
interface GlobalComponents {
|
|
17308
|
-
|
|
17309
|
-
}
|
|
17310
|
-
}
|
|
17311
|
-
|
|
17312
|
-
|
|
17313
|
-
declare module 'vue' {
|
|
17314
|
-
interface GlobalComponents {
|
|
17315
|
-
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
17314
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
17316
17315
|
}
|
|
17317
17316
|
}
|
|
17318
17317
|
|
|
17319
17318
|
|
|
17320
17319
|
declare module 'vue' {
|
|
17321
17320
|
interface GlobalComponents {
|
|
17322
|
-
|
|
17321
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
17322
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17323
17323
|
}
|
|
17324
17324
|
}
|
|
17325
17325
|
|
|
17326
17326
|
|
|
17327
17327
|
declare module 'vue' {
|
|
17328
17328
|
interface GlobalComponents {
|
|
17329
|
-
|
|
17329
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
17330
17330
|
}
|
|
17331
17331
|
}
|
|
17332
17332
|
|
|
17333
17333
|
|
|
17334
17334
|
declare module 'vue' {
|
|
17335
17335
|
interface GlobalComponents {
|
|
17336
|
-
|
|
17336
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
17337
17337
|
}
|
|
17338
17338
|
}
|
|
17339
17339
|
|
|
17340
17340
|
|
|
17341
17341
|
declare module 'vue' {
|
|
17342
17342
|
interface GlobalComponents {
|
|
17343
|
-
|
|
17343
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
17344
17344
|
}
|
|
17345
17345
|
}
|
|
17346
17346
|
|
|
17347
17347
|
|
|
17348
17348
|
declare module 'vue' {
|
|
17349
17349
|
interface GlobalComponents {
|
|
17350
|
-
|
|
17350
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
17351
17351
|
}
|
|
17352
17352
|
}
|
|
17353
17353
|
|
|
17354
17354
|
|
|
17355
|
-
/** component declare **/
|
|
17356
17355
|
declare module 'vue' {
|
|
17357
17356
|
interface GlobalComponents {
|
|
17358
|
-
|
|
17359
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
17357
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
17360
17358
|
}
|
|
17361
17359
|
}
|
|
17362
17360
|
|
|
17363
17361
|
|
|
17364
17362
|
declare module 'vue' {
|
|
17365
17363
|
interface GlobalComponents {
|
|
17366
|
-
|
|
17364
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
17365
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17366
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17367
|
+
TabContent: DefineComponent;
|
|
17367
17368
|
}
|
|
17368
17369
|
}
|
|
17369
17370
|
|
|
17370
17371
|
|
|
17371
17372
|
declare module 'vue' {
|
|
17372
17373
|
interface GlobalComponents {
|
|
17373
|
-
|
|
17374
|
-
|
|
17375
|
-
|
|
17374
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
17375
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17376
|
+
ComboboxOption: DefineComponent;
|
|
17376
17377
|
}
|
|
17377
17378
|
}
|
|
17378
17379
|
|
|
17379
17380
|
|
|
17380
17381
|
declare module 'vue' {
|
|
17381
17382
|
interface GlobalComponents {
|
|
17382
|
-
|
|
17383
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17384
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17385
|
-
TabContent: DefineComponent;
|
|
17383
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
17386
17384
|
}
|
|
17387
17385
|
}
|
|
17388
17386
|
|
|
17389
17387
|
|
|
17390
17388
|
declare module 'vue' {
|
|
17391
17389
|
interface GlobalComponents {
|
|
17392
|
-
|
|
17393
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17390
|
+
Divider: DefineComponent<DividerProps>;
|
|
17394
17391
|
}
|
|
17395
17392
|
}
|
|
17396
17393
|
|
|
17397
17394
|
|
|
17398
17395
|
declare module 'vue' {
|
|
17399
17396
|
interface GlobalComponents {
|
|
17400
|
-
|
|
17397
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
17401
17398
|
}
|
|
17402
17399
|
}
|
|
17403
17400
|
|
|
17404
17401
|
|
|
17405
17402
|
declare module 'vue' {
|
|
17406
17403
|
interface GlobalComponents {
|
|
17407
|
-
|
|
17404
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
17408
17405
|
}
|
|
17409
17406
|
}
|
|
17410
17407
|
|
|
17411
17408
|
|
|
17412
17409
|
declare module 'vue' {
|
|
17413
17410
|
interface GlobalComponents {
|
|
17414
|
-
|
|
17411
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
17415
17412
|
}
|
|
17416
17413
|
}
|
|
17417
17414
|
|
|
17418
17415
|
|
|
17419
17416
|
declare module 'vue' {
|
|
17420
17417
|
interface GlobalComponents {
|
|
17421
|
-
|
|
17422
|
-
|
|
17418
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
17419
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17420
|
+
SelectLabel: DefineComponent;
|
|
17423
17421
|
}
|
|
17424
17422
|
}
|
|
17425
17423
|
|
|
17426
17424
|
|
|
17427
17425
|
declare module 'vue' {
|
|
17428
17426
|
interface GlobalComponents {
|
|
17429
|
-
|
|
17427
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
17430
17428
|
}
|
|
17431
17429
|
}
|
|
17432
17430
|
|
|
17433
17431
|
|
|
17434
17432
|
declare module 'vue' {
|
|
17435
17433
|
interface GlobalComponents {
|
|
17436
|
-
|
|
17434
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
17437
17435
|
}
|
|
17438
17436
|
}
|
|
17439
17437
|
|
|
17440
17438
|
|
|
17441
17439
|
declare module 'vue' {
|
|
17442
17440
|
interface GlobalComponents {
|
|
17443
|
-
|
|
17441
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17442
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17443
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17444
17444
|
}
|
|
17445
17445
|
}
|
|
17446
17446
|
|
|
17447
17447
|
|
|
17448
17448
|
declare module 'vue' {
|
|
17449
17449
|
interface GlobalComponents {
|
|
17450
|
-
|
|
17450
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
17451
17451
|
}
|
|
17452
17452
|
}
|
|
17453
17453
|
|
|
17454
17454
|
|
|
17455
17455
|
declare module 'vue' {
|
|
17456
17456
|
interface GlobalComponents {
|
|
17457
|
-
|
|
17457
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
17458
17458
|
}
|
|
17459
17459
|
}
|
|
17460
17460
|
|
|
17461
17461
|
|
|
17462
17462
|
declare module 'vue' {
|
|
17463
17463
|
interface GlobalComponents {
|
|
17464
|
-
|
|
17464
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
17465
17465
|
}
|
|
17466
17466
|
}
|
|
17467
17467
|
|
|
17468
17468
|
|
|
17469
17469
|
declare module 'vue' {
|
|
17470
17470
|
interface GlobalComponents {
|
|
17471
|
-
|
|
17471
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
17472
17472
|
}
|
|
17473
17473
|
}
|
|
17474
17474
|
|
|
17475
17475
|
|
|
17476
17476
|
declare module 'vue' {
|
|
17477
17477
|
interface GlobalComponents {
|
|
17478
|
-
|
|
17478
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
17479
17479
|
}
|
|
17480
17480
|
}
|
|
17481
17481
|
|
|
17482
17482
|
|
|
17483
17483
|
declare module 'vue' {
|
|
17484
17484
|
interface GlobalComponents {
|
|
17485
|
-
|
|
17485
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
17486
17486
|
}
|
|
17487
17487
|
}
|
|
17488
17488
|
|
|
17489
17489
|
|
|
17490
17490
|
declare module 'vue' {
|
|
17491
17491
|
interface GlobalComponents {
|
|
17492
|
-
|
|
17493
|
-
|
|
17492
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
17493
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17494
17494
|
}
|
|
17495
17495
|
}
|
|
17496
17496
|
|
|
17497
17497
|
|
|
17498
17498
|
declare module 'vue' {
|
|
17499
17499
|
interface GlobalComponents {
|
|
17500
|
-
|
|
17500
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
17501
17501
|
}
|
|
17502
17502
|
}
|
|
17503
17503
|
|
|
@@ -17511,133 +17511,133 @@ declare module 'vue' {
|
|
|
17511
17511
|
|
|
17512
17512
|
declare module 'vue' {
|
|
17513
17513
|
interface GlobalComponents {
|
|
17514
|
-
|
|
17514
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
17515
17515
|
}
|
|
17516
17516
|
}
|
|
17517
17517
|
|
|
17518
17518
|
|
|
17519
17519
|
declare module 'vue' {
|
|
17520
17520
|
interface GlobalComponents {
|
|
17521
|
-
|
|
17521
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
17522
17522
|
}
|
|
17523
17523
|
}
|
|
17524
17524
|
|
|
17525
17525
|
|
|
17526
17526
|
declare module 'vue' {
|
|
17527
17527
|
interface GlobalComponents {
|
|
17528
|
-
|
|
17529
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17530
|
-
SelectLabel: DefineComponent;
|
|
17528
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
17531
17529
|
}
|
|
17532
17530
|
}
|
|
17533
17531
|
|
|
17534
17532
|
|
|
17535
17533
|
declare module 'vue' {
|
|
17536
17534
|
interface GlobalComponents {
|
|
17537
|
-
|
|
17538
|
-
|
|
17539
|
-
ComboboxOption: DefineComponent;
|
|
17535
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
17536
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17540
17537
|
}
|
|
17541
17538
|
}
|
|
17542
17539
|
|
|
17543
17540
|
|
|
17544
17541
|
declare module 'vue' {
|
|
17545
17542
|
interface GlobalComponents {
|
|
17546
|
-
|
|
17543
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
17547
17544
|
}
|
|
17548
17545
|
}
|
|
17549
17546
|
|
|
17550
17547
|
|
|
17551
17548
|
declare module 'vue' {
|
|
17552
17549
|
interface GlobalComponents {
|
|
17553
|
-
|
|
17550
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
17554
17551
|
}
|
|
17555
17552
|
}
|
|
17556
17553
|
|
|
17557
17554
|
|
|
17558
17555
|
declare module 'vue' {
|
|
17559
17556
|
interface GlobalComponents {
|
|
17560
|
-
|
|
17561
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17557
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
17562
17558
|
}
|
|
17563
17559
|
}
|
|
17564
17560
|
|
|
17565
17561
|
|
|
17562
|
+
/**
|
|
17563
|
+
* Global component declaration for TypeScript support
|
|
17564
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
17565
|
+
*/
|
|
17566
17566
|
declare module 'vue' {
|
|
17567
17567
|
interface GlobalComponents {
|
|
17568
|
-
|
|
17568
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
17569
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
17569
17570
|
}
|
|
17570
17571
|
}
|
|
17571
17572
|
|
|
17572
17573
|
|
|
17573
17574
|
declare module 'vue' {
|
|
17574
17575
|
interface GlobalComponents {
|
|
17575
|
-
|
|
17576
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
17576
17577
|
}
|
|
17577
17578
|
}
|
|
17578
17579
|
|
|
17579
17580
|
|
|
17580
17581
|
declare module 'vue' {
|
|
17581
17582
|
interface GlobalComponents {
|
|
17582
|
-
|
|
17583
|
+
Icon: DefineComponent<IconProps>;
|
|
17583
17584
|
}
|
|
17584
17585
|
}
|
|
17585
17586
|
|
|
17586
17587
|
|
|
17587
17588
|
declare module 'vue' {
|
|
17588
17589
|
interface GlobalComponents {
|
|
17589
|
-
|
|
17590
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17590
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
17591
17591
|
}
|
|
17592
17592
|
}
|
|
17593
17593
|
|
|
17594
17594
|
|
|
17595
17595
|
declare module 'vue' {
|
|
17596
17596
|
interface GlobalComponents {
|
|
17597
|
-
|
|
17597
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
17598
17598
|
}
|
|
17599
17599
|
}
|
|
17600
17600
|
|
|
17601
17601
|
|
|
17602
17602
|
declare module 'vue' {
|
|
17603
17603
|
interface GlobalComponents {
|
|
17604
|
-
|
|
17604
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
17605
17605
|
}
|
|
17606
17606
|
}
|
|
17607
17607
|
|
|
17608
17608
|
|
|
17609
17609
|
declare module 'vue' {
|
|
17610
17610
|
interface GlobalComponents {
|
|
17611
|
-
|
|
17612
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17611
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
17613
17612
|
}
|
|
17614
17613
|
}
|
|
17615
17614
|
|
|
17616
17615
|
|
|
17617
17616
|
declare module 'vue' {
|
|
17618
17617
|
interface GlobalComponents {
|
|
17619
|
-
|
|
17618
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
17619
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17620
17620
|
}
|
|
17621
17621
|
}
|
|
17622
17622
|
|
|
17623
17623
|
|
|
17624
17624
|
declare module 'vue' {
|
|
17625
17625
|
interface GlobalComponents {
|
|
17626
|
-
|
|
17626
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
17627
17627
|
}
|
|
17628
17628
|
}
|
|
17629
17629
|
|
|
17630
17630
|
|
|
17631
17631
|
declare module 'vue' {
|
|
17632
17632
|
interface GlobalComponents {
|
|
17633
|
-
|
|
17633
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
17634
17634
|
}
|
|
17635
17635
|
}
|
|
17636
17636
|
|
|
17637
17637
|
|
|
17638
17638
|
declare module 'vue' {
|
|
17639
17639
|
interface GlobalComponents {
|
|
17640
|
-
|
|
17640
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
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
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
17656
17656
|
}
|
|
17657
17657
|
}
|
|
17658
17658
|
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { d as e, e as o, g as t, k as P, o as r, s as i, q as _, r as T, z as n, E as S, _ as A, b as O, a as p, A as c, f as E, h as d, l as R, m as C, n as D, j as L, t as b, B as U, y as l, x as u, v as x, w as F, G as I, L as g, Z as B, R as G, a5 as v, a8 as N, ad as f, af as m, ah as M, aj as z, F as h, X as j, Y as y, V as k, W as w, H as K, I as H,
|
|
1
|
+
import { d as e, e as o, g as t, k as P, o as r, s as i, q as _, r as T, z as n, E as S, _ as A, b as O, a as p, A as c, f as E, h as d, l as R, m as C, n as D, j as L, t as b, B as U, y as l, x as u, v as x, w as F, G as I, L as g, Z as B, R as G, a5 as v, a8 as N, ad as f, af as m, ah as M, aj as z, F as h, X as j, Y as y, V as k, W as w, H as K, I as H, K as V, J as W, U as X, M as Z, a1 as J, a7 as Y, a9 as q, aa as Q, ag as $, P as aa, ai as sa, am as ea, Q as oa, O as ta, N as Pa, aq as ra, as as ia, ax as _a, aD as Ta, aH as na, aK as Sa, aQ as Aa, aS as Oa, aV as pa, b0 as ca, ap as Ea, an as da, ao as Ra, ar as Ca, aw as Da, at as La, aA as ba, aC as Ua, aE as la, aB as ua, aI as xa, aN as Fa, aR as Ia, aO as ga, aP as Ba, aT as Ga, aU as va, aW as Na, aX as fa, aY as ma, aZ as Ma, a_ as za, a$ as ha, b5 as ja, bc as ya, bb as ka, ba as wa, bm as Ka, bn as Ha, bl as Va, br as Wa, bx as Xa, bw as Za, bB as Ja, bg as Ya, bk as qa, bi as Qa, bh as $a, bj as as, bp as ss, bq as es, bs as os, bv as ts, bu as Ps, bt as rs, by as is, bA as _s, bz as Ts, bE as ns, bC as Ss, bD as As, bG as Os, bI as ps, bF as cs, bH as Es, bN as ds, bJ as Rs, bK as Cs, bM as Ds, bL as Ls, bO as bs, bS as Us, bR as ls, bX as us, bV as xs, c0 as Fs, c4 as Is, c6 as gs, c8 as Bs, ca as Gs, cf as vs, bT as Ns, bW as fs, bU as ms, bY as Ms, b_ as zs, bZ as hs, b$ as js, c1 as ys, c3 as ks, c2 as ws, c5 as Ks, c7 as Hs, c9 as Vs, ce as Ws, a2 as Xs, a3 as Zs, ch as Js, cg as Ys, ck as qs, cn as Qs, ci as $s, cj as ae, cl as se, cm as ee, cr as oe, cz as te, cE as Pe, cD as re, co as ie, cq as _e, cu as Te, cv as ne, cy as Se, cw as Ae, cp as Oe, cA as pe, cC as ce, cB as Ee, cI as de, cH as Re, cG as Ce, cL as De, cN as Le, d0 as be, da as Ue, cF as le, cJ as ue, cK as xe, cM as Fe, cO as Ie, cR as ge, cQ as Be, cP as Ge, d1 as ve, d2 as Ne, d3 as fe, d7 as me, d8 as Me, d9 as ze, dg as he, dl as je, dd as ye, de as ke, df as we, di as Ke, dj as He, dk as Ve, dr as We, du as Xe, dF as Ze, dH as Je, dL as Ye, dO as qe, dQ as Qe, dP as $e, dX as ao, e1 as so, e6 as eo, dm as oo, dp as to, dn as Po, ds as ro, dt as io, dv as _o, dx as To, dw as no, dy as So, dz as Ao, dG as Oo, dI as po, dK as co, dJ as Eo, dS as Ro, dU as Co, dT as Do, dM as Lo, dN as bo, dR as Uo, e0 as lo, e4 as uo, e5 as xo, eg as Fo, em as Io, eb as go, eu as Bo, ed as Go, ec as vo, ey as No, ez as fo, ex as mo, eC as Mo, eJ as zo, ek as ho, ei as jo, ej as yo, e7 as ko, ee as wo, eh as Ko, el as Ho, e9 as Vo, er as Wo, es as Xo, et as Zo, e8 as Jo, ev as Yo, ew as qo, eA as Qo, eB as $o, ea as at, eD as st, eG as et, eE as ot, eF as tt, eZ as Pt, eN as rt, eO as it, eS as _t, eR as Tt, eQ as nt, eP as St, eT as At, dC as Ot, dD as pt, c as ct, ae as Et, S as dt, T as Rt, aJ as Ct, b4 as Dt, b3 as Lt, b9 as bt, default as Ut, bo as lt, eX as ut, eK as xt, a0 as Ft, $ as It, eY as gt, eL as Bt, cx as Gt, cU as vt, c_ as Nt, cZ as ft, i as mt, C as Mt, f0 as zt, ab as ht, ak as jt, ay as yt, aF as kt, aL as wt, b1 as Kt, bd as Ht, cV as Vt, bP as Wt, cd as Xt, cs as Zt, cX as Jt, db as Yt, dA as qt, dY as Qt, d_ as $t, e2 as aP, ep as sP, eH as eP, f2 as oP, e_ as tP, cb as PP, a4 as rP, cT as iP, cS as _P, d5 as TP, d6 as nP, d4 as SP, p as AP, D as OP, f1 as pP, ac as cP, al as EP, az as dP, aG as RP, aM as CP, b2 as DP, be as LP, cW as bP, bQ as UP, cc as lP, ct as uP, cY as xP, dc as FP, dB as IP, dZ as gP, d$ as BP, e3 as GP, eq as vP, eI as NP, f3 as fP, e$ as mP, dh as MP, dq as zP, dE as hP, b8 as jP, dW as yP, dV as kP, ef as wP, en as KP, eo as HP, eW as VP, eV as WP, eU as XP, u as ZP, au as JP, av as YP, bf as qP, b7 as QP, b6 as $P, eM as ar, a6 as sr, c$ as er } from "./use/index.js";
|
|
2
2
|
export {
|
|
3
3
|
e as ACCORDION_DEFAULT_PROPS,
|
|
4
4
|
o as ACCORDION_ITEM_DEFAULT_PROPS,
|
|
@@ -43,8 +43,8 @@ export {
|
|
|
43
43
|
w as BadgeTypes,
|
|
44
44
|
K as Banner,
|
|
45
45
|
H as BannerColors,
|
|
46
|
-
V as
|
|
47
|
-
W as
|
|
46
|
+
V as BannerPositions,
|
|
47
|
+
W as BannerSides,
|
|
48
48
|
X as BaseBadge,
|
|
49
49
|
Z as BaseButton,
|
|
50
50
|
J as BaseInput,
|