mig-schema-table 3.0.31 → 3.0.33

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.
@@ -27,7 +27,7 @@ function Td({ checkedIndexes, disabledCheckedIndexes, columnIndex, data, getRowC
27
27
  className: `schema-table__td schema-table__td--${rowIndex % 2 ? "odd" : "even"}${getRowSelected && getRowSelected(data[row._index])
28
28
  ? " schema-table__td--selected"
29
29
  : ""} ${getRowClassName ? getRowClassName(data[row._index], row._index) : ""}`,
30
- title: row[propName],
30
+ title: propName === SELECT_ALL_COLUMN_NAME ? null : row[propName],
31
31
  };
32
32
  }, [
33
33
  columnIndex,
package/dist/index.css CHANGED
@@ -36,6 +36,7 @@
36
36
  background-color: #eee;
37
37
  align-items: center;
38
38
  padding-left: 8px;
39
+ padding-right: 8px;
39
40
  }
40
41
  .schema-table__th div {
41
42
  overflow: hidden;
@@ -58,6 +59,7 @@
58
59
  white-space: nowrap;
59
60
  text-overflow: ellipsis;
60
61
  padding-left: 8px;
62
+ padding-right: 8px;
61
63
  align-items: center;
62
64
  }
63
65
  .schema-table__td--odd {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mig-schema-table",
3
- "version": "3.0.31",
3
+ "version": "3.0.33",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist/"