@axos-web-dev/shared-components 1.0.76 → 1.0.77-ext-bal-apy-calc.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.
Files changed (44) hide show
  1. package/dist/Auth/SignInPassword.js +9 -5
  2. package/dist/Button/Button.css.d.ts +13 -0
  3. package/dist/Button/Button.css.js +1 -1
  4. package/dist/Calculators/ApyCalculator/index.js +17 -10
  5. package/dist/Calculators/AxosOneCalculator/index.d.ts +1 -0
  6. package/dist/Calculators/AxosOneCalculator/index.js +27 -17
  7. package/dist/Calculators/Calculator.d.ts +1 -0
  8. package/dist/Calculators/Calculator.js +4 -2
  9. package/dist/Comparison/Comparison.css.d.ts +1 -0
  10. package/dist/Comparison/Comparison.css.js +3 -1
  11. package/dist/Comparison/Comparison.js +3 -3
  12. package/dist/Comparison/index.js +2 -1
  13. package/dist/Forms/ContactUsBusinessNameEmail.d.ts +9 -0
  14. package/dist/Forms/ContactUsBusinessNameEmail.js +272 -0
  15. package/dist/Forms/FormEnums.js +3 -3
  16. package/dist/Forms/index.d.ts +2 -1
  17. package/dist/Forms/index.js +3 -1
  18. package/dist/IconBillboard/IconBillboard.js +4 -4
  19. package/dist/ImageBillboard/ImageBillboard.css.d.ts +13 -0
  20. package/dist/ImageBillboard/ImageBillboard.css.js +47 -21
  21. package/dist/ImageBillboard/ImageBillboard.interface.d.ts +12 -2
  22. package/dist/ImageBillboard/ImageBillboardSet.d.ts +1 -1
  23. package/dist/ImageBillboard/ImageBillboardSet.js +65 -13
  24. package/dist/ImageBillboard/index.js +14 -1
  25. package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +3 -0
  26. package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +5 -0
  27. package/dist/NavigationMenu/AxosBank/SubNavBar.js +68 -19
  28. package/dist/SetContainer/SetContainer.d.ts +1 -1
  29. package/dist/SetContainer/SetContainer.js +8 -4
  30. package/dist/assets/Button/Button.css +31 -16
  31. package/dist/assets/Calculators/AxosOneCalculator/BalanceAPYCalculator.css +5 -0
  32. package/dist/assets/Calculators/SummitApyCalculator/BalanceAPYCalculator.css +8 -0
  33. package/dist/assets/CallToActionBar/CallToActionBar.css +4 -0
  34. package/dist/assets/Comparison/Comparison.css +9 -2
  35. package/dist/assets/HeroBanner/HeroBanner.css +1 -1
  36. package/dist/assets/IconBillboard/IconBillboard.css +13 -1
  37. package/dist/assets/ImageBillboard/ImageBillboard.css +220 -54
  38. package/dist/assets/SetContainer/SetContainer.css +0 -1
  39. package/dist/assets/utils/optimizeImage/optimizeImage.css.css +8 -9
  40. package/dist/main.js +19 -3
  41. package/dist/utils/optimizeImage/OptimizeImage.d.ts +2 -2
  42. package/dist/utils/optimizeImage/OptimizeImage.js +1 -1
  43. package/dist/utils/optimizeImage/optimizeImage.module.js +3 -3
  44. package/package.json +1 -1
@@ -4,11 +4,13 @@ import { ApplyNow, getLink } from "./ApplyNow.js";
4
4
  import { ClearingForm } from "./ClearingForm.js";
5
5
  import { CommercialDeposits } from "./CommercialDeposits.js";
6
6
  import { CommercialLending } from "./CommercialLending.js";
7
+ import { CommercialPremiumFinance } from "./CommercialPremiumFinance.js";
7
8
  import { ContactCompany } from "./ContactCompany.js";
8
9
  import { ContactCompanyTitle } from "./ContactCompanyTitle.js";
9
10
  import { ContactUs } from "./ContactUs.js";
10
11
  import { ContactUsAAS } from "./ContactUsAAS.js";
11
12
  import { ContactUsBusiness } from "./ContactUsBusiness.js";
13
+ import { ContactUsBusinessNameAndEmail } from "./ContactUsBusinessNameEmail.js";
12
14
  import { ContactUsLVF } from "./ContactUsLVF.js";
13
15
  import { ContactUsNMLSId } from "./ContactUsNMLSId.js";
14
16
  import { CpraRequest } from "./CpraRequest.js";
@@ -34,7 +36,6 @@ import { ScheduleCallPremier } from "./ScheduleCallPremier.js";
34
36
  import { SuccesFormWrapper } from "./SuccesForm.js";
35
37
  import { VendorQuestionnaire } from "./VendorQuestionnaire.js";
36
38
  import { WCPLSurvey } from "./WcplSurvey.js";
37
- import { CommercialPremiumFinance } from "./CommercialPremiumFinance.js";
38
39
  export {
39
40
  ApplicationStart,
40
41
  ApplyNow,
@@ -47,6 +48,7 @@ export {
47
48
  ContactUs,
48
49
  ContactUsAAS,
49
50
  ContactUsBusiness,
51
+ ContactUsBusinessNameAndEmail,
50
52
  ContactUsLVF,
51
53
  ContactUsNMLSId,
52
54
  CpraRequest,
@@ -57,8 +57,8 @@ const IconBillboard = (props) => {
57
57
  width: icon?.width
58
58
  }
59
59
  ) }),
60
- /* @__PURE__ */ jsxs("div", { className: clsx(content, "flex_col gap_24"), children: [
61
- /* @__PURE__ */ jsxs("div", { className: `${headerIconBillboard} flex_col text_center`, children: [
60
+ /* @__PURE__ */ jsxs("div", { className: clsx(content), children: [
61
+ /* @__PURE__ */ jsxs("div", { className: headerIconBillboard, children: [
62
62
  headline && createElement(
63
63
  headingLevel,
64
64
  {
@@ -69,10 +69,10 @@ const IconBillboard = (props) => {
69
69
  ),
70
70
  body && /* @__PURE__ */ jsx("div", { children: body })
71
71
  ] }),
72
- items && items?.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: clsx(list, "list_unstyled flex_col"), children: items?.map((item) => /* @__PURE__ */ jsx(BulletItem, { id: item.id, variant, children: item.content }, item.id)) }) })
72
+ items && items?.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: clsx(list, "list_unstyled"), children: items?.map((item) => /* @__PURE__ */ jsx(BulletItem, { id: item.id, variant, children: item.content }, item.id)) }) })
73
73
  ] })
74
74
  ] }),
75
- callToActionRow && /* @__PURE__ */ jsx("div", { className: `${buttons} flex middle center text_center gap_24`, children: callToActionRow.map(
75
+ callToActionRow && /* @__PURE__ */ jsx("div", { className: buttons, children: callToActionRow.map(
76
76
  ({
77
77
  id: id2,
78
78
  variant: variant2,
@@ -145,6 +145,7 @@ export declare const header: import('@vanilla-extract/recipes').RuntimeFn<{
145
145
  }>;
146
146
  export declare const billboard_container: string;
147
147
  export declare const billboard_img: string;
148
+ export declare const is_bg_img: string;
148
149
  export declare const billboard_body: string;
149
150
  export declare const billboard_header_section: string;
150
151
  export declare const billboard_ctas: string;
@@ -156,6 +157,8 @@ export declare const section_text_ImageBillboard: string;
156
157
  export declare const billboard_image: string;
157
158
  export declare const mh_330: string;
158
159
  export declare const image_background: string;
160
+ export declare const image_inner_wrapper: string;
161
+ export declare const image_based: string;
159
162
  export declare const rate_container: string;
160
163
  export declare const rate_pad: string;
161
164
  export declare const up_to: string;
@@ -163,6 +166,16 @@ export declare const rate_billboard: string;
163
166
  export declare const apy_billboard: string;
164
167
  export declare const body_copy: string;
165
168
  export declare const sub_bullets: string;
169
+ export declare const top_left: string;
170
+ export declare const top_center: string;
171
+ export declare const top_right: string;
172
+ export declare const center_left: string;
173
+ export declare const center_right: string;
174
+ export declare const center_center: string;
175
+ export declare const bottom_left: string;
176
+ export declare const bottom_right: string;
177
+ export declare const bottom_center: string;
178
+ export declare const remove_padding: string;
166
179
  export declare const exit_intent_backdrop: string;
167
180
  export declare const exit_intent: string;
168
181
  export declare const modal_close_button: string;
@@ -11,27 +11,40 @@ var supertag = createRuntimeFn({ defaultClassName: "_1m7m2a8", variantClassNames
11
11
  var header = createRuntimeFn({ defaultClassName: "_1m7m2ad", variantClassNames: { variant: { primary: "_1m7m2ae", secondary: "_1m7m2af", tertiary: "_1m7m2ag", quaternary: "_1m7m2ah" } }, defaultVariants: {}, compoundVariants: [] });
12
12
  var billboard_container = "_1m7m2ai";
13
13
  var billboard_img = "_1m7m2aj";
14
- var billboard_body = "_1m7m2ak";
15
- var billboard_header_section = "_1m7m2al";
16
- var billboard_ctas = "_1m7m2am";
17
- var body = "_1m7m2an";
18
- var single_container = "_1m7m2ao";
19
- var two_inline = "_1m7m2ap";
20
- var three_inline = "_1m7m2aq";
21
- var section_text_ImageBillboard = "_1m7m2ar";
22
- var billboard_image = "_1m7m2as";
23
- var mh_330 = "_1m7m2at";
24
- var image_background = "_1m7m2au";
25
- var rate_container = "_1m7m2av";
26
- var rate_pad = "_1m7m2aw";
27
- var up_to = "_1m7m2ax";
28
- var rate_billboard = "_1m7m2ay";
29
- var apy_billboard = "_1m7m2az";
30
- var body_copy = "_1m7m2a10";
31
- var sub_bullets = "_1m7m2a11";
32
- var exit_intent_backdrop = "_1m7m2a12";
33
- var exit_intent = "_1m7m2a13";
34
- var modal_close_button = "_1m7m2a14";
14
+ var is_bg_img = "_1m7m2ak";
15
+ var billboard_body = "_1m7m2al";
16
+ var billboard_header_section = "_1m7m2am";
17
+ var billboard_ctas = "_1m7m2an";
18
+ var body = "_1m7m2ao";
19
+ var single_container = "_1m7m2ap";
20
+ var two_inline = "_1m7m2aq";
21
+ var three_inline = "_1m7m2ar";
22
+ var section_text_ImageBillboard = "_1m7m2as";
23
+ var billboard_image = "_1m7m2at";
24
+ var mh_330 = "_1m7m2au";
25
+ var image_background = "_1m7m2av";
26
+ var image_inner_wrapper = "_1m7m2aw";
27
+ var image_based = "_1m7m2ax";
28
+ var rate_container = "_1m7m2ay";
29
+ var rate_pad = "_1m7m2az";
30
+ var up_to = "_1m7m2a10";
31
+ var rate_billboard = "_1m7m2a11";
32
+ var apy_billboard = "_1m7m2a12";
33
+ var body_copy = "_1m7m2a13";
34
+ var sub_bullets = "_1m7m2a14";
35
+ var top_left = "_1m7m2a15";
36
+ var top_center = "_1m7m2a16";
37
+ var top_right = "_1m7m2a17";
38
+ var center_left = "_1m7m2a18";
39
+ var center_right = "_1m7m2a19";
40
+ var center_center = "_1m7m2a1a";
41
+ var bottom_left = "_1m7m2a1b";
42
+ var bottom_right = "_1m7m2a1c";
43
+ var bottom_center = "_1m7m2a1d";
44
+ var remove_padding = "_1m7m2a1e";
45
+ var exit_intent_backdrop = "_1m7m2a1f";
46
+ var exit_intent = "_1m7m2a1g";
47
+ var modal_close_button = "_1m7m2a1h";
35
48
  export {
36
49
  apy_billboard,
37
50
  billboard,
@@ -43,21 +56,34 @@ export {
43
56
  billboard_img,
44
57
  body,
45
58
  body_copy,
59
+ bottom_center,
60
+ bottom_left,
61
+ bottom_right,
62
+ center_center,
63
+ center_left,
64
+ center_right,
46
65
  exit_intent,
47
66
  exit_intent_backdrop,
48
67
  header,
49
68
  imagePlacement,
50
69
  image_background,
70
+ image_based,
71
+ image_inner_wrapper,
72
+ is_bg_img,
51
73
  mh_330,
52
74
  modal_close_button,
53
75
  rate_billboard,
54
76
  rate_container,
55
77
  rate_pad,
78
+ remove_padding,
56
79
  section_text_ImageBillboard,
57
80
  single_container,
58
81
  sub_bullets,
59
82
  supertag,
60
83
  three_inline,
84
+ top_center,
85
+ top_left,
86
+ top_right,
61
87
  two_inline,
62
88
  up_to
63
89
  };
@@ -1,6 +1,5 @@
1
1
  import { BulletItemProps } from '../BulletItem';
2
2
  import { ChevronProps } from '../Chevron/Chevron.interface';
3
- import { ImageInterface } from '../IconBillboard';
4
3
  import { QuaternaryTypes } from '../utils/variant.types';
5
4
  import { ReactNode } from 'react';
6
5
 
@@ -13,6 +12,16 @@ export interface ImageBillboardSetProps {
13
12
  variant: QuaternaryTypes;
14
13
  set?: boolean;
15
14
  bordered?: boolean;
15
+ layout?: "Inline" | "Stacked";
16
+ }
17
+ export interface BillboardImageInterface {
18
+ src: string;
19
+ alt?: string;
20
+ imageType?: "Image" | "Background Image";
21
+ imageAlignment?: string;
22
+ imageBackgroundColor?: string;
23
+ height?: string | number;
24
+ width?: string | number;
16
25
  }
17
26
  export interface ImageBillboardInterface {
18
27
  id: string;
@@ -24,7 +33,7 @@ export interface ImageBillboardInterface {
24
33
  variant: QuaternaryTypes;
25
34
  eyebrow: string | ReactNode;
26
35
  bullets: BulletItemProps[];
27
- image?: ImageInterface;
36
+ image?: BillboardImageInterface;
28
37
  callToActionRow: ChevronProps[];
29
38
  set?: boolean;
30
39
  textImageLineOneSmall?: ReactNode | string;
@@ -32,4 +41,5 @@ export interface ImageBillboardInterface {
32
41
  textImageLineThreeSmall?: ReactNode | string;
33
42
  internalName?: string;
34
43
  exitIntent?: boolean;
44
+ layout?: ImageBillboardSetProps["layout"];
35
45
  }
@@ -1,3 +1,3 @@
1
1
  import { ImageBillboardInterface } from './ImageBillboard.interface';
2
2
 
3
- export declare const ImageBillboard: ({ id, variant, headline, bodyCopy, bordered, bullets, callToActionRow, eyebrow, image, imagePlacement: position, set, textImageLineOneSmall, textImageLineTwoBig, textImageLineThreeSmall, internalName, exitIntent, }: ImageBillboardInterface) => import("react/jsx-runtime").JSX.Element | null;
3
+ export declare const ImageBillboard: ({ id, bodyCopy, bordered, bullets, callToActionRow, exitIntent, eyebrow, headline, image, imagePlacement: position, internalName, set, textImageLineOneSmall, textImageLineThreeSmall, textImageLineTwoBig, variant, }: ImageBillboardInterface) => import("react/jsx-runtime").JSX.Element | null;
@@ -1,5 +1,5 @@
1
1
  "use client";
2
- import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
3
3
  import { useRef, useState, useEffect, createElement } from "react";
4
4
  import { Button } from "../Button/Button.js";
5
5
  import "../Button/Button.css.js";
@@ -18,24 +18,24 @@ import { OptimizeImage } from "../utils/optimizeImage/OptimizeImage.js";
18
18
  import { useExitIntentModal } from "./ExitIntentModal/useExitIntentModal.js";
19
19
  import { ModalWrapper } from "./ExitIntentModal/ModalWrapper.js";
20
20
  import clsx from "clsx";
21
- import { billboard_img, image_background, up_to, rate_billboard, apy_billboard, rate_pad, rate_container, body, billboard_body, billboard_header_section, supertag, header, body_copy, sub_bullets, billboard_ctas, billboard, imagePlacement } from "./ImageBillboard.css.js";
21
+ import { billboard_img, center_center, remove_padding, image_inner_wrapper, image_background, is_bg_img, up_to, rate_billboard, apy_billboard, rate_pad, rate_container, body, billboard_body, billboard_header_section, supertag, header, body_copy, sub_bullets, billboard_ctas, billboard, imagePlacement, image_based, bottom_right, bottom_center, bottom_left, center_right, center_left, top_right, top_center, top_left } from "./ImageBillboard.css.js";
22
22
  const ImageBillboard = ({
23
23
  id,
24
- variant,
25
- headline,
26
24
  bodyCopy,
27
25
  bordered = false,
28
26
  bullets,
29
27
  callToActionRow,
28
+ exitIntent = false,
30
29
  eyebrow,
30
+ headline,
31
31
  image,
32
32
  imagePlacement: position = "left",
33
+ internalName,
33
34
  set,
34
35
  textImageLineOneSmall,
35
- textImageLineTwoBig,
36
36
  textImageLineThreeSmall,
37
- internalName,
38
- exitIntent = false
37
+ textImageLineTwoBig,
38
+ variant
39
39
  }) => {
40
40
  const billboard_variant = getVariant(variant);
41
41
  position = position?.toLocaleLowerCase();
@@ -55,22 +55,74 @@ const ImageBillboard = ({
55
55
  }
56
56
  }
57
57
  }, []);
58
+ const imgAlignment = (alignment) => {
59
+ switch (alignment) {
60
+ case "Top Left":
61
+ return top_left;
62
+ case "Top Center":
63
+ return top_center;
64
+ case "Top Right":
65
+ return top_right;
66
+ case "Center Left":
67
+ return center_left;
68
+ case "Center Center":
69
+ return center_center;
70
+ case "Center Right":
71
+ return center_right;
72
+ case "Bottom Left":
73
+ return bottom_left;
74
+ case "Bottom Center":
75
+ return bottom_center;
76
+ case "Bottom Right":
77
+ return bottom_right;
78
+ default:
79
+ return center_center;
80
+ }
81
+ };
58
82
  const renderBillboard = () => /* @__PURE__ */ jsxs(
59
83
  "div",
60
84
  {
61
85
  id: internalName?.replace(/ /g, "-") ?? id,
62
86
  className: clsx(
63
- "billboard",
64
- "containment",
87
+ "billboard rounded flex",
65
88
  billboard({ variant: billboard_variant }),
66
- `rounded flex`,
67
89
  bordered && billboard_variant === "primary" ? "bordered" : "",
68
90
  imagePlacement({ position: position?.toLowerCase() }),
69
- `${set ? "" : "containment"}`,
70
- position === "right" && "reversed"
91
+ position === "right" && "reversed",
92
+ set ? "" : "containment",
93
+ image?.imageType === "Image" ? image_based : ""
71
94
  ),
72
95
  children: [
73
- /* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: image ? /* @__PURE__ */ jsx("div", { className: image_background, role: "presentation", children: /* @__PURE__ */ jsx(OptimizeImage, { src: image?.src, alt: image?.alt ?? "" }) }) : /* @__PURE__ */ jsx(
96
+ /* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: image ? /* @__PURE__ */ jsx(Fragment, { children: image?.imageType === "Image" ? /* @__PURE__ */ jsx(
97
+ "div",
98
+ {
99
+ role: "presentation",
100
+ className: clsx(
101
+ "rounded overflow_hidden flex",
102
+ imgAlignment(image?.imageAlignment ?? center_center),
103
+ image?.imageBackgroundColor === "transparent" ? remove_padding : "",
104
+ image_inner_wrapper
105
+ ),
106
+ style: image?.imageBackgroundColor ? { background: image?.imageBackgroundColor } : {},
107
+ children: /* @__PURE__ */ jsx(
108
+ OptimizeImage,
109
+ {
110
+ src: image?.src,
111
+ alt: image?.alt ?? "",
112
+ className: "img_fluid",
113
+ height: image?.height,
114
+ width: image?.width
115
+ }
116
+ )
117
+ }
118
+ ) : /* @__PURE__ */ jsx("div", { className: image_background, role: "presentation", children: /* @__PURE__ */ jsx(
119
+ OptimizeImage,
120
+ {
121
+ src: image?.src,
122
+ alt: image?.alt ?? "",
123
+ className: is_bg_img
124
+ }
125
+ ) }) }) : /* @__PURE__ */ jsx(
74
126
  "div",
75
127
  {
76
128
  className: clsx(
@@ -1,5 +1,5 @@
1
1
  import { ImageBillboardSet } from "./ImageBillboard.js";
2
- import { apy_billboard, billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_image, billboard_img, body, body_copy, exit_intent, exit_intent_backdrop, header, imagePlacement, image_background, mh_330, modal_close_button, rate_billboard, rate_container, rate_pad, section_text_ImageBillboard, single_container, sub_bullets, supertag, three_inline, two_inline, up_to } from "./ImageBillboard.css.js";
2
+ import { apy_billboard, billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_image, billboard_img, body, body_copy, bottom_center, bottom_left, bottom_right, center_center, center_left, center_right, exit_intent, exit_intent_backdrop, header, imagePlacement, image_background, image_based, image_inner_wrapper, is_bg_img, mh_330, modal_close_button, rate_billboard, rate_container, rate_pad, remove_padding, section_text_ImageBillboard, single_container, sub_bullets, supertag, three_inline, top_center, top_left, top_right, two_inline, up_to } from "./ImageBillboard.css.js";
3
3
  import { ImageBillboard } from "./ImageBillboardSet.js";
4
4
  export {
5
5
  ImageBillboard,
@@ -14,21 +14,34 @@ export {
14
14
  billboard_img,
15
15
  body,
16
16
  body_copy,
17
+ bottom_center,
18
+ bottom_left,
19
+ bottom_right,
20
+ center_center,
21
+ center_left,
22
+ center_right,
17
23
  exit_intent,
18
24
  exit_intent_backdrop,
19
25
  header,
20
26
  imagePlacement,
21
27
  image_background,
28
+ image_based,
29
+ image_inner_wrapper,
30
+ is_bg_img,
22
31
  mh_330,
23
32
  modal_close_button,
24
33
  rate_billboard,
25
34
  rate_container,
26
35
  rate_pad,
36
+ remove_padding,
27
37
  section_text_ImageBillboard,
28
38
  single_container,
29
39
  sub_bullets,
30
40
  supertag,
31
41
  three_inline,
42
+ top_center,
43
+ top_left,
44
+ top_right,
32
45
  two_inline,
33
46
  up_to
34
47
  };
@@ -120,6 +120,9 @@ export declare const menuData: {
120
120
  "Business Savings": string;
121
121
  "Non-Profit Money Market": string;
122
122
  };
123
+ Bundles: {
124
+ "Axos Business Bundle": string;
125
+ };
123
126
  Services: {
124
127
  "Services Home": string;
125
128
  "Merchant Services": string;
@@ -359,6 +359,11 @@ const menuData = {
359
359
  "{AXOSBANK}/business/savings/business-money-market-accounts/non-profit-money-market"
360
360
  )
361
361
  },
362
+ Bundles: {
363
+ "Axos Business Bundle": findMoreAxosDomains(
364
+ "{AXOSBANK}/business/axos-business-bundle"
365
+ )
366
+ },
362
367
  Services: {
363
368
  "Services Home": findMoreAxosDomains("{AXOSBANK}/business/services"),
364
369
  "Merchant Services": findMoreAxosDomains(
@@ -130,7 +130,6 @@ function SubNavBar() {
130
130
  const handleMouseLeave = () => setHoveredLink(void 0);
131
131
  const AXOS_ONE_APY = +process.env.NEXT_PUBLIC_AXOS_ONE_APY;
132
132
  const AXOS_ONE_APY_CHECKING = +process.env.NEXT_PUBLIC_AXOS_ONE_APY_CHECKING;
133
- const media = "https://www.axos.com/images";
134
133
  const containerRef = useRef(null);
135
134
  const [isClient, setIsClient] = useState(false);
136
135
  const support = subNavItems.support;
@@ -765,9 +764,11 @@ function SubNavBar() {
765
764
  {
766
765
  className: `${styles.mt_8} ${styles.dd_media_img}`,
767
766
  children: /* @__PURE__ */ jsx(
768
- Image,
767
+ "img",
769
768
  {
770
- src: `${media}/17Q3IVqKwSGO9cMqFUWF4o/axos-one-nav.png`,
769
+ src: findMoreAxosDomains(
770
+ "{AXOS}/images/17Q3IVqKwSGO9cMqFUWF4o/axos-one-nav.png"
771
+ ),
771
772
  alt: "",
772
773
  width: 233,
773
774
  height: 233
@@ -1133,9 +1134,11 @@ function SubNavBar() {
1133
1134
  {
1134
1135
  className: `${styles.mt_8} ${styles.dd_media_img}`,
1135
1136
  children: /* @__PURE__ */ jsx(
1136
- Image,
1137
+ "img",
1137
1138
  {
1138
- src: `${media}/6tVncmpCfCXbilZHhFUYJ5/nav-submenu-borrow.webp`,
1139
+ src: findMoreAxosDomains(
1140
+ "{AXOS}/images/6tVncmpCfCXbilZHhFUYJ5/nav-submenu-borrow.webp"
1141
+ ),
1139
1142
  alt: "",
1140
1143
  width: 232,
1141
1144
  height: 232
@@ -1498,9 +1501,11 @@ function SubNavBar() {
1498
1501
  {
1499
1502
  className: `${styles.mt_8} ${styles.dd_media_img}`,
1500
1503
  children: /* @__PURE__ */ jsx(
1501
- Image,
1504
+ "img",
1502
1505
  {
1503
- src: `${media}/2bREH0KGxe7C82N4cdathQ/nav-submenu-invest.webp`,
1506
+ src: findMoreAxosDomains(
1507
+ "{AXOS}/images/2bREH0KGxe7C82N4cdathQ/nav-submenu-invest.webp"
1508
+ ),
1504
1509
  alt: "",
1505
1510
  width: 232,
1506
1511
  height: 232
@@ -1762,9 +1767,11 @@ function SubNavBar() {
1762
1767
  {
1763
1768
  className: `${styles.mt_8} ${styles.dd_media_img}`,
1764
1769
  children: /* @__PURE__ */ jsx(
1765
- Image,
1770
+ "img",
1766
1771
  {
1767
- src: `${media}/4vSUrmXEbK80FeuAfe2fqJ/nav-submenu-plan.webp`,
1772
+ src: findMoreAxosDomains(
1773
+ "{AXOS}/images/4vSUrmXEbK80FeuAfe2fqJ/nav-submenu-plan.webp"
1774
+ ),
1768
1775
  alt: "",
1769
1776
  width: 232,
1770
1777
  height: 232
@@ -2031,9 +2038,11 @@ function SubNavBar() {
2031
2038
  {
2032
2039
  className: `${styles.mt_8} ${styles.dd_media_img}`,
2033
2040
  children: /* @__PURE__ */ jsx(
2034
- Image,
2041
+ "img",
2035
2042
  {
2036
- src: `${media}/5vHrV4m3DbDQt13GOahbYA/nav-submenu-sbb.png`,
2043
+ src: findMoreAxosDomains(
2044
+ "{AXOS}/images/5vHrV4m3DbDQt13GOahbYA/nav-submenu-sbb.png"
2045
+ ),
2037
2046
  alt: "",
2038
2047
  width: 232,
2039
2048
  height: 232
@@ -2214,6 +2223,38 @@ function SubNavBar() {
2214
2223
  ) })
2215
2224
  ] })
2216
2225
  ] }),
2226
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2227
+ /* @__PURE__ */ jsx(
2228
+ Image,
2229
+ {
2230
+ src: `https://images.axos.com/o9ov1v03uwqk/6bS9epOgzZpJY2jeuepswo/5ee31f624370b44ab1483b537c3fa704/nav-submenu-bundles-icon.svg`,
2231
+ alt: "",
2232
+ width: 20,
2233
+ height: 20
2234
+ }
2235
+ ),
2236
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2237
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2238
+ Link,
2239
+ {
2240
+ href: findMoreAxosDomains(
2241
+ "{AXOSBANK}/business/axos-business-bundle"
2242
+ ),
2243
+ role: "heading",
2244
+ children: "Bundles"
2245
+ }
2246
+ ) }),
2247
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2248
+ Link,
2249
+ {
2250
+ href: findMoreAxosDomains(
2251
+ "{AXOSBANK}/business/axos-business-bundle"
2252
+ ),
2253
+ children: "Axos Business Bundle"
2254
+ }
2255
+ ) })
2256
+ ] })
2257
+ ] }),
2217
2258
  /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2218
2259
  /* @__PURE__ */ jsx(
2219
2260
  Image,
@@ -2434,9 +2475,11 @@ function SubNavBar() {
2434
2475
  {
2435
2476
  className: `${styles.mt_8} ${styles.dd_media_img}`,
2436
2477
  children: /* @__PURE__ */ jsx(
2437
- Image,
2478
+ "img",
2438
2479
  {
2439
- src: `${media}/7rELrrwmhLt5Bz9KqxLgMM/nav-submen-combank.png`,
2480
+ src: findMoreAxosDomains(
2481
+ "{AXOS}/images/7rELrrwmhLt5Bz9KqxLgMM/nav-submen-combank.png"
2482
+ ),
2440
2483
  alt: "",
2441
2484
  width: 232,
2442
2485
  height: 232
@@ -2731,9 +2774,11 @@ function SubNavBar() {
2731
2774
  {
2732
2775
  className: `${styles.mt_8} ${styles.dd_media_img}`,
2733
2776
  children: /* @__PURE__ */ jsx(
2734
- Image,
2777
+ "img",
2735
2778
  {
2736
- src: `${media}/6PMA1kEss89S6m1BawAltW/nav-submenu-comlending.png`,
2779
+ src: findMoreAxosDomains(
2780
+ "{AXOS}/images/6PMA1kEss89S6m1BawAltW/nav-submenu-comlending.png"
2781
+ ),
2737
2782
  alt: "",
2738
2783
  width: 232,
2739
2784
  height: 318
@@ -3001,9 +3046,11 @@ function SubNavBar() {
3001
3046
  {
3002
3047
  className: `${styles.mt_8} ${styles.dd_media_img}`,
3003
3048
  children: /* @__PURE__ */ jsx(
3004
- Image,
3049
+ "img",
3005
3050
  {
3006
- src: `${media}/6YLFvmdNVGWcf3bFlimNSs/nav-submenu-wholelending.png`,
3051
+ src: findMoreAxosDomains(
3052
+ "{AXOS}/images/6YLFvmdNVGWcf3bFlimNSs/nav-submenu-wholelending.png"
3053
+ ),
3007
3054
  alt: "",
3008
3055
  width: 232,
3009
3056
  height: 232
@@ -3159,9 +3206,11 @@ function SubNavBar() {
3159
3206
  {
3160
3207
  className: `${styles.mt_8} ${styles.dd_media_img}`,
3161
3208
  children: /* @__PURE__ */ jsx(
3162
- Image,
3209
+ "img",
3163
3210
  {
3164
- src: `${media}/3wtG13mXSTgSzMoB0YU3Ot/nav-submenu-dealer.png`,
3211
+ src: findMoreAxosDomains(
3212
+ "{AXOS}/images/3wtG13mXSTgSzMoB0YU3Ot/nav-submenu-dealer.png"
3213
+ ),
3165
3214
  alt: "",
3166
3215
  width: 232,
3167
3216
  height: 162
@@ -11,4 +11,4 @@ export interface SetContainerProps extends Omit<ImageBillboardSetProps, "imageBi
11
11
  numberOfColumns?: string;
12
12
  additionalDetails?: ReactNode | string;
13
13
  }
14
- export declare const SetContainer: ({ id, variant, headline, bodyCopy, additionalDetails, children, internalName, icon, eyebrow, style, isolate, className, numberOfColumns, }: SetContainerProps) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const SetContainer: ({ id, variant, headline, bodyCopy, additionalDetails, children, internalName, icon, eyebrow, style, isolate, className, numberOfColumns, layout, }: SetContainerProps) => import("react/jsx-runtime").JSX.Element;
@@ -138,7 +138,8 @@ const SetContainer = ({
138
138
  style,
139
139
  isolate,
140
140
  className,
141
- numberOfColumns
141
+ numberOfColumns,
142
+ layout = "Inline"
142
143
  }) => {
143
144
  const container_variant = getVariant(variant);
144
145
  const numOfCols = getNumOfColumns(numberOfColumns);
@@ -158,14 +159,16 @@ const SetContainer = ({
158
159
  eyebrow && /* @__PURE__ */ jsx(
159
160
  "span",
160
161
  {
161
- className: `mb_32 ${heroSupertag({ variant: container_variant })}`,
162
+ className: heroSupertag({ variant: container_variant }),
163
+ role: "heading",
164
+ "aria-level": 2,
162
165
  children: eyebrow
163
166
  }
164
167
  ),
165
168
  headline && /* @__PURE__ */ jsx(
166
169
  "h2",
167
170
  {
168
- className: `header_2 ${header_section({ variant: container_variant })}`,
171
+ className: `header_1 ${header_section({ variant: container_variant })}`,
169
172
  children: headline
170
173
  }
171
174
  ),
@@ -175,7 +178,8 @@ const SetContainer = ({
175
178
  "div",
176
179
  {
177
180
  className: clsx(
178
- numOfCols && columnValues.includes(numOfCols) ? `${set_container_cols({ columns: numOfCols })} cols_${numOfCols}` : inline_container
181
+ numOfCols && columnValues.includes(numOfCols) ? `${set_container_cols({ columns: numOfCols })} cols_${numOfCols}` : inline_container,
182
+ layout === "Stacked" ? "stacked" : ""
179
183
  ),
180
184
  children
181
185
  }