@homebound/beam 2.417.2 → 2.417.4
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -6298,7 +6298,6 @@ var rowClickRenderFn = (as, api, colSpan) => (key, css2, content, row, rowStyle,
|
|
|
6298
6298
|
return /* @__PURE__ */ jsx20(
|
|
6299
6299
|
Cell,
|
|
6300
6300
|
{
|
|
6301
|
-
...{ key },
|
|
6302
6301
|
css: { ...css2 },
|
|
6303
6302
|
className: classNames,
|
|
6304
6303
|
onClick: (e) => {
|
|
@@ -6307,7 +6306,8 @@ var rowClickRenderFn = (as, api, colSpan) => (key, css2, content, row, rowStyle,
|
|
|
6307
6306
|
},
|
|
6308
6307
|
...as === "table" && { colSpan },
|
|
6309
6308
|
children: content
|
|
6310
|
-
}
|
|
6309
|
+
},
|
|
6310
|
+
key
|
|
6311
6311
|
);
|
|
6312
6312
|
};
|
|
6313
6313
|
|