ywana-core8 0.0.114 → 0.0.115
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.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +4 -2
package/dist/index.modern.js
CHANGED
@@ -1116,7 +1116,9 @@ var DataTableRow = function DataTableRow(props) {
|
|
1116
1116
|
}
|
1117
1117
|
})) : /*#__PURE__*/React.createElement("td", null)), row.info && isInfoOpen ? /*#__PURE__*/React.createElement("tr", {
|
1118
1118
|
className: "table-row-info"
|
1119
|
-
},
|
1119
|
+
}, /*#__PURE__*/React.createElement("td", {
|
1120
|
+
colSpan: columns.length + 1
|
1121
|
+
}, isFunction$1(row.info) ? row.info() : row.info)) : null);
|
1120
1122
|
};
|
1121
1123
|
/**
|
1122
1124
|
* DataTable Cell
|