@tracktor/design-system 4.25.1 → 4.25.2
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/main.cjs +1 -1
- package/dist/main.js +6 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -24891,9 +24891,12 @@ const bd = () => {
|
|
|
24891
24891
|
}
|
|
24892
24892
|
},
|
|
24893
24893
|
styleOverrides: {
|
|
24894
|
-
paper: ({ ownerState: e, theme: t }) =>
|
|
24895
|
-
|
|
24896
|
-
|
|
24894
|
+
paper: ({ ownerState: e, theme: t }) => {
|
|
24895
|
+
const o = e.backgroundColor === "primary" || e.backgroundColor === "secondary" ? t.palette.background.default : e.backgroundColor;
|
|
24896
|
+
return {
|
|
24897
|
+
...o && { backgroundColor: o }
|
|
24898
|
+
};
|
|
24899
|
+
},
|
|
24897
24900
|
root: ({ theme: e }) => ({
|
|
24898
24901
|
"& .MuiDialog-container": {
|
|
24899
24902
|
[e.breakpoints.between("xs", "sm")]: {
|