ehscan-react-table 0.0.37 → 0.0.39
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/elements/Table.js
CHANGED
|
@@ -50,7 +50,7 @@ export const Table = ({ columns, rows, sortOrder, setSortOrder, cellComponents,
|
|
|
50
50
|
}
|
|
51
51
|
if (headerRef.current) {
|
|
52
52
|
const { bottom } = headerRef.current.getBoundingClientRect();
|
|
53
|
-
setWrapperBottom(bottom -
|
|
53
|
+
setWrapperBottom(bottom - 20);
|
|
54
54
|
}
|
|
55
55
|
};
|
|
56
56
|
const handleScroll = () => {
|
|
@@ -75,7 +75,7 @@ table.exttable thead {
|
|
|
75
75
|
table.exttable {
|
|
76
76
|
width: 100%;
|
|
77
77
|
border-collapse: collapse;
|
|
78
|
-
table-layout:
|
|
78
|
+
table-layout: auto;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
.trstickyhead {
|
|
@@ -242,10 +242,10 @@ input.headsearch:focus {
|
|
|
242
242
|
padding: 0;
|
|
243
243
|
text-align: left;
|
|
244
244
|
box-sizing: border-box;
|
|
245
|
-
font-size:
|
|
245
|
+
font-size: var(--ext-table-cell-font-size, 120%);
|
|
246
246
|
padding: 5px 5px 5px 0;
|
|
247
|
-
width: var(--custom-width) !important;
|
|
248
|
-
min-width: 30px;
|
|
247
|
+
/* width: var(--custom-width) !important;
|
|
248
|
+
min-width: 30px; */
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
.deftabletr > td:first-child{
|