@apexcura/ui-components 0.0.14-Beta256 → 0.0.14-Beta258
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 +12 -20
- package/dist/index.mjs +12 -20
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -823,26 +823,18 @@ var ModelElement = (props) => {
|
|
|
823
823
|
margin: "-10px"
|
|
824
824
|
}
|
|
825
825
|
},
|
|
826
|
-
modalContent && modalContent.fields[0].fields.map((
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
fontWeight: "200",
|
|
839
|
-
color: "gray",
|
|
840
|
-
paddingRight: "10px"
|
|
841
|
-
}
|
|
842
|
-
},
|
|
843
|
-
headerItem[0].label
|
|
844
|
-
), headerItem[1].label !== "" ? headerItem[1].label : "--");
|
|
845
|
-
});
|
|
826
|
+
modalContent && modalContent.fields[0].fields.map((eachField) => {
|
|
827
|
+
return /* @__PURE__ */ import_react20.default.createElement("p", { style: { fontWeight: "500", padding: "10px" } }, /* @__PURE__ */ import_react20.default.createElement(
|
|
828
|
+
"span",
|
|
829
|
+
{
|
|
830
|
+
style: {
|
|
831
|
+
fontWeight: "200",
|
|
832
|
+
color: "gray",
|
|
833
|
+
paddingRight: "10px"
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
eachField.fields[0].label
|
|
837
|
+
), eachField.fields[0].label !== "" ? eachField.fields[0].label : "--");
|
|
846
838
|
})
|
|
847
839
|
)
|
|
848
840
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -757,26 +757,18 @@ var ModelElement = (props) => {
|
|
|
757
757
|
margin: "-10px"
|
|
758
758
|
}
|
|
759
759
|
},
|
|
760
|
-
modalContent && modalContent.fields[0].fields.map((
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
fontWeight: "200",
|
|
773
|
-
color: "gray",
|
|
774
|
-
paddingRight: "10px"
|
|
775
|
-
}
|
|
776
|
-
},
|
|
777
|
-
headerItem[0].label
|
|
778
|
-
), headerItem[1].label !== "" ? headerItem[1].label : "--");
|
|
779
|
-
});
|
|
760
|
+
modalContent && modalContent.fields[0].fields.map((eachField) => {
|
|
761
|
+
return /* @__PURE__ */ React20.createElement("p", { style: { fontWeight: "500", padding: "10px" } }, /* @__PURE__ */ React20.createElement(
|
|
762
|
+
"span",
|
|
763
|
+
{
|
|
764
|
+
style: {
|
|
765
|
+
fontWeight: "200",
|
|
766
|
+
color: "gray",
|
|
767
|
+
paddingRight: "10px"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
eachField.fields[0].label
|
|
771
|
+
), eachField.fields[0].label !== "" ? eachField.fields[0].label : "--");
|
|
780
772
|
})
|
|
781
773
|
)
|
|
782
774
|
},
|