identity-admin-ui 1.0.0 → 1.1.0
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/lib/cjs/index.js +2 -2
- package/lib/cjs/types/context/AppConfigurationsContext.d.ts +3 -0
- package/lib/cjs/types/context/ResourcesContext.d.ts +1 -1
- package/lib/cjs/types/pages/LoadingScreen.d.ts +2 -3
- package/lib/esm/index.js +1 -1
- package/lib/esm/types/context/AppConfigurationsContext.d.ts +3 -0
- package/lib/esm/types/context/ResourcesContext.d.ts +1 -1
- package/lib/esm/types/pages/LoadingScreen.d.ts +2 -3
- package/lib/index.d.ts +4 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ declare const ResourcesContext: react.Context<{
|
|
|
308
308
|
}>;
|
|
309
309
|
interface ResourcesContextConfig {
|
|
310
310
|
resourcesUrl: string;
|
|
311
|
-
|
|
311
|
+
laodingLogo?: string;
|
|
312
312
|
children: any;
|
|
313
313
|
}
|
|
314
314
|
declare const ResourcesContextProvider: (props: ResourcesContextConfig) => react_jsx_runtime.JSX.Element;
|
|
@@ -341,6 +341,9 @@ interface AppConfigurations {
|
|
|
341
341
|
defaultRowsPerPage: number;
|
|
342
342
|
themeStretch: boolean;
|
|
343
343
|
setThemeLayout?: React.Dispatch<React.SetStateAction<'horizontal' | 'vertical' | 'mini'>>;
|
|
344
|
+
loadingLoago?: string;
|
|
345
|
+
navBarLogo?: string;
|
|
346
|
+
miniNavBarLogo?: string;
|
|
344
347
|
}
|
|
345
348
|
declare const AppConfigurationsContext: react.Context<AppConfigurations>;
|
|
346
349
|
declare const AppConfigurationsContextProvider: (props: any) => react_jsx_runtime.JSX.Element;
|