@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.js CHANGED
@@ -24891,9 +24891,12 @@ const bd = () => {
24891
24891
  }
24892
24892
  },
24893
24893
  styleOverrides: {
24894
- paper: ({ ownerState: e, theme: t }) => ({
24895
- backgroundColor: e.backgroundColor === "primary" || e.backgroundColor === "secondary" ? t.palette.background.default : e.backgroundColor
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")]: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "4.25.1",
5
+ "version": "4.25.2",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",