identity-admin-ui 1.1.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,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;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.1.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",