next-recomponents 1.8.91 → 1.8.92

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 CHANGED
@@ -44165,6 +44165,7 @@ function HTable(_a) {
44165
44165
  const content = mapedContent || (cellTypeOf == "date" ? d[key].split("T").join(" ").split(".")[0] : cellTypeOf == "object" ? import_react25.default.isValidElement(d[key]) ? ((_d = d[key]) == null ? void 0 : _d.props).value : JSON.stringify(d[key]) : d[key]);
44166
44166
  const handler = import_react25.default.isValidElement(d[key]) ? d[key] : null;
44167
44167
  obj[key] = {
44168
+ //
44168
44169
  index: trkey,
44169
44170
  originalData: content,
44170
44171
  cellTypeOf,
package/dist/index.mjs CHANGED
@@ -44146,6 +44146,7 @@ function HTable(_a) {
44146
44146
  const content = mapedContent || (cellTypeOf == "date" ? d[key].split("T").join(" ").split(".")[0] : cellTypeOf == "object" ? React4.isValidElement(d[key]) ? ((_d = d[key]) == null ? void 0 : _d.props).value : JSON.stringify(d[key]) : d[key]);
44147
44147
  const handler = React4.isValidElement(d[key]) ? d[key] : null;
44148
44148
  obj[key] = {
44149
+ //
44149
44150
  index: trkey,
44150
44151
  originalData: content,
44151
44152
  cellTypeOf,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-recomponents",
3
- "version": "1.8.91",
3
+ "version": "1.8.92",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/table/h.tsx CHANGED
@@ -82,6 +82,7 @@ export default function HTable({
82
82
  : d[key]);
83
83
  const handler = React.isValidElement(d[key]) ? d[key] : null;
84
84
  obj[key] = {
85
+ //
85
86
  index: trkey,
86
87
  originalData: content,
87
88
  cellTypeOf: cellTypeOf,