@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.
Files changed (46) hide show
  1. package/dist/components/AboutUsTemplate.d.ts +0 -1
  2. package/dist/components/AiLegalDocumentReviewerTemplate.d.ts +0 -2
  3. package/dist/components/AllDocumentsTemplate.d.ts +1 -0
  4. package/dist/components/Button.d.ts +1 -2
  5. package/dist/components/Button.js +10 -23
  6. package/dist/components/Checkbox.d.ts +0 -1
  7. package/dist/components/Checkbox.js +15 -27
  8. package/dist/components/ContactFormSection.d.ts +0 -2
  9. package/dist/components/ContactUsSection.d.ts +0 -1
  10. package/dist/components/ContactUsSection.js +6 -6
  11. package/dist/components/ContactUsTemplate.d.ts +0 -2
  12. package/dist/components/ContentItem.d.ts +1 -0
  13. package/dist/components/ConversionSection.d.ts +0 -2
  14. package/dist/components/ConversionSection.js +4 -4
  15. package/dist/components/CookiesBar.d.ts +0 -1
  16. package/dist/components/ElectronicSignatureTemplate.d.ts +0 -1
  17. package/dist/components/Footer.d.ts +0 -1
  18. package/dist/components/Footer.js +3 -3
  19. package/dist/components/Header.d.ts +0 -1
  20. package/dist/components/Hero2Section.d.ts +0 -1
  21. package/dist/components/ImageWithPreview.d.ts +1 -0
  22. package/dist/components/ImageWithPreview.js +11 -9
  23. package/dist/components/Input.d.ts +0 -1
  24. package/dist/components/Input.js +30 -32
  25. package/dist/components/MobileMenu.d.ts +0 -1
  26. package/dist/components/MobileMenu.js +4 -5
  27. package/dist/components/PhoneButton.d.ts +1 -2
  28. package/dist/components/PhoneButton.js +4 -5
  29. package/dist/components/Preform.d.ts +0 -2
  30. package/dist/components/Preform.js +6 -7
  31. package/dist/components/PreformMobile.d.ts +0 -2
  32. package/dist/components/PreformOption.d.ts +0 -1
  33. package/dist/components/PreformOption.js +2 -3
  34. package/dist/components/PreviewDownload.d.ts +2 -0
  35. package/dist/components/PreviewDownload.js +22 -19
  36. package/dist/components/PreviewSection.d.ts +1 -0
  37. package/dist/components/PreviewSection.js +24 -11
  38. package/dist/components/ProductTemplate.d.ts +3 -2
  39. package/dist/components/Select.d.ts +0 -1
  40. package/dist/components/Select.js +20 -22
  41. package/dist/components/Textarea.d.ts +0 -1
  42. package/dist/components/Textarea.js +16 -18
  43. package/dist/components/UploadZone.d.ts +0 -1
  44. package/dist/components/UploadZone.js +20 -21
  45. package/package.json +1 -1
  46. package/dist/components/index.d.ts +0 -1340
@@ -31,7 +31,6 @@ export interface ContactUsSectionProps {
31
31
  icon: ReactNode;
32
32
  helper?: string;
33
33
  url?: string;
34
- dataQa?: string;
35
34
  }>;
36
35
  }
37
36
 
@@ -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
 
@@ -96,6 +96,7 @@ export interface FaqSectionProps {
96
96
  export interface ImageWithPreviewProps {
97
97
  small: ReactNode;
98
98
  large: ReactNode;
99
+ onZoomClick?: () => void;
99
100
  }
100
101
 
101
102
  export interface JumboCardProps {
@@ -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, dataQa, ...props }: ButtonProps) => JSX.Element;
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 p } from "react/jsx-runtime";
2
- import { getButtonClasses as c } from "./Button.utils.js";
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import { getButtonClasses as p } from "./Button.utils.js";
3
3
  import "react";
4
- const B = ({
4
+ const x = ({
5
5
  children: o,
6
6
  type: r = "button",
7
- size: a = "default",
8
- variant: s = "primary-green",
9
- iconPosition: e = "left",
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
- dataQa: u,
14
- ...f
13
+ ...u
15
14
  }) => {
16
- const l = c(a, s, e, t, n);
17
- return /* @__PURE__ */ p(
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
- B as Button
19
+ x as Button
33
20
  };
@@ -4,7 +4,6 @@ import { ReactNode } from 'react';
4
4
  export declare const Checkbox: FC<CheckboxProps>;
5
5
 
6
6
  export declare interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> {
7
- dataQa?: string;
8
7
  id: string;
9
8
  name: string;
10
9
  required?: boolean;
@@ -1,43 +1,31 @@
1
- import { jsxs as m, jsx as r } from "react/jsx-runtime";
2
- import c from "clsx";
3
- import { CheckIcon as p } from "./CheckIcon.js";
4
- const d = ({
5
- dataQa: s,
6
- id: t,
7
- name: i,
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: o = !1,
10
+ error: t = !1,
12
11
  ...n
13
- }) => /* @__PURE__ */ m("label", { htmlFor: t, className: "text-medium flex cursor-pointer items-center gap-2 text-neutral-800 select-none", children: [
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: c(
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
- !o && !e && "hover:bg-primary-200 border border-neutral-800 bg-white",
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
- o && "border-error-500 bg-error-20 border"
22
+ t && "border-error-500 bg-error-20 border"
35
23
  ),
36
- children: e && /* @__PURE__ */ r(p, {})
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
- d as Checkbox
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;
@@ -11,7 +11,6 @@ export declare interface ContactUsSectionProps {
11
11
  icon: ReactNode;
12
12
  helper?: string;
13
13
  url?: string;
14
- dataQa?: string;
15
14
  }>;
16
15
  }
17
16
 
@@ -1,17 +1,17 @@
1
1
  import { jsx as l, jsxs as r } from "react/jsx-runtime";
2
- import t from "clsx";
2
+ import a from "clsx";
3
3
  import { SectionHeading as c } from "./SectionHeading.js";
4
- const d = ({ header: s, contactOptions: a }) => a.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, { ...s, 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: a.map((e) => /* @__PURE__ */ r(
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: t(
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", { "data-qa": e.dataQa, href: e.url, children: /* @__PURE__ */ l("span", { className: "sr-only", children: e.title }) }),
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;
@@ -38,6 +38,7 @@ export interface DefaultSubtypeDocumentProps extends BaseSubtypeDocumentProps {
38
38
  export interface ImageWithPreviewProps {
39
39
  small: ReactNode;
40
40
  large: ReactNode;
41
+ onZoomClick?: () => void;
41
42
  }
42
43
 
43
44
  export interface LinkedProductProps {
@@ -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 m } from "./UploadZone.js";
3
- const x = ({ icon: a, title: t, uploadZone: r, dataQa: s }) => /* @__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: [
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(m, { dataQa: s, ...r, containerClassName: "md:min-w-77 lg:min-w-115" })
8
+ /* @__PURE__ */ e(s, { ...r, containerClassName: "md:min-w-77 lg:min-w-115" })
9
9
  ] }) });
10
10
  export {
11
- x as ConversionSection
11
+ n as ConversionSection
12
12
  };
@@ -7,7 +7,6 @@ export interface ButtonProps extends Omit<ComponentPropsWithRef<'button'>, 'chil
7
7
  size?: ButtonSize;
8
8
  variant?: ResponsiveButtonVariant;
9
9
  iconPosition?: IconPosition;
10
- dataQa?: string;
11
10
  }
12
11
 
13
12
  export type ButtonSize = 'small' | 'default' | 'large';
@@ -129,6 +129,5 @@ export interface UploadZoneProps {
129
129
  containerClassName?: string;
130
130
  onAddDocument?: () => void;
131
131
  onDropDocument?: (e: React.DragEvent<HTMLDivElement>) => void;
132
- dataQa?: string;
133
132
  }
134
133
 
@@ -20,7 +20,6 @@ export declare interface FooterProps {
20
20
  phoneNumber: string;
21
21
  contactHoursText: string;
22
22
  contactHours: string;
23
- dataQa?: string;
24
23
  };
25
24
  logoGray?: ReactNode;
26
25
  socialLinks?: ReactNode[];
@@ -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 h } from "./FooterNav.js";
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(h, { ...a }, a.title)),
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, { dataQa: t.dataQa, phoneNumber: t.phoneNumber }) }),
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
  " ",
@@ -34,7 +34,6 @@ export interface MobileContactInfo {
34
34
  phoneNumber: string;
35
35
  contactHoursLabel?: string;
36
36
  contactHours?: string;
37
- dataQa?: string;
38
37
  }
39
38
 
40
39
  export interface MobileMenuProps {
@@ -27,6 +27,5 @@ export interface UploadZoneProps {
27
27
  containerClassName?: string;
28
28
  onAddDocument?: () => void;
29
29
  onDropDocument?: (e: React.DragEvent<HTMLDivElement>) => void;
30
- dataQa?: string;
31
30
  }
32
31
 
@@ -6,5 +6,6 @@ export declare const ImageWithPreview: FC<ImageWithPreviewProps>;
6
6
  export declare interface ImageWithPreviewProps {
7
7
  small: ReactNode;
8
8
  large: ReactNode;
9
+ onZoomClick?: () => void;
9
10
  }
10
11
 
@@ -1,15 +1,17 @@
1
1
  "use client";
2
- import { jsxs as l, jsx as e } from "react/jsx-runtime";
3
- import { useState as s } from "react";
4
- import { ZoomIcon as a } from "./ZoomIcon.js";
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 u = ({ small: r, large: i }) => {
7
- const [o, t] = s(!1);
8
- return /* @__PURE__ */ l("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: r }),
10
- /* @__PURE__ */ e("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ e(m, { trigger: /* @__PURE__ */ e(a, { className: "bg-primary-700 size-8 rounded p-2 opacity-80 hover:opacity-100" }), isOpen: o, setIsOpen: t, children: i }) })
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
- u as ImageWithPreview
16
+ b as ImageWithPreview
15
17
  };
@@ -4,7 +4,6 @@ import { HTMLInputTypeAttribute } from 'react';
4
4
  export declare const Input: FC<InputProps>;
5
5
 
6
6
  export declare interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
7
- dataQa?: string;
8
7
  label: string;
9
8
  id: string;
10
9
  name: string;
@@ -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 y } from "./QuestionOutlineIcon.js";
5
- import { CloseIcon as I } from "./CloseIcon.js";
6
- import { InfoIcon as C } from "./InfoIcon.js";
7
- const z = ({
8
- dataQa: m,
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: f,
12
- type: h = "text",
13
- placeholder: x,
10
+ name: d,
11
+ type: f = "text",
12
+ placeholder: h,
14
13
  required: o = !1,
15
14
  tooltip: i,
16
- onInputChange: b,
17
- containerClassName: g = "",
15
+ onInputChange: x,
16
+ containerClassName: b = "",
18
17
  error: s = !1,
19
- errorMessage: v,
20
- ...w
18
+ errorMessage: g,
19
+ ...v
21
20
  }) => {
22
- const [n, c] = p(!1), [N, a] = p(!1);
23
- return /* @__PURE__ */ t("div", { className: `flex flex-col gap-2 ${g}`, children: [
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
- d,
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
- a(!1);
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
- a(!1), c((r) => !r);
44
+ r(!1), c((a) => !a);
46
45
  },
47
- children: /* @__PURE__ */ e(y, { "aria-hidden": "true" })
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
- !N && "group-focus-within:visible group-focus-within:opacity-100 group-hover:visible group-hover:opacity-100",
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
- a(!0), c(!1);
75
+ r(!0), c(!1);
77
76
  },
78
- children: /* @__PURE__ */ e(I, { width: 20, height: 20, fill: "white" })
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: f,
95
- type: h,
96
- placeholder: x,
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: (r) => {
103
- b?.(r.target.value);
100
+ onChange: (a) => {
101
+ x?.(a.target.value);
104
102
  },
105
- ...w
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(C, { width: 20, height: 20, fill: "var(--color-error-500)", "aria-hidden": "true" }),
107
+ /* @__PURE__ */ e(I, { width: 20, height: 20, fill: "var(--color-error-500)", "aria-hidden": "true" }),
110
108
  " ",
111
- v
109
+ g
112
110
  ] })
113
111
  ] });
114
112
  };
115
113
  export {
116
- z as Input
114
+ $ as Input
117
115
  };
@@ -6,7 +6,6 @@ export declare interface MobileContactInfo {
6
6
  phoneNumber: string;
7
7
  contactHoursLabel?: string;
8
8
  contactHours?: string;
9
- dataQa?: string;
10
9
  }
11
10
 
12
11
  export declare const MobileMenu: FC<MobileMenuProps>;
@@ -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 x } from "./SearchBar.js";
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: u
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
- u,
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(x, { ...o })
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, dataQa }: PhoneButtonProps) => JSX.Element;
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 r, jsx as e } from "react/jsx-runtime";
2
- import { PhoneIcon as o } from "./PhoneIcon.js";
3
- const h = ({ phoneNumber: t, className: i = "", dataQa: n }) => /* @__PURE__ */ r(
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(o, { fill: "white", width: 20, height: 20 }),
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;