@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 +19 -0
- package/dist/components/Tooltips/HelpTooltip/HelpTooltip.d.ts +7 -0
- package/dist/components/Tooltips/IconTooltip/IconTooltip.d.ts +19 -0
- package/dist/index.cjs.js +89 -89
- package/dist/index.d.ts +4 -2
- package/dist/index.es.js +825 -808
- package/dist/index.umd.js +90 -90
- package/package.json +1 -1
- package/dist/components/HelpTooltip/HelpTooltip.d.ts +0 -17
package/dist/index.d.ts
CHANGED
|
@@ -133,8 +133,10 @@ export { Spacer } from './components/Spacer/Spacer';
|
|
|
133
133
|
export type { SpacerProps } from './components/Spacer/Spacer';
|
|
134
134
|
export { TextIcon } from './components/TextIcon/TextIcon';
|
|
135
135
|
export type { TextIconProps } from './components/TextIcon/TextIcon';
|
|
136
|
-
export {
|
|
137
|
-
export type {
|
|
136
|
+
export { IconTooltip } from './components/Tooltips/IconTooltip/IconTooltip';
|
|
137
|
+
export type { IconTooltipProps } from './components/Tooltips/IconTooltip/IconTooltip';
|
|
138
|
+
export { HelpTooltip } from './components/Tooltips/HelpTooltip/HelpTooltip';
|
|
139
|
+
export type { HelpTooltipProps } from './components/Tooltips/HelpTooltip/HelpTooltip';
|
|
138
140
|
export { buildTableDiff } from './components/Table/DiffTable/utils';
|
|
139
141
|
export { buildDiffData } from './components/Table/DiffTable/utils';
|
|
140
142
|
export { baseCitationTableColumns } from './components/Form/Inputs/CitationField/CitationManager/CitationTable';
|