@galaxy-ds/core 1.1.53 → 1.1.54
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.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -36092,9 +36092,9 @@ var TableCell = function (props) {
|
|
|
36092
36092
|
return (React__default.createElement(MuiTableCell, __assign$1({}, rest, { className: clsx(variantProp) })));
|
|
36093
36093
|
};
|
|
36094
36094
|
|
|
36095
|
-
var TableRow = function (props) {
|
|
36096
|
-
return
|
|
36097
|
-
};
|
|
36095
|
+
var TableRow = React__default.forwardRef(function (props, ref) {
|
|
36096
|
+
return React__default.createElement(MuiTableRow, __assign$1({}, props, { ref: ref }));
|
|
36097
|
+
});
|
|
36098
36098
|
|
|
36099
36099
|
var TableFooter = function (props) {
|
|
36100
36100
|
var children = props.children, rest = __rest(props, ["children"]);
|