@dartech/arsenal-ui 1.4.77 → 1.4.78

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/index.js CHANGED
@@ -1859,8 +1859,8 @@ const tableThemeOptions = {
1859
1859
  },
1860
1860
  MuiDataGrid: {
1861
1861
  defaultProps: {
1862
- rowHeight: 40,
1863
- headerHeight: 40
1862
+ headerHeight: 40,
1863
+ getRowHeight: () => 'auto'
1864
1864
  },
1865
1865
  styleOverrides: {
1866
1866
  root: {
@@ -1898,10 +1898,11 @@ const tableThemeOptions = {
1898
1898
  borderColor: '#26284214'
1899
1899
  },
1900
1900
  cell: {
1901
+ minHeight: '40px !important',
1901
1902
  textOverflow: 'ellipsis',
1902
1903
  wordBreak: 'break-all',
1903
1904
  lineHeight: 'unset',
1904
- padding: baseTheme.spacing(0, 3),
1905
+ padding: baseTheme.spacing(1.25, 3),
1905
1906
  borderColor: '#26284214',
1906
1907
  '&:focus': {
1907
1908
  outline: 'none'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.4.77",
3
+ "version": "1.4.78",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -96,8 +96,8 @@ declare const tableThemeOptions: {
96
96
  };
97
97
  MuiDataGrid: {
98
98
  defaultProps: {
99
- rowHeight: number;
100
99
  headerHeight: number;
100
+ getRowHeight: () => string;
101
101
  };
102
102
  styleOverrides: {
103
103
  root: {
@@ -135,6 +135,7 @@ declare const tableThemeOptions: {
135
135
  borderColor: string;
136
136
  };
137
137
  cell: {
138
+ minHeight: string;
138
139
  textOverflow: string;
139
140
  wordBreak: string;
140
141
  lineHeight: string;