identity-admin-ui 1.8.44 → 1.9.1

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.
@@ -131,5 +131,6 @@ export interface ISchemaObject {
131
131
  [key: string]: ISchemaObject;
132
132
  };
133
133
  isClickable?: boolean;
134
+ multipleInFilter?: boolean;
134
135
  }
135
136
  export {};
@@ -1,3 +1,6 @@
1
+ import { ISchemaObject } from '../context';
1
2
  export declare function getFilterValues(fieldObject: any, field: string, defaultValuesObject: {
2
3
  [key: string]: any;
3
- }, searchParams: any): void;
4
+ }, searchParams: any, schema: {
5
+ [key: string]: ISchemaObject;
6
+ }): void;
package/lib/index.d.ts CHANGED
@@ -249,6 +249,7 @@ interface ISchemaObject {
249
249
  [key: string]: ISchemaObject;
250
250
  };
251
251
  isClickable?: boolean;
252
+ multipleInFilter?: boolean;
252
253
  }
253
254
 
254
255
  type ResourceResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.8.44",
3
+ "version": "1.9.1",
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",