identity-admin-ui 1.0.0 → 1.2.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/helpers/CrudHelper/List/ListProps.d.ts +0 -4
- package/lib/cjs/types/helpers/FilterValues.d.ts +3 -0
- package/lib/cjs/types/helpers/SubmitUrlFilter.d.ts +1 -0
- package/lib/cjs/types/pages/LoadingScreen.d.ts +2 -3
- package/lib/esm/index.js +2 -2
- package/lib/esm/types/context/AppConfigurationsContext.d.ts +3 -0
- package/lib/esm/types/context/ResourcesContext.d.ts +1 -1
- package/lib/esm/types/helpers/CrudHelper/List/ListProps.d.ts +0 -4
- package/lib/esm/types/helpers/FilterValues.d.ts +3 -0
- package/lib/esm/types/helpers/SubmitUrlFilter.d.ts +1 -0
- package/lib/esm/types/pages/LoadingScreen.d.ts +2 -3
- package/lib/index.d.ts +4 -5
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ interface AppConfigurations {
|
|
|
6
6
|
defaultRowsPerPage: number;
|
|
7
7
|
themeStretch: boolean;
|
|
8
8
|
setThemeLayout?: React.Dispatch<React.SetStateAction<'horizontal' | 'vertical' | 'mini'>>;
|
|
9
|
+
loadingLoago?: string;
|
|
10
|
+
navBarLogo?: string;
|
|
11
|
+
miniNavBarLogo?: string;
|
|
9
12
|
}
|
|
10
13
|
declare const AppConfigurationsContext: import("react").Context<AppConfigurations>;
|
|
11
14
|
declare const AppConfigurationsContextProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,7 +13,7 @@ declare const ResourcesContext: import("react").Context<{
|
|
|
13
13
|
}>;
|
|
14
14
|
export interface ResourcesContextConfig {
|
|
15
15
|
resourcesUrl: string;
|
|
16
|
-
|
|
16
|
+
laodingLogo?: string;
|
|
17
17
|
children: any;
|
|
18
18
|
}
|
|
19
19
|
declare const ResourcesContextProvider: (props: ResourcesContextConfig) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getUrlFilters(data: any, schema: any, scopeKey: string | undefined): string;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { SxProps } from '@mui/material';
|
|
3
2
|
type Props = {
|
|
4
3
|
isDashboard?: boolean;
|
|
5
4
|
sx?: SxProps;
|
|
6
|
-
|
|
5
|
+
loadingLogo?: string;
|
|
7
6
|
};
|
|
8
|
-
export default function LoadingScreen({ isDashboard,
|
|
7
|
+
export default function LoadingScreen({ isDashboard, loadingLogo, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export {};
|