@simoncomputing/mui-bueno-v2 0.32.3 → 0.32.5
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 +22 -0
- package/dist/components/Table/Table.d.ts +4 -4
- package/dist/components/Tooltips/HelpTooltip/HelpTooltip.d.ts +7 -0
- package/dist/components/Tooltips/IconTooltip/IconTooltip.d.ts +14 -0
- package/dist/index.cjs.js +89 -89
- package/dist/index.d.ts +4 -2
- package/dist/index.es.js +248 -244
- package/dist/index.umd.js +90 -90
- package/package.json +1 -1
- package/dist/components/HelpTooltip/HelpTooltip.d.ts +0 -17
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export type HelpTooltipProps = {
|
|
2
|
-
/**
|
|
3
|
-
* Color of the tooltip (?) icon
|
|
4
|
-
*
|
|
5
|
-
* Note: Make sure to account for dark mode.
|
|
6
|
-
*/
|
|
7
|
-
color?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Text that will display in the tooltip when hovering over the (?) icon.
|
|
10
|
-
*/
|
|
11
|
-
children?: string;
|
|
12
|
-
};
|
|
13
|
-
/**
|
|
14
|
-
* Basic Help Tooltip. Displays helpful message when user hovers over (?) icon.
|
|
15
|
-
*/
|
|
16
|
-
export declare function HelpTooltip({ color, children }: HelpTooltipProps): import("react/jsx-runtime").JSX.Element | null;
|
|
17
|
-
export default HelpTooltip;
|