@idds/react 1.5.10 → 1.5.11
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.es.js
CHANGED
|
@@ -3609,7 +3609,8 @@ function Modal({
|
|
|
3609
3609
|
closeOnBackdrop = true,
|
|
3610
3610
|
container,
|
|
3611
3611
|
dialogClassname,
|
|
3612
|
-
size = ""
|
|
3612
|
+
size = "",
|
|
3613
|
+
paddingBody = "16px 24px"
|
|
3613
3614
|
}) {
|
|
3614
3615
|
const [mounted, setMounted] = useState(false);
|
|
3615
3616
|
const [shouldRender, setShouldRender] = useState(false);
|
|
@@ -3701,7 +3702,7 @@ function Modal({
|
|
|
3701
3702
|
}
|
|
3702
3703
|
)
|
|
3703
3704
|
] }),
|
|
3704
|
-
/* @__PURE__ */ jsx("div", { className: "ina-modal__body", children })
|
|
3705
|
+
/* @__PURE__ */ jsx("div", { className: "ina-modal__body", style: { padding: paddingBody }, children })
|
|
3705
3706
|
] }) })
|
|
3706
3707
|
]
|
|
3707
3708
|
}
|