@foodpilot/foods 0.1.5 → 0.1.6

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.
@@ -1,4 +1,3 @@
1
- import * as BaseTemplate from "./BaseTemplate";
2
- import * as Footer from "./Footer";
3
- import * as Navbar from "./Navbar";
4
- export { BaseTemplate, Footer, Navbar };
1
+ export * from "./BaseTemplate";
2
+ export * from "./Footer";
3
+ export * from "./Navbar";
@@ -2,8 +2,8 @@
2
2
  export declare const CustomToggleButton: import("@emotion/styled").StyledComponent<import("@mui/material").ToggleButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
3
3
  ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
4
4
  }, "color" | "className" | "style" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "fullWidth" | "size" | "value" | "onChange" | "onClick" | "selected"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
5
- export type TertiaryToggleButtonsProps = {
5
+ export type TertiaryToggleButtonProps = {
6
6
  choices: string[];
7
7
  onClick?: (index: number) => void;
8
8
  };
9
- export declare const TertiaryToggleButtons: (props: TertiaryToggleButtonsProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const TertiaryToggleButton: (props: TertiaryToggleButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,2 @@
1
- import * as Button from "./Button";
2
- import * as TertiaryToggleButton from "./TertiaryToggleButton";
3
- export { Button, TertiaryToggleButton };
1
+ export * from "./Button";
2
+ export * from "./TertiaryToggleButton";
@@ -16,4 +16,4 @@ export type FormBaseProps = {
16
16
  icon: JSX.Element;
17
17
  pages: Page[];
18
18
  };
19
- export declare const FormBase: (props: FormBaseProps) => import("react/jsx-runtime").JSX.Element;
19
+ export declare const FormBase: (props: FormBaseProps) => JSX.Element;
@@ -1,2 +1 @@
1
- import * as FormBase from "./FormBase";
2
- export { FormBase };
1
+ export * from "./FormBase";