@foodpilot/foods 2.2.7 → 2.2.8

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.
@@ -11,30 +11,4 @@ export type FormAccordionContent = {
11
11
  export type FormAccordionProps = {
12
12
  pages: FormAccordionContent[];
13
13
  };
14
- export declare const StyledFormAccordion: import('@emotion/styled').StyledComponent<{
15
- children: NonNullable<React.ReactNode>;
16
- classes?: Partial<import('@mui/material').AccordionClasses>;
17
- defaultExpanded?: boolean;
18
- disabled?: boolean;
19
- disableGutters?: boolean;
20
- expanded?: boolean;
21
- onChange?: (event: React.SyntheticEvent, expanded: boolean) => void;
22
- sx?: import('@mui/system').SxProps<import('@mui/material').Theme>;
23
- TransitionComponent?: React.JSXElementConstructor<import('@mui/material/transitions').TransitionProps & {
24
- children?: React.ReactElement<unknown, any>;
25
- }>;
26
- TransitionProps?: import('@mui/material/transitions').TransitionProps;
27
- } & import('@mui/material').AccordionSlotsAndSlotProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "onChange"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
28
- ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
29
- }, "children" | "onChange" | "sx" | "TransitionComponent" | "TransitionProps" | keyof import('@mui/material/OverridableComponent').CommonProps | "variant" | "elevation" | "disabled" | "expanded" | "square" | "disableGutters" | "defaultExpanded" | keyof import('@mui/material').AccordionSlotsAndSlotProps> & {
30
- theme?: import('@emotion/react').Theme;
31
- }, {}, {}>;
32
- export declare const StyledFormAccordionSummary: import('@emotion/styled').StyledComponent<import('@mui/material').AccordionSummaryOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
33
- ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
34
- }, "className" | "classes" | "style" | "tabIndex" | "children" | "sx" | "slots" | "slotProps" | "disabled" | "action" | "disableRipple" | "centerRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "expandIcon"> & {
35
- theme?: import('@emotion/react').Theme;
36
- }, {}, {}>;
37
- export declare const StyledFormAccordionDetails: import('@emotion/styled').StyledComponent<import('@mui/material').AccordionDetailsProps & {
38
- theme?: import('@emotion/react').Theme;
39
- }, {}, {}>;
40
14
  export declare const FormAccordion: (props: FormAccordionProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,22 +1,3 @@
1
- import { default as React } from 'react';
2
- export declare const StyledAccordion: import('@emotion/styled').StyledComponent<{
3
- children: NonNullable<React.ReactNode>;
4
- classes?: Partial<import('@mui/material').AccordionClasses>;
5
- defaultExpanded?: boolean;
6
- disabled?: boolean;
7
- disableGutters?: boolean;
8
- expanded?: boolean;
9
- onChange?: (event: React.SyntheticEvent, expanded: boolean) => void;
10
- sx?: import('@mui/system').SxProps<import('@mui/material').Theme>;
11
- TransitionComponent?: React.JSXElementConstructor<import('@mui/material/transitions').TransitionProps & {
12
- children?: React.ReactElement<unknown, any>;
13
- }>;
14
- TransitionProps?: import('@mui/material/transitions').TransitionProps;
15
- } & import('@mui/material').AccordionSlotsAndSlotProps & Omit<import('@mui/material').PaperOwnProps, "classes" | "onChange"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
16
- ref?: ((instance: HTMLDivElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<HTMLDivElement> | null | undefined;
17
- }, "children" | "onChange" | "sx" | "TransitionComponent" | "TransitionProps" | keyof import('@mui/material/OverridableComponent').CommonProps | "variant" | "elevation" | "disabled" | "expanded" | "square" | "disableGutters" | "defaultExpanded" | keyof import('@mui/material').AccordionSlotsAndSlotProps> & {
18
- theme?: import('@emotion/react').Theme;
19
- }, {}, {}>;
20
1
  export type AccordionContent = {
21
2
  title: JSX.Element;
22
3
  content: JSX.Element;