@muraldevkit/ui-toolkit 4.54.0 → 4.55.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.
@@ -39,6 +39,8 @@ interface MrlTooltipProps {
39
39
  tooltipClass?: string;
40
40
  /** A class to be applied ot the tooltip content */
41
41
  tooltipContentClass?: string;
42
+ /** A custom render function to render the tooltip content */
43
+ customRender?: (text?: string) => React.ReactNode;
42
44
  }
43
45
  /**
44
46
  * MrlTooltip Component
@@ -28,6 +28,8 @@ interface MrlTooltipContentProps {
28
28
  text: string;
29
29
  /** A class to be applied ot the tooltip content */
30
30
  tooltipContentClass?: string;
31
+ /** A custom render function to render the tooltip content */
32
+ customRender?: (text?: string) => React.ReactNode;
31
33
  }
32
34
  /**
33
35
  * MrlTooltipContent Component