@foodpilot/foods 0.3.131 → 0.3.133

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.
@@ -18,6 +18,7 @@ export type DoughnutChartProps = Omit<ChartProps<"doughnut">, "data" | "type"> &
18
18
  displayTotal?: string | boolean;
19
19
  displayTotalVariant?: TypographyProps["variant"];
20
20
  spacing?: number;
21
+ fullWidthLegend?: boolean;
21
22
  hoverOffset?: number;
22
23
  };
23
24
  export declare const DoughnutChart: (props: DoughnutChartProps) => import("react/jsx-runtime").JSX.Element;
@@ -334,6 +334,7 @@ export declare const getDoughnutConfig: (props: Omit<DoughnutChartProps, "legend
334
334
  isLoading?: boolean | undefined;
335
335
  displayTotal?: string | boolean | undefined;
336
336
  displayTotalVariant?: import('@mui/types').OverridableStringUnion<import('@mui/material').TypographyVariant | "inherit", import('@mui/material').TypographyPropsVariantOverrides> | undefined;
337
+ fullWidthLegend?: boolean | undefined;
337
338
  hoverOffset?: number;
338
339
  };
339
340
  export declare const extractPaletteFromTheme: (theme: Theme, min: number, max: number) => Property.Color[];