@eclass/ui-kit 1.7.1 → 1.7.2
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 +10 -5
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +1 -1
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/organisms/CourseList/types.d.ts +1 -0
- package/dist/theme/styles.d.ts +3 -0
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/eclass-ui-kit.es.js
CHANGED
|
@@ -26083,23 +26083,26 @@ const styles = {
|
|
|
26083
26083
|
borderStyle: "none"
|
|
26084
26084
|
},
|
|
26085
26085
|
".chakra-modal__content-container": {
|
|
26086
|
+
padding: "1.87rem",
|
|
26086
26087
|
zIndex: "1400",
|
|
26087
26088
|
justifyContent: "center",
|
|
26088
26089
|
alignItems: "center",
|
|
26089
26090
|
overflow: "auto"
|
|
26090
26091
|
},
|
|
26091
26092
|
".chakra-modal__content": {
|
|
26092
|
-
borderRadius: "
|
|
26093
|
+
borderRadius: "0.5rem",
|
|
26093
26094
|
background: "white",
|
|
26094
26095
|
color: "inherit",
|
|
26095
26096
|
zIndex: "1400",
|
|
26096
|
-
maxWidth: "
|
|
26097
|
+
maxWidth: "36.813rem",
|
|
26098
|
+
boxShadow: "0px 4px 16px rgb(92 92 92 0.2)"
|
|
26097
26099
|
},
|
|
26098
26100
|
".chakra-modal__header": {
|
|
26099
26101
|
paddingInlineStart: "1.5rem",
|
|
26100
26102
|
paddingInlineEnd: "1.5rem",
|
|
26101
26103
|
fontSize: "1.25rem",
|
|
26102
26104
|
fontWeight: "700",
|
|
26105
|
+
textAlign: "center",
|
|
26103
26106
|
".chakra-icon": {
|
|
26104
26107
|
width: "13rem"
|
|
26105
26108
|
}
|
|
@@ -26107,7 +26110,7 @@ const styles = {
|
|
|
26107
26110
|
".chakra-modal__close-btn": {
|
|
26108
26111
|
width: "2rem",
|
|
26109
26112
|
height: "2rem",
|
|
26110
|
-
borderRadius: "
|
|
26113
|
+
borderRadius: "0.5rem",
|
|
26111
26114
|
fontSize: "0.75rem",
|
|
26112
26115
|
position: "absolute",
|
|
26113
26116
|
top: "0.5rem",
|
|
@@ -27452,7 +27455,7 @@ function PaymentModal({
|
|
|
27452
27455
|
blockScrollOnMount: false,
|
|
27453
27456
|
children: [overlay, /* @__PURE__ */ jsxs(ModalContent, {
|
|
27454
27457
|
marginTop: "0",
|
|
27455
|
-
marginBottom: "
|
|
27458
|
+
marginBottom: ["25.75rem", "15.75rem"],
|
|
27456
27459
|
children: [/* @__PURE__ */ jsxs(ModalHeader, {
|
|
27457
27460
|
justifyContent: "center",
|
|
27458
27461
|
display: "flex",
|
|
@@ -27473,6 +27476,7 @@ function PaymentModal({
|
|
|
27473
27476
|
}), /* @__PURE__ */ jsx(ModalBody, {
|
|
27474
27477
|
p: "1rem 2rem 2rem 2rem",
|
|
27475
27478
|
children: /* @__PURE__ */ jsx(Text, {
|
|
27479
|
+
align: "center",
|
|
27476
27480
|
children: modalPaymentText.body
|
|
27477
27481
|
})
|
|
27478
27482
|
}), /* @__PURE__ */ jsx(ModalFooter, {
|
|
@@ -27490,7 +27494,7 @@ function PaymentModal({
|
|
|
27490
27494
|
_hover: cssButton,
|
|
27491
27495
|
_focus: cssButton,
|
|
27492
27496
|
_active: cssButton,
|
|
27493
|
-
children:
|
|
27497
|
+
children: modalPaymentText.buttonName
|
|
27494
27498
|
})
|
|
27495
27499
|
})]
|
|
27496
27500
|
})]
|
|
@@ -27537,6 +27541,7 @@ function Footer({
|
|
|
27537
27541
|
mr: action.hasIcon ? "1.5rem" : "0",
|
|
27538
27542
|
lineHeight: "1.172rem",
|
|
27539
27543
|
p: "0",
|
|
27544
|
+
zIndex: "inherit",
|
|
27540
27545
|
_hover: cssButton,
|
|
27541
27546
|
_focus: cssButton,
|
|
27542
27547
|
_active: cssButton,
|