@eclass/ui-kit 1.44.0 → 1.45.0

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.
@@ -32051,7 +32051,7 @@ const LargeBox = ({
32051
32051
  },
32052
32052
  target: targetBlank ? "_blank" : "_self",
32053
32053
  rel: targetBlank ? "noopener noreferrer" : void 0,
32054
- display: "inline-block",
32054
+ display: "contents",
32055
32055
  children: /* @__PURE__ */ jsxs(Flex, {
32056
32056
  cursor: "pointer",
32057
32057
  transition: "box-shadow 0.3s ease-in-out",
@@ -32059,7 +32059,7 @@ const LargeBox = ({
32059
32059
  shadow: "sm"
32060
32060
  },
32061
32061
  w: "fit-content",
32062
- borderRadius: "8px",
32062
+ borderRadius: vars("radii-big"),
32063
32063
  display: isMobile ? "block" : "flex",
32064
32064
  children: [/* @__PURE__ */ jsx(Box, {
32065
32065
  width: "285px",
@@ -32071,8 +32071,7 @@ const LargeBox = ({
32071
32071
  width: isMobile ? "285px" : "305px",
32072
32072
  minHeight: isMobile ? "160px" : "168px",
32073
32073
  borderRadius: isMobile ? "0 0 8px 8px" : "0 8px 8px 0",
32074
- border: "1px",
32075
- borderColor: vars("colors-neutral-platinum"),
32074
+ border: vars("borders-light"),
32076
32075
  display: "flex",
32077
32076
  flexDirection: "column",
32078
32077
  cursor: "pointer",
@@ -32096,7 +32095,7 @@ const LargeBox = ({
32096
32095
  fontWeight: "400",
32097
32096
  children: startDate
32098
32097
  }), /* @__PURE__ */ jsx(Text, {
32099
- color: vars("colors-neutral-platinum"),
32098
+ color: vars("borders-light"),
32100
32099
  children: "|"
32101
32100
  }), /* @__PURE__ */ jsx(Clock, {
32102
32101
  color: vars("colors-main-ziggurat")
@@ -32105,7 +32104,7 @@ const LargeBox = ({
32105
32104
  })]
32106
32105
  })]
32107
32106
  }), /* @__PURE__ */ jsx(Box, {
32108
- borderTop: `1px solid ${vars("colors-neutral-platinum")}`,
32107
+ borderTop: `${vars("borders-light")}`,
32109
32108
  width: "100%",
32110
32109
  height: "50px",
32111
32110
  padding: "12px",
@@ -32141,13 +32140,12 @@ const SmallBox = ({
32141
32140
  },
32142
32141
  target: targetBlank ? "_blank" : "_self",
32143
32142
  rel: targetBlank ? "noopener noreferrer" : void 0,
32144
- display: "inline-block",
32143
+ display: "contents",
32145
32144
  children: /* @__PURE__ */ jsxs(Box, {
32146
32145
  width: "286px",
32147
32146
  height: "247px",
32148
- borderRadius: "8px",
32149
- border: "1px",
32150
- borderColor: vars("colors-neutral-platinum"),
32147
+ borderRadius: vars("radii-big"),
32148
+ border: vars("borders-light"),
32151
32149
  justifyContent: "center",
32152
32150
  textAlign: "center",
32153
32151
  display: "flex",
@@ -32176,6 +32174,7 @@ const SmallBox = ({
32176
32174
  gap: "8px",
32177
32175
  children: [/* @__PURE__ */ jsx(Text, {
32178
32176
  fontWeight: "700",
32177
+ m: "0px",
32179
32178
  children: eventTitle
32180
32179
  }), /* @__PURE__ */ jsxs(Box, {
32181
32180
  display: "flex",
@@ -32183,10 +32182,13 @@ const SmallBox = ({
32183
32182
  gap: "4px",
32184
32183
  children: [/* @__PURE__ */ jsx(Calendar, {}), /* @__PURE__ */ jsx(Text, {
32185
32184
  fontWeight: "400",
32185
+ m: "0px",
32186
32186
  children: startDate
32187
32187
  }), /* @__PURE__ */ jsx(Text, {
32188
+ m: "0px",
32188
32189
  children: "|"
32189
32190
  }), /* @__PURE__ */ jsx(Clock, {}), /* @__PURE__ */ jsx(Text, {
32191
+ m: "0px",
32190
32192
  children: startTime
32191
32193
  })]
32192
32194
  })]
@@ -33198,17 +33200,17 @@ const Resources = ({
33198
33200
  _hover: {
33199
33201
  textDecoration: "none"
33200
33202
  },
33203
+ display: "contents",
33201
33204
  children: /* @__PURE__ */ jsxs(Box, {
33202
33205
  width: "285px",
33203
33206
  height: "147px",
33204
- borderRadius: "8px",
33205
- border: "1px",
33206
- borderColor: vars("colors-neutral-platinum"),
33207
+ borderRadius: vars("radii-big"),
33208
+ border: vars("borders-light"),
33207
33209
  justifyContent: "center",
33208
33210
  textAlign: "center",
33209
33211
  display: "grid",
33210
33212
  gap: "8px",
33211
- padding: 4,
33213
+ padding: "1rem",
33212
33214
  transition: "box-shadow 0.3s ease-in-out",
33213
33215
  _hover: {
33214
33216
  shadow: "sm"
@@ -33225,6 +33227,7 @@ const Resources = ({
33225
33227
  lineHeight: "21px",
33226
33228
  fontSize: "16px",
33227
33229
  color: "#555555",
33230
+ m: "0px",
33228
33231
  children: resourceTitle
33229
33232
  })
33230
33233
  }), /* @__PURE__ */ jsx(Box, {
@@ -33234,6 +33237,7 @@ const Resources = ({
33234
33237
  lineHeight: "14px",
33235
33238
  fontSize: "12px",
33236
33239
  color: "#555555",
33240
+ m: "0px",
33237
33241
  children: resourceDetail
33238
33242
  })
33239
33243
  }), /* @__PURE__ */ jsx(Box, {
@@ -33249,6 +33253,7 @@ const Resources = ({
33249
33253
  textDecoration: "underline",
33250
33254
  gap: "8px",
33251
33255
  display: "flex",
33256
+ m: "0px",
33252
33257
  children: [/* @__PURE__ */ jsx(Download, {
33253
33258
  color: vars("colors-main-deepSkyBlue")
33254
33259
  }), resourceTextDownload]