@chekinapp/ui 0.2.5 → 0.2.6

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.cjs CHANGED
@@ -8267,7 +8267,7 @@ function Modal({
8267
8267
  overlayClassName,
8268
8268
  className: cn(
8269
8269
  "modal__content",
8270
- "flex h-auto min-w-[340px] w-auto flex-col items-center gap-y-6 rounded-md bg-[var(--chekin-color-white)] text-center text-[var(--chekin-color-brand-navy)]",
8270
+ "flex h-auto min-w-[340px] w-auto flex-col items-center gap-y-6 bg-[var(--chekin-color-white)] text-center text-[var(--chekin-color-brand-navy)]",
8271
8271
  scrollableOverlay && "min-h-0",
8272
8272
  size === "compact" && "w-[360px] min-w-0",
8273
8273
  className
@@ -8289,7 +8289,7 @@ function Modal({
8289
8289
  }
8290
8290
  ),
8291
8291
  (icon || iconSrc || iconProps?.src) && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("div", { className: cn("modal__icon mx-auto mt-4 select-none", iconClassName), children: icon ?? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("img", { src: iconSrc, alt: iconAlt ?? "", ...iconProps }) }),
8292
- title ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogTitle, { className: cn("modal__title", "px-6 text-lg font-bold"), children: title }) : /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogVisuallyHidden, { children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogTitle, { children: "Dialog" }) }),
8292
+ title ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogTitle, { className: cn("modal__title", "px-6 font-bold"), children: title }) : /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogVisuallyHidden, { children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogTitle, { children: "Dialog" }) }),
8293
8293
  text && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(DialogDescription, { className: cn("modal__text", "text-base"), children: text }),
8294
8294
  children,
8295
8295
  buttons && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
@@ -9997,7 +9997,7 @@ var Section = (0, import_react68.forwardRef)(
9997
9997
  "div",
9998
9998
  {
9999
9999
  className: cn(
10000
- "flex max-w-[85%] items-center text-lg font-bold text-[var(--section-title-color)] md:max-w-full",
10000
+ "flex max-w-[85%] items-center text-lg font-semibold text-[var(--section-title-color)] md:max-w-full",
10001
10001
  size !== 0 /* L */ && "subsection-title",
10002
10002
  titleClassName
10003
10003
  ),