@npm_leadtech/legal-contracts-ui 0.64.1 → 0.64.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.
|
@@ -152,7 +152,7 @@ export declare interface ProductTemplateProps {
|
|
|
152
152
|
faqSection: FaqSectionProps;
|
|
153
153
|
previewDownload: PreviewDownloadProps;
|
|
154
154
|
previewSection?: PreviewSectionProps;
|
|
155
|
-
tryNowSection
|
|
155
|
+
tryNowSection?: TryNowSectionProps;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
export type RadioFieldData = {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsxs as o, jsx as m } from "react/jsx-runtime";
|
|
2
2
|
import { Jumbotron as g } from "./Jumbotron.js";
|
|
3
3
|
import { JumboDocs as u } from "./JumboDocs.js";
|
|
4
|
-
import { Preform as
|
|
5
|
-
import { ProductInfo as
|
|
4
|
+
import { Preform as h } from "./Preform.js";
|
|
5
|
+
import { ProductInfo as w } from "./ProductInfo.js";
|
|
6
6
|
import { BenefitsBar as N } from "./BenefitsBar.js";
|
|
7
7
|
import { Breadcrumb as b } from "./Breadcrumb.js";
|
|
8
8
|
import { TableOfContents as P } from "./TableOfContents.js";
|
|
@@ -10,39 +10,39 @@ import { ContentItem as v } from "./ContentItem.js";
|
|
|
10
10
|
import { FaqSection as B } from "./FaqSection.js";
|
|
11
11
|
import { PreviewDownload as T } from "./PreviewDownload.js";
|
|
12
12
|
import { PreviewSection as k } from "./PreviewSection.js";
|
|
13
|
-
import { TryNowSection as
|
|
13
|
+
import { TryNowSection as C } from "./TryNowSection.js";
|
|
14
14
|
const H = ({
|
|
15
|
-
jumbotron:
|
|
15
|
+
jumbotron: i,
|
|
16
16
|
jumboDocs: r,
|
|
17
|
-
preform:
|
|
18
|
-
productInfo:
|
|
19
|
-
benefitsBar:
|
|
20
|
-
breadcrumb:
|
|
21
|
-
tableOfContents:
|
|
22
|
-
contentItems:
|
|
17
|
+
preform: e,
|
|
18
|
+
productInfo: p,
|
|
19
|
+
benefitsBar: f,
|
|
20
|
+
breadcrumb: s,
|
|
21
|
+
tableOfContents: c,
|
|
22
|
+
contentItems: x,
|
|
23
23
|
faqSection: n,
|
|
24
|
-
previewDownload:
|
|
25
|
-
previewSection:
|
|
26
|
-
tryNowSection:
|
|
24
|
+
previewDownload: d,
|
|
25
|
+
previewSection: t,
|
|
26
|
+
tryNowSection: a
|
|
27
27
|
}) => /* @__PURE__ */ o("main", { className: "flex-1", children: [
|
|
28
|
-
/* @__PURE__ */ m(g, { ...
|
|
28
|
+
/* @__PURE__ */ m(g, { ...i }),
|
|
29
29
|
r && /* @__PURE__ */ m(u, { ...r }),
|
|
30
|
-
|
|
31
|
-
/* @__PURE__ */ m(
|
|
32
|
-
/* @__PURE__ */ m(N, { ...
|
|
30
|
+
e && /* @__PURE__ */ m(h, { ...e }),
|
|
31
|
+
/* @__PURE__ */ m(w, { ...p }),
|
|
32
|
+
/* @__PURE__ */ m(N, { ...f }),
|
|
33
33
|
/* @__PURE__ */ m("section", { className: "px-4 pt-6 pb-10 text-neutral-800 md:px-6 lg:px-8 xl:px-30", children: /* @__PURE__ */ o("div", { className: "mx-auto flex w-full max-w-300 flex-col gap-6", children: [
|
|
34
|
-
/* @__PURE__ */ m(b, { ...
|
|
34
|
+
/* @__PURE__ */ m(b, { ...s }),
|
|
35
35
|
/* @__PURE__ */ o("div", { className: "flex items-start md:gap-4 lg:gap-26.5 xl:gap-31", children: [
|
|
36
36
|
/* @__PURE__ */ o("div", { className: "flex max-w-100 flex-col gap-8 lg:max-w-137.5 xl:max-w-172.5", children: [
|
|
37
|
-
/* @__PURE__ */ m(P, { ...
|
|
38
|
-
|
|
37
|
+
/* @__PURE__ */ m(P, { ...c }),
|
|
38
|
+
x.map((l) => /* @__PURE__ */ m(v, { ...l }, l.id)),
|
|
39
39
|
/* @__PURE__ */ m(B, { ...n })
|
|
40
40
|
] }),
|
|
41
|
-
/* @__PURE__ */ m("aside", { className: "sticky top-20 hidden pt-4 md:block", children: /* @__PURE__ */ m(T, { ...
|
|
41
|
+
/* @__PURE__ */ m("aside", { className: "sticky top-20 hidden pt-4 md:block", children: /* @__PURE__ */ m(T, { ...d }) })
|
|
42
42
|
] })
|
|
43
43
|
] }) }),
|
|
44
|
-
|
|
45
|
-
/* @__PURE__ */ m(
|
|
44
|
+
t && /* @__PURE__ */ m(k, { ...t }),
|
|
45
|
+
a && /* @__PURE__ */ m(C, { ...a })
|
|
46
46
|
] });
|
|
47
47
|
export {
|
|
48
48
|
H as ProductTemplate
|