@galaxy-ds/core 2.0.11 → 2.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galaxy-ds/core",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galaxy-ds/core",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -2,14 +2,13 @@ import { Components, Theme } from '@mui/material';
2
2
 
3
3
  export const tooltipOverrides: Components<Theme>['MuiTooltip'] = {
4
4
  styleOverrides: {
5
- tooltip: ({theme}) => ({
5
+ tooltip: ({ theme }) => ({
6
6
  fontSize: theme.typography.body2.fontSize,
7
- borderRadius: 1,
7
+ borderRadius: 2,
8
8
  color: theme.palette.text.primary,
9
9
  backgroundColor: theme.palette.grey[50],
10
10
  padding: 3,
11
- maxWidth: 'auto',
12
- boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.21)',
11
+ boxShadow: ' 0px 2px 3px 0px #00000040',
13
12
  marginTop: 0,
14
13
  }),
15
14
  tooltipPlacementTop: {
@@ -22,4 +21,4 @@ export const tooltipOverrides: Components<Theme>['MuiTooltip'] = {
22
21
  display: 'none',
23
22
  },
24
23
  },
25
- };
24
+ };
@@ -7,7 +7,6 @@ export const tooltipOverrides: Components<Theme>['MuiTooltip'] = {
7
7
  borderRadius: 4,
8
8
  backgroundColor: theme.palette.grey[800],
9
9
  paddingTop: 5,
10
- maxWidth: 'auto',
11
10
  opacity: '0.9 !important',
12
11
  }),
13
12
  tooltipPlacementTop: {
@@ -20,4 +19,4 @@ export const tooltipOverrides: Components<Theme>['MuiTooltip'] = {
20
19
  color: theme.palette.grey[800],
21
20
  }),
22
21
  },
23
- };
22
+ };