@foodpilot/foods 0.3.65 → 0.3.66

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.
@@ -0,0 +1,10 @@
1
+ export type ArticleProps = {
2
+ title: string;
3
+ description: string;
4
+ imageSrc: string;
5
+ onClick: () => void;
6
+ isMain?: boolean;
7
+ readMoreText?: string;
8
+ isFirst?: boolean;
9
+ };
10
+ export declare const Article: (props: ArticleProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { SxProps } from '@mui/system';
2
+ import { ArticleProps } from './Article.tsx';
3
+
4
+ type ArticlesBoxProps = {
5
+ articles: ArticleProps[];
6
+ sxProps?: SxProps;
7
+ };
8
+ export declare const ArticlesBox: (props: ArticlesBoxProps) => import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1 @@
1
+ export * from './ArticlesBox.tsx';
@@ -1,4 +1,5 @@
1
1
  export * from './AdditionalContentBox';
2
+ export * from './ArticlesBox';
2
3
  export * from './CategoryBox';
3
4
  export * from './ContextualContentBox';
4
5
  export * from './DottedBox';
@@ -9,5 +9,7 @@ export type IBigPopoverLayout = {
9
9
  onClose: () => void;
10
10
  onCancel?: () => void;
11
11
  onValidate?: () => void;
12
+ cancelLabel?: string;
13
+ validateLabel?: string;
12
14
  };
13
15
  export declare const BigPopoverLayout: (props: IBigPopoverLayout) => import("react/jsx-runtime").JSX.Element;