@adminui-dev/layout 1.0.9 → 1.1.1
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -117,6 +117,7 @@ interface RootLayoutProps<T> extends LayoutProps {
|
|
|
117
117
|
theme?: Theme;
|
|
118
118
|
locale?: string;
|
|
119
119
|
localeMessages?: Record<string, T>;
|
|
120
|
+
disabledStorageConfig?: boolean;
|
|
120
121
|
themeSkins?: ThemeSkin[];
|
|
121
122
|
}
|
|
122
123
|
interface ContainerProps extends LayoutProps {
|
|
@@ -126,6 +127,7 @@ interface ContainerProps extends LayoutProps {
|
|
|
126
127
|
hideTitle?: boolean;
|
|
127
128
|
hideBreadcrumb?: boolean;
|
|
128
129
|
hideFooter?: boolean;
|
|
130
|
+
title?: string;
|
|
129
131
|
transparent?: boolean;
|
|
130
132
|
children?: React.ReactNode;
|
|
131
133
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ interface RootLayoutProps<T> extends LayoutProps {
|
|
|
121
121
|
theme?: Theme;
|
|
122
122
|
locale?: string;
|
|
123
123
|
localeMessages?: Record<string, T>;
|
|
124
|
+
disabledStorageConfig?: boolean;
|
|
124
125
|
themeSkins?: ThemeSkin[];
|
|
125
126
|
}
|
|
126
127
|
interface ContainerProps extends LayoutProps {
|
|
@@ -130,6 +131,7 @@ interface ContainerProps extends LayoutProps {
|
|
|
130
131
|
hideTitle?: boolean;
|
|
131
132
|
hideBreadcrumb?: boolean;
|
|
132
133
|
hideFooter?: boolean;
|
|
134
|
+
title?: string;
|
|
133
135
|
transparent?: boolean;
|
|
134
136
|
children?: React.ReactNode;
|
|
135
137
|
}
|