identity-admin-ui 1.11.6 → 1.11.9

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.
@@ -0,0 +1,6 @@
1
+ import { ISchemaObject } from '../../context';
2
+ export declare function FilterChips({ schema, }: {
3
+ schema: {
4
+ [key: string]: ISchemaObject;
5
+ };
6
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,13 @@
1
+ import { ISchemaObject } from '../../context';
2
+ export interface IFilterValue {
3
+ filterValueKey: string;
4
+ filterValueTitle: string;
5
+ }
6
+ export interface IFilterChip {
7
+ fieldKey: string;
8
+ fieldTitle: string;
9
+ filterValues: IFilterValue[];
10
+ }
11
+ export declare function getFilterChips(searchParams: URLSearchParams, schema: {
12
+ [key: string]: ISchemaObject;
13
+ }): IFilterChip[];
@@ -1,7 +1,7 @@
1
1
  import { ListParams } from '../../../components/dataGrid/GridTypes';
2
2
  import IResource from '../../../context/Resource';
3
3
  interface IUrlFilterForShow {
4
- defaultFilters: string | undefined;
4
+ defaultFilters?: string | undefined;
5
5
  resource: IResource;
6
6
  searchParams: URLSearchParams;
7
7
  }
@@ -2,4 +2,5 @@ export default class StringUtils {
2
2
  static convertCamelCaseToWord(camelCaseWord: string): string;
3
3
  static lowerCaseFirstLetter(word: string): string;
4
4
  static upperCaseFirstLetter(word: string): string;
5
+ static checkRefId(word: string): boolean;
5
6
  }
@@ -19,6 +19,6 @@ export interface ICreateEdit extends INextpreviousExtras {
19
19
  BreadCrumbLinks?: (props: any) => TLink[];
20
20
  disableCreateNewButtonOnReference?: boolean;
21
21
  keepFullWidthElements?: boolean;
22
- defaultFilters: string | undefined;
22
+ defaultFilters?: string | undefined;
23
23
  }
24
24
  export default function CreateEdit(props: ICreateEdit): import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -527,7 +527,7 @@ interface ICreateEdit extends INextpreviousExtras {
527
527
  BreadCrumbLinks?: (props: any) => TLink[];
528
528
  disableCreateNewButtonOnReference?: boolean;
529
529
  keepFullWidthElements?: boolean;
530
- defaultFilters: string | undefined;
530
+ defaultFilters?: string | undefined;
531
531
  }
532
532
  declare function CreateEdit(props: ICreateEdit): react_jsx_runtime.JSX.Element;
533
533
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.11.6",
3
+ "version": "1.11.9",
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",