@pantograph/vue 0.34.23 → 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 +178 -150
- package/dist/index.js +202 -200
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt/index.js +37 -18
- package/dist/nuxt/index.umd.cjs +7 -1
- package/dist/nuxt.d.ts +98 -98
- package/dist/resolver.d.ts +98 -98
- package/dist/use/index.js +5064 -5081
- package/dist/use/index.umd.cjs +5 -5
- package/dist/use.d.ts +98 -98
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1801,7 +1801,7 @@ 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
|
-
|
|
1804
|
+
side: "bottom" | "top";
|
|
1805
1805
|
linkProps: LinkProps;
|
|
1806
1806
|
position: "fixed" | "absolute";
|
|
1807
1807
|
actionProps: Partial<Omit<BaseButtonProps, "icon" | "flipOnDir" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "badgeIconFlipOnDir">>;
|
|
@@ -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
|
*/
|
|
@@ -2555,7 +2555,7 @@ export declare const BREADCRUMB_DEFAULT_PROPS: {
|
|
|
2555
2555
|
readonly truncateIndex: 0;
|
|
2556
2556
|
};
|
|
2557
2557
|
|
|
2558
|
-
export declare const BREADCRUMB_ITEM_OMIT_LIST: readonly ["as", "title", "leading", "unFocusable", "class", "leadingCls", "
|
|
2558
|
+
export declare const BREADCRUMB_ITEM_OMIT_LIST: readonly ["as", "title", "leading", "unFocusable", "class", "leadingCls", "contentCls", "titleCls", "staticStyle", "slotProps"];
|
|
2559
2559
|
|
|
2560
2560
|
/**
|
|
2561
2561
|
* Context interface for the Breadcrumb component
|
|
@@ -4328,7 +4328,8 @@ export declare const COMBO_BOX_DEFAULT_PROPS: {
|
|
|
4328
4328
|
readonly sideOffset: 4;
|
|
4329
4329
|
readonly loadingRowCount: 10;
|
|
4330
4330
|
readonly tagRenderMode: "chip";
|
|
4331
|
-
readonly
|
|
4331
|
+
readonly side: "bottom";
|
|
4332
|
+
readonly align: "start";
|
|
4332
4333
|
readonly indicatorIcon: "tabler:check";
|
|
4333
4334
|
readonly trailingIcon: "tabler:chevron-down";
|
|
4334
4335
|
readonly samePopupWidth: true;
|
|
@@ -4964,11 +4965,12 @@ bordered: boolean;
|
|
|
4964
4965
|
open: boolean;
|
|
4965
4966
|
defaultOpen: boolean;
|
|
4966
4967
|
readonly: boolean;
|
|
4968
|
+
side: "bottom" | "left" | "right" | "top";
|
|
4967
4969
|
sideOffset: number;
|
|
4970
|
+
align: "start" | "end" | "center";
|
|
4968
4971
|
avoidCollisions: boolean;
|
|
4969
4972
|
prioritizePosition: boolean;
|
|
4970
4973
|
disableOutsidePointerEvents: boolean;
|
|
4971
|
-
placement: "bottom" | "left" | "right" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
4972
4974
|
zIndex: string | number;
|
|
4973
4975
|
trailingIcon: string | boolean;
|
|
4974
4976
|
checkbox: boolean;
|
|
@@ -6601,7 +6603,7 @@ export declare const comboboxPrefix: string;
|
|
|
6601
6603
|
* Props interface for the Combobox component
|
|
6602
6604
|
* @interface ComboboxProps
|
|
6603
6605
|
*/
|
|
6604
|
-
export declare interface ComboboxProps extends Partial<Pick<PopoverProps, '
|
|
6606
|
+
export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side' | 'align' | 'flipOnDir' | 'containerProps' | 'open' | 'defaultOpen' | 'zIndex' | 'to' | 'sideOffset' | 'alignOffset' | 'reference' | 'prioritizePosition' | 'avoidCollisions' | 'dir' | 'noTrigger' | 'ignoreParentTo' | 'disableOutsidePointerEvents'>> {
|
|
6605
6607
|
/**
|
|
6606
6608
|
* Base props
|
|
6607
6609
|
*/
|
|
@@ -6870,7 +6872,7 @@ export declare interface ConfigProviderContext {
|
|
|
6870
6872
|
/**
|
|
6871
6873
|
* The current direction (ltr or rtl)
|
|
6872
6874
|
*/
|
|
6873
|
-
dir: Ref<Direction>;
|
|
6875
|
+
dir: Ref<Direction | undefined>;
|
|
6874
6876
|
getDragging: () => ConfigProviderDraggingState;
|
|
6875
6877
|
setDragging: (value: ConfigProviderDraggingState) => void;
|
|
6876
6878
|
/**
|
|
@@ -6893,7 +6895,7 @@ export declare interface ConfigProviderContext {
|
|
|
6893
6895
|
}
|
|
6894
6896
|
|
|
6895
6897
|
export declare const configProviderDefaultContext: {
|
|
6896
|
-
dir: Ref<Direction, Direction>;
|
|
6898
|
+
dir: Ref<Direction | undefined, Direction | undefined>;
|
|
6897
6899
|
getDragging: () => {
|
|
6898
6900
|
active: boolean;
|
|
6899
6901
|
meta?: any;
|
|
@@ -6951,7 +6953,7 @@ export declare interface ConfigProviderProps {
|
|
|
6951
6953
|
export declare type ConfigProviderSlots = {
|
|
6952
6954
|
default?: (props: Pick<ConfigProviderContext, 'toggleDark' | 'changeTheme' | 'changeDirection'> & {
|
|
6953
6955
|
theme: Config;
|
|
6954
|
-
dir
|
|
6956
|
+
dir?: Direction;
|
|
6955
6957
|
dark: boolean;
|
|
6956
6958
|
}) => never;
|
|
6957
6959
|
};
|
|
@@ -9380,7 +9382,8 @@ export declare const HOVER_CARD_DEFAULT_PROPS: {
|
|
|
9380
9382
|
readonly sticky: "always";
|
|
9381
9383
|
readonly prioritizePosition: true;
|
|
9382
9384
|
readonly avoidCollisions: true;
|
|
9383
|
-
readonly
|
|
9385
|
+
readonly side: "bottom";
|
|
9386
|
+
readonly align: "center";
|
|
9384
9387
|
readonly zIndex: 1000;
|
|
9385
9388
|
readonly sideOffset: 4;
|
|
9386
9389
|
readonly updatePositionStrategy: "optimized";
|
|
@@ -9404,12 +9407,13 @@ onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any
|
|
|
9404
9407
|
size: "sm" | "md" | "lg" | "none";
|
|
9405
9408
|
asChild: boolean;
|
|
9406
9409
|
open: boolean;
|
|
9410
|
+
side: "bottom" | "left" | "right" | "top";
|
|
9407
9411
|
sideOffset: number;
|
|
9412
|
+
align: "start" | "end" | "center";
|
|
9408
9413
|
avoidCollisions: boolean;
|
|
9409
9414
|
sticky: "partial" | "always";
|
|
9410
9415
|
updatePositionStrategy: "always" | "optimized";
|
|
9411
9416
|
prioritizePosition: boolean;
|
|
9412
|
-
placement: "bottom" | "left" | "right" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
9413
9417
|
zIndex: string | number;
|
|
9414
9418
|
renderPopupsInContent: boolean;
|
|
9415
9419
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<PopoverSlots> & PopoverSlots>;
|
|
@@ -10742,10 +10746,6 @@ export declare interface MenuItemContentProps {
|
|
|
10742
10746
|
* CSS classes to apply to the leading element
|
|
10743
10747
|
*/
|
|
10744
10748
|
leadingCls?: ClassValue;
|
|
10745
|
-
/**
|
|
10746
|
-
* CSS classes to apply to the leading content element
|
|
10747
|
-
*/
|
|
10748
|
-
leadingContentCls?: ClassValue;
|
|
10749
10749
|
/**
|
|
10750
10750
|
* CSS classes to apply to the content element
|
|
10751
10751
|
*/
|
|
@@ -11714,12 +11714,13 @@ onOpenChange?: ((value?: boolean | null | undefined) => any) | undefined;
|
|
|
11714
11714
|
size: "sm" | "md" | "lg" | "none";
|
|
11715
11715
|
asChild: boolean;
|
|
11716
11716
|
open: boolean;
|
|
11717
|
+
side: "bottom" | "left" | "right" | "top";
|
|
11717
11718
|
sideOffset: number;
|
|
11719
|
+
align: "start" | "end" | "center";
|
|
11718
11720
|
avoidCollisions: boolean;
|
|
11719
11721
|
sticky: "partial" | "always";
|
|
11720
11722
|
updatePositionStrategy: "always" | "optimized";
|
|
11721
11723
|
prioritizePosition: boolean;
|
|
11722
|
-
placement: "bottom" | "left" | "right" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
11723
11724
|
zIndex: string | number;
|
|
11724
11725
|
renderPopupsInContent: boolean;
|
|
11725
11726
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<PopoverSlots> & PopoverSlots>;
|
|
@@ -11733,7 +11734,8 @@ export declare const POPOVER_DEFAULT_PROPS: {
|
|
|
11733
11734
|
readonly sticky: "always";
|
|
11734
11735
|
readonly prioritizePosition: true;
|
|
11735
11736
|
readonly avoidCollisions: true;
|
|
11736
|
-
readonly
|
|
11737
|
+
readonly side: "bottom";
|
|
11738
|
+
readonly align: "center";
|
|
11737
11739
|
readonly zIndex: 1000;
|
|
11738
11740
|
readonly sideOffset: 4;
|
|
11739
11741
|
readonly updatePositionStrategy: "optimized";
|
|
@@ -11741,6 +11743,16 @@ export declare const POPOVER_DEFAULT_PROPS: {
|
|
|
11741
11743
|
readonly asChild: false;
|
|
11742
11744
|
};
|
|
11743
11745
|
|
|
11746
|
+
/**
|
|
11747
|
+
* Type definition for Popover alignment options
|
|
11748
|
+
*/
|
|
11749
|
+
export declare type PopoverAlign = (typeof PopoverAligns)[number];
|
|
11750
|
+
|
|
11751
|
+
/**
|
|
11752
|
+
* The available alignments for Popover components
|
|
11753
|
+
*/
|
|
11754
|
+
export declare const PopoverAligns: readonly ["start", "center", "end"];
|
|
11755
|
+
|
|
11744
11756
|
/**
|
|
11745
11757
|
* The base props for the Popover component
|
|
11746
11758
|
*/
|
|
@@ -11780,13 +11792,17 @@ export declare interface PopoverBaseProps {
|
|
|
11780
11792
|
*/
|
|
11781
11793
|
to?: string | HTMLElement | object | GetPopupContainer;
|
|
11782
11794
|
/**
|
|
11783
|
-
*
|
|
11795
|
+
* The side of the trigger where the popover should be positioned
|
|
11784
11796
|
*/
|
|
11785
|
-
|
|
11797
|
+
side?: PopoverSide;
|
|
11786
11798
|
/**
|
|
11787
|
-
*
|
|
11799
|
+
* The alignment of the popover relative to the trigger
|
|
11788
11800
|
*/
|
|
11789
|
-
|
|
11801
|
+
align?: PopoverAlign;
|
|
11802
|
+
/**
|
|
11803
|
+
* Whether to flip side based on text direction
|
|
11804
|
+
*/
|
|
11805
|
+
flipOnDir?: FlipOnDir;
|
|
11790
11806
|
/**
|
|
11791
11807
|
* Whether to focus on the first focusable item in the popover on open and trigger on close
|
|
11792
11808
|
*/
|
|
@@ -11865,13 +11881,13 @@ export declare interface PopoverBaseProps {
|
|
|
11865
11881
|
* Map of PopoverContainer prop keys to their names
|
|
11866
11882
|
*/
|
|
11867
11883
|
export declare const popoverContainerProps: {
|
|
11868
|
-
[k: string]: "forceMount" | "sideOffset" | "sideFlip" | "alignOffset" | "alignFlip" | "avoidCollisions" | "collisionBoundary" | "collisionPadding" | "sticky" | "hideWhenDetached" | "positionStrategy" | "updatePositionStrategy" | "disableUpdateOnLayoutShift" | "prioritizePosition" | "reference" | "disableOutsidePointerEvents" | "
|
|
11884
|
+
[k: string]: "forceMount" | "side" | "sideOffset" | "sideFlip" | "align" | "alignOffset" | "alignFlip" | "avoidCollisions" | "collisionBoundary" | "collisionPadding" | "sticky" | "hideWhenDetached" | "positionStrategy" | "updatePositionStrategy" | "disableUpdateOnLayoutShift" | "prioritizePosition" | "reference" | "disableOutsidePointerEvents" | "autoFocusInside" | "autoFocusOnTrigger" | "containerProps";
|
|
11869
11885
|
};
|
|
11870
11886
|
|
|
11871
11887
|
/**
|
|
11872
11888
|
* Keys for PopoverContainer props
|
|
11873
11889
|
*/
|
|
11874
|
-
export declare const popoverContainerPropsKeys: readonly ["prioritizePosition", "
|
|
11890
|
+
export declare const popoverContainerPropsKeys: readonly ["prioritizePosition", "side", "align", "sideOffset", "alignOffset", "sticky", "collisionBoundary", "avoidCollisions", "collisionPadding", "forceMount", "disableUpdateOnLayoutShift", "hideWhenDetached", "positionStrategy", "reference", "updatePositionStrategy", "autoFocusInside", "autoFocusOnTrigger", "containerProps", "sideFlip", "alignFlip", "disableOutsidePointerEvents"];
|
|
11875
11891
|
|
|
11876
11892
|
/**
|
|
11877
11893
|
* Type for PopoverContainer prop names
|
|
@@ -11915,16 +11931,6 @@ export declare type PopoverEmits = PopoverRootEmits & PopoverContentEmits & {
|
|
|
11915
11931
|
openChange: [value?: boolean | null];
|
|
11916
11932
|
};
|
|
11917
11933
|
|
|
11918
|
-
/**
|
|
11919
|
-
* Type definition for Popover placement options
|
|
11920
|
-
*/
|
|
11921
|
-
export declare type PopoverPlacement = (typeof PopoverPlacements)[number];
|
|
11922
|
-
|
|
11923
|
-
/**
|
|
11924
|
-
* The available placements for Popover components
|
|
11925
|
-
*/
|
|
11926
|
-
export declare const PopoverPlacements: readonly ["top", "top-start", "top-end", "bottom", "bottom-start", "bottom-end", "right", "right-start", "right-end", "left", "left-start", "left-end"];
|
|
11927
|
-
|
|
11928
11934
|
declare interface PopoverPortalProps extends TeleportProps {}
|
|
11929
11935
|
|
|
11930
11936
|
/**
|
|
@@ -11967,6 +11973,16 @@ declare interface PopoverRootProps {
|
|
|
11967
11973
|
modal?: boolean;
|
|
11968
11974
|
}
|
|
11969
11975
|
|
|
11976
|
+
/**
|
|
11977
|
+
* Type definition for Popover side options
|
|
11978
|
+
*/
|
|
11979
|
+
export declare type PopoverSide = (typeof PopoverSides)[number];
|
|
11980
|
+
|
|
11981
|
+
/**
|
|
11982
|
+
* The available sides for Popover components
|
|
11983
|
+
*/
|
|
11984
|
+
export declare const PopoverSides: readonly ["top", "bottom", "right", "left"];
|
|
11985
|
+
|
|
11970
11986
|
/**
|
|
11971
11987
|
* Type definition for Popover size options
|
|
11972
11988
|
*/
|
|
@@ -13348,14 +13364,15 @@ open: boolean;
|
|
|
13348
13364
|
defaultOpen: boolean;
|
|
13349
13365
|
forceMount: boolean;
|
|
13350
13366
|
readonly: boolean;
|
|
13367
|
+
side: "bottom" | "left" | "right" | "top";
|
|
13351
13368
|
sideOffset: number;
|
|
13369
|
+
align: "start" | "end" | "center";
|
|
13352
13370
|
avoidCollisions: boolean;
|
|
13353
13371
|
collisionPadding: number | Partial<Record<"bottom" | "left" | "right" | "top", number>>;
|
|
13354
13372
|
hideWhenDetached: boolean;
|
|
13355
13373
|
positionStrategy: "fixed" | "absolute";
|
|
13356
13374
|
disableUpdateOnLayoutShift: boolean;
|
|
13357
13375
|
prioritizePosition: boolean;
|
|
13358
|
-
placement: "bottom" | "left" | "right" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
13359
13376
|
zIndex: string | number;
|
|
13360
13377
|
trailingIcon: string | boolean;
|
|
13361
13378
|
position: "item-aligned" | "popper";
|
|
@@ -13385,7 +13402,8 @@ export declare const SELECT_DEFAULT_PROPS: {
|
|
|
13385
13402
|
readonly sideOffset: 4;
|
|
13386
13403
|
readonly loadingRowCount: 10;
|
|
13387
13404
|
readonly positionStrategy: "fixed";
|
|
13388
|
-
readonly
|
|
13405
|
+
readonly side: "bottom";
|
|
13406
|
+
readonly align: "center";
|
|
13389
13407
|
readonly position: "popper";
|
|
13390
13408
|
readonly indicatorIcon: "tabler:check";
|
|
13391
13409
|
readonly trailingIcon: "tabler:chevron-down";
|
|
@@ -13657,10 +13675,12 @@ export declare interface SelectProps extends SelectRootProps, Omit<SelectTrigger
|
|
|
13657
13675
|
getGroupLabel?: selectOptionGetter;
|
|
13658
13676
|
/** Getter for the icon of an option */
|
|
13659
13677
|
getIcon?: selectOptionGetter;
|
|
13660
|
-
/**
|
|
13661
|
-
|
|
13662
|
-
/**
|
|
13663
|
-
|
|
13678
|
+
/** The side of the trigger where the dropdown should be positioned */
|
|
13679
|
+
side?: 'top' | 'bottom' | 'right' | 'left';
|
|
13680
|
+
/** The alignment of the dropdown relative to the trigger */
|
|
13681
|
+
align?: 'start' | 'center' | 'end';
|
|
13682
|
+
/** Whether to flip side based on text direction */
|
|
13683
|
+
flipOnDir?: FlipOnDir;
|
|
13664
13684
|
/** Whether the select component is in a loading state */
|
|
13665
13685
|
loading?: boolean;
|
|
13666
13686
|
/** Props for skeleton loading state */
|
|
@@ -13848,6 +13868,12 @@ declare interface SelectTriggerTagSlotProps extends SelectTriggerDefSlotProps {
|
|
|
13848
13868
|
option: SelectOptionItem;
|
|
13849
13869
|
}
|
|
13850
13870
|
|
|
13871
|
+
/**
|
|
13872
|
+
* Set default direction (e.g. from Nuxt runtimeConfig) so config.dir is defined before DOM/useMutationObserver.
|
|
13873
|
+
* Called by the Nuxt plugin so SSR and first client render get the correct dir without ConfigProvider.
|
|
13874
|
+
*/
|
|
13875
|
+
export declare const setDefaultDir: (dir: Direction | undefined) => void;
|
|
13876
|
+
|
|
13851
13877
|
export declare const Shortcut: __VLS_WithTemplateSlots_68<DefineComponent<ShortcutProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ShortcutProps> & Readonly<{}>, {
|
|
13852
13878
|
plus: boolean;
|
|
13853
13879
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<ShortcutSlots> & ShortcutSlots>;
|
|
@@ -15572,11 +15598,12 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
15572
15598
|
}>, {
|
|
15573
15599
|
asChild: boolean;
|
|
15574
15600
|
open: boolean;
|
|
15601
|
+
side: "bottom" | "left" | "right" | "top";
|
|
15575
15602
|
sideOffset: number;
|
|
15603
|
+
align: "start" | "end" | "center";
|
|
15576
15604
|
avoidCollisions: boolean;
|
|
15577
15605
|
sticky: "partial" | "always";
|
|
15578
15606
|
updatePositionStrategy: "always" | "optimized";
|
|
15579
|
-
placement: "bottom" | "left" | "right" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end";
|
|
15580
15607
|
zIndex: string | number;
|
|
15581
15608
|
renderPopupsInContent: boolean;
|
|
15582
15609
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TooltipSlots> & TooltipSlots>;
|
|
@@ -15594,10 +15621,11 @@ export declare const TOOLTIP_DEFAULT_PROPS: {
|
|
|
15594
15621
|
readonly sideOffset: 8;
|
|
15595
15622
|
readonly asChild: false;
|
|
15596
15623
|
readonly open: undefined;
|
|
15624
|
+
readonly side: "bottom";
|
|
15625
|
+
readonly align: "center";
|
|
15597
15626
|
readonly avoidCollisions: true;
|
|
15598
15627
|
readonly sticky: "always";
|
|
15599
15628
|
readonly updatePositionStrategy: "optimized";
|
|
15600
|
-
readonly placement: "bottom";
|
|
15601
15629
|
readonly zIndex: 1000;
|
|
15602
15630
|
readonly renderPopupsInContent: true;
|
|
15603
15631
|
};
|
|
@@ -16950,7 +16978,7 @@ export declare const useColoredPantographCheckboxGroup: (color: string) => {
|
|
|
16950
16978
|
export declare const useConfig: (noDirProvider?: boolean) => {
|
|
16951
16979
|
config: ConfigProviderContext;
|
|
16952
16980
|
getFlipOnDir: <T = object>(key: keyof T) => ComputedRef<FlipOnDir | undefined>;
|
|
16953
|
-
dir: ComputedRef<Direction
|
|
16981
|
+
dir: ComputedRef<Direction>;
|
|
16954
16982
|
useCssInJs: (params: UseCssInJsParams) => void;
|
|
16955
16983
|
};
|
|
16956
16984
|
|
|
@@ -16970,7 +16998,7 @@ export declare const useDark: (changeAbleDirectionElement?: MaybeRef<Element | s
|
|
|
16970
16998
|
* @param outSetup - Whether to use computed instead of ref
|
|
16971
16999
|
* @returns Tuple containing the direction ref and a function to change direction
|
|
16972
17000
|
*/
|
|
16973
|
-
export declare const useDir: (changeAbleDirectionElement?: MaybeRef<Element | string>, defaultDirection?: Direction, outSetup?: boolean) => [Ref<Direction>, (value?: Direction) => void];
|
|
17001
|
+
export declare const useDir: (changeAbleDirectionElement?: MaybeRef<Element | string>, defaultDirection?: Direction, outSetup?: boolean) => [Ref<Direction | undefined>, (value?: Direction) => void];
|
|
16974
17002
|
|
|
16975
17003
|
/**
|
|
16976
17004
|
* Composable function to handle flattening of tree data
|
|
@@ -17038,7 +17066,7 @@ export declare const usePopoverContext: ({ slots, prefix, props, emit, emitsAsPr
|
|
|
17038
17066
|
size?: string | null | undefined;
|
|
17039
17067
|
noPadding?: string | null | undefined;
|
|
17040
17068
|
} & ClassProp) | undefined) => string;
|
|
17041
|
-
asChild:
|
|
17069
|
+
asChild: boolean;
|
|
17042
17070
|
rootOpenProp: ComputedRef< {
|
|
17043
17071
|
open: boolean | undefined;
|
|
17044
17072
|
'onUpdate:open': (value: boolean) => void;
|
|
@@ -17101,7 +17129,7 @@ export declare const usePopoverContext: ({ slots, prefix, props, emit, emitsAsPr
|
|
|
17101
17129
|
noEmptySlot?: boolean;
|
|
17102
17130
|
}) => VNode<RendererNode, RendererElement, {
|
|
17103
17131
|
[key: string]: any;
|
|
17104
|
-
}
|
|
17132
|
+
}>;
|
|
17105
17133
|
};
|
|
17106
17134
|
|
|
17107
17135
|
/**
|
|
@@ -17117,514 +17145,514 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
17117
17145
|
export { }
|
|
17118
17146
|
|
|
17119
17147
|
|
|
17148
|
+
/** component declare **/
|
|
17120
17149
|
declare module 'vue' {
|
|
17121
17150
|
interface GlobalComponents {
|
|
17122
|
-
|
|
17151
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
17152
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
17123
17153
|
}
|
|
17124
17154
|
}
|
|
17125
17155
|
|
|
17126
17156
|
|
|
17127
17157
|
declare module 'vue' {
|
|
17128
17158
|
interface GlobalComponents {
|
|
17129
|
-
|
|
17159
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
17130
17160
|
}
|
|
17131
17161
|
}
|
|
17132
17162
|
|
|
17133
17163
|
|
|
17134
17164
|
declare module 'vue' {
|
|
17135
17165
|
interface GlobalComponents {
|
|
17136
|
-
|
|
17166
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
17137
17167
|
}
|
|
17138
17168
|
}
|
|
17139
17169
|
|
|
17140
17170
|
|
|
17141
17171
|
declare module 'vue' {
|
|
17142
17172
|
interface GlobalComponents {
|
|
17143
|
-
|
|
17173
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
17144
17174
|
}
|
|
17145
17175
|
}
|
|
17146
17176
|
|
|
17147
17177
|
|
|
17148
17178
|
declare module 'vue' {
|
|
17149
17179
|
interface GlobalComponents {
|
|
17150
|
-
|
|
17180
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
17151
17181
|
}
|
|
17152
17182
|
}
|
|
17153
17183
|
|
|
17154
17184
|
|
|
17155
17185
|
declare module 'vue' {
|
|
17156
17186
|
interface GlobalComponents {
|
|
17157
|
-
|
|
17158
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
17187
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
17159
17188
|
}
|
|
17160
17189
|
}
|
|
17161
17190
|
|
|
17162
17191
|
|
|
17163
17192
|
declare module 'vue' {
|
|
17164
17193
|
interface GlobalComponents {
|
|
17165
|
-
|
|
17194
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
17166
17195
|
}
|
|
17167
17196
|
}
|
|
17168
17197
|
|
|
17169
17198
|
|
|
17170
17199
|
declare module 'vue' {
|
|
17171
17200
|
interface GlobalComponents {
|
|
17172
|
-
|
|
17173
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
17201
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
17174
17202
|
}
|
|
17175
17203
|
}
|
|
17176
17204
|
|
|
17177
17205
|
|
|
17178
17206
|
declare module 'vue' {
|
|
17179
17207
|
interface GlobalComponents {
|
|
17180
|
-
|
|
17208
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
17181
17209
|
}
|
|
17182
17210
|
}
|
|
17183
17211
|
|
|
17184
17212
|
|
|
17185
17213
|
declare module 'vue' {
|
|
17186
17214
|
interface GlobalComponents {
|
|
17187
|
-
|
|
17188
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17215
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
17189
17216
|
}
|
|
17190
17217
|
}
|
|
17191
17218
|
|
|
17192
17219
|
|
|
17193
17220
|
declare module 'vue' {
|
|
17194
17221
|
interface GlobalComponents {
|
|
17195
|
-
|
|
17222
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
17196
17223
|
}
|
|
17197
17224
|
}
|
|
17198
17225
|
|
|
17199
17226
|
|
|
17200
17227
|
declare module 'vue' {
|
|
17201
17228
|
interface GlobalComponents {
|
|
17202
|
-
|
|
17229
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
17230
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17203
17231
|
}
|
|
17204
17232
|
}
|
|
17205
17233
|
|
|
17206
17234
|
|
|
17207
17235
|
declare module 'vue' {
|
|
17208
17236
|
interface GlobalComponents {
|
|
17209
|
-
|
|
17210
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17237
|
+
Icon: DefineComponent<IconProps>;
|
|
17211
17238
|
}
|
|
17212
17239
|
}
|
|
17213
17240
|
|
|
17214
17241
|
|
|
17215
17242
|
declare module 'vue' {
|
|
17216
17243
|
interface GlobalComponents {
|
|
17217
|
-
|
|
17244
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
17245
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17218
17246
|
}
|
|
17219
17247
|
}
|
|
17220
17248
|
|
|
17221
17249
|
|
|
17222
17250
|
declare module 'vue' {
|
|
17223
17251
|
interface GlobalComponents {
|
|
17224
|
-
|
|
17252
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
17225
17253
|
}
|
|
17226
17254
|
}
|
|
17227
17255
|
|
|
17228
17256
|
|
|
17229
17257
|
declare module 'vue' {
|
|
17230
17258
|
interface GlobalComponents {
|
|
17231
|
-
|
|
17259
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
17232
17260
|
}
|
|
17233
17261
|
}
|
|
17234
17262
|
|
|
17235
17263
|
|
|
17236
17264
|
declare module 'vue' {
|
|
17237
17265
|
interface GlobalComponents {
|
|
17238
|
-
|
|
17266
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
17239
17267
|
}
|
|
17240
17268
|
}
|
|
17241
17269
|
|
|
17242
17270
|
|
|
17243
17271
|
declare module 'vue' {
|
|
17244
17272
|
interface GlobalComponents {
|
|
17245
|
-
|
|
17273
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
17246
17274
|
}
|
|
17247
17275
|
}
|
|
17248
17276
|
|
|
17249
17277
|
|
|
17250
17278
|
declare module 'vue' {
|
|
17251
17279
|
interface GlobalComponents {
|
|
17252
|
-
|
|
17280
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
17253
17281
|
}
|
|
17254
17282
|
}
|
|
17255
17283
|
|
|
17256
17284
|
|
|
17257
17285
|
declare module 'vue' {
|
|
17258
17286
|
interface GlobalComponents {
|
|
17259
|
-
|
|
17287
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
17260
17288
|
}
|
|
17261
17289
|
}
|
|
17262
17290
|
|
|
17263
17291
|
|
|
17264
17292
|
declare module 'vue' {
|
|
17265
17293
|
interface GlobalComponents {
|
|
17266
|
-
|
|
17294
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
17267
17295
|
}
|
|
17268
17296
|
}
|
|
17269
17297
|
|
|
17270
17298
|
|
|
17271
17299
|
declare module 'vue' {
|
|
17272
17300
|
interface GlobalComponents {
|
|
17273
|
-
|
|
17274
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17301
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
17275
17302
|
}
|
|
17276
17303
|
}
|
|
17277
17304
|
|
|
17278
17305
|
|
|
17279
17306
|
declare module 'vue' {
|
|
17280
17307
|
interface GlobalComponents {
|
|
17281
|
-
|
|
17308
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
17282
17309
|
}
|
|
17283
17310
|
}
|
|
17284
17311
|
|
|
17285
17312
|
|
|
17286
17313
|
declare module 'vue' {
|
|
17287
17314
|
interface GlobalComponents {
|
|
17288
|
-
|
|
17315
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
17289
17316
|
}
|
|
17290
17317
|
}
|
|
17291
17318
|
|
|
17292
17319
|
|
|
17293
17320
|
declare module 'vue' {
|
|
17294
17321
|
interface GlobalComponents {
|
|
17295
|
-
|
|
17322
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
17296
17323
|
}
|
|
17297
17324
|
}
|
|
17298
17325
|
|
|
17299
17326
|
|
|
17300
17327
|
declare module 'vue' {
|
|
17301
17328
|
interface GlobalComponents {
|
|
17302
|
-
|
|
17329
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
17303
17330
|
}
|
|
17304
17331
|
}
|
|
17305
17332
|
|
|
17306
17333
|
|
|
17307
17334
|
declare module 'vue' {
|
|
17308
17335
|
interface GlobalComponents {
|
|
17309
|
-
|
|
17336
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
17310
17337
|
}
|
|
17311
17338
|
}
|
|
17312
17339
|
|
|
17313
17340
|
|
|
17314
17341
|
declare module 'vue' {
|
|
17315
17342
|
interface GlobalComponents {
|
|
17316
|
-
|
|
17343
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
17344
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17317
17345
|
}
|
|
17318
17346
|
}
|
|
17319
17347
|
|
|
17320
17348
|
|
|
17321
17349
|
declare module 'vue' {
|
|
17322
17350
|
interface GlobalComponents {
|
|
17323
|
-
|
|
17351
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
17324
17352
|
}
|
|
17325
17353
|
}
|
|
17326
17354
|
|
|
17327
17355
|
|
|
17328
17356
|
declare module 'vue' {
|
|
17329
17357
|
interface GlobalComponents {
|
|
17330
|
-
|
|
17358
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
17331
17359
|
}
|
|
17332
17360
|
}
|
|
17333
17361
|
|
|
17334
17362
|
|
|
17335
17363
|
declare module 'vue' {
|
|
17336
17364
|
interface GlobalComponents {
|
|
17337
|
-
|
|
17365
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
17338
17366
|
}
|
|
17339
17367
|
}
|
|
17340
17368
|
|
|
17341
17369
|
|
|
17342
17370
|
declare module 'vue' {
|
|
17343
17371
|
interface GlobalComponents {
|
|
17344
|
-
|
|
17345
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17372
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
17346
17373
|
}
|
|
17347
17374
|
}
|
|
17348
17375
|
|
|
17349
17376
|
|
|
17350
17377
|
declare module 'vue' {
|
|
17351
17378
|
interface GlobalComponents {
|
|
17352
|
-
|
|
17379
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
17353
17380
|
}
|
|
17354
17381
|
}
|
|
17355
17382
|
|
|
17356
17383
|
|
|
17357
17384
|
declare module 'vue' {
|
|
17358
17385
|
interface GlobalComponents {
|
|
17359
|
-
|
|
17386
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
17360
17387
|
}
|
|
17361
17388
|
}
|
|
17362
17389
|
|
|
17363
17390
|
|
|
17364
17391
|
declare module 'vue' {
|
|
17365
17392
|
interface GlobalComponents {
|
|
17366
|
-
|
|
17393
|
+
Divider: DefineComponent<DividerProps>;
|
|
17367
17394
|
}
|
|
17368
17395
|
}
|
|
17369
17396
|
|
|
17370
17397
|
|
|
17371
17398
|
declare module 'vue' {
|
|
17372
17399
|
interface GlobalComponents {
|
|
17373
|
-
|
|
17400
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
17374
17401
|
}
|
|
17375
17402
|
}
|
|
17376
17403
|
|
|
17377
17404
|
|
|
17378
17405
|
declare module 'vue' {
|
|
17379
17406
|
interface GlobalComponents {
|
|
17380
|
-
|
|
17407
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
17408
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17409
|
+
SelectLabel: DefineComponent;
|
|
17381
17410
|
}
|
|
17382
17411
|
}
|
|
17383
17412
|
|
|
17384
17413
|
|
|
17385
17414
|
declare module 'vue' {
|
|
17386
17415
|
interface GlobalComponents {
|
|
17387
|
-
|
|
17416
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
17388
17417
|
}
|
|
17389
17418
|
}
|
|
17390
17419
|
|
|
17391
17420
|
|
|
17392
17421
|
declare module 'vue' {
|
|
17393
17422
|
interface GlobalComponents {
|
|
17394
|
-
|
|
17423
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17424
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17425
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17395
17426
|
}
|
|
17396
17427
|
}
|
|
17397
17428
|
|
|
17398
17429
|
|
|
17399
17430
|
declare module 'vue' {
|
|
17400
17431
|
interface GlobalComponents {
|
|
17401
|
-
|
|
17432
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
17402
17433
|
}
|
|
17403
17434
|
}
|
|
17404
17435
|
|
|
17405
17436
|
|
|
17406
17437
|
declare module 'vue' {
|
|
17407
17438
|
interface GlobalComponents {
|
|
17408
|
-
|
|
17409
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17410
|
-
ComboboxOption: DefineComponent;
|
|
17439
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
17411
17440
|
}
|
|
17412
17441
|
}
|
|
17413
17442
|
|
|
17414
17443
|
|
|
17415
17444
|
declare module 'vue' {
|
|
17416
17445
|
interface GlobalComponents {
|
|
17417
|
-
|
|
17418
|
-
|
|
17419
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17446
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
17447
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17420
17448
|
}
|
|
17421
17449
|
}
|
|
17422
17450
|
|
|
17423
17451
|
|
|
17424
17452
|
declare module 'vue' {
|
|
17425
17453
|
interface GlobalComponents {
|
|
17426
|
-
|
|
17454
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
17427
17455
|
}
|
|
17428
17456
|
}
|
|
17429
17457
|
|
|
17430
17458
|
|
|
17431
17459
|
declare module 'vue' {
|
|
17432
17460
|
interface GlobalComponents {
|
|
17433
|
-
|
|
17461
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
17434
17462
|
}
|
|
17435
17463
|
}
|
|
17436
17464
|
|
|
17437
17465
|
|
|
17438
17466
|
declare module 'vue' {
|
|
17439
17467
|
interface GlobalComponents {
|
|
17440
|
-
|
|
17468
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
17469
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17470
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17471
|
+
TabContent: DefineComponent;
|
|
17441
17472
|
}
|
|
17442
17473
|
}
|
|
17443
17474
|
|
|
17444
17475
|
|
|
17445
17476
|
declare module 'vue' {
|
|
17446
17477
|
interface GlobalComponents {
|
|
17447
|
-
|
|
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>;
|
|
17448
17485
|
}
|
|
17449
17486
|
}
|
|
17450
17487
|
|
|
17451
17488
|
|
|
17452
|
-
/** component declare **/
|
|
17453
17489
|
declare module 'vue' {
|
|
17454
17490
|
interface GlobalComponents {
|
|
17455
|
-
|
|
17456
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
17491
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
17457
17492
|
}
|
|
17458
17493
|
}
|
|
17459
17494
|
|
|
17460
17495
|
|
|
17461
17496
|
declare module 'vue' {
|
|
17462
17497
|
interface GlobalComponents {
|
|
17463
|
-
|
|
17464
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17465
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17466
|
-
TabContent: DefineComponent;
|
|
17498
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
17467
17499
|
}
|
|
17468
17500
|
}
|
|
17469
17501
|
|
|
17470
17502
|
|
|
17471
17503
|
declare module 'vue' {
|
|
17472
17504
|
interface GlobalComponents {
|
|
17473
|
-
|
|
17505
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
17474
17506
|
}
|
|
17475
17507
|
}
|
|
17476
17508
|
|
|
17477
17509
|
|
|
17478
17510
|
declare module 'vue' {
|
|
17479
17511
|
interface GlobalComponents {
|
|
17480
|
-
|
|
17512
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
17481
17513
|
}
|
|
17482
17514
|
}
|
|
17483
17515
|
|
|
17484
17516
|
|
|
17485
17517
|
declare module 'vue' {
|
|
17486
17518
|
interface GlobalComponents {
|
|
17487
|
-
|
|
17519
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
17488
17520
|
}
|
|
17489
17521
|
}
|
|
17490
17522
|
|
|
17491
17523
|
|
|
17492
|
-
/**
|
|
17493
|
-
* Global component declaration for TypeScript support
|
|
17494
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
17495
|
-
*/
|
|
17496
17524
|
declare module 'vue' {
|
|
17497
17525
|
interface GlobalComponents {
|
|
17498
|
-
|
|
17499
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
17526
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
17500
17527
|
}
|
|
17501
17528
|
}
|
|
17502
17529
|
|
|
17503
17530
|
|
|
17504
17531
|
declare module 'vue' {
|
|
17505
17532
|
interface GlobalComponents {
|
|
17506
|
-
|
|
17533
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
17507
17534
|
}
|
|
17508
17535
|
}
|
|
17509
17536
|
|
|
17510
17537
|
|
|
17511
17538
|
declare module 'vue' {
|
|
17512
17539
|
interface GlobalComponents {
|
|
17513
|
-
|
|
17540
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
17514
17541
|
}
|
|
17515
17542
|
}
|
|
17516
17543
|
|
|
17517
17544
|
|
|
17518
17545
|
declare module 'vue' {
|
|
17519
17546
|
interface GlobalComponents {
|
|
17520
|
-
|
|
17547
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
17521
17548
|
}
|
|
17522
17549
|
}
|
|
17523
17550
|
|
|
17524
17551
|
|
|
17525
17552
|
declare module 'vue' {
|
|
17526
17553
|
interface GlobalComponents {
|
|
17527
|
-
|
|
17554
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
17555
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
17528
17556
|
}
|
|
17529
17557
|
}
|
|
17530
17558
|
|
|
17531
17559
|
|
|
17532
17560
|
declare module 'vue' {
|
|
17533
17561
|
interface GlobalComponents {
|
|
17534
|
-
|
|
17562
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
17563
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17564
|
+
ComboboxOption: DefineComponent;
|
|
17535
17565
|
}
|
|
17536
17566
|
}
|
|
17537
17567
|
|
|
17538
17568
|
|
|
17539
17569
|
declare module 'vue' {
|
|
17540
17570
|
interface GlobalComponents {
|
|
17541
|
-
|
|
17542
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17543
|
-
SelectLabel: DefineComponent;
|
|
17571
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
17544
17572
|
}
|
|
17545
17573
|
}
|
|
17546
17574
|
|
|
17547
17575
|
|
|
17548
17576
|
declare module 'vue' {
|
|
17549
17577
|
interface GlobalComponents {
|
|
17550
|
-
|
|
17578
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
17551
17579
|
}
|
|
17552
17580
|
}
|
|
17553
17581
|
|
|
17554
17582
|
|
|
17555
17583
|
declare module 'vue' {
|
|
17556
17584
|
interface GlobalComponents {
|
|
17557
|
-
|
|
17558
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
17559
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
17560
|
-
Tr: DefineComponent<TrProps>;
|
|
17561
|
-
TBody: DefineComponent<TBodyProps>;
|
|
17562
|
-
THead: DefineComponent<THeadProps>;
|
|
17563
|
-
TFoot: DefineComponent<TFootProps>;
|
|
17585
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
17564
17586
|
}
|
|
17565
17587
|
}
|
|
17566
17588
|
|
|
17567
17589
|
|
|
17568
17590
|
declare module 'vue' {
|
|
17569
17591
|
interface GlobalComponents {
|
|
17570
|
-
|
|
17592
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
17571
17593
|
}
|
|
17572
17594
|
}
|
|
17573
17595
|
|
|
17574
17596
|
|
|
17575
17597
|
declare module 'vue' {
|
|
17576
17598
|
interface GlobalComponents {
|
|
17577
|
-
|
|
17599
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
17578
17600
|
}
|
|
17579
17601
|
}
|
|
17580
17602
|
|
|
17581
17603
|
|
|
17582
17604
|
declare module 'vue' {
|
|
17583
17605
|
interface GlobalComponents {
|
|
17584
|
-
|
|
17606
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
17585
17607
|
}
|
|
17586
17608
|
}
|
|
17587
17609
|
|
|
17588
17610
|
|
|
17611
|
+
/**
|
|
17612
|
+
* Global component declaration for TypeScript support
|
|
17613
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
17614
|
+
*/
|
|
17589
17615
|
declare module 'vue' {
|
|
17590
17616
|
interface GlobalComponents {
|
|
17591
|
-
|
|
17617
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
17618
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
17592
17619
|
}
|
|
17593
17620
|
}
|
|
17594
17621
|
|
|
17595
17622
|
|
|
17596
17623
|
declare module 'vue' {
|
|
17597
17624
|
interface GlobalComponents {
|
|
17598
|
-
|
|
17625
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
17599
17626
|
}
|
|
17600
17627
|
}
|
|
17601
17628
|
|
|
17602
17629
|
|
|
17603
17630
|
declare module 'vue' {
|
|
17604
17631
|
interface GlobalComponents {
|
|
17605
|
-
|
|
17632
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
17633
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17606
17634
|
}
|
|
17607
17635
|
}
|
|
17608
17636
|
|
|
17609
17637
|
|
|
17610
17638
|
declare module 'vue' {
|
|
17611
17639
|
interface GlobalComponents {
|
|
17612
|
-
|
|
17640
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
17613
17641
|
}
|
|
17614
17642
|
}
|
|
17615
17643
|
|
|
17616
17644
|
|
|
17617
17645
|
declare module 'vue' {
|
|
17618
17646
|
interface GlobalComponents {
|
|
17619
|
-
|
|
17647
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
17648
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
17620
17649
|
}
|
|
17621
17650
|
}
|
|
17622
17651
|
|
|
17623
17652
|
|
|
17624
17653
|
declare module 'vue' {
|
|
17625
17654
|
interface GlobalComponents {
|
|
17626
|
-
|
|
17627
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17655
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
17628
17656
|
}
|
|
17629
17657
|
}
|
|
17630
17658
|
|