@muraldevkit/ui-toolkit 4.61.4 → 4.62.0-dev-NO0T.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.
@@ -7,7 +7,7 @@ export interface MrlMenuProps {
7
7
  /** Children to be rendered within the menu component*/
8
8
  children: React.ReactNode;
9
9
  /** Event to close the menu */
10
- clickOutsideEvent?: 'mouseup' | 'mousedown' | 'click';
10
+ clickOutsideEvent?: 'mousedown' | 'mouseup' | 'click';
11
11
  /**
12
12
  * Enables closing the menu when scrolling. Default is false.
13
13
  *
@@ -21,7 +21,7 @@ type UseMrlPopoverEventHandlersReturn = {
21
21
  hideMenuHover: (e: MouseEvent) => void;
22
22
  showMenuHover: () => void;
23
23
  toggleMenuKey: (e: KeyboardEvent) => void;
24
- toggleMenuMouse: () => void;
24
+ toggleMenuTrigger: () => void;
25
25
  };
26
26
  /**
27
27
  * Creates all of the required event handlers for the MrlPopover component