@muraldevkit/ui-toolkit 4.5.1 → 4.5.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.
@@ -80,7 +80,7 @@ export declare const colorPictoStoryData: {
80
80
  export declare const animateStoryData: {
81
81
  args: {
82
82
  delay: number;
83
- state: "play" | "stop";
83
+ state: "stop" | "play";
84
84
  };
85
85
  argTypes: {
86
86
  delay: {
@@ -42,6 +42,8 @@ interface MrlTooltipProps {
42
42
  text: string;
43
43
  /** A custom class selector to be applied to the tooltip wrapper */
44
44
  tooltipClass?: string;
45
+ /** A class to be applied ot the tooltip content */
46
+ tooltipContentClass?: string;
45
47
  }
46
48
  /**
47
49
  * MrlTooltip Component
@@ -27,6 +27,8 @@ interface MrlTooltipContentProps {
27
27
  position: MrlTooltipPosition;
28
28
  /** The tooltip content to display */
29
29
  text: string;
30
+ /** A class to be applied ot the tooltip content */
31
+ tooltipContentClass?: string;
30
32
  }
31
33
  /**
32
34
  * MrlTooltipContent Component