@bsol-oss/react-datatable5 12.0.0-beta.54 → 12.0.0-beta.55
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3160,7 +3160,7 @@ const TableBody = ({ showSelector = false, canResize = true, }) => {
|
|
|
3160
3160
|
return (jsxRuntime.jsxs(react.Table.Row, { display: "flex", zIndex: 1, onMouseEnter: () => handleRowHover(index), onMouseLeave: () => handleRowHover(-1), ...getTrProps({ hoveredRow, index }), children: [showSelector && (jsxRuntime.jsx(TableRowSelector, { index: index, row: row, hoveredRow: hoveredRow })), row.getVisibleCells().map((cell, index) => {
|
|
3161
3161
|
return (jsxRuntime.jsx(react.Table.Cell, { padding: `${table.getDensityValue()}px`,
|
|
3162
3162
|
// styling resize and pinning start
|
|
3163
|
-
flex: `${canResize ? "0" : "1"} 0 ${cell.column.getSize()}px`, color: {
|
|
3163
|
+
flex: `${canResize ? "0" : "1"} 0 ${cell.column.getSize()}px`, minWidth: `0`, color: {
|
|
3164
3164
|
base: "colorPalette.900",
|
|
3165
3165
|
_dark: "colorPalette.100",
|
|
3166
3166
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -3140,7 +3140,7 @@ const TableBody = ({ showSelector = false, canResize = true, }) => {
|
|
|
3140
3140
|
return (jsxs(Table$1.Row, { display: "flex", zIndex: 1, onMouseEnter: () => handleRowHover(index), onMouseLeave: () => handleRowHover(-1), ...getTrProps({ hoveredRow, index }), children: [showSelector && (jsx(TableRowSelector, { index: index, row: row, hoveredRow: hoveredRow })), row.getVisibleCells().map((cell, index) => {
|
|
3141
3141
|
return (jsx(Table$1.Cell, { padding: `${table.getDensityValue()}px`,
|
|
3142
3142
|
// styling resize and pinning start
|
|
3143
|
-
flex: `${canResize ? "0" : "1"} 0 ${cell.column.getSize()}px`, color: {
|
|
3143
|
+
flex: `${canResize ? "0" : "1"} 0 ${cell.column.getSize()}px`, minWidth: `0`, color: {
|
|
3144
3144
|
base: "colorPalette.900",
|
|
3145
3145
|
_dark: "colorPalette.100",
|
|
3146
3146
|
},
|