@muraldevkit/ui-toolkit 4.65.3-dev-qUMr.1 → 4.65.3

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.
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ export interface MrlPopoverScrollContainerProps {
3
+ /** class names for the scrollable wrapper */
4
+ className: string;
5
+ /** inline styles for the scrollable wrapper */
6
+ style: React.CSSProperties;
7
+ /** popover content to render inside the scrollable wrapper */
8
+ children: React.ReactNode;
9
+ }
10
+ /**
11
+ * Scrollable wrapper for the popover content.
12
+ *
13
+ * @param {MrlPopoverScrollContainerProps} props - the component props
14
+ * @returns the rendered scrollable popover content wrapper
15
+ */
16
+ export declare function MrlPopoverScrollContainer({ className, style, children }: MrlPopoverScrollContainerProps): JSX.Element;