@npm_leadtech/legal-contracts-ui 0.84.1 → 0.84.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/components/AiLegalDocumentReviewerTemplate.d.ts +1 -0
- package/dist/components/ElectronicSignatureTemplate.d.ts +1 -0
- package/dist/components/HowItWorksSection.d.ts +1 -0
- package/dist/components/HowItWorksSection.js +18 -22
- package/dist/components/index.d.ts +1215 -0
- package/dist/globals.css +1 -1
- package/package.json +1 -1
|
@@ -1,26 +1,22 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import {
|
|
3
|
-
const
|
|
4
|
-
/* @__PURE__ */ e("div", { className: "relative order-2 overflow-hidden rounded-
|
|
5
|
-
/* @__PURE__ */
|
|
6
|
-
/* @__PURE__ */ e(
|
|
7
|
-
/* @__PURE__ */ e(
|
|
8
|
-
|
|
9
|
-
{
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
] })
|
|
19
|
-
},
|
|
20
|
-
l.title
|
|
21
|
-
)) })
|
|
1
|
+
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
2
|
+
import { Markdown as c } from "./Markdown.js";
|
|
3
|
+
const m = ({ media: a, title: d, description: i, steps: s }) => /* @__PURE__ */ e("section", { className: "bg-white", children: /* @__PURE__ */ l("div", { className: "mx-auto flex w-full flex-col gap-8 px-6 py-8 md:gap-12 lg:px-8 lg:py-12 xl:max-w-300 xl:flex-row xl:items-center xl:px-0", children: [
|
|
4
|
+
/* @__PURE__ */ e("div", { className: "relative order-2 overflow-hidden rounded-md shadow md:order-1 lg:mx-auto xl:shrink-0", children: a }),
|
|
5
|
+
/* @__PURE__ */ l("div", { className: "order-1 flex flex-col gap-6 text-neutral-800 md:order-2", children: [
|
|
6
|
+
/* @__PURE__ */ e("h2", { className: "text-super-large font-bold", children: d }),
|
|
7
|
+
/* @__PURE__ */ e(c, { className: "text-medium [&_p:last-child]:mb-0", content: i }),
|
|
8
|
+
/* @__PURE__ */ e("div", { className: "grid grid-cols-1 gap-4 lg:grid-cols-3 xl:grid-cols-1", children: s.map((r) => /* @__PURE__ */ e("article", { className: "bg-neutral-25 rounded p-6", children: /* @__PURE__ */ l("div", { className: "flex flex-col items-start gap-2", children: [
|
|
9
|
+
/* @__PURE__ */ l("div", { className: "flex justify-center gap-2", children: [
|
|
10
|
+
r.icon,
|
|
11
|
+
/* @__PURE__ */ e("p", { className: "text-medium font-bold", children: r.title })
|
|
12
|
+
] }),
|
|
13
|
+
/* @__PURE__ */ l("p", { className: "text-small", children: [
|
|
14
|
+
r.description,
|
|
15
|
+
" "
|
|
16
|
+
] })
|
|
17
|
+
] }) }, r.id)) })
|
|
22
18
|
] })
|
|
23
19
|
] }) });
|
|
24
20
|
export {
|
|
25
|
-
|
|
21
|
+
m as HowItWorksSection
|
|
26
22
|
};
|