@apexcura/ui-components 0.0.11-Beta240 → 0.0.11-Beta241
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -657,7 +657,7 @@ var ModelElement = (props) => {
|
|
|
657
657
|
},
|
|
658
658
|
Object.entries(selectedRecord).map(([key, value]) => {
|
|
659
659
|
const record = columns.filter((eachColumn) => eachColumn.key === key);
|
|
660
|
-
console.log("record", record);
|
|
660
|
+
console.log("record", record, columns, key, value);
|
|
661
661
|
return /* @__PURE__ */ import_react20.default.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ import_react20.default.createElement("span", { style: { color: "gray", paddingRight: "10px" } }, record[0].title), String(value));
|
|
662
662
|
})
|
|
663
663
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -606,7 +606,7 @@ var ModelElement = (props) => {
|
|
|
606
606
|
},
|
|
607
607
|
Object.entries(selectedRecord).map(([key, value]) => {
|
|
608
608
|
const record = columns.filter((eachColumn) => eachColumn.key === key);
|
|
609
|
-
console.log("record", record);
|
|
609
|
+
console.log("record", record, columns, key, value);
|
|
610
610
|
return /* @__PURE__ */ React19.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ React19.createElement("span", { style: { color: "gray", paddingRight: "10px" } }, record[0].title), String(value));
|
|
611
611
|
})
|
|
612
612
|
)
|