@muraldevkit/ui-toolkit 1.30.1 → 1.32.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.
@@ -1,6 +1,6 @@
1
1
  import { ReactElement } from 'react';
2
2
  import { AttrsObject } from '../../../utils';
3
- import { MrlTooltipAnchor, MrlTooltipPosition, MrlTooltipState } from '../constants';
3
+ import { MrlTooltipAnchor, MrlTooltipPosition } from '../constants';
4
4
  import './MrlTooltipContent.global.scss';
5
5
  interface MrlTooltipContentProps {
6
6
  /**
@@ -19,10 +19,6 @@ interface MrlTooltipContentProps {
19
19
  id: string;
20
20
  /** The placement of the tooltip in relation to its trigger */
21
21
  position: MrlTooltipPosition;
22
- /**
23
- * Changes the state of the tooltip based on user actions.
24
- */
25
- state?: MrlTooltipState;
26
22
  /** The tooltip content to display */
27
23
  text: string;
28
24
  }