2024-08-02 18:19:39 +08:00
|
|
|
import { type CSSProperties, type PropType } from 'vue';
|
|
|
|
import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
|
2024-01-29 09:26:07 +08:00
|
|
|
import type { ScrollbarProps } from '../../_internal';
|
|
|
|
export declare const layoutSiderProps: {
|
|
|
|
readonly position: {
|
|
|
|
readonly type: PropType<"static" | "absolute">;
|
|
|
|
readonly default: "static";
|
|
|
|
};
|
|
|
|
readonly bordered: BooleanConstructor;
|
|
|
|
readonly collapsedWidth: {
|
|
|
|
readonly type: NumberConstructor;
|
|
|
|
readonly default: 48;
|
|
|
|
};
|
|
|
|
readonly width: {
|
|
|
|
readonly type: PropType<string | number>;
|
|
|
|
readonly default: 272;
|
|
|
|
};
|
|
|
|
readonly contentClass: StringConstructor;
|
|
|
|
readonly contentStyle: {
|
|
|
|
readonly type: PropType<string | CSSProperties>;
|
|
|
|
readonly default: "";
|
|
|
|
};
|
|
|
|
readonly collapseMode: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<"width" | "transform">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: "transform";
|
|
|
|
};
|
|
|
|
readonly collapsed: {
|
|
|
|
readonly type: PropType<boolean | undefined>;
|
|
|
|
readonly default: undefined;
|
|
|
|
};
|
|
|
|
readonly defaultCollapsed: BooleanConstructor;
|
|
|
|
readonly showCollapsedContent: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
readonly showTrigger: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<boolean | "arrow-circle" | "bar">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: false;
|
|
|
|
};
|
|
|
|
readonly nativeScrollbar: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
readonly inverted: BooleanConstructor;
|
|
|
|
readonly scrollbarProps: PropType<Partial<ScrollbarProps> & {
|
|
|
|
style: CSSProperties;
|
|
|
|
}>;
|
|
|
|
readonly triggerClass: StringConstructor;
|
|
|
|
readonly triggerStyle: PropType<string | CSSProperties>;
|
|
|
|
readonly collapsedTriggerClass: StringConstructor;
|
|
|
|
readonly collapsedTriggerStyle: PropType<string | CSSProperties>;
|
|
|
|
readonly 'onUpdate:collapsed': PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
readonly onUpdateCollapsed: PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
readonly onAfterEnter: PropType<() => void>;
|
|
|
|
readonly onAfterLeave: PropType<() => void>;
|
|
|
|
readonly onExpand: PropType<MaybeArray<() => void>>;
|
|
|
|
readonly onCollapse: PropType<MaybeArray<() => void>>;
|
|
|
|
readonly onScroll: PropType<(e: Event) => void>;
|
|
|
|
};
|
|
|
|
export type LayoutSiderProps = ExtractPublicPropTypes<typeof layoutSiderProps>;
|
|
|
|
declare const _default: import("vue").DefineComponent<{
|
|
|
|
position: {
|
|
|
|
readonly type: PropType<"static" | "absolute">;
|
|
|
|
readonly default: "static";
|
|
|
|
};
|
|
|
|
bordered: BooleanConstructor;
|
|
|
|
collapsedWidth: {
|
|
|
|
readonly type: NumberConstructor;
|
|
|
|
readonly default: 48;
|
|
|
|
};
|
|
|
|
width: {
|
|
|
|
readonly type: PropType<string | number>;
|
|
|
|
readonly default: 272;
|
|
|
|
};
|
|
|
|
contentClass: StringConstructor;
|
|
|
|
contentStyle: {
|
|
|
|
readonly type: PropType<string | CSSProperties>;
|
|
|
|
readonly default: "";
|
|
|
|
};
|
|
|
|
collapseMode: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<"width" | "transform">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: "transform";
|
|
|
|
};
|
|
|
|
collapsed: {
|
|
|
|
readonly type: PropType<boolean | undefined>;
|
|
|
|
readonly default: undefined;
|
|
|
|
};
|
|
|
|
defaultCollapsed: BooleanConstructor;
|
|
|
|
showCollapsedContent: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
showTrigger: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<boolean | "arrow-circle" | "bar">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: false;
|
|
|
|
};
|
|
|
|
nativeScrollbar: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
inverted: BooleanConstructor;
|
|
|
|
scrollbarProps: PropType<Partial<ScrollbarProps> & {
|
|
|
|
style: CSSProperties;
|
|
|
|
}>;
|
|
|
|
triggerClass: StringConstructor;
|
|
|
|
triggerStyle: PropType<string | CSSProperties>;
|
|
|
|
collapsedTriggerClass: StringConstructor;
|
|
|
|
collapsedTriggerStyle: PropType<string | CSSProperties>;
|
|
|
|
'onUpdate:collapsed': PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
onUpdateCollapsed: PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
onAfterEnter: PropType<() => void>;
|
|
|
|
onAfterLeave: PropType<() => void>;
|
|
|
|
onExpand: PropType<MaybeArray<() => void>>;
|
|
|
|
onCollapse: PropType<MaybeArray<() => void>>;
|
|
|
|
onScroll: PropType<(e: Event) => void>;
|
|
|
|
theme: PropType<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>;
|
|
|
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>>;
|
|
|
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>>;
|
|
|
|
}, {
|
|
|
|
scrollTo: ((options: ScrollToOptions) => void) & ((x: number, y: number) => void);
|
|
|
|
scrollableElRef: import("vue").Ref<HTMLElement | null>;
|
|
|
|
scrollbarInstRef: import("vue").Ref<{
|
|
|
|
$el: HTMLElement;
|
|
|
|
containerRef: HTMLElement | null;
|
|
|
|
contentRef: HTMLElement | null;
|
|
|
|
containerScrollTop: number;
|
|
|
|
syncUnifiedContainer: () => void;
|
|
|
|
scrollTo: import("../../_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
|
|
scrollBy: import("../../_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
|
|
sync: () => void;
|
|
|
|
handleMouseEnterWrapper: () => void;
|
|
|
|
handleMouseLeaveWrapper: () => void;
|
|
|
|
} | null>;
|
|
|
|
mergedClsPrefix: import("vue").Ref<string>;
|
|
|
|
mergedTheme: import("vue").ComputedRef<{
|
2024-08-02 18:19:39 +08:00
|
|
|
common: import("../..").ThemeCommonVars;
|
2024-01-29 09:26:07 +08:00
|
|
|
self: {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
};
|
|
|
|
peers: {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
};
|
|
|
|
peerOverrides: {
|
|
|
|
Scrollbar?: {
|
|
|
|
peers?: {
|
|
|
|
[x: string]: any;
|
|
|
|
} | undefined;
|
|
|
|
} | undefined;
|
|
|
|
};
|
|
|
|
}>;
|
|
|
|
styleMaxWidth: import("vue").ComputedRef<string>;
|
|
|
|
mergedCollapsed: import("vue").ComputedRef<boolean>;
|
|
|
|
scrollContainerStyle: import("vue").ComputedRef<CSSProperties>;
|
|
|
|
siderPlacement: import("vue").ComputedRef<"left" | "right">;
|
|
|
|
handleNativeElScroll: (e: Event) => void;
|
|
|
|
handleTransitionend: (e: TransitionEvent) => void;
|
|
|
|
handleTriggerClick: () => void;
|
|
|
|
inlineThemeDisabled: boolean | undefined;
|
|
|
|
cssVars: import("vue").ComputedRef<any>;
|
|
|
|
themeClass: import("vue").Ref<string> | undefined;
|
|
|
|
onRender: (() => void) | undefined;
|
2024-08-02 18:19:39 +08:00
|
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
2024-01-29 09:26:07 +08:00
|
|
|
position: {
|
|
|
|
readonly type: PropType<"static" | "absolute">;
|
|
|
|
readonly default: "static";
|
|
|
|
};
|
|
|
|
bordered: BooleanConstructor;
|
|
|
|
collapsedWidth: {
|
|
|
|
readonly type: NumberConstructor;
|
|
|
|
readonly default: 48;
|
|
|
|
};
|
|
|
|
width: {
|
|
|
|
readonly type: PropType<string | number>;
|
|
|
|
readonly default: 272;
|
|
|
|
};
|
|
|
|
contentClass: StringConstructor;
|
|
|
|
contentStyle: {
|
|
|
|
readonly type: PropType<string | CSSProperties>;
|
|
|
|
readonly default: "";
|
|
|
|
};
|
|
|
|
collapseMode: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<"width" | "transform">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: "transform";
|
|
|
|
};
|
|
|
|
collapsed: {
|
|
|
|
readonly type: PropType<boolean | undefined>;
|
|
|
|
readonly default: undefined;
|
|
|
|
};
|
|
|
|
defaultCollapsed: BooleanConstructor;
|
|
|
|
showCollapsedContent: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
showTrigger: {
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly type: PropType<boolean | "arrow-circle" | "bar">;
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly default: false;
|
|
|
|
};
|
|
|
|
nativeScrollbar: {
|
|
|
|
readonly type: BooleanConstructor;
|
|
|
|
readonly default: true;
|
|
|
|
};
|
|
|
|
inverted: BooleanConstructor;
|
|
|
|
scrollbarProps: PropType<Partial<ScrollbarProps> & {
|
|
|
|
style: CSSProperties;
|
|
|
|
}>;
|
|
|
|
triggerClass: StringConstructor;
|
|
|
|
triggerStyle: PropType<string | CSSProperties>;
|
|
|
|
collapsedTriggerClass: StringConstructor;
|
|
|
|
collapsedTriggerStyle: PropType<string | CSSProperties>;
|
|
|
|
'onUpdate:collapsed': PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
onUpdateCollapsed: PropType<MaybeArray<(value: boolean) => void>>;
|
|
|
|
onAfterEnter: PropType<() => void>;
|
|
|
|
onAfterLeave: PropType<() => void>;
|
|
|
|
onExpand: PropType<MaybeArray<() => void>>;
|
|
|
|
onCollapse: PropType<MaybeArray<() => void>>;
|
|
|
|
onScroll: PropType<(e: Event) => void>;
|
|
|
|
theme: PropType<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>;
|
|
|
|
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>>;
|
|
|
|
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
|
|
|
|
textColor: string;
|
|
|
|
textColorInverted: string;
|
|
|
|
color: string;
|
|
|
|
colorEmbedded: string;
|
|
|
|
headerColor: string;
|
|
|
|
headerColorInverted: string;
|
|
|
|
footerColor: string;
|
|
|
|
footerColorInverted: string;
|
|
|
|
headerBorderColor: string;
|
|
|
|
headerBorderColorInverted: string;
|
|
|
|
footerBorderColor: string;
|
|
|
|
footerBorderColorInverted: string;
|
|
|
|
siderBorderColor: string;
|
|
|
|
siderBorderColorInverted: string;
|
|
|
|
siderColor: string;
|
|
|
|
siderColorInverted: string;
|
|
|
|
siderToggleButtonBorder: string;
|
|
|
|
siderToggleButtonColor: string;
|
|
|
|
siderToggleButtonIconColor: string;
|
|
|
|
siderToggleButtonIconColorInverted: string;
|
|
|
|
siderToggleBarColor: string;
|
|
|
|
siderToggleBarColorHover: string;
|
|
|
|
__invertScrollbar: string;
|
|
|
|
}, {
|
|
|
|
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
2024-08-02 18:19:39 +08:00
|
|
|
height: string;
|
|
|
|
width: string;
|
|
|
|
borderRadius: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorHover: string;
|
2024-08-02 18:19:39 +08:00
|
|
|
railInsetHorizontal: string;
|
|
|
|
railInsetVertical: string;
|
|
|
|
railColor: string;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, any>;
|
|
|
|
}>>>;
|
|
|
|
}>>, {
|
|
|
|
position: "static" | "absolute";
|
|
|
|
width: string | number;
|
|
|
|
bordered: boolean;
|
|
|
|
contentStyle: string | CSSProperties;
|
|
|
|
inverted: boolean;
|
|
|
|
collapsed: boolean | undefined;
|
|
|
|
nativeScrollbar: boolean;
|
|
|
|
collapsedWidth: number;
|
|
|
|
collapseMode: "transform" | "width";
|
|
|
|
defaultCollapsed: boolean;
|
|
|
|
showCollapsedContent: boolean;
|
|
|
|
showTrigger: boolean | "bar" | "arrow-circle";
|
|
|
|
}, {}>;
|
|
|
|
export default _default;
|