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.
@@ -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
- Logo?: (props: any) => JSX.Element;
16
+ laodingLogo?: string;
17
17
  children: any;
18
18
  }
19
19
  declare const ResourcesContextProvider: (props: ResourcesContextConfig) => import("react/jsx-runtime").JSX.Element;
@@ -6,9 +6,5 @@ export interface IListProps {
6
6
  modelName: string;
7
7
  }
8
8
  export interface IListRecordsProps extends IListProps {
9
- urlFilters?: string;
10
- defaultFilterValues: {
11
- [key: string]: any;
12
- };
13
9
  Actions?: (props: any) => JSX.Element;
14
10
  }
@@ -0,0 +1,3 @@
1
+ export declare function getFilterValues(fieldObject: any, field: string, defaultValuesObject: {
2
+ [key: string]: any;
3
+ }, searchParams: any): void;
@@ -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
- Logo?: (props: any) => JSX.Element;
5
+ loadingLogo?: string;
7
6
  };
8
- export default function LoadingScreen({ isDashboard, Logo, ...other }: Props): import("react/jsx-runtime").JSX.Element;
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
- Logo?: (props: any) => JSX.Element;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",