@foodpilot/foods 0.5.14 → 0.5.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.
@@ -13,7 +13,6 @@ export declare const getDoughnutConfig: (props: Omit<DoughnutChartProps, "legend
13
13
  setHoveredArcIndex: Dispatch<SetStateAction<number | null>>;
14
14
  handleChartHover: (x: number | null, y: number | null, centerX: number, centerY: number) => void;
15
15
  }) => {
16
- skipNull: boolean;
17
16
  data: {
18
17
  datasets: {
19
18
  data: number[];
@@ -25,11 +24,11 @@ export declare const getDoughnutConfig: (props: Omit<DoughnutChartProps, "legend
25
24
  options: {
26
25
  cutout: string;
27
26
  responsive: boolean;
28
- spacing: number | undefined;
29
27
  maintainAspectRatio: boolean;
30
28
  elements: {
31
29
  arc: {
32
30
  borderWidth: number;
31
+ spacing: number | undefined;
33
32
  };
34
33
  };
35
34
  events: (keyof HTMLElementEventMap)[];
@@ -0,0 +1,2 @@
1
+ import { IllustrationProps } from '../illustrationProps';
2
+ export declare const Consents: (props: IllustrationProps) => import("react/jsx-runtime").JSX.Element;
@@ -18,4 +18,5 @@ export declare const illustationsMapping: {
18
18
  readonly trajectoryActions: (props: import('./illustrationProps').IllustrationProps) => import("react/jsx-runtime").JSX.Element;
19
19
  readonly underConstruction: (props: import('./illustrationProps').IllustrationProps) => import("react/jsx-runtime").JSX.Element;
20
20
  readonly notEnoughData: (props: import('./illustrationProps').IllustrationProps) => import("react/jsx-runtime").JSX.Element;
21
+ readonly consents: (props: import('./illustrationProps').IllustrationProps) => import("react/jsx-runtime").JSX.Element;
21
22
  };