@apexcura/ui-components 0.0.11-Beta226 → 0.0.11-Beta228
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 +0 -3
- package/dist/index.js +2 -14
- package/dist/index.mjs +2 -14
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -633,26 +633,14 @@ var ModelBody = (props) => {
|
|
|
633
633
|
|
|
634
634
|
// src/Components/Model.tsx
|
|
635
635
|
var ModelElement = (props) => {
|
|
636
|
+
console.log("props in model", props);
|
|
636
637
|
return /* @__PURE__ */ import_react20.default.createElement(
|
|
637
638
|
import_antd13.Modal,
|
|
638
639
|
{
|
|
639
640
|
open: props.model,
|
|
640
641
|
onCancel: props.onCancel,
|
|
641
642
|
footer: null,
|
|
642
|
-
width: 850
|
|
643
|
-
title: /* @__PURE__ */ import_react20.default.createElement(
|
|
644
|
-
"div",
|
|
645
|
-
{
|
|
646
|
-
style: {
|
|
647
|
-
display: "flex",
|
|
648
|
-
flexWrap: "wrap",
|
|
649
|
-
padding: "20px",
|
|
650
|
-
width: "full",
|
|
651
|
-
margin: "-10px"
|
|
652
|
-
}
|
|
653
|
-
},
|
|
654
|
-
Object.entries(props.selectedRecord).map(([key, value]) => /* @__PURE__ */ import_react20.default.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ import_react20.default.createElement("span", { style: { color: "gray", paddingRight: "10px" } }, key), String(value)))
|
|
655
|
-
)
|
|
643
|
+
width: 850
|
|
656
644
|
},
|
|
657
645
|
/* @__PURE__ */ import_react20.default.createElement(ModelBody, { ...props })
|
|
658
646
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -582,26 +582,14 @@ var ModelBody = (props) => {
|
|
|
582
582
|
|
|
583
583
|
// src/Components/Model.tsx
|
|
584
584
|
var ModelElement = (props) => {
|
|
585
|
+
console.log("props in model", props);
|
|
585
586
|
return /* @__PURE__ */ React19.createElement(
|
|
586
587
|
Modal,
|
|
587
588
|
{
|
|
588
589
|
open: props.model,
|
|
589
590
|
onCancel: props.onCancel,
|
|
590
591
|
footer: null,
|
|
591
|
-
width: 850
|
|
592
|
-
title: /* @__PURE__ */ React19.createElement(
|
|
593
|
-
"div",
|
|
594
|
-
{
|
|
595
|
-
style: {
|
|
596
|
-
display: "flex",
|
|
597
|
-
flexWrap: "wrap",
|
|
598
|
-
padding: "20px",
|
|
599
|
-
width: "full",
|
|
600
|
-
margin: "-10px"
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
Object.entries(props.selectedRecord).map(([key, value]) => /* @__PURE__ */ React19.createElement("p", { style: { fontWeight: "200", padding: "10px" }, key }, /* @__PURE__ */ React19.createElement("span", { style: { color: "gray", paddingRight: "10px" } }, key), String(value)))
|
|
604
|
-
)
|
|
592
|
+
width: 850
|
|
605
593
|
},
|
|
606
594
|
/* @__PURE__ */ React19.createElement(ModelBody, { ...props })
|
|
607
595
|
);
|