@muraldevkit/ui-toolkit 2.67.1 → 2.67.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.
@@ -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: {
@@ -52,8 +52,5 @@ Pointing devices that can hover, but for which doing so is inconvenient and not
52
52
  * @param {MrlTooltipProps} props - The props of the component
53
53
  * @returns {HTMLElement} a configured Tooltip component
54
54
  */
55
- export declare const MrlTooltip: {
56
- (props: MrlTooltipProps): ReactElement;
57
- displayName: string;
58
- };
55
+ export declare const MrlTooltip: React.MemoExoticComponent<(props: MrlTooltipProps) => ReactElement>;
59
56
  export {};
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ /**
3
+ * Function to recursively extract all text content from children
4
+ *
5
+ * @param children - the children of the component
6
+ * @returns the combined text content of the children
7
+ */
8
+ export declare const extractTextContent: (children: React.ReactNode) => string;