@foodpilot/foods 0.3.85 → 0.3.87

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.
@@ -30,5 +30,5 @@ interface RichTextEditorProps {
30
30
  * - Text formatting synced with cursor position using tiptap observables
31
31
  * - Placeholder support
32
32
  */
33
- export default function RichTextEditor({ onChange, displayOutput, placeholder, initialContent }: RichTextEditorProps): JSX.Element | null;
33
+ export declare const RichTextEditor: (props: RichTextEditorProps) => JSX.Element | null;
34
34
  export {};
@@ -0,0 +1,3 @@
1
+ import { TooltipProps } from '@mui/material/Tooltip';
2
+
3
+ export declare const FoodsTooltip: import('@emotion/styled').StyledComponent<TooltipProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
@@ -1 +1 @@
1
- export { StyledTooltip } from './StyledTooltip';
1
+ export * from './FoodsTooltip';
@@ -28,3 +28,5 @@ export * from './Tabs';
28
28
  export * from './Text';
29
29
  export * from './Treeview';
30
30
  export * from './ComparisonBlock';
31
+ export * from './Tooltip';
32
+ export * from './RichTextEditor';