catchup-library-web 1.12.12 → 1.12.13
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 +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
- package/src/components/modals/BaseModal.tsx +2 -3
package/dist/index.js
CHANGED
|
@@ -1009,7 +1009,6 @@ var BaseModal = ({
|
|
|
1009
1009
|
isOpen,
|
|
1010
1010
|
onAfterOpen,
|
|
1011
1011
|
onRequestClose,
|
|
1012
|
-
className: "quicksand",
|
|
1013
1012
|
style: {
|
|
1014
1013
|
content: {
|
|
1015
1014
|
top: "50%",
|
|
@@ -1032,10 +1031,10 @@ var BaseModal = ({
|
|
|
1032
1031
|
}
|
|
1033
1032
|
},
|
|
1034
1033
|
contentLabel: "",
|
|
1035
|
-
children: customSize ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: `${customSize}`, children }) : /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1034
|
+
children: customSize ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: `${customSize} font-quicksand`, children }) : /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1036
1035
|
"div",
|
|
1037
1036
|
{
|
|
1038
|
-
className:
|
|
1037
|
+
className: `font-quicksand ${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
1039
1038
|
children
|
|
1040
1039
|
}
|
|
1041
1040
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -806,7 +806,6 @@ var BaseModal = ({
|
|
|
806
806
|
isOpen,
|
|
807
807
|
onAfterOpen,
|
|
808
808
|
onRequestClose,
|
|
809
|
-
className: "quicksand",
|
|
810
809
|
style: {
|
|
811
810
|
content: {
|
|
812
811
|
top: "50%",
|
|
@@ -829,10 +828,10 @@ var BaseModal = ({
|
|
|
829
828
|
}
|
|
830
829
|
},
|
|
831
830
|
contentLabel: "",
|
|
832
|
-
children: customSize ? /* @__PURE__ */ jsx11("div", { className: `${customSize}`, children }) : /* @__PURE__ */ jsx11(
|
|
831
|
+
children: customSize ? /* @__PURE__ */ jsx11("div", { className: `${customSize} font-quicksand`, children }) : /* @__PURE__ */ jsx11(
|
|
833
832
|
"div",
|
|
834
833
|
{
|
|
835
|
-
className:
|
|
834
|
+
className: `font-quicksand ${size === "small" ? "w-[600px]" : size === "medium" ? "w-[900px]" : "w-[600px] lg:w-[900px] xl:w-[1200px] 2xl:w-[1500px]"}`,
|
|
836
835
|
children
|
|
837
836
|
}
|
|
838
837
|
)
|
package/package.json
CHANGED
|
@@ -14,7 +14,6 @@ const BaseModal = ({
|
|
|
14
14
|
isOpen={isOpen}
|
|
15
15
|
onAfterOpen={onAfterOpen}
|
|
16
16
|
onRequestClose={onRequestClose}
|
|
17
|
-
className="quicksand"
|
|
18
17
|
style={{
|
|
19
18
|
content: {
|
|
20
19
|
top: "50%",
|
|
@@ -39,10 +38,10 @@ const BaseModal = ({
|
|
|
39
38
|
contentLabel=""
|
|
40
39
|
>
|
|
41
40
|
{customSize ? (
|
|
42
|
-
<div className={`${customSize}`}>{children}</div>
|
|
41
|
+
<div className={`${customSize} font-quicksand`}>{children}</div>
|
|
43
42
|
) : (
|
|
44
43
|
<div
|
|
45
|
-
className={
|
|
44
|
+
className={`font-quicksand ${
|
|
46
45
|
size === "small"
|
|
47
46
|
? "w-[600px]"
|
|
48
47
|
: size === "medium"
|