@npm_leadtech/legal-contracts-ui 0.64.4 → 0.64.5

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.
@@ -1,5 +1,5 @@
1
1
  "use client";
2
- import { jsxs as c, Fragment as n, jsx as e } from "react/jsx-runtime";
2
+ import { jsxs as c, Fragment as p, jsx as e } from "react/jsx-runtime";
3
3
  import "react";
4
4
  import { Tooltips as x } from "./Tooltips.js";
5
5
  import { PreformMobile as a } from "./PreformMobile.js";
@@ -7,10 +7,10 @@ import { PreformOption as f } from "./PreformOption.js";
7
7
  import { TrustedBadge as i } from "./TrustedBadge.js";
8
8
  import { Input as h } from "./Input.js";
9
9
  import { LinkWrapper as t } from "./LinkWrapper.js";
10
- const k = ({ trustedBadge: s, cta: o, inputFieldData: l, radioFieldData: m, tooltips: p }) => /* @__PURE__ */ c(n, { children: [
10
+ const k = ({ trustedBadge: s, cta: o, inputFieldData: l, radioFieldData: m, tooltips: n }) => /* @__PURE__ */ c(p, { children: [
11
11
  /* @__PURE__ */ e("section", { className: "bg-neutral-25 hidden pt-10 text-neutral-800 sm:block sm:px-6 lg:px-8 xl:px-30", children: /* @__PURE__ */ c("div", { className: "relative mx-auto flex max-w-300 flex-col gap-6 rounded bg-white px-6 pt-8 pb-6 shadow-md sm:items-center sm:gap-8 lg:px-26 xl:px-10", children: [
12
12
  /* @__PURE__ */ e(i, { ...s }),
13
- m?.isVisible && /* @__PURE__ */ c(n, { children: [
13
+ m?.isVisible && /* @__PURE__ */ c(p, { children: [
14
14
  /* @__PURE__ */ e("h2", { className: "text-medium sm:text-large font-bold", children: m.label }),
15
15
  /* @__PURE__ */ c("div", { className: "flex w-full max-w-272 flex-wrap justify-center gap-2 sm:gap-4", children: [
16
16
  m.options.map((r) => /* @__PURE__ */ e(
@@ -42,7 +42,7 @@ const k = ({ trustedBadge: s, cta: o, inputFieldData: l, radioFieldData: m, tool
42
42
  ] })
43
43
  ] }),
44
44
  /* @__PURE__ */ e(t, { variant: "primary-green", children: o }),
45
- p.length > 0 && /* @__PURE__ */ e("div", { className: "flex flex-col gap-8 pt-2", children: p.map((r) => /* @__PURE__ */ e(x, { ...r }, r.title)) })
45
+ n.length > 0 && /* @__PURE__ */ e("div", { className: "flex flex-col gap-8", children: n.map((r) => /* @__PURE__ */ e(x, { ...r }, r.title)) })
46
46
  ] }) }),
47
47
  /* @__PURE__ */ e(
48
48
  a,
@@ -1,10 +1,10 @@
1
1
  import { jsxs as o, jsx as e } from "react/jsx-runtime";
2
2
  import { QuestionIcon as t } from "./QuestionIcon.js";
3
3
  import { Markdown as s } from "./Markdown.js";
4
- const n = ({ title: r, content: l }) => /* @__PURE__ */ o("div", { className: "border-secondary-200 hidden flex-col gap-2 rounded border p-6 md:flex", children: [
4
+ const n = ({ title: r, content: l }) => /* @__PURE__ */ o("div", { className: "border-secondary-200 hidden flex-col gap-4 rounded border p-6 md:flex", children: [
5
5
  /* @__PURE__ */ o("div", { className: "flex items-center gap-1.5", children: [
6
6
  /* @__PURE__ */ e(t, { fill: "var(--color-secondary-600)" }),
7
- /* @__PURE__ */ e("h5", { className: "text-small font-semibold text-neutral-800", children: r })
7
+ /* @__PURE__ */ e("h5", { className: "text-small font-semibold text-neutral-900", children: r })
8
8
  ] }),
9
9
  /* @__PURE__ */ e(s, { className: "text-small", variant: "tooltip", content: l })
10
10
  ] });
@@ -2,7 +2,7 @@ import { jsx as e } from "react/jsx-runtime";
2
2
  import a from "clsx";
3
3
  const o = ({ variant: t = "default", children: r }) => /* @__PURE__ */ e("ul", { className: a("flex list-inside list-disc flex-col px-4 text-neutral-900", {
4
4
  default: "bg-primary-50 gap-4 mb-4 py-2",
5
- tooltip: "gap-1 marker:text-secondary-600"
5
+ tooltip: "gap-2 marker:text-secondary-600"
6
6
  }[t]), children: r });
7
7
  export {
8
8
  o as UnorderedList