react-better-html 1.1.149 → 1.1.150
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7507,6 +7507,7 @@ var TableComponent = forwardRef15(function Table({
|
|
|
7507
7507
|
pageCount,
|
|
7508
7508
|
isInsideTableExpandRow,
|
|
7509
7509
|
containsOverflowComponents,
|
|
7510
|
+
wrapperComponentRef,
|
|
7510
7511
|
getRowStyle,
|
|
7511
7512
|
onClickRow,
|
|
7512
7513
|
onClickAllCheckboxes,
|
|
@@ -7887,6 +7888,7 @@ var TableComponent = forwardRef15(function Table({
|
|
|
7887
7888
|
borderRadius: theme2.styles.borderRadius * 2,
|
|
7888
7889
|
overflow: !containsOverflowComponents ? "auto" : void 0,
|
|
7889
7890
|
...props,
|
|
7891
|
+
ref: wrapperComponentRef,
|
|
7890
7892
|
children: /* @__PURE__ */ jsxs17(
|
|
7891
7893
|
TableStyledComponent,
|
|
7892
7894
|
{
|
|
@@ -7957,7 +7959,7 @@ var TableComponent = forwardRef15(function Table({
|
|
|
7957
7959
|
}
|
|
7958
7960
|
),
|
|
7959
7961
|
expandedRows[rowIndex] && /* @__PURE__ */ jsx22("tr", { className: "withoutHover isExpandRow", children: /* @__PURE__ */ jsx22("td", { colSpan: columns.length, children: renderExpandedRow(item, rowIndex) }) })
|
|
7960
|
-
] }, JSON.stringify(item) + rowIndex
|
|
7962
|
+
] }, JSON.stringify(item) + rowIndex)) : /* @__PURE__ */ jsx22("tr", { className: "withoutHover", children: /* @__PURE__ */ jsx22("td", { className: "noData", colSpan: columns.length, children: /* @__PURE__ */ jsx22(Text_default.unknown, { children: noDataItemsMessage }) }) }) }),
|
|
7961
7963
|
withFooter && /* @__PURE__ */ jsx22("tfoot", { children: /* @__PURE__ */ jsx22("tr", { className: "isFooter", children: /* @__PURE__ */ jsx22("td", { colSpan: columns.length, children: /* @__PURE__ */ jsxs17(
|
|
7962
7964
|
Div_default.column,
|
|
7963
7965
|
{
|