@eclass/ui-kit 1.39.8 → 1.39.9
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/eclass-ui-kit.es.js +4 -2
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +27 -27
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/organisms/ModalAlert/ModalAlert.d.ts +1 -1
- package/dist/organisms/ModalAlert/types.d.ts +3 -0
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -31718,16 +31718,18 @@ function ModalAlert({
|
|
|
31718
31718
|
typeAlert,
|
|
31719
31719
|
title,
|
|
31720
31720
|
description,
|
|
31721
|
-
optionsButton
|
|
31721
|
+
optionsButton,
|
|
31722
|
+
top: top2
|
|
31722
31723
|
}) {
|
|
31723
31724
|
const [isDesktop] = useMediaQuery("(min-width: 650px)");
|
|
31724
31725
|
const modalStyles = {
|
|
31725
31726
|
content: {
|
|
31726
|
-
top:
|
|
31727
|
+
top: top2
|
|
31727
31728
|
}
|
|
31728
31729
|
};
|
|
31729
31730
|
const showBorder = optionsButton.length > 1;
|
|
31730
31731
|
return /* @__PURE__ */ jsxs(Modal, {
|
|
31732
|
+
id: "modal-alert",
|
|
31731
31733
|
isOpen: showModal,
|
|
31732
31734
|
onClose: () => {
|
|
31733
31735
|
},
|