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 {};
|
package/lib/index.d.ts
CHANGED
|
@@ -43,10 +43,6 @@ interface IListProps {
|
|
|
43
43
|
modelName: string;
|
|
44
44
|
}
|
|
45
45
|
interface IListRecordsProps extends IListProps {
|
|
46
|
-
urlFilters?: string;
|
|
47
|
-
defaultFilterValues: {
|
|
48
|
-
[key: string]: any;
|
|
49
|
-
};
|
|
50
46
|
Actions?: (props: any) => JSX.Element;
|
|
51
47
|
}
|
|
52
48
|
|
|
@@ -308,7 +304,7 @@ declare const ResourcesContext: react.Context<{
|
|
|
308
304
|
}>;
|
|
309
305
|
interface ResourcesContextConfig {
|
|
310
306
|
resourcesUrl: string;
|
|
311
|
-
|
|
307
|
+
laodingLogo?: string;
|
|
312
308
|
children: any;
|
|
313
309
|
}
|
|
314
310
|
declare const ResourcesContextProvider: (props: ResourcesContextConfig) => react_jsx_runtime.JSX.Element;
|
|
@@ -341,6 +337,9 @@ interface AppConfigurations {
|
|
|
341
337
|
defaultRowsPerPage: number;
|
|
342
338
|
themeStretch: boolean;
|
|
343
339
|
setThemeLayout?: React.Dispatch<React.SetStateAction<'horizontal' | 'vertical' | 'mini'>>;
|
|
340
|
+
loadingLoago?: string;
|
|
341
|
+
navBarLogo?: string;
|
|
342
|
+
miniNavBarLogo?: string;
|
|
344
343
|
}
|
|
345
344
|
declare const AppConfigurationsContext: react.Context<AppConfigurations>;
|
|
346
345
|
declare const AppConfigurationsContextProvider: (props: any) => react_jsx_runtime.JSX.Element;
|