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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/table/index.tsx +1 -0
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