next-recomponents 2.0.31 → 2.0.32

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
@@ -35882,6 +35882,7 @@ function ModalDialog({
35882
35882
  /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "mt-4 m-auto p-5", children: selectedRow && import_react5.default.cloneElement(
35883
35883
  modal,
35884
35884
  {
35885
+ key: selectedRow.id,
35885
35886
  row: selectedRow,
35886
35887
  hide: onClose
35887
35888
  }
package/dist/index.mjs CHANGED
@@ -35862,6 +35862,7 @@ function ModalDialog({
35862
35862
  /* @__PURE__ */ jsx6("div", { className: "mt-4 m-auto p-5", children: selectedRow && React3.cloneElement(
35863
35863
  modal,
35864
35864
  {
35865
+ key: selectedRow.id,
35865
35866
  row: selectedRow,
35866
35867
  hide: onClose
35867
35868
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-recomponents",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
4
4
  "description": "description nueva",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -222,6 +222,7 @@ function ModalDialog({
222
222
  React.cloneElement(
223
223
  modal as React.ReactElement,
224
224
  {
225
+ key: selectedRow.id,
225
226
  row: selectedRow,
226
227
  hide: onClose,
227
228
  } as any,