@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.
- package/dist/components/Icons/iconConfig.d.ts +6 -0
- package/dist/components/Indicator/ComparisonIndicator.d.ts +6 -0
- package/dist/components/Indicator/IndicatorIconDown.d.ts +6 -0
- package/dist/components/Indicator/IndicatorIconUp.d.ts +6 -0
- package/dist/components/Indicator/index.d.ts +1 -1
- package/dist/components/Popover/CoordinatePopover.d.ts +2 -0
- package/dist/main.js +4814 -4758
- package/dist/main.umd.cjs +92 -92
- package/package.json +1 -1
- package/dist/components/Indicator/ComparaisonIndicator.d.ts +0 -4
|
@@ -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
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./
|
|
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;
|