@muraldevkit/ui-toolkit 4.51.3 → 4.52.0

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.
@@ -23,6 +23,8 @@ export interface MrlMenuItemProps {
23
23
  onMouseOut?: (e?: React.MouseEvent) => void;
24
24
  /** Data-qa attribute for the menu item */
25
25
  dataQa?: string;
26
+ /** Role for the menu item */
27
+ role?: 'menuitem' | 'menuitemcheckbox' | 'menuitemradio';
26
28
  /** If the menu item is selected */
27
29
  selected?: boolean;
28
30
  }
@@ -33,4 +35,4 @@ export interface MrlMenuItemProps {
33
35
  * @param {MrlMenuItemProps} props - The props for the MrlMenuItem component
34
36
  * @returns {Element} - rendered MrlMenuItem component
35
37
  */
36
- export declare function MrlMenuItem({ ariaDescribedBy, children, className, dataQa, disabled, icon, id, onClick, onMouseOut, onMouseOver, selected, ...rest }: MrlMenuItemProps): JSX.Element;
38
+ export declare function MrlMenuItem({ ariaDescribedBy, children, className, dataQa, disabled, icon, id, onClick, onMouseOut, onMouseOver, role, selected, ...rest }: MrlMenuItemProps): JSX.Element;