identity-admin-ui 1.11.26 → 1.11.28

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.
@@ -57,4 +57,8 @@ export interface ShowRecordProps extends INextpreviousExtras {
57
57
  */
58
58
  defaultFilters?: string;
59
59
  showFilterChips?: boolean;
60
+ /**
61
+ * An optional flag to disable default actions like edit.
62
+ */
63
+ hideHeaderBreadcrumbs?: boolean;
60
64
  }
@@ -21,5 +21,6 @@ export interface ICreateEdit extends INextpreviousExtras {
21
21
  keepFullWidthElements?: boolean;
22
22
  defaultFilters?: string | undefined;
23
23
  showFilterChips?: boolean;
24
+ hideHeaderBreadcrumbs?: boolean;
24
25
  }
25
26
  export default function CreateEdit(props: ICreateEdit): import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -572,6 +572,10 @@ interface ShowRecordProps extends INextpreviousExtras {
572
572
  */
573
573
  defaultFilters?: string;
574
574
  showFilterChips?: boolean;
575
+ /**
576
+ * An optional flag to disable default actions like edit.
577
+ */
578
+ hideHeaderBreadcrumbs?: boolean;
575
579
  }
576
580
 
577
581
  /**
@@ -614,6 +618,7 @@ interface ICreateEdit extends INextpreviousExtras {
614
618
  keepFullWidthElements?: boolean;
615
619
  defaultFilters?: string | undefined;
616
620
  showFilterChips?: boolean;
621
+ hideHeaderBreadcrumbs?: boolean;
617
622
  }
618
623
  declare function CreateEdit(props: ICreateEdit): react_jsx_runtime.JSX.Element;
619
624
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.11.26",
3
+ "version": "1.11.28",
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",