@am92/react-design-system 2.7.5 → 2.7.7

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.
@@ -4,6 +4,9 @@ export declare const DsBackdropOverrides: {
4
4
  root: {
5
5
  backgroundColor: string;
6
6
  };
7
+ invisible: {
8
+ backgroundColor: string;
9
+ };
7
10
  };
8
11
  };
9
12
  };
@@ -3,6 +3,9 @@ export const DsBackdropOverrides = {
3
3
  styleOverrides: {
4
4
  root: {
5
5
  backgroundColor: 'var(--ds-colour-overlay)'
6
+ },
7
+ invisible: {
8
+ backgroundColor: 'transparent'
6
9
  }
7
10
  }
8
11
  }
@@ -2,7 +2,9 @@ export declare const DsPopoverOverrides: {
2
2
  MuiPopover: {
3
3
  styleOverrides: {
4
4
  root: {
5
- backgroundColor: string;
5
+ '.MuiBackdrop-root': {
6
+ backgroundColor: string;
7
+ };
6
8
  };
7
9
  };
8
10
  };
@@ -2,7 +2,9 @@ export const DsPopoverOverrides = {
2
2
  MuiPopover: {
3
3
  styleOverrides: {
4
4
  root: {
5
- backgroundColor: 'transparent'
5
+ '.MuiBackdrop-root': {
6
+ backgroundColor: 'transparent'
7
+ }
6
8
  }
7
9
  }
8
10
  }
@@ -720,7 +720,9 @@ declare const componentOverrides: {
720
720
  MuiPopover: {
721
721
  styleOverrides: {
722
722
  root: {
723
- backgroundColor: string;
723
+ '.MuiBackdrop-root': {
724
+ backgroundColor: string;
725
+ };
724
726
  };
725
727
  };
726
728
  };
@@ -1245,6 +1247,9 @@ declare const componentOverrides: {
1245
1247
  root: {
1246
1248
  backgroundColor: string;
1247
1249
  };
1250
+ invisible: {
1251
+ backgroundColor: string;
1252
+ };
1248
1253
  };
1249
1254
  };
1250
1255
  MuiAvatar: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@am92/react-design-system",
3
- "version": "2.7.5",
3
+ "version": "2.7.7",
4
4
  "description": "ReactJS Design System using Material UI",
5
5
  "sideEffects": false,
6
6
  "types": "dist/index.d.ts",