react-magma-dom 4.11.0-next.23 → 4.11.0-next.25

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.
@@ -21,6 +21,10 @@ export interface BannerProps extends AlertProps {
21
21
  * @default false
22
22
  */
23
23
  isDismissible?: boolean;
24
+ /**
25
+ * Reference to the dismiss button element
26
+ */
27
+ dismissibleButtonRef?: React.Ref<HTMLButtonElement>;
24
28
  isInverse?: boolean;
25
29
  }
26
30
  export declare const Banner: React.ForwardRefExoticComponent<BannerProps & React.RefAttributes<HTMLDivElement>>;
@@ -112,5 +112,4 @@ export interface PopoverContextInterface {
112
112
  }
113
113
  export declare const PopoverContext: React.Context<PopoverContextInterface>;
114
114
  export declare function hasActiveElementsChecker(ref: any): boolean;
115
- export declare function isElementInteractive(element: EventTarget | null): boolean;
116
115
  export declare const Popover: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<HTMLDivElement>>;