@am92/react-design-system 2.7.4 → 2.7.5

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.
@@ -11,7 +11,6 @@ export declare const DsFabOverrides: {
11
11
  secondary: CSSInterpolation;
12
12
  default: CSSInterpolation;
13
13
  extended: {
14
- borderRadius: string;
15
14
  '.MuiTypography-root': {
16
15
  marginLeft: string;
17
16
  marginRight: string;
@@ -10,7 +10,7 @@ export const DsFabOverrides = {
10
10
  minHeight: 'auto',
11
11
  height: 'auto',
12
12
  width: 'auto',
13
- borderRadius: '50%',
13
+ borderRadius: 'var(--ds-radius-pleasant)',
14
14
  '.MuiTypography-root': {
15
15
  fontWeight: 'var(--ds-typo-bodyBoldMedium-fontWeight)',
16
16
  fontSize: 'var(--ds-typo-bodyBoldMedium-fontSize)',
@@ -49,7 +49,6 @@ export const DsFabOverrides = {
49
49
  }
50
50
  },
51
51
  extended: {
52
- borderRadius: 'var(--ds-radius-pleasant)',
53
52
  '.MuiTypography-root': {
54
53
  marginLeft: 'var(--ds-spacing-glacial)',
55
54
  marginRight: 'var(--ds-spacing-glacial)'
@@ -1 +1,9 @@
1
- export declare const DsPopoverOverrides: {};
1
+ export declare const DsPopoverOverrides: {
2
+ MuiPopover: {
3
+ styleOverrides: {
4
+ root: {
5
+ backgroundColor: string;
6
+ };
7
+ };
8
+ };
9
+ };
@@ -1 +1,9 @@
1
- export const DsPopoverOverrides = {};
1
+ export const DsPopoverOverrides = {
2
+ MuiPopover: {
3
+ styleOverrides: {
4
+ root: {
5
+ backgroundColor: 'transparent'
6
+ }
7
+ }
8
+ }
9
+ };
@@ -717,6 +717,13 @@ declare const componentOverrides: {
717
717
  };
718
718
  };
719
719
  };
720
+ MuiPopover: {
721
+ styleOverrides: {
722
+ root: {
723
+ backgroundColor: string;
724
+ };
725
+ };
726
+ };
720
727
  MuiPaper: {
721
728
  defaultProps: import("../Components").DsPaperProps;
722
729
  styleOverrides: {};
@@ -998,7 +1005,6 @@ declare const componentOverrides: {
998
1005
  secondary: import("@mui/system").CSSInterpolation;
999
1006
  default: import("@mui/system").CSSInterpolation;
1000
1007
  extended: {
1001
- borderRadius: string;
1002
1008
  '.MuiTypography-root': {
1003
1009
  marginLeft: string;
1004
1010
  marginRight: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@am92/react-design-system",
3
- "version": "2.7.4",
3
+ "version": "2.7.5",
4
4
  "description": "ReactJS Design System using Material UI",
5
5
  "sideEffects": false,
6
6
  "types": "dist/index.d.ts",