@gx-design-vue/pro-layout 0.1.0-alpha.2 → 0.1.0-alpha.21
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/ProLayout.d.ts +4 -536
- package/dist/ProLayout.js +489 -358
- package/dist/components/AppPage/context.d.ts +4 -3
- package/dist/components/AppPage/context.js +3 -5
- package/dist/components/AppPage/index.d.ts +29 -52
- package/dist/components/AppPage/index.js +71 -54
- package/dist/components/AppPage/style.d.ts +8 -7
- package/dist/components/AppPage/style.js +16 -17
- package/dist/components/Breadcrumb/index.d.ts +19 -0
- package/dist/components/Breadcrumb/index.js +129 -0
- package/dist/components/Breadcrumb/interface.d.ts +33 -0
- package/dist/components/Breadcrumb/interface.js +1 -0
- package/dist/components/CollapseButton/Arrow.d.ts +4 -0
- package/dist/components/{SiderMenu → CollapseButton}/Arrow.js +2 -4
- package/dist/components/CollapseButton/index.d.ts +7 -0
- package/dist/components/CollapseButton/index.js +45 -0
- package/dist/components/CollapseButton/interface.d.ts +19 -0
- package/dist/components/CollapseButton/interface.js +1 -0
- package/dist/components/Footer/index.d.ts +10 -0
- package/dist/components/Footer/index.js +69 -0
- package/dist/components/Footer/interface.d.ts +22 -0
- package/dist/components/Footer/interface.js +1 -0
- package/dist/components/FooterToolbar/index.d.ts +5 -72
- package/dist/components/FooterToolbar/index.js +77 -90
- package/dist/components/FooterToolbar/style.d.ts +10 -0
- package/dist/components/FooterToolbar/style.js +34 -0
- package/dist/components/Header/index.d.ts +7 -0
- package/dist/components/Header/index.js +140 -0
- package/dist/components/Header/interface.d.ts +41 -0
- package/dist/components/Header/interface.js +1 -0
- package/dist/components/Logo/index.d.ts +9 -0
- package/dist/components/Logo/index.js +63 -0
- package/dist/components/Logo/interface.d.ts +13 -0
- package/dist/components/Logo/interface.js +1 -0
- package/dist/components/Menu/iconRender.d.ts +10 -0
- package/dist/components/Menu/iconRender.js +23 -0
- package/dist/components/Menu/index.d.ts +13 -0
- package/dist/components/Menu/index.js +778 -0
- package/dist/components/Menu/interface.d.ts +50 -0
- package/dist/components/Menu/interface.js +9 -0
- package/dist/components/Menu/overflow.d.ts +39 -0
- package/dist/components/Menu/overflow.js +81 -0
- package/dist/components/Menu/style/base.d.ts +12 -0
- package/dist/components/Menu/style/base.js +36 -0
- package/dist/components/Menu/style/horizontal.d.ts +19 -0
- package/dist/components/Menu/style/horizontal.js +303 -0
- package/dist/components/Menu/style/index.d.ts +356 -0
- package/dist/components/Menu/style/index.js +147 -0
- package/dist/components/Menu/style/inline.d.ts +13 -0
- package/dist/components/Menu/style/inline.js +292 -0
- package/dist/components/PageContainer/PageHeader.d.ts +30 -36
- package/dist/components/PageContainer/PageHeader.js +80 -46
- package/dist/components/PageContainer/index.d.ts +8 -194
- package/dist/components/PageContainer/index.js +297 -209
- package/dist/components/PageContainer/style.d.ts +5 -0
- package/dist/components/PageContainer/style.js +142 -0
- package/dist/components/PageTransition/animate.d.ts +41 -0
- package/dist/components/PageTransition/animate.js +106 -0
- package/dist/components/PageTransition/index.d.ts +57 -0
- package/dist/components/PageTransition/index.js +66 -0
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/back.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/back.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/bounce.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/bounce.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/fade.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/fade.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/flip.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/flip.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/lightSpeed.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/lightSpeed.js +2 -4
- package/dist/components/PageTransition/keyFrame/roll.d.ts +10 -0
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/roll.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/rotate.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/rotate.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/slide.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/slide.js +2 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/zoom.d.ts +4 -4
- package/dist/components/{PageTranstion → PageTransition}/keyFrame/zoom.js +2 -4
- package/dist/components/PageTransition/style.d.ts +11 -0
- package/dist/components/{PageTranstion → PageTransition}/style.js +9 -13
- package/dist/components/Sider/index.d.ts +7 -0
- package/dist/components/Sider/index.js +206 -0
- package/dist/components/Sider/interface.d.ts +39 -0
- package/dist/components/Sider/interface.js +1 -0
- package/dist/components/Tabs/InnerTabs.d.ts +7 -0
- package/dist/components/Tabs/InnerTabs.js +117 -0
- package/dist/components/Tabs/contextMenu.d.ts +41 -0
- package/dist/components/Tabs/contextMenu.js +89 -0
- package/dist/components/Tabs/hooks/flipAnimate.d.ts +24 -0
- package/dist/components/Tabs/hooks/flipAnimate.js +40 -0
- package/dist/components/Tabs/hooks/useAutoScroll.d.ts +27 -0
- package/dist/components/Tabs/hooks/useAutoScroll.js +122 -0
- package/dist/components/Tabs/hooks/useTabDrag.d.ts +31 -0
- package/dist/components/Tabs/hooks/useTabDrag.js +252 -0
- package/dist/components/Tabs/index.d.ts +13 -0
- package/dist/components/Tabs/index.js +181 -0
- package/dist/components/Tabs/interface.d.ts +74 -0
- package/dist/components/Tabs/interface.js +1 -0
- package/dist/components/Tabs/style/index.d.ts +35 -0
- package/dist/components/Tabs/style/index.js +161 -0
- package/dist/components/WrapContent/index.d.ts +9 -0
- package/dist/components/WrapContent/index.js +26 -0
- package/dist/components/WrapContent/interface.d.ts +15 -0
- package/dist/components/WrapContent/interface.js +1 -0
- package/dist/context/index.d.ts +53 -0
- package/dist/context/index.js +5 -0
- package/dist/defaultConfig.d.ts +10 -0
- package/dist/defaultConfig.js +38 -0
- package/dist/hooks/useLayoutBase.d.ts +78 -0
- package/dist/hooks/useLayoutBase.js +86 -0
- package/dist/hooks/useMenu.d.ts +77 -0
- package/dist/hooks/useMenu.js +166 -0
- package/dist/hooks/useTabs.d.ts +54 -0
- package/dist/hooks/useTabs.js +388 -0
- package/dist/index.d.ts +22 -27
- package/dist/index.js +15 -24
- package/dist/interface.d.ts +516 -0
- package/dist/interface.js +34 -0
- package/dist/pro-layout.esm.js +5848 -5075
- package/dist/pro-layout.js +16 -37
- package/dist/style/breadcrumb.d.ts +8 -0
- package/dist/style/breadcrumb.js +77 -0
- package/dist/style/collapseButton.d.ts +8 -0
- package/dist/style/collapseButton.js +57 -0
- package/dist/style/content.d.ts +8 -0
- package/dist/style/content.js +29 -0
- package/dist/style/footer.d.ts +8 -0
- package/dist/style/footer.js +33 -0
- package/dist/style/header.d.ts +8 -0
- package/dist/style/header.js +76 -0
- package/dist/style/index.d.ts +3 -22
- package/dist/style/index.js +51 -55
- package/dist/style/logo.d.ts +8 -0
- package/dist/style/logo.js +76 -0
- package/dist/style/menu.d.ts +15 -0
- package/dist/style/menu.js +49 -0
- package/dist/style/rightContent.d.ts +12 -0
- package/dist/style/rightContent.js +74 -0
- package/dist/style/search.d.ts +12 -0
- package/dist/style/search.js +94 -0
- package/dist/style/sider.d.ts +8 -0
- package/dist/style/sider.js +92 -0
- package/dist/style/tabs.d.ts +14 -0
- package/dist/style/tabs.js +97 -0
- package/dist/theme/augment.d.ts +20 -0
- package/dist/theme/augment.js +1 -0
- package/dist/theme/interface/components.d.ts +20 -0
- package/dist/theme/interface/components.js +1 -0
- package/dist/utils/config.d.ts +12 -0
- package/dist/utils/config.js +18 -0
- package/dist/utils/menu.d.ts +111 -20
- package/dist/utils/menu.js +263 -118
- package/dist/utils/style.d.ts +4 -0
- package/dist/utils/style.js +21 -0
- package/dist/utils/themeComponents.d.ts +28 -0
- package/dist/utils/themeComponents.js +89 -0
- package/package.json +24 -15
- package/dist/Context/expose.d.ts +0 -6
- package/dist/Context/expose.js +0 -7
- package/dist/Context/index.d.ts +0 -43
- package/dist/Context/index.js +0 -18
- package/dist/WrapContent.d.ts +0 -100
- package/dist/WrapContent.js +0 -45
- package/dist/components/BaseMenu/index.d.ts +0 -255
- package/dist/components/BaseMenu/index.js +0 -381
- package/dist/components/BaseMenu/props.d.ts +0 -105
- package/dist/components/BaseMenu/props.js +0 -94
- package/dist/components/BaseMenu/style.d.ts +0 -6
- package/dist/components/BaseMenu/style.js +0 -155
- package/dist/components/BreadCrumb/Breadcrumb.d.ts +0 -33
- package/dist/components/BreadCrumb/Breadcrumb.js +0 -75
- package/dist/components/BreadCrumb/index.d.ts +0 -7
- package/dist/components/BreadCrumb/index.js +0 -44
- package/dist/components/BreadCrumb/style.d.ts +0 -8
- package/dist/components/BreadCrumb/style.js +0 -87
- package/dist/components/CollapsedIcon/index.d.ts +0 -33
- package/dist/components/CollapsedIcon/index.js +0 -51
- package/dist/components/CollapsedIcon/style.d.ts +0 -9
- package/dist/components/CollapsedIcon/style.js +0 -34
- package/dist/components/FooterToolbar/props.d.ts +0 -47
- package/dist/components/FooterToolbar/props.js +0 -33
- package/dist/components/FooterToolbar/style/index.d.ts +0 -14
- package/dist/components/FooterToolbar/style/index.js +0 -48
- package/dist/components/FooterToolbar/style/stylish.d.ts +0 -18
- package/dist/components/FooterToolbar/style/stylish.js +0 -16
- package/dist/components/GlobalFooter/index.d.ts +0 -73
- package/dist/components/GlobalFooter/index.js +0 -77
- package/dist/components/GlobalFooter/style.d.ts +0 -6
- package/dist/components/GlobalFooter/style.js +0 -29
- package/dist/components/GlobalHeader/DefaultHeader.d.ts +0 -164
- package/dist/components/GlobalHeader/DefaultHeader.js +0 -149
- package/dist/components/GlobalHeader/index.d.ts +0 -164
- package/dist/components/GlobalHeader/index.js +0 -78
- package/dist/components/GlobalHeader/props.d.ts +0 -70
- package/dist/components/GlobalHeader/props.js +0 -56
- package/dist/components/GlobalHeader/style/defaultHeader.d.ts +0 -6
- package/dist/components/GlobalHeader/style/defaultHeader.js +0 -108
- package/dist/components/GlobalHeader/style/header.d.ts +0 -6
- package/dist/components/GlobalHeader/style/header.js +0 -41
- package/dist/components/LogoContent/index.d.ts +0 -80
- package/dist/components/LogoContent/index.js +0 -90
- package/dist/components/LogoContent/props.d.ts +0 -57
- package/dist/components/LogoContent/props.js +0 -37
- package/dist/components/LogoContent/style.d.ts +0 -6
- package/dist/components/LogoContent/style.js +0 -63
- package/dist/components/PageContainer/props.d.ts +0 -138
- package/dist/components/PageContainer/props.js +0 -103
- package/dist/components/PageContainer/style/index.d.ts +0 -14
- package/dist/components/PageContainer/style/index.js +0 -52
- package/dist/components/PageContainer/style/pageHeader.d.ts +0 -6
- package/dist/components/PageContainer/style/pageHeader.js +0 -44
- package/dist/components/PageTranstion/index.d.ts +0 -40
- package/dist/components/PageTranstion/index.js +0 -71
- package/dist/components/PageTranstion/keyFrame/roll.d.ts +0 -10
- package/dist/components/PageTranstion/style.d.ts +0 -10
- package/dist/components/SiderMenu/Arrow.d.ts +0 -6
- package/dist/components/SiderMenu/SiderMenu.d.ts +0 -180
- package/dist/components/SiderMenu/SiderMenu.js +0 -265
- package/dist/components/SiderMenu/index.d.ts +0 -193
- package/dist/components/SiderMenu/index.js +0 -51
- package/dist/components/SiderMenu/props.d.ts +0 -77
- package/dist/components/SiderMenu/props.js +0 -67
- package/dist/components/SiderMenu/style/index.d.ts +0 -12
- package/dist/components/SiderMenu/style/index.js +0 -162
- package/dist/components/SiderMenu/typings.d.ts +0 -38
- package/dist/components/SiderMenu/typings.js +0 -1
- package/dist/components/TabsRoute/index.d.ts +0 -95
- package/dist/components/TabsRoute/index.js +0 -405
- package/dist/components/TabsRoute/props.d.ts +0 -78
- package/dist/components/TabsRoute/props.js +0 -47
- package/dist/components/TabsRoute/style.d.ts +0 -15
- package/dist/components/TabsRoute/style.js +0 -133
- package/dist/components/TabsRoute/utils/config.d.ts +0 -18
- package/dist/components/TabsRoute/utils/config.js +0 -64
- package/dist/config/animate.d.ts +0 -11
- package/dist/config/animate.js +0 -76
- package/dist/config/index.d.ts +0 -34
- package/dist/config/index.js +0 -30
- package/dist/hooks/collapsed/index.d.ts +0 -15
- package/dist/hooks/collapsed/index.js +0 -50
- package/dist/hooks/layout/useLayoutExpose.d.ts +0 -15
- package/dist/hooks/layout/useLayoutExpose.js +0 -22
- package/dist/hooks/layout/usePageContent.d.ts +0 -6
- package/dist/hooks/layout/usePageContent.js +0 -28
- package/dist/hooks/menu/context.d.ts +0 -21
- package/dist/hooks/menu/context.js +0 -7
- package/dist/hooks/menu/index.d.ts +0 -29
- package/dist/hooks/menu/index.js +0 -118
- package/dist/hooks/theme/index.d.ts +0 -11
- package/dist/hooks/theme/index.js +0 -13
- package/dist/props/collapsedProps.d.ts +0 -39
- package/dist/props/collapsedProps.js +0 -45
- package/dist/props/defaultSettings.d.ts +0 -62
- package/dist/props/defaultSettings.js +0 -56
- package/dist/props/index.d.ts +0 -226
- package/dist/props/index.js +0 -109
- package/dist/props/themeProps.d.ts +0 -14
- package/dist/props/themeProps.js +0 -10
- package/dist/types/Breadcrumb.d.ts +0 -22
- package/dist/types/Breadcrumb.js +0 -1
- package/dist/types/MenuTypings.d.ts +0 -46
- package/dist/types/MenuTypings.js +0 -1
- package/dist/types/RouteTypings.d.ts +0 -96
- package/dist/types/RouteTypings.js +0 -1
- package/dist/types/SlotsTypings.d.ts +0 -124
- package/dist/types/SlotsTypings.js +0 -32
- package/dist/types/typings.d.ts +0 -73
- package/dist/types/typings.js +0 -3
- package/dist/utils/index.d.ts +0 -7
- package/dist/utils/index.js +0 -17
- package/dist/utils/style/index.d.ts +0 -44
- package/dist/utils/style/index.js +0 -103
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import { useProLayoutContext } from "../../Context/index.js";
|
|
2
|
-
import props_default from "./props.js";
|
|
3
|
-
import { createVNode, defineComponent, ref } from "vue";
|
|
4
|
-
import { useElementBounding } from "@vueuse/core";
|
|
5
|
-
|
|
6
|
-
//#region src/components/LogoContent/index.tsx
|
|
7
|
-
function defaultRenderLogo(logo, logoStyle) {
|
|
8
|
-
if (logo === false) return null;
|
|
9
|
-
if (typeof logo === "string") return createVNode("img", {
|
|
10
|
-
"src": logo,
|
|
11
|
-
"alt": "logo",
|
|
12
|
-
"style": logoStyle
|
|
13
|
-
}, null);
|
|
14
|
-
if (typeof logo === "function") return logo();
|
|
15
|
-
return logo;
|
|
16
|
-
}
|
|
17
|
-
function logoDom(classNames, props) {
|
|
18
|
-
return createVNode("span", {
|
|
19
|
-
"key": "logo",
|
|
20
|
-
"onClick": () => props.onLogoClick?.(),
|
|
21
|
-
"class": classNames
|
|
22
|
-
}, [createVNode("a", null, [defaultRenderLogo(props.logo, props.logoStyle)])]);
|
|
23
|
-
}
|
|
24
|
-
function renderLogo(logoRender, logoDom) {
|
|
25
|
-
if (logoRender === false) return null;
|
|
26
|
-
if (logoRender) return logoRender({
|
|
27
|
-
logo: logoDom,
|
|
28
|
-
title: null
|
|
29
|
-
});
|
|
30
|
-
return logoDom;
|
|
31
|
-
}
|
|
32
|
-
function defaultRenderLogoAndTitle(props) {
|
|
33
|
-
const { logo, logoStyle, title, layout, collapsed, collapsedWidth } = props;
|
|
34
|
-
const renderFunction = props.logoRender;
|
|
35
|
-
if (renderFunction === false) return null;
|
|
36
|
-
const logoDom = defaultRenderLogo(logo, logoStyle);
|
|
37
|
-
const titleDom = title && createVNode("h1", null, [title]);
|
|
38
|
-
if (typeof renderFunction === "function") return renderFunction({
|
|
39
|
-
logo: logoDom,
|
|
40
|
-
title: props.collapsed ? null : titleDom,
|
|
41
|
-
props
|
|
42
|
-
});
|
|
43
|
-
else if (renderFunction) return renderFunction;
|
|
44
|
-
return createVNode("a", {
|
|
45
|
-
"key": "title",
|
|
46
|
-
"onClick": () => props.onLogoClick?.()
|
|
47
|
-
}, [(collapsed && collapsedWidth || !collapsed) && (logoDom || null), props.collapsed && (layout === "side" || layout === "simple") ? null : titleDom]);
|
|
48
|
-
}
|
|
49
|
-
const LogoContent = /* @__PURE__ */ defineComponent({
|
|
50
|
-
name: "LogoContent",
|
|
51
|
-
props: {
|
|
52
|
-
...props_default,
|
|
53
|
-
hashId: String,
|
|
54
|
-
baseClassName: String
|
|
55
|
-
},
|
|
56
|
-
setup(props, { slots, expose }) {
|
|
57
|
-
const { collapsedEffect, settings, collapsedProps, styles, classNames, isMobile } = useProLayoutContext();
|
|
58
|
-
const rootEl = ref();
|
|
59
|
-
const { height } = useElementBounding(rootEl);
|
|
60
|
-
expose({ getHeight: () => height.value });
|
|
61
|
-
return () => {
|
|
62
|
-
return createVNode("div", {
|
|
63
|
-
"id": "logo",
|
|
64
|
-
"ref": rootEl,
|
|
65
|
-
"class": {
|
|
66
|
-
[`${props.class}`]: props.class,
|
|
67
|
-
[`${props.hashId}`]: true,
|
|
68
|
-
[`${props.baseClassName}-logo`]: true,
|
|
69
|
-
[`${props.baseClassName}-logo-mobile`]: isMobile.value,
|
|
70
|
-
[`${props.baseClassName}-logo-collapsed`]: !!collapsedEffect.value,
|
|
71
|
-
[`${classNames.value?.logo}`]: !!classNames.value?.logo
|
|
72
|
-
},
|
|
73
|
-
"style": {
|
|
74
|
-
...props.style || {},
|
|
75
|
-
...styles.value.logo || {}
|
|
76
|
-
}
|
|
77
|
-
}, [defaultRenderLogoAndTitle({
|
|
78
|
-
...props,
|
|
79
|
-
title: props.title || settings.value.title,
|
|
80
|
-
collapsed: collapsedEffect.value,
|
|
81
|
-
collapsedWidth: collapsedProps.value?.width
|
|
82
|
-
}) || null, slots.default?.()]);
|
|
83
|
-
};
|
|
84
|
-
}
|
|
85
|
-
});
|
|
86
|
-
LogoContent.inheritAttrs = false;
|
|
87
|
-
var LogoContent_default = LogoContent;
|
|
88
|
-
|
|
89
|
-
//#endregion
|
|
90
|
-
export { LogoContent_default as default, defaultRenderLogo, defaultRenderLogoAndTitle, logoDom, renderLogo };
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { LogoRender } from "../../types/SlotsTypings.js";
|
|
2
|
-
import { ProLayoutConfig, ProLayoutType } from "../../config/index.js";
|
|
3
|
-
import "../../index.js";
|
|
4
|
-
import { CSSProperties, PropType } from "vue";
|
|
5
|
-
import { CustomRender } from "@gx-design-vue/pro-utils";
|
|
6
|
-
|
|
7
|
-
//#region src/components/LogoContent/props.d.ts
|
|
8
|
-
interface CommonLogoProps {
|
|
9
|
-
logo?: CustomRender;
|
|
10
|
-
logoStyle?: CSSProperties;
|
|
11
|
-
logoRender?: LogoRender;
|
|
12
|
-
onLogoClick?: () => void;
|
|
13
|
-
}
|
|
14
|
-
declare const commonLogoProps: {
|
|
15
|
-
class: PropType<string>;
|
|
16
|
-
style: PropType<CSSProperties>;
|
|
17
|
-
logo: {
|
|
18
|
-
type: PropType<CommonLogoProps["logo"]>;
|
|
19
|
-
default: () => any;
|
|
20
|
-
};
|
|
21
|
-
logoStyle: {
|
|
22
|
-
type: PropType<CommonLogoProps["logoStyle"]>;
|
|
23
|
-
default: () => any;
|
|
24
|
-
};
|
|
25
|
-
logoRender: {
|
|
26
|
-
type: PropType<CommonLogoProps["logoRender"]>;
|
|
27
|
-
default: () => any;
|
|
28
|
-
};
|
|
29
|
-
onLogoClick: PropType<CommonLogoProps["onLogoClick"]>;
|
|
30
|
-
};
|
|
31
|
-
declare const _default: {
|
|
32
|
-
class: PropType<string>;
|
|
33
|
-
style: PropType<CSSProperties>;
|
|
34
|
-
logo: {
|
|
35
|
-
type: PropType<CommonLogoProps["logo"]>;
|
|
36
|
-
default: () => any;
|
|
37
|
-
};
|
|
38
|
-
logoStyle: {
|
|
39
|
-
type: PropType<CommonLogoProps["logoStyle"]>;
|
|
40
|
-
default: () => any;
|
|
41
|
-
};
|
|
42
|
-
logoRender: {
|
|
43
|
-
type: PropType<CommonLogoProps["logoRender"]>;
|
|
44
|
-
default: () => any;
|
|
45
|
-
};
|
|
46
|
-
onLogoClick: PropType<CommonLogoProps["onLogoClick"]>;
|
|
47
|
-
layout: {
|
|
48
|
-
type: PropType<ProLayoutConfig["layout"]>;
|
|
49
|
-
default: ProLayoutType;
|
|
50
|
-
};
|
|
51
|
-
title: {
|
|
52
|
-
type: PropType<ProLayoutConfig["title"]>;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
//#endregion
|
|
57
|
-
export { CommonLogoProps, commonLogoProps, _default as default };
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { defaultSettingProps } from "../../props/defaultSettings.js";
|
|
2
|
-
import { pick } from "es-toolkit";
|
|
3
|
-
|
|
4
|
-
//#region src/components/LogoContent/props.ts
|
|
5
|
-
const commonLogoProps = {
|
|
6
|
-
class: String,
|
|
7
|
-
style: Object,
|
|
8
|
-
logo: {
|
|
9
|
-
type: [
|
|
10
|
-
Object,
|
|
11
|
-
String,
|
|
12
|
-
Function
|
|
13
|
-
],
|
|
14
|
-
default: () => void 0
|
|
15
|
-
},
|
|
16
|
-
logoStyle: {
|
|
17
|
-
type: Object,
|
|
18
|
-
default: () => void 0
|
|
19
|
-
},
|
|
20
|
-
logoRender: {
|
|
21
|
-
type: [
|
|
22
|
-
Object,
|
|
23
|
-
Function,
|
|
24
|
-
Array,
|
|
25
|
-
Boolean
|
|
26
|
-
],
|
|
27
|
-
default: () => void 0
|
|
28
|
-
},
|
|
29
|
-
onLogoClick: Function
|
|
30
|
-
};
|
|
31
|
-
var props_default = {
|
|
32
|
-
...pick(defaultSettingProps, ["title", "layout"]),
|
|
33
|
-
...commonLogoProps
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
//#endregion
|
|
37
|
-
export { commonLogoProps, props_default as default };
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { getTokenLayoutTheme } from "../../config/index.js";
|
|
2
|
-
import { proLayoutTitleHide } from "../SiderMenu/style/index.js";
|
|
3
|
-
|
|
4
|
-
//#region src/components/LogoContent/style.ts
|
|
5
|
-
const genLogoContentStyle = (token) => {
|
|
6
|
-
const { layout } = getTokenLayoutTheme(token);
|
|
7
|
-
return { [`${token.componentCls}-logo`]: {
|
|
8
|
-
position: "relative",
|
|
9
|
-
display: "flex",
|
|
10
|
-
alignItems: "center",
|
|
11
|
-
justifyContent: "space-between",
|
|
12
|
-
cursor: "pointer",
|
|
13
|
-
paddingInline: layout === "side" ? 20 : 0,
|
|
14
|
-
paddingBlock: layout === "side" ? 16 : 0,
|
|
15
|
-
color: token.colorText,
|
|
16
|
-
borderBlockEnd: layout === "side" ? `1px solid ${token.layout?.sider?.colorMenuItemDivider}` : "",
|
|
17
|
-
[`&${token.componentCls}-logo-mobile`]: {
|
|
18
|
-
borderBlockEnd: 0,
|
|
19
|
-
paddingInlineStart: 0
|
|
20
|
-
},
|
|
21
|
-
"> a": {
|
|
22
|
-
display: "flex",
|
|
23
|
-
alignItems: "center",
|
|
24
|
-
justifyContent: "center",
|
|
25
|
-
minHeight: 22,
|
|
26
|
-
fontSize: 22,
|
|
27
|
-
"> img": {
|
|
28
|
-
display: "inline-block",
|
|
29
|
-
height: 22,
|
|
30
|
-
verticalAlign: "middle"
|
|
31
|
-
},
|
|
32
|
-
"> h1": {
|
|
33
|
-
display: "inline-block",
|
|
34
|
-
height: 22,
|
|
35
|
-
marginBlock: 0,
|
|
36
|
-
marginInlineEnd: 0,
|
|
37
|
-
marginInlineStart: 6,
|
|
38
|
-
color: token.layout?.sider?.colorTextMenuTitle,
|
|
39
|
-
animationName: proLayoutTitleHide,
|
|
40
|
-
animationDuration: ".4s",
|
|
41
|
-
animationTimingFunction: "ease",
|
|
42
|
-
fontWeight: 600,
|
|
43
|
-
fontSize: 16,
|
|
44
|
-
lineHeight: "22px",
|
|
45
|
-
verticalAlign: "middle"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"&-collapsed": {
|
|
49
|
-
flexDirection: "column-reverse",
|
|
50
|
-
margin: 0,
|
|
51
|
-
padding: layout === "side" ? 12 : 0,
|
|
52
|
-
[`${token.proComponentsCls}-layout-app-icon`]: {
|
|
53
|
-
marginBlockEnd: 8,
|
|
54
|
-
fontSize: 16,
|
|
55
|
-
transition: "font-size 0.2s ease-in-out,color 0.2s ease-in-out"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
[`&${token.antCls}-layout-sider-collapsed`]: { [`${token.proComponentsCls}-sider-logo`]: { padding: "16px 8px" } }
|
|
59
|
-
} };
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
//#endregion
|
|
63
|
-
export { genLogoContentStyle };
|
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
import { BreadcrumbProps } from "../../types/Breadcrumb.js";
|
|
2
|
-
import { DefaultRender } from "../../types/SlotsTypings.js";
|
|
3
|
-
import { ProLayoutConfig } from "../../config/index.js";
|
|
4
|
-
import { FooterToolbarProps } from "../FooterToolbar/props.js";
|
|
5
|
-
import { CSSProperties, ExtractPropTypes, PropType } from "vue";
|
|
6
|
-
import { CustomRender, WithFalse } from "@gx-design-vue/pro-utils";
|
|
7
|
-
import { WaterMarkProps } from "@gx-design-vue/pro-watermark";
|
|
8
|
-
|
|
9
|
-
//#region src/components/PageContainer/props.d.ts
|
|
10
|
-
interface PageContainerLoadingProps {
|
|
11
|
-
spinning?: boolean;
|
|
12
|
-
tip?: string;
|
|
13
|
-
type?: 'blur' | 'default';
|
|
14
|
-
}
|
|
15
|
-
declare const commonPageContainerProps: {
|
|
16
|
-
usePageCard: {
|
|
17
|
-
type: PropType<boolean>;
|
|
18
|
-
default: () => any;
|
|
19
|
-
};
|
|
20
|
-
pageCardProps: PropType<{
|
|
21
|
-
loading?: boolean;
|
|
22
|
-
class?: string;
|
|
23
|
-
style?: CSSProperties;
|
|
24
|
-
bodyStyle: CSSProperties;
|
|
25
|
-
}>;
|
|
26
|
-
pageHeaderStyle: {
|
|
27
|
-
type: PropType<CSSProperties>;
|
|
28
|
-
default: () => any;
|
|
29
|
-
};
|
|
30
|
-
pageContentStyle: {
|
|
31
|
-
type: PropType<CSSProperties>;
|
|
32
|
-
default: () => any;
|
|
33
|
-
};
|
|
34
|
-
pageChildrenContentClass: {
|
|
35
|
-
type: PropType<string | string[]>;
|
|
36
|
-
default: () => any;
|
|
37
|
-
};
|
|
38
|
-
pageChildrenContentStyle: {
|
|
39
|
-
type: PropType<CSSProperties>;
|
|
40
|
-
default: () => any;
|
|
41
|
-
};
|
|
42
|
-
pageHeaderRender: {
|
|
43
|
-
type: PropType<DefaultRender>;
|
|
44
|
-
default: () => any;
|
|
45
|
-
};
|
|
46
|
-
contentWidth: {
|
|
47
|
-
type: PropType<ProLayoutConfig["contentWidth"]>;
|
|
48
|
-
default: () => any;
|
|
49
|
-
};
|
|
50
|
-
breadcrumbRender: {
|
|
51
|
-
type: PropType<WithFalse<(props: BreadcrumbProps) => CustomRender>>;
|
|
52
|
-
default: () => any;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
declare const pageContainerProps: {
|
|
56
|
-
usePageCard: {
|
|
57
|
-
type: PropType<boolean>;
|
|
58
|
-
default: () => any;
|
|
59
|
-
};
|
|
60
|
-
pageCardProps: PropType<{
|
|
61
|
-
loading?: boolean;
|
|
62
|
-
class?: string;
|
|
63
|
-
style?: CSSProperties;
|
|
64
|
-
bodyStyle: CSSProperties;
|
|
65
|
-
}>;
|
|
66
|
-
pageHeaderStyle: {
|
|
67
|
-
type: PropType<CSSProperties>;
|
|
68
|
-
default: () => any;
|
|
69
|
-
};
|
|
70
|
-
pageContentStyle: {
|
|
71
|
-
type: PropType<CSSProperties>;
|
|
72
|
-
default: () => any;
|
|
73
|
-
};
|
|
74
|
-
pageChildrenContentClass: {
|
|
75
|
-
type: PropType<string | string[]>;
|
|
76
|
-
default: () => any;
|
|
77
|
-
};
|
|
78
|
-
pageChildrenContentStyle: {
|
|
79
|
-
type: PropType<CSSProperties>;
|
|
80
|
-
default: () => any;
|
|
81
|
-
};
|
|
82
|
-
pageHeaderRender: {
|
|
83
|
-
type: PropType<DefaultRender>;
|
|
84
|
-
default: () => any;
|
|
85
|
-
};
|
|
86
|
-
contentWidth: {
|
|
87
|
-
type: PropType<ProLayoutConfig["contentWidth"]>;
|
|
88
|
-
default: () => any;
|
|
89
|
-
};
|
|
90
|
-
breadcrumbRender: {
|
|
91
|
-
type: PropType<WithFalse<(props: BreadcrumbProps) => CustomRender>>;
|
|
92
|
-
default: () => any;
|
|
93
|
-
};
|
|
94
|
-
class: PropType<string>;
|
|
95
|
-
style: {
|
|
96
|
-
type: PropType<CSSProperties>;
|
|
97
|
-
default: () => {};
|
|
98
|
-
};
|
|
99
|
-
title: PropType<string>;
|
|
100
|
-
pageChildrenExtraRender: {
|
|
101
|
-
type: PropType<DefaultRender>;
|
|
102
|
-
default: () => any;
|
|
103
|
-
};
|
|
104
|
-
footer: {
|
|
105
|
-
type: PropType<DefaultRender>;
|
|
106
|
-
default: () => any;
|
|
107
|
-
};
|
|
108
|
-
pageHeaderContentRender: {
|
|
109
|
-
type: PropType<DefaultRender>;
|
|
110
|
-
default: () => any;
|
|
111
|
-
};
|
|
112
|
-
fullScreenOnTabsHide: {
|
|
113
|
-
type: PropType<boolean>;
|
|
114
|
-
default: () => any;
|
|
115
|
-
};
|
|
116
|
-
loading: {
|
|
117
|
-
type: PropType<boolean | PageContainerLoadingProps>;
|
|
118
|
-
default: () => boolean;
|
|
119
|
-
};
|
|
120
|
-
onContentFullScreenChange: PropType<(value: boolean) => void>;
|
|
121
|
-
footerToolBarProps: {
|
|
122
|
-
type: PropType<FooterToolbarProps>;
|
|
123
|
-
}; /** @name WaterMarkProps 水印的配置 */
|
|
124
|
-
waterMarkProps: {
|
|
125
|
-
type: PropType<WaterMarkProps | false>;
|
|
126
|
-
default: () => any;
|
|
127
|
-
};
|
|
128
|
-
height: {
|
|
129
|
-
type: PropType<"min" | "max" | "fit">;
|
|
130
|
-
default: () => any;
|
|
131
|
-
};
|
|
132
|
-
};
|
|
133
|
-
type PageContainerPropsType = Partial<ExtractPropTypes<typeof commonPageContainerProps>>;
|
|
134
|
-
interface LayoutPageContainer extends PageContainerPropsType {
|
|
135
|
-
loadingProps?: Omit<PageContainerLoadingProps, 'spinning'>;
|
|
136
|
-
}
|
|
137
|
-
//#endregion
|
|
138
|
-
export { LayoutPageContainer, PageContainerLoadingProps, PageContainerPropsType, commonPageContainerProps, pageContainerProps };
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
//#region src/components/PageContainer/props.ts
|
|
2
|
-
const commonPageContainerProps = {
|
|
3
|
-
usePageCard: {
|
|
4
|
-
type: Boolean,
|
|
5
|
-
default: () => void 0
|
|
6
|
-
},
|
|
7
|
-
pageCardProps: Object,
|
|
8
|
-
pageHeaderStyle: {
|
|
9
|
-
type: Object,
|
|
10
|
-
default: () => void 0
|
|
11
|
-
},
|
|
12
|
-
pageContentStyle: {
|
|
13
|
-
type: Object,
|
|
14
|
-
default: () => void 0
|
|
15
|
-
},
|
|
16
|
-
pageChildrenContentClass: {
|
|
17
|
-
type: [String, Array],
|
|
18
|
-
default: () => void 0
|
|
19
|
-
},
|
|
20
|
-
pageChildrenContentStyle: {
|
|
21
|
-
type: Object,
|
|
22
|
-
default: () => void 0
|
|
23
|
-
},
|
|
24
|
-
pageHeaderRender: {
|
|
25
|
-
type: [
|
|
26
|
-
Object,
|
|
27
|
-
Function,
|
|
28
|
-
Boolean,
|
|
29
|
-
Array
|
|
30
|
-
],
|
|
31
|
-
default: () => void 0
|
|
32
|
-
},
|
|
33
|
-
contentWidth: {
|
|
34
|
-
type: [String, Number],
|
|
35
|
-
default: () => void 0
|
|
36
|
-
},
|
|
37
|
-
breadcrumbRender: {
|
|
38
|
-
type: [
|
|
39
|
-
Object,
|
|
40
|
-
Function,
|
|
41
|
-
Boolean,
|
|
42
|
-
Array
|
|
43
|
-
],
|
|
44
|
-
default: () => void 0
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
const pageContainerProps = {
|
|
48
|
-
class: String,
|
|
49
|
-
style: {
|
|
50
|
-
type: Object,
|
|
51
|
-
default: () => ({})
|
|
52
|
-
},
|
|
53
|
-
title: String,
|
|
54
|
-
pageChildrenExtraRender: {
|
|
55
|
-
type: [
|
|
56
|
-
Object,
|
|
57
|
-
Function,
|
|
58
|
-
Boolean,
|
|
59
|
-
Array
|
|
60
|
-
],
|
|
61
|
-
default: () => void 0
|
|
62
|
-
},
|
|
63
|
-
footer: {
|
|
64
|
-
type: [
|
|
65
|
-
Object,
|
|
66
|
-
Function,
|
|
67
|
-
Boolean,
|
|
68
|
-
Array
|
|
69
|
-
],
|
|
70
|
-
default: () => void 0
|
|
71
|
-
},
|
|
72
|
-
pageHeaderContentRender: {
|
|
73
|
-
type: [
|
|
74
|
-
Object,
|
|
75
|
-
Function,
|
|
76
|
-
Boolean,
|
|
77
|
-
Array
|
|
78
|
-
],
|
|
79
|
-
default: () => void 0
|
|
80
|
-
},
|
|
81
|
-
fullScreenOnTabsHide: {
|
|
82
|
-
type: Boolean,
|
|
83
|
-
default: () => void 0
|
|
84
|
-
},
|
|
85
|
-
loading: {
|
|
86
|
-
type: [Boolean, Object],
|
|
87
|
-
default: () => false
|
|
88
|
-
},
|
|
89
|
-
onContentFullScreenChange: Function,
|
|
90
|
-
footerToolBarProps: { type: Object },
|
|
91
|
-
waterMarkProps: {
|
|
92
|
-
type: [Object, Boolean],
|
|
93
|
-
default: () => void 0
|
|
94
|
-
},
|
|
95
|
-
height: {
|
|
96
|
-
type: String,
|
|
97
|
-
default: () => void 0
|
|
98
|
-
},
|
|
99
|
-
...commonPageContainerProps
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
//#endregion
|
|
103
|
-
export { commonPageContainerProps, pageContainerProps };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as vue115 from "vue";
|
|
2
|
-
import { ProAliasToken } from "@gx-design-vue/pro-provider";
|
|
3
|
-
import * as ant_design_vue_es__util_type5 from "ant-design-vue/es/_util/type";
|
|
4
|
-
|
|
5
|
-
//#region src/components/PageContainer/style/index.d.ts
|
|
6
|
-
type ProPageContainerToken = ProAliasToken & {
|
|
7
|
-
gridContent: string;
|
|
8
|
-
};
|
|
9
|
-
declare function useStyle(componentCls: string): {
|
|
10
|
-
wrapSSR: (node: ant_design_vue_es__util_type5.VueNode) => ant_design_vue_es__util_type5.VueNode;
|
|
11
|
-
hashId: vue115.ComputedRef<string>;
|
|
12
|
-
};
|
|
13
|
-
//#endregion
|
|
14
|
-
export { ProPageContainerToken, useStyle };
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { getTokenLayoutTheme } from "../../../config/index.js";
|
|
2
|
-
import { mergeToken, useStyle as useStyle$1 } from "@gx-design-vue/pro-provider";
|
|
3
|
-
|
|
4
|
-
//#region src/components/PageContainer/style/index.ts
|
|
5
|
-
const ProLayoutPageContainer = (token) => {
|
|
6
|
-
const { layout } = getTokenLayoutTheme(token);
|
|
7
|
-
const pageContainerToken = token.layout?.pageContainer;
|
|
8
|
-
const borderRadius = pageContainerToken?.borderRadius || token.borderRadiusLG;
|
|
9
|
-
const pageContent = `${token.proComponentsCls}-basic-layout-content`;
|
|
10
|
-
return {
|
|
11
|
-
[`${token.proComponentsCls}-basic-layout`]: {
|
|
12
|
-
[`&-content${pageContent}-width`]: { marginInline: "auto" },
|
|
13
|
-
[token.gridContent]: { width: "100%" }
|
|
14
|
-
},
|
|
15
|
-
[token.componentCls]: {
|
|
16
|
-
position: "relative",
|
|
17
|
-
"&-spinning": {
|
|
18
|
-
position: "absolute",
|
|
19
|
-
top: 0,
|
|
20
|
-
left: 0,
|
|
21
|
-
width: "100%",
|
|
22
|
-
height: "100%",
|
|
23
|
-
zIndex: 10,
|
|
24
|
-
borderRadius,
|
|
25
|
-
[`& > ${token.antCls}-spin`]: {
|
|
26
|
-
position: "absolute",
|
|
27
|
-
top: "200px",
|
|
28
|
-
left: "50%",
|
|
29
|
-
transform: "translateX(-50%)"
|
|
30
|
-
},
|
|
31
|
-
"&-content": {
|
|
32
|
-
"&-blur": { filter: "blur(2px)" },
|
|
33
|
-
"&-default": { opacity: .5 }
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"&-children-container": {
|
|
37
|
-
position: "relative",
|
|
38
|
-
margin: layout === "wide" ? 0 : pageContainerToken?.margin || "",
|
|
39
|
-
padding: layout === "wide" ? 0 : pageContainerToken?.padding || "",
|
|
40
|
-
[`&>${token.componentCls}-spinning-content`]: { [`&>${token.antCls}-card`]: { [`${token.antCls}-card-body`]: { padding: token.paddingMD } } }
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
function useStyle(componentCls) {
|
|
46
|
-
return useStyle$1("PageContainer", (token) => {
|
|
47
|
-
return [ProLayoutPageContainer(mergeToken(token, { gridContent: `${token.proComponentsCls}-grid-content` }))];
|
|
48
|
-
}, componentCls);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
//#endregion
|
|
52
|
-
export { useStyle };
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
//#region src/components/PageContainer/style/pageHeader.ts
|
|
2
|
-
const ProLayoutPageHeader = (token) => {
|
|
3
|
-
return {
|
|
4
|
-
[`${token.proComponentsCls}-basic-layout&${token.proComponentsCls}-basic-layout-simple`]: { [`${token.componentCls}`]: { borderBlockEnd: `1px solid ${token.colorSplit}` } },
|
|
5
|
-
[token.componentCls]: {
|
|
6
|
-
background: token.colorBgContainer,
|
|
7
|
-
padding: `${token.paddingLG}px`,
|
|
8
|
-
paddingBlock: `${token.paddingSM}px`,
|
|
9
|
-
"&-has-breadcrumb": { [`${token.componentCls}-content`]: { marginBlockStart: 8 } },
|
|
10
|
-
"&-top": {
|
|
11
|
-
display: "flex",
|
|
12
|
-
alignItems: "center",
|
|
13
|
-
justifyContent: "space-between"
|
|
14
|
-
},
|
|
15
|
-
"&-close": {
|
|
16
|
-
color: token.colorTextDescription,
|
|
17
|
-
fontWeight: token.fontWeightStrong,
|
|
18
|
-
textDecoration: "none",
|
|
19
|
-
background: "transparent",
|
|
20
|
-
borderRadius: token.borderRadiusSM,
|
|
21
|
-
padding: 4,
|
|
22
|
-
cursor: "pointer",
|
|
23
|
-
transition: `color ${token.motionDurationMid}, background-color ${token.motionDurationMid}`,
|
|
24
|
-
"&-x": {
|
|
25
|
-
display: "block",
|
|
26
|
-
fontSize: token.fontSizeLG,
|
|
27
|
-
fontStyle: "normal",
|
|
28
|
-
textAlign: "center",
|
|
29
|
-
textTransform: "none",
|
|
30
|
-
textRendering: "auto"
|
|
31
|
-
},
|
|
32
|
-
"&:hover": {
|
|
33
|
-
color: token.colorIconHover,
|
|
34
|
-
backgroundColor: token.wireframe ? "transparent" : token.colorFillContent,
|
|
35
|
-
textDecoration: "none"
|
|
36
|
-
},
|
|
37
|
-
"&:active": { backgroundColor: token.wireframe ? "transparent" : token.colorFillContentHover }
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
//#endregion
|
|
44
|
-
export { ProLayoutPageHeader };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import * as vue172 from "vue";
|
|
2
|
-
import { PropType } from "vue";
|
|
3
|
-
import * as ant_design_vue_es__util_type12 from "ant-design-vue/es/_util/type";
|
|
4
|
-
|
|
5
|
-
//#region src/components/PageTranstion/index.d.ts
|
|
6
|
-
declare const _default: vue172.DefineComponent<vue172.ExtractPropTypes<{
|
|
7
|
-
disabled: {
|
|
8
|
-
type: PropType<boolean>;
|
|
9
|
-
default: boolean;
|
|
10
|
-
};
|
|
11
|
-
reverse: {
|
|
12
|
-
type: PropType<boolean>;
|
|
13
|
-
default: boolean;
|
|
14
|
-
};
|
|
15
|
-
name: {
|
|
16
|
-
type: PropType<string>;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
direction: PropType<string>;
|
|
20
|
-
}>, () => ant_design_vue_es__util_type12.VueNode, {}, {}, {}, vue172.ComponentOptionsMixin, vue172.ComponentOptionsMixin, {}, string, vue172.PublicProps, Readonly<vue172.ExtractPropTypes<{
|
|
21
|
-
disabled: {
|
|
22
|
-
type: PropType<boolean>;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
reverse: {
|
|
26
|
-
type: PropType<boolean>;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
name: {
|
|
30
|
-
type: PropType<string>;
|
|
31
|
-
default: string;
|
|
32
|
-
};
|
|
33
|
-
direction: PropType<string>;
|
|
34
|
-
}>> & Readonly<{}>, {
|
|
35
|
-
reverse: boolean;
|
|
36
|
-
name: string;
|
|
37
|
-
disabled: boolean;
|
|
38
|
-
}, {}, {}, {}, string, vue172.ComponentProvideOptions, true, {}, any>;
|
|
39
|
-
//#endregion
|
|
40
|
-
export { _default as default };
|