@dartech/arsenal-ui 1.4.77 → 1.4.78
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +4 -3
- package/package.json +1 -1
- package/src/theme/tableThemeOptions.d.ts +2 -1
package/index.js
CHANGED
@@ -1859,8 +1859,8 @@ const tableThemeOptions = {
|
|
1859
1859
|
},
|
1860
1860
|
MuiDataGrid: {
|
1861
1861
|
defaultProps: {
|
1862
|
-
|
1863
|
-
|
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(
|
1905
|
+
padding: baseTheme.spacing(1.25, 3),
|
1905
1906
|
borderColor: '#26284214',
|
1906
1907
|
'&:focus': {
|
1907
1908
|
outline: 'none'
|
package/package.json
CHANGED
@@ -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;
|