@galaxy-ds/core 1.1.51 → 1.1.52

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.
@@ -1,6 +1,8 @@
1
1
  import { TabsProps } from "@material-ui/core/Tabs";
2
- export interface CustomTabsProps extends TabsProps {
2
+ import { ChangeEvent, FormEvent } from "react";
3
+ export interface CustomTabsProps extends Omit<TabsProps, "onChange"> {
3
4
  orientation?: "horizontal" | "vertical";
4
5
  value?: any;
5
6
  children: any;
7
+ onChange: ((event: ChangeEvent<{}>, value: any) => void) | ((event: FormEvent<HTMLButtonElement>) => void);
6
8
  }
@@ -16,6 +16,10 @@ export declare const grey: {
16
16
  100: string;
17
17
  50: string;
18
18
  };
19
+ export declare const blue: {
20
+ 100: string;
21
+ 50: string;
22
+ };
19
23
  export declare const brand: {
20
24
  primary: {
21
25
  main: string;
@@ -136,6 +140,10 @@ export declare const brand: {
136
140
  };
137
141
  };
138
142
  declare const common: {
143
+ blue: {
144
+ 100: string;
145
+ 50: string;
146
+ };
139
147
  brand: {
140
148
  primary: {
141
149
  main: string;
package/dist/index.esm.js CHANGED
@@ -101,7 +101,7 @@ var indigo = {
101
101
  };
102
102
  var indigo$1 = indigo;
103
103
 
104
- var blue = {
104
+ var blue$1 = {
105
105
  50: '#e3f2fd',
106
106
  100: '#bbdefb',
107
107
  200: '#90caf9',
@@ -117,7 +117,7 @@ var blue = {
117
117
  A400: '#2979ff',
118
118
  A700: '#2962ff'
119
119
  };
120
- var blue$1 = blue;
120
+ var blue$2 = blue$1;
121
121
 
122
122
  var green = {
123
123
  50: '#e8f5e9',
@@ -2385,9 +2385,9 @@ function createPalette(palette) {
2385
2385
  } : _palette$warning,
2386
2386
  _palette$info = palette.info,
2387
2387
  info = _palette$info === void 0 ? {
2388
- light: blue$1[300],
2389
- main: blue$1[500],
2390
- dark: blue$1[700]
2388
+ light: blue$2[300],
2389
+ main: blue$2[500],
2390
+ dark: blue$2[700]
2391
2391
  } : _palette$info,
2392
2392
  _palette$success = palette.success,
2393
2393
  success = _palette$success === void 0 ? {
@@ -33022,6 +33022,10 @@ var grey$2 = {
33022
33022
  100: '#eeeeee',
33023
33023
  50: '#FFFFFF'
33024
33024
  };
33025
+ var blue = {
33026
+ 100: "#C2D8E7",
33027
+ 50: "#E0ECF5"
33028
+ };
33025
33029
  var brand$2 = {
33026
33030
  primary: {
33027
33031
  main: '#1C365F',
@@ -33142,6 +33146,7 @@ var brand$2 = {
33142
33146
  }
33143
33147
  };
33144
33148
  var common = {
33149
+ blue: blue,
33145
33150
  brand: brand$2,
33146
33151
  grey: grey$2,
33147
33152
  opacity: opacity
@@ -48981,9 +48986,23 @@ var themeDesktop = createTheme({
48981
48986
  },
48982
48987
  },
48983
48988
  MuiTableRow: {
48989
+ root: {
48990
+ "&.MuiTableRow-hover": {
48991
+ backgroundColor: "transparent",
48992
+ "&:hover": {
48993
+ backgroundColor: "#f3f3f3",
48994
+ }
48995
+ },
48996
+ "&.Mui-selected": {
48997
+ backgroundColor: common.blue[50],
48998
+ "&:hover": {
48999
+ backgroundColor: common.blue[50],
49000
+ }
49001
+ }
49002
+ },
48984
49003
  footer: {
48985
49004
  borderBottom: 'none',
48986
- },
49005
+ }
48987
49006
  },
48988
49007
  MuiToolbar: {
48989
49008
  root: {
@@ -49018,12 +49037,13 @@ var themeDesktop = createTheme({
49018
49037
  MuiTooltip: {
49019
49038
  tooltip: {
49020
49039
  fontSize: typography.body2.fontSize,
49021
- borderRadius: 2,
49022
- backgroundColor: pallettes.grey[700],
49040
+ borderRadius: 1,
49041
+ color: pallettes.pallette.text.primary,
49042
+ backgroundColor: pallettes.grey[50],
49023
49043
  padding: 3,
49024
49044
  minHeight: 22,
49025
49045
  maxWidth: 'auto',
49026
- boxShadow: "0px 2px 3px rgba(0, 0, 0, " + opacity[600] + ")",
49046
+ boxShadow: '0px 2px 8px rgba(0, 0, 0, 0.21)',
49027
49047
  },
49028
49048
  tooltipPlacementTop: {
49029
49049
  margin: '5px 0 !important',