@apexcura/ui-components 0.0.14-Beta255 → 0.0.14-Beta256
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -825,7 +825,9 @@ var ModelElement = (props) => {
|
|
|
825
825
|
},
|
|
826
826
|
modalContent && modalContent.fields[0].fields.map((eachFiled) => {
|
|
827
827
|
console.log("eachFiled", eachFiled);
|
|
828
|
-
console.log(eachFiled);
|
|
828
|
+
console.log(eachFiled.name);
|
|
829
|
+
console.log(eachFiled.className);
|
|
830
|
+
console.log(eachFiled.fields);
|
|
829
831
|
console.log("eachFiled.fileds", eachFiled.fileds);
|
|
830
832
|
eachFiled.fileds && eachFiled.fileds.map((headerItem) => {
|
|
831
833
|
console.log("headerItem", headerItem);
|
package/dist/index.mjs
CHANGED
|
@@ -759,7 +759,9 @@ var ModelElement = (props) => {
|
|
|
759
759
|
},
|
|
760
760
|
modalContent && modalContent.fields[0].fields.map((eachFiled) => {
|
|
761
761
|
console.log("eachFiled", eachFiled);
|
|
762
|
-
console.log(eachFiled);
|
|
762
|
+
console.log(eachFiled.name);
|
|
763
|
+
console.log(eachFiled.className);
|
|
764
|
+
console.log(eachFiled.fields);
|
|
763
765
|
console.log("eachFiled.fileds", eachFiled.fileds);
|
|
764
766
|
eachFiled.fileds && eachFiled.fileds.map((headerItem) => {
|
|
765
767
|
console.log("headerItem", headerItem);
|