@axos-web-dev/shared-components 0.0.68 → 0.0.70

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 (58) hide show
  1. package/dist/ArticlesSet/ArticlesSet.js +3 -3
  2. package/dist/AwardsBanner/AwardsBanner.js +3 -3
  3. package/dist/Calculators/Calculator.js +1 -0
  4. package/dist/CallToActionBar/CallToActionBar.css.d.ts +1 -4
  5. package/dist/CallToActionBar/CallToActionBar.css.js +14 -20
  6. package/dist/CallToActionBar/index.js +2 -2
  7. package/dist/Carousel/index.js +1 -0
  8. package/dist/Chevron/index.js +1 -0
  9. package/dist/Comparison/Comparison.js +24 -2
  10. package/dist/Comparison/ComparisonSet.js +1 -0
  11. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -0
  12. package/dist/Forms/ApplicationStart.js +5 -1
  13. package/dist/Forms/ContactCompany.js +5 -1
  14. package/dist/Forms/ContactUsAAS.js +21 -24
  15. package/dist/Forms/ContactUsBusiness.js +6 -1
  16. package/dist/Forms/DealerServices.js +5 -1
  17. package/dist/Forms/EmailOnly.js +6 -1
  18. package/dist/Forms/FormEnums.d.ts +3 -2
  19. package/dist/Forms/SalesforceFieldsForm.d.ts +0 -12
  20. package/dist/Forms/SalesforceFieldsForm.js +1 -4
  21. package/dist/Forms/ScheduleCall.js +5 -1
  22. package/dist/Forms/ScheduleCallPremier.js +5 -1
  23. package/dist/Forms/SuccesForm.js +1 -0
  24. package/dist/Hyperlink/index.js +1 -0
  25. package/dist/ImageLink/ImageLink.js +1 -0
  26. package/dist/ImageLink/ImageLinkSet.js +1 -0
  27. package/dist/ImageLink/index.js +1 -0
  28. package/dist/Modal/Modal.js +1 -0
  29. package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +56 -53
  30. package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +3 -3
  31. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.d.ts +1 -1
  32. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.js +2 -2
  33. package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +57 -54
  34. package/dist/NavigationMenu/AxosBank/NavBar.css.d.ts +2 -0
  35. package/dist/NavigationMenu/AxosBank/NavBar.css.js +9 -0
  36. package/dist/NavigationMenu/AxosBank/NavBar.module.js +170 -0
  37. package/dist/NavigationMenu/AxosBank/NavData.d.ts +31 -0
  38. package/dist/NavigationMenu/AxosBank/NavData.js +132 -0
  39. package/dist/NavigationMenu/AxosBank/SubNavBar.d.ts +1 -0
  40. package/dist/NavigationMenu/AxosBank/SubNavBar.js +2892 -0
  41. package/dist/NavigationMenu/AxosBank/SubNavbar.css.d.ts +4 -0
  42. package/dist/NavigationMenu/AxosBank/SubNavbar.css.js +13 -0
  43. package/dist/NavigationMenu/AxosBank/index.d.ts +2 -0
  44. package/dist/NavigationMenu/AxosBank/index.js +703 -0
  45. package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +43 -40
  46. package/dist/NavigationMenu/NavItem/index.js +2 -1
  47. package/dist/SetContainer/SetContainer.js +1 -0
  48. package/dist/VideoWrapper/index.js +3 -3
  49. package/dist/assets/Button/Button.css +2 -2
  50. package/dist/assets/CallToActionBar/CallToActionBar.css +21 -34
  51. package/dist/assets/Carousel/Carousel.css +1 -0
  52. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +119 -115
  53. package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +122 -118
  54. package/dist/assets/NavigationMenu/AxosBank/NavBar.css +9 -0
  55. package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +626 -0
  56. package/dist/assets/NavigationMenu/AxosBank/SubNavbar.css +17 -0
  57. package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +85 -81
  58. package/package.json +6 -7
@@ -95,7 +95,7 @@ const ArticlesSet = ({
95
95
  )
96
96
  ] })
97
97
  ] }),
98
- /* @__PURE__ */ jsx("div", { className: `${ant_grid} flex gap_24`, children: articles?.map((article, index) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
98
+ /* @__PURE__ */ jsx("div", { className: `${ant_grid} flex gap_24`, children: articles?.map((article) => /* @__PURE__ */ jsx(
99
99
  Article,
100
100
  {
101
101
  id: `id_${article.id}`,
@@ -106,8 +106,8 @@ const ArticlesSet = ({
106
106
  targetUrl: article?.targetUrl,
107
107
  variant: article?.variant
108
108
  },
109
- index
110
- ) })) })
109
+ `id_${article.id}`
110
+ )) })
111
111
  ] }) });
112
112
  };
113
113
  export {
@@ -1,8 +1,8 @@
1
- import { jsx, Fragment } from "react/jsx-runtime";
1
+ import { jsx } from "react/jsx-runtime";
2
2
  import { AwardsItem } from "../AwardsItem/AwardsItem.js";
3
3
  import { awards_section, awards_row } from "./AwardsBanner.css.js";
4
4
  const AwardsBanner = ({ id, awardsItems }) => {
5
- return /* @__PURE__ */ jsx("section", { className: awards_section, id, children: /* @__PURE__ */ jsx("div", { className: "containment", children: /* @__PURE__ */ jsx("div", { className: `${awards_row} flex middle mobile`, children: awardsItems?.map((award) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
5
+ return /* @__PURE__ */ jsx("section", { className: awards_section, id, children: /* @__PURE__ */ jsx("div", { className: "containment", children: /* @__PURE__ */ jsx("div", { className: `${awards_row} flex middle mobile`, children: awardsItems?.map((award) => /* @__PURE__ */ jsx(
6
6
  AwardsItem,
7
7
  {
8
8
  id: award?.id,
@@ -11,7 +11,7 @@ const AwardsBanner = ({ id, awardsItems }) => {
11
11
  awardsSource: award?.awardsSource
12
12
  },
13
13
  award?.id
14
- ) })) }) }) });
14
+ )) }) }) });
15
15
  };
16
16
  export {
17
17
  AwardsBanner
@@ -58,6 +58,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
58
58
  import "../LandingPageHeader/LandingPageHeader.css.js";
59
59
  import "../LoadingIndicator/LoadingIndicator.css.js";
60
60
  /* empty css */
61
+ import "next/link.js";
61
62
  /* empty css */
62
63
  /* empty css */
63
64
  /* empty css */
@@ -1,10 +1,6 @@
1
1
  export declare const cta: string;
2
2
  export declare const cta_image_section: string;
3
3
  export declare const cta_image_section_overlap: string;
4
- export declare const cta_square_image_lg: string;
5
- export declare const cta_rectangle_image_lg: string;
6
- export declare const cta_square_image_md: string;
7
- export declare const cta_rectangle_image_md: string;
8
4
  export declare const cta_section_lg: string;
9
5
  export declare const cta_section_lg_overlap: string;
10
6
  export declare const cta_section_md: string;
@@ -17,3 +13,4 @@ export declare const sticky_banner: string;
17
13
  export declare const is_sticky: string;
18
14
  export declare const ctas_section: string;
19
15
  export declare const cta_text: string;
16
+ export declare const cta_large_image: string;
@@ -4,38 +4,32 @@
4
4
  var cta = "_1tdyl740";
5
5
  var cta_image_section = "_1tdyl741";
6
6
  var cta_image_section_overlap = "_1tdyl742";
7
- var cta_square_image_lg = "_1tdyl743";
8
- var cta_rectangle_image_lg = "_1tdyl744";
9
- var cta_square_image_md = "_1tdyl745";
10
- var cta_rectangle_image_md = "_1tdyl746";
11
- var cta_section_lg = "_1tdyl747";
12
- var cta_section_lg_overlap = "_1tdyl748";
13
- var cta_section_md = "_1tdyl749";
14
- var cta_section_md_overlap = "_1tdyl74a";
15
- var cta_section_sm = "_1tdyl74b";
16
- var cta_section = "_1tdyl74c";
17
- var cta_image_overlap = "_1tdyl74d";
18
- var cta_body_section = "_1tdyl74e";
19
- var sticky_banner = "_1tdyl74f";
20
- var is_sticky = "_1tdyl74g";
21
- var ctas_section = "_1tdyl74h";
22
- var cta_text = "_1tdyl74i";
7
+ var cta_section_lg = "_1tdyl743";
8
+ var cta_section_lg_overlap = "_1tdyl744";
9
+ var cta_section_md = "_1tdyl745";
10
+ var cta_section_md_overlap = "_1tdyl746";
11
+ var cta_section_sm = "_1tdyl747";
12
+ var cta_section = "_1tdyl748";
13
+ var cta_image_overlap = "_1tdyl749";
14
+ var cta_body_section = "_1tdyl74a";
15
+ var sticky_banner = "_1tdyl74b";
16
+ var is_sticky = "_1tdyl74c";
17
+ var ctas_section = "_1tdyl74d";
18
+ var cta_text = "_1tdyl74e";
19
+ var cta_large_image = "_1tdyl74f";
23
20
  export {
24
21
  cta,
25
22
  cta_body_section,
26
23
  cta_image_overlap,
27
24
  cta_image_section,
28
25
  cta_image_section_overlap,
29
- cta_rectangle_image_lg,
30
- cta_rectangle_image_md,
26
+ cta_large_image,
31
27
  cta_section,
32
28
  cta_section_lg,
33
29
  cta_section_lg_overlap,
34
30
  cta_section_md,
35
31
  cta_section_md_overlap,
36
32
  cta_section_sm,
37
- cta_square_image_lg,
38
- cta_square_image_md,
39
33
  cta_text,
40
34
  ctas_section,
41
35
  is_sticky,
@@ -8,7 +8,7 @@ import { Chevron } from "../Chevron/index.js";
8
8
  import { getVariant } from "../utils/getVariant.js";
9
9
  import clsx from "clsx";
10
10
  import { getBannerSizeClassName } from "../utils/ctaOptions.js";
11
- import { sticky_banner, is_sticky, cta, cta_image_section, cta_image_section_overlap, cta_image_overlap, cta_body_section, cta_text, ctas_section } from "./CallToActionBar.css.js";
11
+ import { sticky_banner, is_sticky, cta, cta_image_section, cta_image_section_overlap, cta_image_overlap, cta_large_image, cta_body_section, cta_text, ctas_section } from "./CallToActionBar.css.js";
12
12
  const CallToActionBar = ({
13
13
  bannerSize,
14
14
  image,
@@ -76,7 +76,7 @@ const CallToActionBar = ({
76
76
  {
77
77
  src: image.src,
78
78
  alt: "",
79
- className: `${image_overlap && banner_size !== "large" ? cta_image_overlap : ""}`
79
+ className: `${image_overlap && banner_size !== "large" ? cta_image_overlap : ""}${banner_size === "large" ? cta_large_image : ""}`
80
80
  }
81
81
  )
82
82
  }
@@ -60,6 +60,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
60
60
  import "../LandingPageHeader/LandingPageHeader.css.js";
61
61
  import "../Chevron/Chevron.css.js";
62
62
  /* empty css */
63
+ import "next/link.js";
63
64
  /* empty css */
64
65
  /* empty css */
65
66
  /* empty css */
@@ -60,6 +60,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
60
60
  import "../LandingPageHeader/LandingPageHeader.css.js";
61
61
  import { chevron_wrapper, chevron } from "./Chevron.css.js";
62
62
  /* empty css */
63
+ import "next/link.js";
63
64
  /* empty css */
64
65
  /* empty css */
65
66
  /* empty css */
@@ -59,6 +59,7 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
59
59
  import "../Chevron/Chevron.css.js";
60
60
  /* empty css */
61
61
  import "../Modal/contextApi/store.js";
62
+ import "next/link.js";
62
63
  /* empty css */
63
64
  /* empty css */
64
65
  /* empty css */
@@ -103,14 +104,35 @@ const Comparison = ({
103
104
  headline && /* @__PURE__ */ jsx("h3", { className: title({ variant: getVariant(fullVariant) }), children: headline }),
104
105
  description && /* @__PURE__ */ jsx("div", { children: description })
105
106
  ] }),
106
- /* @__PURE__ */ jsxs("div", { className: clsx(comparison_feature), children: [
107
+ (keyFeature || keyFeatureDescription) && /* @__PURE__ */ jsxs("div", { className: clsx(comparison_feature), children: [
107
108
  /* @__PURE__ */ jsxs("div", { className: feature_header, children: [
108
109
  highlightedFeature ? /* @__PURE__ */ jsx(SvgStarIcon, { variant: "gold" }) : /* @__PURE__ */ jsx(SvgStarIcon, { variant: "gray" }),
109
110
  keyFeature && /* @__PURE__ */ jsx("div", { className: feature_title, children: keyFeature })
110
111
  ] }),
111
112
  keyFeatureDescription && /* @__PURE__ */ jsx("div", { className: "text_center", children: keyFeatureDescription })
112
113
  ] }),
113
- bullets.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: comparison_list, children: bullets.map((item) => /* @__PURE__ */ jsx(BulletItem, { id: item.id, children: item.copy }, item.id)) }) })
114
+ bullets.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: comparison_list, children: bullets.map(
115
+ (item) => Object.hasOwn(item, "variant") ? /* @__PURE__ */ jsx(
116
+ BulletItem,
117
+ {
118
+ id: item.id,
119
+ variant: item?.variant,
120
+ children: item.copy
121
+ },
122
+ item.id
123
+ ) : /* @__PURE__ */ jsxs("li", { className: "list_item flex", children: [
124
+ /* @__PURE__ */ jsx("div", { className: "img_item", children: /* @__PURE__ */ jsx(
125
+ "img",
126
+ {
127
+ src: item.icon?.src,
128
+ alt: item.icon?.altText,
129
+ width: 18,
130
+ height: 18
131
+ }
132
+ ) }),
133
+ /* @__PURE__ */ jsx("span", { children: item.copy })
134
+ ] }, id)
135
+ ) }) })
114
136
  ] }) }),
115
137
  callToActionRow && /* @__PURE__ */ jsx("div", { className: clsx(comparison_buttons, "push_up"), children: callToActionRow.map(
116
138
  ({ id: id2, variant, displayText, targetUrl, type }) => type === "Button" ? /* @__PURE__ */ jsx(
@@ -59,6 +59,7 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
59
59
  import "../Chevron/Chevron.css.js";
60
60
  /* empty css */
61
61
  import "../Modal/contextApi/store.js";
62
+ import "next/link.js";
62
63
  /* empty css */
63
64
  /* empty css */
64
65
  /* empty css */
@@ -57,6 +57,7 @@ import { footer_section, footer_wrapper, ft_col, ft_col_header, ft_col_subheader
57
57
  import "../../ImageBillboard/ImageBillboard.css.js";
58
58
  import "../../LandingPageHeader/LandingPageHeader.css.js";
59
59
  /* empty css */
60
+ import "next/link.js";
60
61
  /* empty css */
61
62
  /* empty css */
62
63
  /* empty css */
@@ -95,7 +95,11 @@ const ApplicationStart = ({
95
95
  description && /* @__PURE__ */ jsx(
96
96
  "div",
97
97
  {
98
- className: `${form} ${descriptionField({ variant })} text_center`,
98
+ className: clsx(
99
+ "text_center",
100
+ form,
101
+ descriptionField({ variant })
102
+ ),
99
103
  children: description
100
104
  }
101
105
  )
@@ -90,7 +90,11 @@ const ContactCompany = ({
90
90
  description && /* @__PURE__ */ jsx(
91
91
  "div",
92
92
  {
93
- className: `${form} ${descriptionField({ variant })} text_center`,
93
+ className: clsx(
94
+ "text_center",
95
+ form,
96
+ descriptionField({ variant })
97
+ ),
94
98
  children: description
95
99
  }
96
100
  )
@@ -62,6 +62,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
62
62
  import "../LandingPageHeader/LandingPageHeader.css.js";
63
63
  /* empty css */
64
64
  import "../Modal/contextApi/store.js";
65
+ import "next/link.js";
65
66
  /* empty css */
66
67
  /* empty css */
67
68
  /* empty css */
@@ -77,7 +78,7 @@ import "../Table/Table.css.js";
77
78
  import "next/script.js";
78
79
  /* empty css */
79
80
  /* empty css */
80
- import { CurrentAssets } from "./FormEnums.js";
81
+ import { CurrentAssets, Roles } from "./FormEnums.js";
81
82
  const ContactUsAAS = ({
82
83
  icon = false,
83
84
  children,
@@ -108,14 +109,12 @@ const ContactUsAAS = ({
108
109
  return removeDashes;
109
110
  }),
110
111
  company: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g).trim().min(1, { message: "Company is required." }),
111
- Current_Assets_Under_Management__c: z.enum(CurrentAssets, {
112
- required_error: "Please select an asset",
113
- invalid_type_error: "Please select an asset"
114
- }),
115
- Role__c: z.string({ message: "Role is required." }).regex(/^[^\s][A-Za-z()-][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^{}|~<>;:[\]]{1,}$/g, {
116
- message: "Role is required."
117
- }).trim().min(2, { message: "Role is required." }).transform((e) => e === "" ? void 0 : e),
118
- description: z.string().trim().max(32e3).min(1)
112
+ Current_Assets_Under_Management__c: z.string().min(1, { message: "Current Assets is required." }).refine(
113
+ (val) => CurrentAssets.includes(val),
114
+ "Current assets is required."
115
+ ),
116
+ Role__c: z.string().min(1, { message: "Role is required." }).refine((val) => Roles.includes(val), "Role is required"),
117
+ description: z.string().trim().max(32e3).min(1, { message: "Comments is required." })
119
118
  });
120
119
  const methods = useForm({
121
120
  resolver: zodResolver(
@@ -128,9 +127,7 @@ const ContactUsAAS = ({
128
127
  mode: "onChange",
129
128
  shouldUnregister: true,
130
129
  defaultValues: {
131
- email: "",
132
- Role__c: "",
133
- Current_Assets_Under_Management__c: ""
130
+ email: ""
134
131
  }
135
132
  });
136
133
  const {
@@ -166,7 +163,7 @@ const ContactUsAAS = ({
166
163
  {
167
164
  id: "first_name",
168
165
  ...register("first_name", { required: true }),
169
- label: "First Name",
166
+ label: "First Name*",
170
167
  sizes: "medium",
171
168
  placeholder: "",
172
169
  required: true,
@@ -180,7 +177,7 @@ const ContactUsAAS = ({
180
177
  {
181
178
  id: "last_name",
182
179
  ...register("last_name", { required: true }),
183
- label: "Last Name",
180
+ label: "Last Name*",
184
181
  sizes: "medium",
185
182
  placeholder: "",
186
183
  required: true,
@@ -197,7 +194,7 @@ const ContactUsAAS = ({
197
194
  required: true
198
195
  }),
199
196
  type: "email",
200
- label: "Business Email",
197
+ label: "Business Email*",
201
198
  sizes: "medium",
202
199
  placeholder: "",
203
200
  required: true,
@@ -214,7 +211,7 @@ const ContactUsAAS = ({
214
211
  required: true,
215
212
  maxLength: 12
216
213
  }),
217
- label: "Business Phone",
214
+ label: "Business Phone*",
218
215
  sizes: "medium",
219
216
  placeholder: "",
220
217
  type: "tel",
@@ -229,7 +226,7 @@ const ContactUsAAS = ({
229
226
  {
230
227
  id: "company",
231
228
  ...register("company", { required: true }),
232
- label: "Company",
229
+ label: "Company*",
233
230
  sizes: "medium",
234
231
  placeholder: "",
235
232
  required: true,
@@ -245,15 +242,15 @@ const ContactUsAAS = ({
245
242
  ...register("Current_Assets_Under_Management__c", {
246
243
  required: true
247
244
  }),
248
- label: "Current Assets Under Management",
245
+ label: "Current Assets Under Management*",
249
246
  sizes: "medium",
250
247
  required: true,
251
248
  error: !!errors.Current_Assets_Under_Management__c,
252
249
  helperText: errors.Current_Assets_Under_Management__c?.message,
253
250
  variant,
254
- defaultValue: "",
251
+ defaultValue: "Select option",
255
252
  children: [
256
- /* @__PURE__ */ jsx("option", { value: "", disabled: true, children: "Select option" }),
253
+ /* @__PURE__ */ jsx("option", { value: "Select option", disabled: true, children: "Select option" }),
257
254
  /* @__PURE__ */ jsx("option", { value: "$0 - $25M", children: "$0 — $25M" }),
258
255
  /* @__PURE__ */ jsx("option", { value: "$26M - $150M", children: "$26M — $150M" }),
259
256
  /* @__PURE__ */ jsx("option", { value: "$151M - $500M", children: "$151M — $500M" }),
@@ -269,15 +266,15 @@ const ContactUsAAS = ({
269
266
  ...register("Role__c", {
270
267
  required: true
271
268
  }),
272
- label: "What best describes your role?",
269
+ label: "What best describes your role?*",
273
270
  sizes: "medium",
274
271
  required: true,
275
272
  error: !!errors.Role__c,
276
273
  helperText: errors.Role__c?.message,
277
274
  variant,
278
- defaultValue: "",
275
+ defaultValue: "Select option",
279
276
  children: [
280
- /* @__PURE__ */ jsx("option", { value: "", disabled: true, children: "Select Option" }),
277
+ /* @__PURE__ */ jsx("option", { value: "Select option", disabled: true, children: "Select Option" }),
281
278
  /* @__PURE__ */ jsx("option", { value: "RIA Principal", children: "RIA Principal" }),
282
279
  /* @__PURE__ */ jsx("option", { value: "Advisor (IAR)", children: "Advisor (IAR)" }),
283
280
  /* @__PURE__ */ jsx("option", { value: "Broker-Dealer Affiliated Advisor", children: "Broker-Dealer Affiliated Advisor" }),
@@ -291,7 +288,7 @@ const ContactUsAAS = ({
291
288
  {
292
289
  id: "description",
293
290
  ...register("description"),
294
- label: "Comments",
291
+ label: "Comments*",
295
292
  sizes: "medium",
296
293
  placeholder: "",
297
294
  error: !!errors.description,
@@ -62,6 +62,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
62
62
  import "../LandingPageHeader/LandingPageHeader.css.js";
63
63
  /* empty css */
64
64
  import "../Modal/contextApi/store.js";
65
+ import "next/link.js";
65
66
  /* empty css */
66
67
  /* empty css */
67
68
  /* empty css */
@@ -144,7 +145,11 @@ const ContactUsBusiness = ({
144
145
  description && /* @__PURE__ */ jsx(
145
146
  "div",
146
147
  {
147
- className: `${form} ${descriptionField({ variant })} text_center`,
148
+ className: clsx(
149
+ "text_center",
150
+ form,
151
+ descriptionField({ variant })
152
+ ),
148
153
  children: description
149
154
  }
150
155
  )
@@ -99,7 +99,11 @@ const DealerServices = ({
99
99
  description && /* @__PURE__ */ jsx(
100
100
  "div",
101
101
  {
102
- className: `${form} ${descriptionField({ variant })} text_center`,
102
+ className: clsx(
103
+ "text_center",
104
+ form,
105
+ descriptionField({ variant })
106
+ ),
103
107
  children: description
104
108
  }
105
109
  )
@@ -63,6 +63,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
63
63
  import "../LandingPageHeader/LandingPageHeader.css.js";
64
64
  /* empty css */
65
65
  import "../Modal/contextApi/store.js";
66
+ import "next/link.js";
66
67
  /* empty css */
67
68
  /* empty css */
68
69
  /* empty css */
@@ -130,7 +131,11 @@ const EmailOnly = ({
130
131
  description && /* @__PURE__ */ jsx(
131
132
  "div",
132
133
  {
133
- className: `${form} ${descriptionField({ variant })} text_center`,
134
+ className: clsx(
135
+ "text_center",
136
+ form,
137
+ descriptionField({ variant })
138
+ ),
134
139
  children: description
135
140
  }
136
141
  )
@@ -1,2 +1,3 @@
1
- export declare const Roles: readonly ["RIA Principal", "Advisor (IAR)", "Broker-Dealer Affiliated Advisor", "I am not a Financial Advisor", "Other"];
2
- export declare const CurrentAssets: readonly ["$0 - $25M", "$26M - $150M", "$151M - $500M", "$501M - $1B", "$1B+"];
1
+ export declare const Roles: string[];
2
+ export type RoleTypes = (typeof Roles)[number];
3
+ export declare const CurrentAssets: string[];
@@ -19,9 +19,6 @@ export interface SalesforceInputs {
19
19
  First_UTMMedium__c: string;
20
20
  First_UTMSource__c: string;
21
21
  First_UTMTerm__c: string;
22
- company: string;
23
- Current_Assets_Under_Management__c: string;
24
- Role__c: string;
25
22
  }
26
23
  export declare const SalesforceSchema: z.ZodObject<{
27
24
  Brand_SFDC2__c: z.ZodOptional<z.ZodString>;
@@ -36,9 +33,6 @@ export declare const SalesforceSchema: z.ZodObject<{
36
33
  First_UTMMedium__c: z.ZodOptional<z.ZodString>;
37
34
  First_UTMSource__c: z.ZodOptional<z.ZodString>;
38
35
  First_UTMTerm__c: z.ZodOptional<z.ZodString>;
39
- company: z.ZodOptional<z.ZodString>;
40
- Current_Assets_Under_Management__c: z.ZodOptional<z.ZodString>;
41
- Role__c: z.ZodOptional<z.ZodString>;
42
36
  }, "strip", z.ZodTypeAny, {
43
37
  Brand_SFDC2__c?: string | undefined;
44
38
  Branch_SFDC2__c?: string | undefined;
@@ -52,9 +46,6 @@ export declare const SalesforceSchema: z.ZodObject<{
52
46
  First_UTMMedium__c?: string | undefined;
53
47
  First_UTMSource__c?: string | undefined;
54
48
  First_UTMTerm__c?: string | undefined;
55
- company?: string | undefined;
56
- Current_Assets_Under_Management__c?: string | undefined;
57
- Role__c?: string | undefined;
58
49
  }, {
59
50
  Brand_SFDC2__c?: string | undefined;
60
51
  Branch_SFDC2__c?: string | undefined;
@@ -68,9 +59,6 @@ export declare const SalesforceSchema: z.ZodObject<{
68
59
  First_UTMMedium__c?: string | undefined;
69
60
  First_UTMSource__c?: string | undefined;
70
61
  First_UTMTerm__c?: string | undefined;
71
- company?: string | undefined;
72
- Current_Assets_Under_Management__c?: string | undefined;
73
- Role__c?: string | undefined;
74
62
  }>;
75
63
  export interface QueryParams {
76
64
  [str: string]: string;
@@ -22,10 +22,7 @@ const SalesforceSchema = z.object({
22
22
  First_UTMContent__c: z.string().optional(),
23
23
  First_UTMMedium__c: z.string().optional(),
24
24
  First_UTMSource__c: z.string().optional(),
25
- First_UTMTerm__c: z.string().optional(),
26
- company: z.string().optional(),
27
- Current_Assets_Under_Management__c: z.string().optional(),
28
- Role__c: z.string().optional()
25
+ First_UTMTerm__c: z.string().optional()
29
26
  });
30
27
  const SalesforceFieldsForm = memo(function SaleforceFieldForm({
31
28
  salesforceFields,
@@ -92,7 +92,11 @@ const ScheduleCall = ({
92
92
  description && /* @__PURE__ */ jsx(
93
93
  "div",
94
94
  {
95
- className: `${form} ${descriptionField({ variant })} text_center`,
95
+ className: clsx(
96
+ "text_center",
97
+ form,
98
+ descriptionField({ variant })
99
+ ),
96
100
  children: description
97
101
  }
98
102
  )
@@ -99,7 +99,11 @@ const ScheduleCallPremier = ({
99
99
  description && /* @__PURE__ */ jsx(
100
100
  "div",
101
101
  {
102
- className: `${form} ${descriptionField({ variant })} text_center`,
102
+ className: clsx(
103
+ "text_center",
104
+ form,
105
+ descriptionField({ variant })
106
+ ),
103
107
  children: description
104
108
  }
105
109
  )
@@ -56,6 +56,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
56
56
  import "../LandingPageHeader/LandingPageHeader.css.js";
57
57
  import "../LoadingIndicator/LoadingIndicator.css.js";
58
58
  /* empty css */
59
+ import "next/link.js";
59
60
  /* empty css */
60
61
  /* empty css */
61
62
  /* empty css */
@@ -59,6 +59,7 @@ import "../FooterDisclosure/FooterDisclosure.css.js";
59
59
  import "../ImageBillboard/ImageBillboard.css.js";
60
60
  import "../LandingPageHeader/LandingPageHeader.css.js";
61
61
  /* empty css */
62
+ import "next/link.js";
62
63
  /* empty css */
63
64
  /* empty css */
64
65
  /* empty css */
@@ -56,6 +56,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
56
56
  import "../LandingPageHeader/LandingPageHeader.css.js";
57
57
  import "../Chevron/Chevron.css.js";
58
58
  /* empty css */
59
+ import "next/link.js";
59
60
  /* empty css */
60
61
  /* empty css */
61
62
  /* empty css */
@@ -61,6 +61,7 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
61
61
  import "../Chevron/Chevron.css.js";
62
62
  /* empty css */
63
63
  import "../Modal/contextApi/store.js";
64
+ import "next/link.js";
64
65
  /* empty css */
65
66
  /* empty css */
66
67
  /* empty css */
@@ -57,6 +57,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
57
57
  import { ImageLinkSet } from "./ImageLinkSet.js";
58
58
  import "../LandingPageHeader/LandingPageHeader.css.js";
59
59
  /* empty css */
60
+ import "next/link.js";
60
61
  /* empty css */
61
62
  /* empty css */
62
63
  /* empty css */
@@ -56,6 +56,7 @@ import "../FooterDisclosure/FooterDisclosure.css.js";
56
56
  import "../ImageBillboard/ImageBillboard.css.js";
57
57
  import "../LandingPageHeader/LandingPageHeader.css.js";
58
58
  import "./contextApi/store.js";
59
+ import "next/link.js";
59
60
  /* empty css */
60
61
  /* empty css */
61
62
  /* empty css */