@m4l/styles 3.1.1 → 3.1.3
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/package.json +1 -1
- package/types/augmentations.d.ts +4 -1
package/package.json
CHANGED
package/types/augmentations.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ declare module '@mui/material/styles' {
|
|
|
90
90
|
breakpoints: Breakpoints;
|
|
91
91
|
generalSettings: {
|
|
92
92
|
isMobile: boolean;
|
|
93
|
-
}
|
|
93
|
+
};
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
interface ThemeVars {
|
|
@@ -99,6 +99,9 @@ declare module '@mui/material/styles' {
|
|
|
99
99
|
|
|
100
100
|
interface ColorSystem {
|
|
101
101
|
typography: TypographyVariants;
|
|
102
|
+
generalSettings: {
|
|
103
|
+
isMobile: boolean;
|
|
104
|
+
};
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
interface TypeBackground {
|