@foodpilot/foods 0.3.14 → 0.3.16

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.
@@ -159,6 +159,9 @@ export declare const iconMapping: {
159
159
  readonly arrowDown: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
160
160
  title?: string | undefined;
161
161
  }>;
162
+ readonly arrowDownRight: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
163
+ title?: string | undefined;
164
+ }>;
162
165
  readonly arrowLeftShort: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
163
166
  title?: string | undefined;
164
167
  }>;
@@ -177,6 +180,9 @@ export declare const iconMapping: {
177
180
  readonly arrowUp: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
178
181
  title?: string | undefined;
179
182
  }>;
183
+ readonly arrowUpRight: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
184
+ title?: string | undefined;
185
+ }>;
180
186
  readonly calendar: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
181
187
  title?: string | undefined;
182
188
  }>;
@@ -0,0 +1,6 @@
1
+ export type ComparisonIndicatorProps = {
2
+ value: number;
3
+ color?: "red" | "green";
4
+ direction?: "up" | "down";
5
+ };
6
+ export declare const ComparisonIndicator: ({ value, color, direction, }: ComparisonIndicatorProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ type IndicatorIconDownProps = {
2
+ color?: string;
3
+ roundedBorder?: boolean;
4
+ };
5
+ export declare const IndicatorIconDown: (props: IndicatorIconDownProps) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ type IndicatorIconUpProps = {
2
+ color?: string;
3
+ roundedBorder?: boolean;
4
+ };
5
+ export declare const IndicatorIconUp: (props: IndicatorIconUpProps) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -1 +1 @@
1
- export * from "./ComparaisonIndicator";
1
+ export * from "./ComparisonIndicator";
@@ -1,3 +1,4 @@
1
+ import { PopoverOrigin } from "@mui/material";
1
2
  import { ReactNode } from "react";
2
3
  export type CoordinatePopoverProps = {
3
4
  x: number;
@@ -5,5 +6,6 @@ export type CoordinatePopoverProps = {
5
6
  content: ReactNode;
6
7
  open: boolean;
7
8
  setOpen: (value: boolean) => void;
9
+ transformOrigin?: PopoverOrigin;
8
10
  };
9
11
  export declare const CoordinatePopover: (props: CoordinatePopoverProps) => import("react/jsx-runtime").JSX.Element;