@apexcura/ui-components 0.0.11-Beta212 → 0.0.11-Beta214
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.css +3 -0
- package/dist/index.js +13 -1
- package/dist/index.mjs +13 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -624,7 +624,19 @@ var ModelElement = (props) => {
|
|
|
624
624
|
open: model,
|
|
625
625
|
onCancel,
|
|
626
626
|
footer: null,
|
|
627
|
-
title: /* @__PURE__ */ import_react19.default.createElement(
|
|
627
|
+
title: /* @__PURE__ */ import_react19.default.createElement(
|
|
628
|
+
"div",
|
|
629
|
+
{
|
|
630
|
+
style: {
|
|
631
|
+
backgroundColor: "#D4D4D4",
|
|
632
|
+
display: "flex",
|
|
633
|
+
flexWrap: "wrap",
|
|
634
|
+
padding: "10px",
|
|
635
|
+
width: "full"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
Object.entries(selectedRecord).map(([key, value]) => /* @__PURE__ */ import_react19.default.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ import_react19.default.createElement("span", { style: { color: "gray" } }, key), String(value)))
|
|
639
|
+
)
|
|
628
640
|
},
|
|
629
641
|
/* @__PURE__ */ import_react19.default.createElement("p", null, "Model opened")
|
|
630
642
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -573,7 +573,19 @@ var ModelElement = (props) => {
|
|
|
573
573
|
open: model,
|
|
574
574
|
onCancel,
|
|
575
575
|
footer: null,
|
|
576
|
-
title: /* @__PURE__ */ React18.createElement(
|
|
576
|
+
title: /* @__PURE__ */ React18.createElement(
|
|
577
|
+
"div",
|
|
578
|
+
{
|
|
579
|
+
style: {
|
|
580
|
+
backgroundColor: "#D4D4D4",
|
|
581
|
+
display: "flex",
|
|
582
|
+
flexWrap: "wrap",
|
|
583
|
+
padding: "10px",
|
|
584
|
+
width: "full"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
Object.entries(selectedRecord).map(([key, value]) => /* @__PURE__ */ React18.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ React18.createElement("span", { style: { color: "gray" } }, key), String(value)))
|
|
588
|
+
)
|
|
577
589
|
},
|
|
578
590
|
/* @__PURE__ */ React18.createElement("p", null, "Model opened")
|
|
579
591
|
);
|