@muraldevkit/ui-toolkit 2.66.0 → 2.66.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.
@@ -4,7 +4,7 @@ interface ElementScrollStyles {
4
4
  styles: AdjustedElementStyle;
5
5
  }
6
6
  export interface AdjustedElementStyle {
7
- maxHeight: string;
7
+ maxHeight?: string;
8
8
  }
9
9
  /**
10
10
  * useBrowserEdgeScroll hook
@@ -117,7 +117,7 @@ export interface MrlPopoverProps {
117
117
  /**
118
118
  * MrlPopover
119
119
  *
120
- * Renders a popover component with alignment relative to a trigger element
120
+ * Renders a popover component with position and alignment relative to a trigger element
121
121
  *
122
122
  * @param {MrlPopoverProps} props - The props for the MrlPopover component
123
123
  * @returns {Element} - rendered MrlPopover component
@@ -11,6 +11,8 @@ interface PopoverWithTriggerProps {
11
11
  kind?: 'inverse' | 'primary';
12
12
  point?: boolean;
13
13
  disableFocusTrap?: boolean;
14
+ scrolling?: boolean;
15
+ position?: MenuPosition;
14
16
  }
15
17
  /**
16
18
  * Demo of a menu with a trigger for stories and testing
@@ -18,5 +20,5 @@ interface PopoverWithTriggerProps {
18
20
  * @param {PopoverWithTriggerProps} props - The props for the menu with trigger
19
21
  * @returns {Element} The menu with trigger demo
20
22
  */
21
- export declare const PopoverWithTrigger: ({ menuAlign, alignment, actionState, onClose, triggerAlignment, spacing, kind, point, hasCloseButton, disableFocusTrap }: PopoverWithTriggerProps) => JSX.Element;
23
+ export declare const PopoverWithTrigger: ({ menuAlign, alignment, actionState, onClose, triggerAlignment, spacing, kind, point, hasCloseButton, disableFocusTrap, scrolling }: PopoverWithTriggerProps) => JSX.Element;
22
24
  export {};
@@ -115,7 +115,7 @@ export declare const colorPictoStoryData: {
115
115
  export declare const animateStoryData: {
116
116
  args: {
117
117
  delay: number;
118
- state: "play" | "stop";
118
+ state: "stop" | "play";
119
119
  };
120
120
  argTypes: {
121
121
  delay: {