@simoncomputing/mui-bueno-v2 0.32.5 → 0.33.1

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,34 @@ 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.33.1] - 2026-06-24
15
+
16
+ ### Changed
17
+
18
+ - Theme handling
19
+ - Improved internal merging of light/dark/base themes. As a result, `commonTheme`,`lightTheme`,`darkTheme` have been replaced with `createAppTheme`. To build your app's light and dark theme, use:
20
+ ```
21
+ export const lightTheme = createAppTheme('light', lightThemeOverrides);
22
+ export const darkTheme = createAppTheme('dark', darkThemeOverrides);
23
+ ```
24
+ or
25
+ ```
26
+ export const lightTheme = createAppTheme('light', themeOverrides);
27
+ export const darkTheme = createAppTheme('dark', themeOverrides);
28
+ ```
29
+ or
30
+ ```
31
+ export const lightTheme = createAppTheme('light');
32
+ export const darkTheme = createAppTheme('dark');
33
+ ```
34
+
35
+ ## [0.32.6] - 2026-06-24
36
+
37
+ ### Changed
38
+
39
+ - `IconTooltip`, `HelpTooltip`, `Table`, `PaginatedTable`
40
+ - changed cursor from 'pointer' to 'default' for tooltips to avoid user confusion since the icon is not clickable
41
+
14
42
  ## [0.32.5] - 2026-06-23
15
43
 
16
44
  ### Changed
@@ -1,7 +1,7 @@
1
1
  import { IconTooltipProps } from '../IconTooltip/IconTooltip';
2
2
  export type HelpTooltipProps = Omit<IconTooltipProps, 'icon'>;
3
3
  /**
4
- * Basic Help Tooltip. Displays helpful message when user hovers over (?) icon.
4
+ * Basic Help Tooltip that displays helpful message when user hovers over (?) icon.
5
5
  */
6
6
  export declare function HelpTooltip(props: HelpTooltipProps): import("react/jsx-runtime").JSX.Element;
7
7
  export default HelpTooltip;
@@ -6,9 +6,10 @@ export type IconTooltipProps = {
6
6
  */
7
7
  children?: string;
8
8
  icon: typeof SvgIcon;
9
+ iconText?: string;
9
10
  } & SvgIconProps;
10
11
  /**
11
- * Basic Icon Tooltip. Displays helpful message when user hovers over icon.
12
+ * Icon that displays a tooltip when hovered.
12
13
  */
13
- export declare function IconTooltip({ icon: Icon, children, ...rest }: IconTooltipProps): import("react/jsx-runtime").JSX.Element | null;
14
+ export declare function IconTooltip({ icon: Icon, children, sx, ...rest }: IconTooltipProps): import("react/jsx-runtime").JSX.Element | null;
14
15
  export default IconTooltip;