@npm_leadtech/legal-contracts-ui 0.124.7 → 0.124.9
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/AboutUsTemplate.d.ts +0 -1
- package/dist/components/AiLegalDocumentReviewerTemplate.d.ts +0 -2
- package/dist/components/AllDocumentsTemplate.d.ts +1 -0
- package/dist/components/Button.d.ts +1 -2
- package/dist/components/Button.js +10 -23
- package/dist/components/Checkbox.d.ts +0 -1
- package/dist/components/Checkbox.js +15 -27
- package/dist/components/ContactFormSection.d.ts +0 -2
- package/dist/components/ContactUsSection.d.ts +0 -1
- package/dist/components/ContactUsSection.js +6 -6
- package/dist/components/ContactUsTemplate.d.ts +0 -2
- package/dist/components/ContentItem.d.ts +1 -0
- package/dist/components/ConversionSection.d.ts +0 -2
- package/dist/components/ConversionSection.js +4 -4
- package/dist/components/CookiesBar.d.ts +0 -1
- package/dist/components/ElectronicSignatureTemplate.d.ts +0 -1
- package/dist/components/Footer.d.ts +0 -1
- package/dist/components/Footer.js +3 -3
- package/dist/components/Header.d.ts +0 -1
- package/dist/components/Hero2Section.d.ts +0 -1
- package/dist/components/ImageWithPreview.d.ts +1 -0
- package/dist/components/ImageWithPreview.js +11 -9
- package/dist/components/Input.d.ts +0 -1
- package/dist/components/Input.js +30 -32
- package/dist/components/MobileMenu.d.ts +0 -1
- package/dist/components/MobileMenu.js +4 -5
- package/dist/components/PhoneButton.d.ts +1 -2
- package/dist/components/PhoneButton.js +4 -5
- package/dist/components/Preform.d.ts +0 -2
- package/dist/components/Preform.js +6 -7
- package/dist/components/PreformMobile.d.ts +0 -2
- package/dist/components/PreformOption.d.ts +0 -1
- package/dist/components/PreformOption.js +2 -3
- package/dist/components/PreviewDownload.d.ts +2 -0
- package/dist/components/PreviewDownload.js +22 -19
- package/dist/components/PreviewSection.d.ts +1 -0
- package/dist/components/PreviewSection.js +24 -11
- package/dist/components/ProductTemplate.d.ts +3 -2
- package/dist/components/Select.d.ts +0 -1
- package/dist/components/Select.js +20 -22
- package/dist/components/Textarea.d.ts +0 -1
- package/dist/components/Textarea.js +16 -18
- package/dist/components/UploadZone.d.ts +0 -1
- package/dist/components/UploadZone.js +20 -21
- package/package.json +1 -1
- package/dist/components/index.d.ts +0 -1340
|
@@ -32,7 +32,6 @@ export interface ConversionSectionProps {
|
|
|
32
32
|
icon: ReactNode;
|
|
33
33
|
title: string;
|
|
34
34
|
uploadZone: UploadZoneProps;
|
|
35
|
-
dataQa?: string;
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
export interface FaqItemProps {
|
|
@@ -137,6 +136,5 @@ export interface UploadZoneProps {
|
|
|
137
136
|
containerClassName?: string;
|
|
138
137
|
onAddDocument?: () => void;
|
|
139
138
|
onDropDocument?: (e: React.DragEvent<HTMLDivElement>) => void;
|
|
140
|
-
dataQa?: string;
|
|
141
139
|
}
|
|
142
140
|
|
|
@@ -2,14 +2,13 @@ import { ComponentPropsWithRef } from 'react';
|
|
|
2
2
|
import { JSX } from 'react/jsx-runtime';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
4
|
|
|
5
|
-
export declare const Button: ({ children, type, size, variant, iconPosition, className, disabled, ref,
|
|
5
|
+
export declare const Button: ({ children, type, size, variant, iconPosition, className, disabled, ref, ...props }: ButtonProps) => JSX.Element;
|
|
6
6
|
|
|
7
7
|
export declare interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'children'> {
|
|
8
8
|
children: ReactNode;
|
|
9
9
|
size?: ButtonSize;
|
|
10
10
|
variant?: ResponsiveButtonVariant;
|
|
11
11
|
iconPosition?: IconPosition;
|
|
12
|
-
dataQa?: string;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
export type ButtonSize = 'small' | 'default' | 'large';
|
|
@@ -1,33 +1,20 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { getButtonClasses as
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { getButtonClasses as p } from "./Button.utils.js";
|
|
3
3
|
import "react";
|
|
4
|
-
const
|
|
4
|
+
const x = ({
|
|
5
5
|
children: o,
|
|
6
6
|
type: r = "button",
|
|
7
|
-
size:
|
|
8
|
-
variant:
|
|
9
|
-
iconPosition:
|
|
7
|
+
size: s = "default",
|
|
8
|
+
variant: e = "primary-green",
|
|
9
|
+
iconPosition: a = "left",
|
|
10
10
|
className: n,
|
|
11
11
|
disabled: t = !1,
|
|
12
12
|
ref: m,
|
|
13
|
-
|
|
14
|
-
...f
|
|
13
|
+
...u
|
|
15
14
|
}) => {
|
|
16
|
-
const
|
|
17
|
-
return /* @__PURE__ */
|
|
18
|
-
"button",
|
|
19
|
-
{
|
|
20
|
-
"data-qa": u,
|
|
21
|
-
ref: m,
|
|
22
|
-
type: r,
|
|
23
|
-
disabled: t,
|
|
24
|
-
"aria-disabled": t,
|
|
25
|
-
className: l,
|
|
26
|
-
...f,
|
|
27
|
-
children: o
|
|
28
|
-
}
|
|
29
|
-
);
|
|
15
|
+
const f = p(s, e, a, t, n);
|
|
16
|
+
return /* @__PURE__ */ l("button", { ref: m, type: r, disabled: t, "aria-disabled": t, className: f, ...u, children: o });
|
|
30
17
|
};
|
|
31
18
|
export {
|
|
32
|
-
|
|
19
|
+
x as Button
|
|
33
20
|
};
|
|
@@ -1,43 +1,31 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import { CheckIcon as
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
required: a = !1,
|
|
1
|
+
import { jsxs as a, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import m from "clsx";
|
|
3
|
+
import { CheckIcon as c } from "./CheckIcon.js";
|
|
4
|
+
const u = ({
|
|
5
|
+
id: o,
|
|
6
|
+
name: s,
|
|
7
|
+
required: i = !1,
|
|
9
8
|
children: l,
|
|
10
9
|
checked: e,
|
|
11
|
-
error:
|
|
10
|
+
error: t = !1,
|
|
12
11
|
...n
|
|
13
|
-
}) => /* @__PURE__ */
|
|
14
|
-
/* @__PURE__ */ r(
|
|
15
|
-
"input",
|
|
16
|
-
{
|
|
17
|
-
"data-qa": s,
|
|
18
|
-
id: t,
|
|
19
|
-
name: i,
|
|
20
|
-
type: "checkbox",
|
|
21
|
-
required: a,
|
|
22
|
-
className: "peer sr-only",
|
|
23
|
-
...n
|
|
24
|
-
}
|
|
25
|
-
),
|
|
12
|
+
}) => /* @__PURE__ */ a("label", { htmlFor: o, className: "text-medium flex cursor-pointer items-center gap-2 text-neutral-800 select-none", children: [
|
|
13
|
+
/* @__PURE__ */ r("input", { id: o, name: s, type: "checkbox", required: i, className: "peer sr-only", ...n }),
|
|
26
14
|
/* @__PURE__ */ r(
|
|
27
15
|
"div",
|
|
28
16
|
{
|
|
29
|
-
className:
|
|
17
|
+
className: m(
|
|
30
18
|
"flex h-5.5 w-5.5 items-center justify-center rounded transition-colors",
|
|
31
19
|
"peer-focus-visible:ring-primary-500 peer-focus-visible:ring-2 peer-focus-visible:ring-offset-2",
|
|
32
|
-
!
|
|
20
|
+
!t && !e && "hover:bg-primary-200 border border-neutral-800 bg-white",
|
|
33
21
|
e && "border-primary-500 bg-primary-200 border-2",
|
|
34
|
-
|
|
22
|
+
t && "border-error-500 bg-error-20 border"
|
|
35
23
|
),
|
|
36
|
-
children: e && /* @__PURE__ */ r(
|
|
24
|
+
children: e && /* @__PURE__ */ r(c, {})
|
|
37
25
|
}
|
|
38
26
|
),
|
|
39
27
|
/* @__PURE__ */ r("span", { className: "leading-tight text-neutral-800", children: l })
|
|
40
28
|
] });
|
|
41
29
|
export {
|
|
42
|
-
|
|
30
|
+
u as Checkbox
|
|
43
31
|
};
|
|
@@ -9,7 +9,6 @@ export interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'chil
|
|
|
9
9
|
size?: ButtonSize;
|
|
10
10
|
variant?: ResponsiveButtonVariant;
|
|
11
11
|
iconPosition?: IconPosition;
|
|
12
|
-
dataQa?: string;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
export type ButtonSize = 'small' | 'default' | 'large';
|
|
@@ -28,7 +27,6 @@ export interface ContactFormFeedbackProps {
|
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
export declare interface ContactFormFieldProps {
|
|
31
|
-
dataQa: string;
|
|
32
30
|
label: string;
|
|
33
31
|
id: string;
|
|
34
32
|
name: string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { jsx as l, jsxs as r } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
2
|
+
import a from "clsx";
|
|
3
3
|
import { SectionHeading as c } from "./SectionHeading.js";
|
|
4
|
-
const d = ({ header:
|
|
5
|
-
/* @__PURE__ */ l(c, { ...
|
|
6
|
-
/* @__PURE__ */ l("div", { className: "flex flex-col items-center gap-6 sm:flex-row sm:items-start sm:justify-center", children:
|
|
4
|
+
const d = ({ header: t, contactOptions: s }) => s.length === 0 ? null : /* @__PURE__ */ l("section", { className: "bg-neutral-25 px-4 pt-16 pb-20", children: /* @__PURE__ */ r("div", { className: "mx-auto max-w-6xl space-y-10", children: [
|
|
5
|
+
/* @__PURE__ */ l(c, { ...t, className: "px-6" }),
|
|
6
|
+
/* @__PURE__ */ l("div", { className: "flex flex-col items-center gap-6 sm:flex-row sm:items-start sm:justify-center", children: s.map((e) => /* @__PURE__ */ r(
|
|
7
7
|
"article",
|
|
8
8
|
{
|
|
9
|
-
className:
|
|
9
|
+
className: a(
|
|
10
10
|
"relative flex h-36 w-52 flex-col items-center justify-center gap-4 rounded bg-white text-center shadow-sm",
|
|
11
11
|
e.url && 'cursor-pointer [&_a]:before:absolute [&_a]:before:inset-0 [&_a]:before:content-[""]'
|
|
12
12
|
),
|
|
13
13
|
children: [
|
|
14
|
-
e.url && /* @__PURE__ */ l("a", {
|
|
14
|
+
e.url && /* @__PURE__ */ l("a", { href: e.url, children: /* @__PURE__ */ l("span", { className: "sr-only", children: e.title }) }),
|
|
15
15
|
/* @__PURE__ */ l("div", { className: "bg-primary-50 rounded-full p-3", children: e.icon }),
|
|
16
16
|
/* @__PURE__ */ r("div", { className: "flex flex-col items-center justify-center", children: [
|
|
17
17
|
/* @__PURE__ */ l("p", { className: "text-neutral-800", children: e.title }),
|
|
@@ -9,7 +9,6 @@ export interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'chil
|
|
|
9
9
|
size?: ButtonSize;
|
|
10
10
|
variant?: ResponsiveButtonVariant;
|
|
11
11
|
iconPosition?: IconPosition;
|
|
12
|
-
dataQa?: string;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
export type ButtonSize = 'small' | 'default' | 'large';
|
|
@@ -28,7 +27,6 @@ export interface ContactFormFeedbackProps {
|
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
export interface ContactFormFieldProps {
|
|
31
|
-
dataQa: string;
|
|
32
30
|
label: string;
|
|
33
31
|
id: string;
|
|
34
32
|
name: string;
|
|
@@ -7,7 +7,6 @@ export declare interface ConversionSectionProps {
|
|
|
7
7
|
icon: ReactNode;
|
|
8
8
|
title: string;
|
|
9
9
|
uploadZone: UploadZoneProps;
|
|
10
|
-
dataQa?: string;
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
export interface UploadZoneProps {
|
|
@@ -18,6 +17,5 @@ export interface UploadZoneProps {
|
|
|
18
17
|
containerClassName?: string;
|
|
19
18
|
onAddDocument?: () => void;
|
|
20
19
|
onDropDocument?: (e: React.DragEvent<HTMLDivElement>) => void;
|
|
21
|
-
dataQa?: string;
|
|
22
20
|
}
|
|
23
21
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
2
|
-
import { UploadZone as
|
|
3
|
-
const
|
|
2
|
+
import { UploadZone as s } from "./UploadZone.js";
|
|
3
|
+
const n = ({ icon: a, title: t, uploadZone: r }) => /* @__PURE__ */ e("section", { className: "bg-white px-6 py-8 xl:px-0", children: /* @__PURE__ */ l("div", { className: "bg-ratafia mx-auto flex w-full max-w-300 shrink flex-col gap-6 rounded-2xl p-6 md:flex-row md:items-center md:gap-10 md:p-8 lg:pe-10 lg:pl-16 xl:items-start xl:gap-20", children: [
|
|
4
4
|
/* @__PURE__ */ l("div", { className: "flex flex-col gap-4", children: [
|
|
5
5
|
/* @__PURE__ */ e("span", { className: "xl:pt-12", children: a }),
|
|
6
6
|
/* @__PURE__ */ e("h4", { className: "text-super-large md:text-extra-large font-bold text-white", children: t })
|
|
7
7
|
] }),
|
|
8
|
-
/* @__PURE__ */ e(
|
|
8
|
+
/* @__PURE__ */ e(s, { ...r, containerClassName: "md:min-w-77 lg:min-w-115" })
|
|
9
9
|
] }) });
|
|
10
10
|
export {
|
|
11
|
-
|
|
11
|
+
n as ConversionSection
|
|
12
12
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
3
|
import { PhoneButton as o } from "./PhoneButton.js";
|
|
4
|
-
import { FooterNav as
|
|
4
|
+
import { FooterNav as f } from "./FooterNav.js";
|
|
5
5
|
const g = ({
|
|
6
6
|
nav: r,
|
|
7
7
|
contactInfo: t,
|
|
@@ -14,13 +14,13 @@ const g = ({
|
|
|
14
14
|
languageSelector: s
|
|
15
15
|
}) => /* @__PURE__ */ l("footer", { className: "text-neutral-25 max-w-full overflow-x-hidden", children: [
|
|
16
16
|
/* @__PURE__ */ e("div", { className: "bg-primary-900", children: /* @__PURE__ */ l("div", { className: "mx-auto flex w-full max-w-300 flex-col items-start gap-8 px-6 py-10 md:grid md:grid-cols-3 lg:flex lg:flex-row lg:justify-between", children: [
|
|
17
|
-
r.map((a) => /* @__PURE__ */ e(
|
|
17
|
+
r.map((a) => /* @__PURE__ */ e(f, { ...a }, a.title)),
|
|
18
18
|
/* @__PURE__ */ l("div", { className: "flex flex-col gap-6 max-sm:w-full md:contents lg:flex", children: [
|
|
19
19
|
/* @__PURE__ */ l("div", { className: "", children: [
|
|
20
20
|
/* @__PURE__ */ e("div", { className: "mb-8 xl:hidden", children: !!s && /* @__PURE__ */ e("div", { className: "language-selector-mobile-container", children: s }) }),
|
|
21
21
|
/* @__PURE__ */ l("div", { children: [
|
|
22
22
|
/* @__PURE__ */ e("p", { className: "text-small hidden font-bold text-white sm:block", children: t.phoneNumber }),
|
|
23
|
-
/* @__PURE__ */ e("div", { className: "mb-2 w-full text-center sm:hidden", children: /* @__PURE__ */ e(o, {
|
|
23
|
+
/* @__PURE__ */ e("div", { className: "mb-2 w-full text-center sm:hidden", children: /* @__PURE__ */ e(o, { phoneNumber: t.phoneNumber }) }),
|
|
24
24
|
/* @__PURE__ */ l("p", { className: "text-neutral-25 text-medium md:text-small text-center md:text-left", children: [
|
|
25
25
|
t.contactHoursText,
|
|
26
26
|
" ",
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import { useState as
|
|
4
|
-
import { ZoomIcon as
|
|
2
|
+
import { jsxs as a, jsx as e } from "react/jsx-runtime";
|
|
3
|
+
import { useState as n } from "react";
|
|
4
|
+
import { ZoomIcon as c } from "./ZoomIcon.js";
|
|
5
5
|
import { Modal as m } from "./Modal.js";
|
|
6
|
-
const
|
|
7
|
-
const [
|
|
8
|
-
return /* @__PURE__ */
|
|
9
|
-
/* @__PURE__ */ e("div", { className: "h-full w-full [&_img]:h-full [&_img]:w-full [&_img]:object-cover", children:
|
|
10
|
-
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(m, { trigger: /* @__PURE__ */ e(
|
|
6
|
+
const b = ({ small: l, large: s, onZoomClick: r }) => {
|
|
7
|
+
const [t, o] = n(!1);
|
|
8
|
+
return /* @__PURE__ */ a("div", { className: "relative aspect-3/4 w-75 self-center overflow-hidden border border-neutral-200", children: [
|
|
9
|
+
/* @__PURE__ */ e("div", { className: "h-full w-full [&_img]:h-full [&_img]:w-full [&_img]:object-cover", children: l }),
|
|
10
|
+
/* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(m, { trigger: /* @__PURE__ */ e(c, { className: "bg-primary-700 size-8 rounded p-2 opacity-80 hover:opacity-100" }), isOpen: t, setIsOpen: (i) => {
|
|
11
|
+
o(i), i && r && r();
|
|
12
|
+
}, children: s }) })
|
|
11
13
|
] });
|
|
12
14
|
};
|
|
13
15
|
export {
|
|
14
|
-
|
|
16
|
+
b as ImageWithPreview
|
|
15
17
|
};
|
package/dist/components/Input.js
CHANGED
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { useState as p } from "react";
|
|
3
3
|
import u from "clsx";
|
|
4
|
-
import { QuestionOutlineIcon as
|
|
5
|
-
import { CloseIcon as
|
|
6
|
-
import { InfoIcon as
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
label: d,
|
|
4
|
+
import { QuestionOutlineIcon as N } from "./QuestionOutlineIcon.js";
|
|
5
|
+
import { CloseIcon as y } from "./CloseIcon.js";
|
|
6
|
+
import { InfoIcon as I } from "./InfoIcon.js";
|
|
7
|
+
const $ = ({
|
|
8
|
+
label: m,
|
|
10
9
|
id: l,
|
|
11
|
-
name:
|
|
12
|
-
type:
|
|
13
|
-
placeholder:
|
|
10
|
+
name: d,
|
|
11
|
+
type: f = "text",
|
|
12
|
+
placeholder: h,
|
|
14
13
|
required: o = !1,
|
|
15
14
|
tooltip: i,
|
|
16
|
-
onInputChange:
|
|
17
|
-
containerClassName:
|
|
15
|
+
onInputChange: x,
|
|
16
|
+
containerClassName: b = "",
|
|
18
17
|
error: s = !1,
|
|
19
|
-
errorMessage:
|
|
20
|
-
...
|
|
18
|
+
errorMessage: g,
|
|
19
|
+
...v
|
|
21
20
|
}) => {
|
|
22
|
-
const [n, c] = p(!1), [
|
|
23
|
-
return /* @__PURE__ */ t("div", { className: `flex flex-col gap-2 ${
|
|
21
|
+
const [n, c] = p(!1), [w, r] = p(!1);
|
|
22
|
+
return /* @__PURE__ */ t("div", { className: `flex flex-col gap-2 ${b}`, children: [
|
|
24
23
|
/* @__PURE__ */ t("div", { className: "flex items-center gap-2", children: [
|
|
25
24
|
/* @__PURE__ */ t("label", { htmlFor: l, className: "font-bold text-neutral-800", children: [
|
|
26
|
-
|
|
25
|
+
m,
|
|
27
26
|
" ",
|
|
28
27
|
o && /* @__PURE__ */ e("span", { className: "text-neutral-800", children: "*" })
|
|
29
28
|
] }),
|
|
@@ -32,7 +31,7 @@ const z = ({
|
|
|
32
31
|
{
|
|
33
32
|
className: "group relative inline-flex",
|
|
34
33
|
onMouseLeave: () => {
|
|
35
|
-
|
|
34
|
+
r(!1);
|
|
36
35
|
},
|
|
37
36
|
children: [
|
|
38
37
|
/* @__PURE__ */ e(
|
|
@@ -42,9 +41,9 @@ const z = ({
|
|
|
42
41
|
type: "button",
|
|
43
42
|
"aria-expanded": n,
|
|
44
43
|
onClick: () => {
|
|
45
|
-
|
|
44
|
+
r(!1), c((a) => !a);
|
|
46
45
|
},
|
|
47
|
-
children: /* @__PURE__ */ e(
|
|
46
|
+
children: /* @__PURE__ */ e(N, { "aria-hidden": "true" })
|
|
48
47
|
}
|
|
49
48
|
),
|
|
50
49
|
/* @__PURE__ */ t(
|
|
@@ -53,7 +52,7 @@ const z = ({
|
|
|
53
52
|
className: u(
|
|
54
53
|
"invisible absolute top-6 -left-21 z-10 w-max max-w-60 rounded bg-neutral-800 p-2 transition-opacity lg:max-w-80 xl:-left-15 xl:max-w-112",
|
|
55
54
|
"opacity-0",
|
|
56
|
-
!
|
|
55
|
+
!w && "group-focus-within:visible group-focus-within:opacity-100 group-hover:visible group-hover:opacity-100",
|
|
57
56
|
n && "visible opacity-100"
|
|
58
57
|
),
|
|
59
58
|
role: "tooltip",
|
|
@@ -73,9 +72,9 @@ const z = ({
|
|
|
73
72
|
type: "button",
|
|
74
73
|
className: "cursor-pointer p-0",
|
|
75
74
|
onClick: () => {
|
|
76
|
-
|
|
75
|
+
r(!0), c(!1);
|
|
77
76
|
},
|
|
78
|
-
children: /* @__PURE__ */ e(
|
|
77
|
+
children: /* @__PURE__ */ e(y, { width: 20, height: 20, fill: "white" })
|
|
79
78
|
}
|
|
80
79
|
)
|
|
81
80
|
] })
|
|
@@ -89,29 +88,28 @@ const z = ({
|
|
|
89
88
|
/* @__PURE__ */ e(
|
|
90
89
|
"input",
|
|
91
90
|
{
|
|
92
|
-
"data-qa": m,
|
|
93
91
|
id: l,
|
|
94
|
-
name:
|
|
95
|
-
type:
|
|
96
|
-
placeholder:
|
|
92
|
+
name: d,
|
|
93
|
+
type: f,
|
|
94
|
+
placeholder: h,
|
|
97
95
|
required: o,
|
|
98
96
|
className: u(
|
|
99
97
|
"text-small focus-visible:outline-primary-500 w-full rounded border p-3 text-neutral-800 placeholder:text-neutral-600 focus-visible:outline-2",
|
|
100
98
|
s ? "border-error-500 bg-error-25" : "bg-neutral-25 border-neutral-400"
|
|
101
99
|
),
|
|
102
|
-
onChange: (
|
|
103
|
-
|
|
100
|
+
onChange: (a) => {
|
|
101
|
+
x?.(a.target.value);
|
|
104
102
|
},
|
|
105
|
-
...
|
|
103
|
+
...v
|
|
106
104
|
}
|
|
107
105
|
),
|
|
108
106
|
s && /* @__PURE__ */ t("p", { id: `${l}-error-message`, className: "text-small text-error-500 flex items-center gap-1", children: [
|
|
109
|
-
/* @__PURE__ */ e(
|
|
107
|
+
/* @__PURE__ */ e(I, { width: 20, height: 20, fill: "var(--color-error-500)", "aria-hidden": "true" }),
|
|
110
108
|
" ",
|
|
111
|
-
|
|
109
|
+
g
|
|
112
110
|
] })
|
|
113
111
|
] });
|
|
114
112
|
};
|
|
115
113
|
export {
|
|
116
|
-
|
|
114
|
+
$ as Input
|
|
117
115
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as l, jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { SearchBar as
|
|
3
|
+
import { SearchBar as u } from "./SearchBar.js";
|
|
4
4
|
import { CloseIcon as f } from "./CloseIcon.js";
|
|
5
5
|
import { LinkWrapper as h } from "./LinkWrapper.js";
|
|
6
6
|
import { PhoneTalkIcon as b } from "./PhoneTalkIcon.js";
|
|
@@ -12,7 +12,7 @@ const k = ({
|
|
|
12
12
|
searchBarProps: o,
|
|
13
13
|
sections: p = [],
|
|
14
14
|
contactInfo: t,
|
|
15
|
-
closeText:
|
|
15
|
+
closeText: x
|
|
16
16
|
}) => s ? /* @__PURE__ */ l("div", { className: "fixed inset-0 z-50 flex flex-col overflow-y-auto bg-white text-neutral-800 lg:hidden", children: [
|
|
17
17
|
/* @__PURE__ */ l("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
18
18
|
c,
|
|
@@ -23,7 +23,7 @@ const k = ({
|
|
|
23
23
|
onClick: m,
|
|
24
24
|
"aria-label": "Close menu",
|
|
25
25
|
children: [
|
|
26
|
-
|
|
26
|
+
x,
|
|
27
27
|
/* @__PURE__ */ r(f, { fill: "var(--color-primary-500)" })
|
|
28
28
|
]
|
|
29
29
|
}
|
|
@@ -32,7 +32,7 @@ const k = ({
|
|
|
32
32
|
/* @__PURE__ */ l("div", { className: "flex flex-1 flex-col pb-6", children: [
|
|
33
33
|
/* @__PURE__ */ l("div", { className: "flex flex-col gap-6 px-6", children: [
|
|
34
34
|
/* @__PURE__ */ r("div", { className: "flex items-center gap-4", children: d }),
|
|
35
|
-
/* @__PURE__ */ r(
|
|
35
|
+
/* @__PURE__ */ r(u, { ...o })
|
|
36
36
|
] }),
|
|
37
37
|
/* @__PURE__ */ r("nav", { className: "flex flex-col gap-0", children: p.map((e, n) => {
|
|
38
38
|
const i = e.icon != null;
|
|
@@ -62,7 +62,6 @@ const k = ({
|
|
|
62
62
|
/* @__PURE__ */ l(
|
|
63
63
|
"a",
|
|
64
64
|
{
|
|
65
|
-
"data-qa": "mobile_menu_contact_phone",
|
|
66
65
|
href: `tel:${t.phoneNumber.replaceAll(" ", "")}`,
|
|
67
66
|
className: "bg-primary-700 flex w-full items-center justify-center gap-2 rounded-md p-3 text-base font-semibold text-white",
|
|
68
67
|
children: [
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { JSX } from 'react/jsx-runtime';
|
|
2
2
|
|
|
3
|
-
export declare const PhoneButton: ({ phoneNumber, className
|
|
3
|
+
export declare const PhoneButton: ({ phoneNumber, className }: PhoneButtonProps) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export interface PhoneButtonProps {
|
|
6
6
|
phoneNumber: string;
|
|
7
7
|
className?: string;
|
|
8
|
-
dataQa?: string;
|
|
9
8
|
}
|
|
10
9
|
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { PhoneIcon as
|
|
3
|
-
const h = ({ phoneNumber: t, className: i = ""
|
|
1
|
+
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { PhoneIcon as r } from "./PhoneIcon.js";
|
|
3
|
+
const h = ({ phoneNumber: t, className: i = "" }) => /* @__PURE__ */ n(
|
|
4
4
|
"a",
|
|
5
5
|
{
|
|
6
|
-
"data-qa": n,
|
|
7
6
|
href: `tel:${t}`,
|
|
8
7
|
className: `bg-primary-700 inline-flex w-full items-center justify-center gap-2 rounded py-2.75 text-[16px] font-bold text-white ${i}`,
|
|
9
8
|
children: [
|
|
10
|
-
/* @__PURE__ */ e(
|
|
9
|
+
/* @__PURE__ */ e(r, { fill: "white", width: 20, height: 20 }),
|
|
11
10
|
/* @__PURE__ */ e("span", { children: t })
|
|
12
11
|
]
|
|
13
12
|
}
|
|
@@ -9,7 +9,6 @@ export declare type InputFieldData = {
|
|
|
9
9
|
placeholder: string;
|
|
10
10
|
value: string;
|
|
11
11
|
onChange: (str: string) => void;
|
|
12
|
-
dataQa: string;
|
|
13
12
|
};
|
|
14
13
|
|
|
15
14
|
export declare const Preform: FC<PreformProps>;
|
|
@@ -18,7 +17,6 @@ export interface PreformOptionProps {
|
|
|
18
17
|
label: string;
|
|
19
18
|
value: string;
|
|
20
19
|
alternativeUrl: string | null;
|
|
21
|
-
dataQa?: string;
|
|
22
20
|
icon: ReactNode;
|
|
23
21
|
selected: boolean;
|
|
24
22
|
onClick?: (str: string) => void;
|