@stenajs-webui/panels 22.2.2 → 22.3.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.
@@ -16,5 +16,9 @@ export interface ActionMenuButtonProps extends Omit<PrimaryButtonProps, "variant
16
16
  buttonComponent: typeof PrimaryButton | typeof SecondaryButton | typeof FlatButton;
17
17
  disableArrow?: boolean;
18
18
  buttonRef?: RefObject<HTMLButtonElement | null>;
19
+ /**
20
+ * Use if focus should not be trapped inside the Action Menu.
21
+ * Defaults to false. */
22
+ disableTrapFocus?: boolean;
19
23
  }
20
24
  export declare const ActionMenuButton: React.FC<ActionMenuButtonProps>;