catchup-library-web 1.2.13 → 1.2.14
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 +4 -3
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
- package/src/components/modals/BaseModal.tsx +4 -1
package/dist/index.js
CHANGED
|
@@ -951,17 +951,18 @@ var BaseModal = ({
|
|
|
951
951
|
border: "",
|
|
952
952
|
maxHeight: "70%",
|
|
953
953
|
overflow: "auto",
|
|
954
|
-
zIndex:
|
|
954
|
+
zIndex: 20
|
|
955
955
|
},
|
|
956
956
|
overlay: {
|
|
957
|
-
background: "rgba(0, 0, 0, 0.6)"
|
|
957
|
+
background: "rgba(0, 0, 0, 0.6)",
|
|
958
|
+
zIndex: 9999
|
|
958
959
|
}
|
|
959
960
|
},
|
|
960
961
|
contentLabel: "",
|
|
961
962
|
children: customSize ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: `${customSize}`, children }) : /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
962
963
|
"div",
|
|
963
964
|
{
|
|
964
|
-
className: `${size === "small" ? "w-[600px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
965
|
+
className: `${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
965
966
|
children
|
|
966
967
|
}
|
|
967
968
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -766,17 +766,18 @@ var BaseModal = ({
|
|
|
766
766
|
border: "",
|
|
767
767
|
maxHeight: "70%",
|
|
768
768
|
overflow: "auto",
|
|
769
|
-
zIndex:
|
|
769
|
+
zIndex: 20
|
|
770
770
|
},
|
|
771
771
|
overlay: {
|
|
772
|
-
background: "rgba(0, 0, 0, 0.6)"
|
|
772
|
+
background: "rgba(0, 0, 0, 0.6)",
|
|
773
|
+
zIndex: 9999
|
|
773
774
|
}
|
|
774
775
|
},
|
|
775
776
|
contentLabel: "",
|
|
776
777
|
children: customSize ? /* @__PURE__ */ jsx10("div", { className: `${customSize}`, children }) : /* @__PURE__ */ jsx10(
|
|
777
778
|
"div",
|
|
778
779
|
{
|
|
779
|
-
className: `${size === "small" ? "w-[600px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
780
|
+
className: `${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
780
781
|
children
|
|
781
782
|
}
|
|
782
783
|
)
|
package/package.json
CHANGED
|
@@ -28,10 +28,11 @@ const BaseModal = ({
|
|
|
28
28
|
border: "",
|
|
29
29
|
maxHeight: "70%",
|
|
30
30
|
overflow: "auto",
|
|
31
|
-
zIndex:
|
|
31
|
+
zIndex: 20,
|
|
32
32
|
},
|
|
33
33
|
overlay: {
|
|
34
34
|
background: "rgba(0, 0, 0, 0.6)",
|
|
35
|
+
zIndex: 9999,
|
|
35
36
|
},
|
|
36
37
|
}}
|
|
37
38
|
contentLabel=""
|
|
@@ -43,6 +44,8 @@ const BaseModal = ({
|
|
|
43
44
|
className={`${
|
|
44
45
|
size === "small"
|
|
45
46
|
? "w-[600px]"
|
|
47
|
+
: size === "medium"
|
|
48
|
+
? "w-[900px]"
|
|
46
49
|
: "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"
|
|
47
50
|
}`}
|
|
48
51
|
>
|