@foodpilot/foods 0.3.2 → 0.3.4
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/Popover/WhitePopover.d.ts +4 -5
- package/dist/main.js +7169 -7203
- package/dist/main.umd.cjs +105 -105
- package/dist/themes/ThemeExtensions.d.ts +14 -6
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { Theme } from "@mui/material";
|
|
3
|
+
import { ColorPartial } from "@mui/material/styles/createPalette";
|
|
2
4
|
import { SxProps } from "@mui/system";
|
|
3
5
|
type CustomThemeKeys = {
|
|
4
6
|
custom: {
|
|
@@ -6,13 +8,13 @@ type CustomThemeKeys = {
|
|
|
6
8
|
grey: GreyShades;
|
|
7
9
|
red: RedShades;
|
|
8
10
|
green: GreenShades;
|
|
9
|
-
searchBox: SxProps
|
|
10
|
-
rowMenuElement: SxProps
|
|
11
|
+
searchBox: SxProps<Theme>;
|
|
12
|
+
rowMenuElement: SxProps<Theme>;
|
|
11
13
|
productGrid: {
|
|
12
|
-
baseCell: SxProps
|
|
13
|
-
boldCell: SxProps
|
|
14
|
-
greyCell: SxProps
|
|
15
|
-
headerCell: SxProps
|
|
14
|
+
baseCell: SxProps<Theme>;
|
|
15
|
+
boldCell: SxProps<Theme>;
|
|
16
|
+
greyCell: SxProps<Theme>;
|
|
17
|
+
headerCell: SxProps<Theme>;
|
|
16
18
|
};
|
|
17
19
|
};
|
|
18
20
|
};
|
|
@@ -147,4 +149,10 @@ declare module "@mui/material/Button" {
|
|
|
147
149
|
interface ButtonPropsVariantOverrides extends ButtonPropsNewVariants {
|
|
148
150
|
}
|
|
149
151
|
}
|
|
152
|
+
declare module "@mui/material/styles" {
|
|
153
|
+
interface PaletteColor extends ColorPartial {
|
|
154
|
+
}
|
|
155
|
+
interface SimplePaletteColorOptions extends ColorPartial {
|
|
156
|
+
}
|
|
157
|
+
}
|
|
150
158
|
export {};
|