@adminui-dev/layout 1.1.7 → 1.1.9
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/components/typings.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ type OutletContainer = {
|
|
|
23
23
|
title: string;
|
|
24
24
|
breadcrumbData: any[];
|
|
25
25
|
footer?: React.ReactNode;
|
|
26
|
+
toolbar?: React.ReactNode;
|
|
26
27
|
};
|
|
27
28
|
interface LayoutConfig {
|
|
28
29
|
layoutType?: LayoutType;
|
|
@@ -35,6 +36,7 @@ interface LayoutConfig {
|
|
|
35
36
|
primaryColor?: string;
|
|
36
37
|
highlight?: boolean;
|
|
37
38
|
flated?: boolean;
|
|
39
|
+
noneHeader?: boolean;
|
|
38
40
|
menuIconSize?: number;
|
|
39
41
|
compact?: boolean;
|
|
40
42
|
largeBrand?: boolean;
|
|
@@ -138,5 +140,6 @@ interface ContainerProps extends LayoutProps {
|
|
|
138
140
|
title?: string;
|
|
139
141
|
transparent?: boolean;
|
|
140
142
|
children?: React.ReactNode;
|
|
143
|
+
styles?: RootStyles;
|
|
141
144
|
}
|
|
142
145
|
export type { LayoutProps, BaseLayoutProps, RootLayoutProps, ContainerProps, ContainerMode, ContainerStretch, Theme, LayoutTheme, LayoutType, LayoutConfig, Language, LocaleMessageData, UserInfo, BrandInfo, ConfigStateDispatcher, ConfigActionDispatcher, SkinType, ThemeSkin, MenuData, Position, AvatarPosition, BreadcrumbIconVisible, OutletContainer };
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ type OutletContainer = {
|
|
|
27
27
|
title: string;
|
|
28
28
|
breadcrumbData: any[];
|
|
29
29
|
footer?: React.ReactNode;
|
|
30
|
+
toolbar?: React.ReactNode;
|
|
30
31
|
};
|
|
31
32
|
interface LayoutConfig {
|
|
32
33
|
layoutType?: LayoutType;
|
|
@@ -39,6 +40,7 @@ interface LayoutConfig {
|
|
|
39
40
|
primaryColor?: string;
|
|
40
41
|
highlight?: boolean;
|
|
41
42
|
flated?: boolean;
|
|
43
|
+
noneHeader?: boolean;
|
|
42
44
|
menuIconSize?: number;
|
|
43
45
|
compact?: boolean;
|
|
44
46
|
largeBrand?: boolean;
|
|
@@ -142,6 +144,7 @@ interface ContainerProps extends LayoutProps {
|
|
|
142
144
|
title?: string;
|
|
143
145
|
transparent?: boolean;
|
|
144
146
|
children?: React.ReactNode;
|
|
147
|
+
styles?: RootStyles;
|
|
145
148
|
}
|
|
146
149
|
|
|
147
150
|
declare function defineConfig(config: LayoutConfig): LayoutConfig;
|