@simoncomputing/mui-bueno-v2 0.32.2 → 0.32.4

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.
package/CHANGELOG.md CHANGED
@@ -11,6 +11,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  - Minor increment --> singlular/minor changes. Minimal breaking changes.
12
12
  - Patch increment --> singlular/minor changes. Zero breaking changes.
13
13
 
14
+ ## [0.32.4] - 2026-06-23
15
+
16
+ ### Added
17
+
18
+ - `IconTooltip`
19
+ - simple icon that shows tooltip on hover. Same as `HelpTooltip` but allows customization of the icon.
20
+
21
+ ### Changed
22
+
23
+ - `HelpTooltip`
24
+ - updated to use `IconTooltip` internally. No user-visible behavior changes are expected.
25
+
26
+ ## [0.32.3] - 2026-06-23
27
+
28
+ ### Changed
29
+
30
+ - `DiffProvider`
31
+ - improved stability
32
+
14
33
  ## [0.32.2] - 2026-06-23
15
34
 
16
35
  ### Added
@@ -0,0 +1,7 @@
1
+ import { IconTooltipProps } from '../IconTooltip/IconTooltip';
2
+ export type HelpTooltipProps = Omit<IconTooltipProps, 'icon'>;
3
+ /**
4
+ * Basic Help Tooltip. Displays helpful message when user hovers over (?) icon.
5
+ */
6
+ export declare function HelpTooltip(props: HelpTooltipProps): import("react/jsx-runtime").JSX.Element;
7
+ export default HelpTooltip;
@@ -0,0 +1,19 @@
1
+ import { SvgIcon } from '@mui/material';
2
+ export type IconTooltipProps = {
3
+ /**
4
+ * Color of the tooltip (?) icon
5
+ *
6
+ * Note: Make sure to account for dark mode.
7
+ */
8
+ color?: string;
9
+ /**
10
+ * Text that will display in the tooltip when hovering over the (?) icon.
11
+ */
12
+ children?: string;
13
+ icon: typeof SvgIcon;
14
+ };
15
+ /**
16
+ * Basic Icon Tooltip. Displays helpful message when user hovers over icon.
17
+ */
18
+ export declare function IconTooltip({ icon: Icon, color, children }: IconTooltipProps): import("react/jsx-runtime").JSX.Element | null;
19
+ export default IconTooltip;