@isettingkit/business-rules 2.2.13 → 2.2.15

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.
@@ -259,6 +259,7 @@ export declare interface IDropdownMenu {
259
259
  headerPath?: string;
260
260
  links: TLinkItem[];
261
261
  onClick: () => void;
262
+ onBeforeNavigate?: (to: string, link: TLinkItem) => Promise<boolean> | boolean;
262
263
  title: string;
263
264
  activeId?: string;
264
265
  }
@@ -267,6 +268,7 @@ export declare interface IDropdownMenuContainer {
267
268
  collapseOnNavigate?: boolean;
268
269
  defaultOpenId?: string | null;
269
270
  groups: IDropdownMenuGroup[];
271
+ onBeforeNavigate?: (to: string, link: TLinkItem) => Promise<boolean> | boolean;
270
272
  }
271
273
 
272
274
  export declare interface IDropdownMenuGroup {