@axos-web-dev/shared-components 0.0.92 → 0.0.94

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 (72) hide show
  1. package/dist/ATMLocator/ATMLocator.js +13 -11
  2. package/dist/Accordion/Accordion.css.d.ts +9 -9
  3. package/dist/Button/Button.d.ts +3 -7
  4. package/dist/Button/Button.js +119 -18
  5. package/dist/Calculators/Calculator.js +25 -23
  6. package/dist/Calculators/MarginTradingCalculator/index.js +1 -2
  7. package/dist/Calculators/MaxLoanCalculator/index.js +6 -5
  8. package/dist/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.d.ts +16 -1
  9. package/dist/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js +7 -7
  10. package/dist/Calculators/MonthlyPaymentCalculator/index.js +9 -8
  11. package/dist/Carousel/index.js +14 -12
  12. package/dist/Chevron/Chevron.interface.d.ts +2 -0
  13. package/dist/Chevron/index.js +44 -24
  14. package/dist/Comparison/Comparison.js +11 -9
  15. package/dist/Comparison/ComparisonSet.js +16 -14
  16. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +18 -16
  17. package/dist/Forms/ApplicationStart.js +3 -2
  18. package/dist/Forms/CommercialLending.js +3 -2
  19. package/dist/Forms/ContactCompany.js +3 -2
  20. package/dist/Forms/ContactUs.js +3 -2
  21. package/dist/Forms/ContactUsAAS.js +3 -2
  22. package/dist/Forms/ContactUsBusiness.js +11 -9
  23. package/dist/Forms/ContactUsNMLSId.js +11 -9
  24. package/dist/Forms/DealerServices.js +3 -2
  25. package/dist/Forms/EmailOnly.js +11 -9
  26. package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
  27. package/dist/Forms/ScheduleCall.js +7 -3
  28. package/dist/Forms/ScheduleCallPremier.js +3 -2
  29. package/dist/Forms/SuccesForm.js +28 -26
  30. package/dist/Forms/WcplSurvey.js +3 -2
  31. package/dist/Hyperlink/Hyperlink.css.d.ts +26 -0
  32. package/dist/Hyperlink/Hyperlink.css.js +6 -0
  33. package/dist/Hyperlink/Hyperlink.interface.d.ts +1 -0
  34. package/dist/Hyperlink/index.js +26 -19
  35. package/dist/IconBillboard/IconBillboard.js +10 -1
  36. package/dist/ImageLink/ImageLink.js +16 -15
  37. package/dist/ImageLink/ImageLinkSet.js +8 -6
  38. package/dist/ImageLink/index.js +17 -15
  39. package/dist/Input/Checkbox.d.ts +1 -1
  40. package/dist/Input/CurrencyInput.js +3 -2
  41. package/dist/Input/DatePicker.css.d.ts +1 -0
  42. package/dist/Input/DatePicker.css.js +6 -0
  43. package/dist/Input/Datepicker.d.ts +3 -0
  44. package/dist/Input/Datepicker.js +47 -0
  45. package/dist/Input/InputDate.css.d.ts +6 -0
  46. package/dist/Input/InputDate.css.js +15 -0
  47. package/dist/Input/InputDate.d.ts +3 -0
  48. package/dist/Input/InputDate.js +47 -0
  49. package/dist/Input/InputPhone.js +3 -2
  50. package/dist/Input/InputProps.d.ts +6 -0
  51. package/dist/Input/index.d.ts +3 -0
  52. package/dist/Input/index.js +6 -0
  53. package/dist/Interstitial/Interstitial-variants.css.d.ts +2 -0
  54. package/dist/Interstitial/Interstitial-variants.css.js +6 -2
  55. package/dist/Interstitial/Interstitial.d.ts +5 -3
  56. package/dist/Interstitial/Interstitial.js +30 -5
  57. package/dist/Modal/Modal.js +11 -9
  58. package/dist/NavigationMenu/AxosAdvisorServices/NavData.js +0 -1
  59. package/dist/NavigationMenu/AxosAdvisorServices/index.js +1 -17
  60. package/dist/NavigationMenu/AxosBank/SubNavBar.js +18 -16
  61. package/dist/SetContainer/SetContainer.js +18 -16
  62. package/dist/Table/Table.d.ts +11 -11
  63. package/dist/assets/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css +19 -6
  64. package/dist/assets/Hyperlink/Hyperlink.css +22 -0
  65. package/dist/assets/Input/DatePicker.css +95 -0
  66. package/dist/assets/Input/InputDate.css +39 -0
  67. package/dist/assets/Interstitial/Interstitial-variants.css +9 -0
  68. package/dist/main.d.ts +4 -4
  69. package/dist/main.js +69 -63
  70. package/package.json +1 -1
  71. package/dist/Interstitial/index.d.ts +0 -1
  72. package/dist/Interstitial/index.js +0 -22
@@ -0,0 +1,47 @@
1
+ "use client";
2
+ import { jsxs, jsx } from "react/jsx-runtime";
3
+ import { useState } from "react";
4
+ import DatePicker from "react-date-picker";
5
+ import { wrapper, labelClassName, container, iconContainer, iconInput, helperText } from "./Input.css.js";
6
+ const InputDate = (props) => {
7
+ const {
8
+ disabled,
9
+ label,
10
+ iconLeft,
11
+ iconRight,
12
+ sizes,
13
+ error = false,
14
+ helperText: helper,
15
+ variant
16
+ } = props;
17
+ const [value, onChange] = useState();
18
+ return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
19
+ label && /* @__PURE__ */ jsx(
20
+ "label",
21
+ {
22
+ className: labelClassName({ error, variant }),
23
+ htmlFor: props.name,
24
+ children: label
25
+ }
26
+ ),
27
+ /* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
28
+ iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
29
+ /* @__PURE__ */ jsx(
30
+ DatePicker,
31
+ {
32
+ dayPlaceholder: "dd",
33
+ monthPlaceholder: "mm",
34
+ yearPlaceholder: "yyyy",
35
+ minDate: /* @__PURE__ */ new Date(),
36
+ onChange,
37
+ value
38
+ }
39
+ ),
40
+ iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
41
+ ] }),
42
+ /* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
43
+ ] });
44
+ };
45
+ export {
46
+ InputDate
47
+ };
@@ -3,11 +3,12 @@ import { InputMask } from "@react-input/mask";
3
3
  import { forwardRef } from "react";
4
4
  import "./Checkbox.js";
5
5
  import "./CurrencyInput.js";
6
- import "./Dropdown.js";
6
+ import "./Input.css.js";
7
7
  /* empty css */
8
+ /* empty css */
9
+ import "./Dropdown.js";
8
10
  /* empty css */
9
11
  import { Input } from "./Input.js";
10
- import "./Input.css.js";
11
12
  import "./InputTextArea.js";
12
13
  const InputPhone = forwardRef(
13
14
  (props, ref) => {
@@ -36,3 +36,9 @@ export interface RadioButtonProps extends InputProps {
36
36
  value: string | number;
37
37
  groupName: string;
38
38
  }
39
+ export interface DatepickerInputProps extends InputProps {
40
+ month?: string;
41
+ selected?: string;
42
+ show?: boolean;
43
+ onDateChange: (day: string) => void;
44
+ }
@@ -1,9 +1,12 @@
1
1
  export * from './Checkbox';
2
2
  export * from './CurrencyInput';
3
+ export * from './Datepicker';
4
+ export * from './DatePicker.css';
3
5
  export * from './Dropdown';
4
6
  export * from './Dropdown.css';
5
7
  export * from './Input';
6
8
  export * from './Input.css';
9
+ export * from './InputDate';
7
10
  export * from './InputPhone';
8
11
  export * from './InputProps';
9
12
  export * from './InputTextArea';
@@ -1,19 +1,25 @@
1
1
  import { Checkbox } from "./Checkbox.js";
2
2
  import { CurrencyInput } from "./CurrencyInput.js";
3
+ import { DatePickerInput } from "./Datepicker.js";
4
+ import { datePicker } from "./DatePicker.css.js";
3
5
  import { Dropdown } from "./Dropdown.js";
4
6
  import { selectInput } from "./Dropdown.css.js";
5
7
  import { Input } from "./Input.js";
6
8
  import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input.css.js";
9
+ import { InputDate } from "./InputDate.js";
7
10
  import { InputPhone } from "./InputPhone.js";
8
11
  import { InputTextArea } from "./InputTextArea.js";
9
12
  export {
10
13
  Checkbox,
11
14
  CurrencyInput,
15
+ DatePickerInput,
12
16
  Dropdown,
13
17
  Input,
18
+ InputDate,
14
19
  InputPhone,
15
20
  InputTextArea,
16
21
  container,
22
+ datePicker,
17
23
  helperText,
18
24
  iconContainer,
19
25
  iconContainerBase,
@@ -8,3 +8,5 @@ export declare const int_headline: import('@vanilla-extract/recipes').RuntimeFn<
8
8
  };
9
9
  };
10
10
  }>;
11
+ export declare const marketing_tile: string;
12
+ export declare const interstitial_list: string;
@@ -1,9 +1,13 @@
1
+ /* empty css */
1
2
  /* empty css */
2
3
  /* empty css */
3
- /* empty css */
4
4
  /* empty css */
5
5
  import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
6
6
  var int_headline = createRuntimeFn({ defaultClassName: "ep91dm0", variantClassNames: { variant: { primary: "ep91dm1", secondary: "ep91dm2" } }, defaultVariants: {}, compoundVariants: [] });
7
+ var marketing_tile = "ep91dm3";
8
+ var interstitial_list = "ep91dm4";
7
9
  export {
8
- int_headline
10
+ int_headline,
11
+ interstitial_list,
12
+ marketing_tile
9
13
  };
@@ -1,16 +1,18 @@
1
+ import { BulletItemProps } from '../BulletItem';
1
2
  import { ChevronProps } from '../Chevron/Chevron.interface';
2
3
  import { ImageInterface } from '../IconBillboard';
3
4
  import { SecondaryTypes } from '../utils/variant.types';
4
5
  import { FC, ReactNode } from 'react';
5
6
 
6
7
  export interface interstitialProps {
7
- id: string;
8
+ id?: string;
8
9
  variant?: SecondaryTypes;
9
10
  image?: ImageInterface;
10
- callToActionRow?: boolean | ChevronProps[];
11
+ callToActionRow?: ChevronProps[];
11
12
  headline?: string | ReactNode;
12
13
  bodyCopy?: string | ReactNode;
13
14
  isOpen?: boolean;
14
15
  onClose?: () => void;
16
+ bullets: BulletItemProps[];
15
17
  }
16
- export declare const Modal: FC<interstitialProps>;
18
+ export declare const Interstitial: FC<interstitialProps>;
@@ -1,13 +1,14 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { BulletItem } from "../BulletItem/BulletItem.js";
2
3
  import { Button } from "../Button/Button.js";
3
4
  import "../Button/Button.css.js";
4
5
  import "react";
5
6
  import "react-use";
6
7
  import { Chevron } from "../Chevron/index.js";
7
8
  import { getVariant } from "../utils/getVariant.js";
8
- import { int_headline } from "./Interstitial-variants.css.js";
9
+ import { marketing_tile, int_headline, interstitial_list } from "./Interstitial-variants.css.js";
9
10
  import css from "./Interstitial.module.js";
10
- const Modal = ({
11
+ const Interstitial = ({
11
12
  id,
12
13
  image,
13
14
  headline,
@@ -15,13 +16,15 @@ const Modal = ({
15
16
  variant: fullVariant = "primary",
16
17
  callToActionRow,
17
18
  isOpen,
18
- onClose
19
+ onClose,
20
+ bullets
19
21
  }) => {
20
22
  const variant = getVariant(fullVariant);
23
+ console.log(callToActionRow, "calltoactions rowwww");
21
24
  return /* @__PURE__ */ jsx(
22
25
  "div",
23
26
  {
24
- className: `${css.overlay} ${isOpen ? "active" : ""}`,
27
+ className: `${marketing_tile} ${css.overlay} ${isOpen ? "active" : ""} interstitial`,
25
28
  id: `modal_${id}`,
26
29
  children: /* @__PURE__ */ jsxs(
27
30
  "div",
@@ -52,6 +55,28 @@ const Modal = ({
52
55
  /* @__PURE__ */ jsxs("div", { className: `${css.modal_content} text_center`, children: [
53
56
  headline && /* @__PURE__ */ jsx("h2", { className: `header_3 ${int_headline({ variant })}`, children: headline }),
54
57
  bodyCopy && /* @__PURE__ */ jsx("div", { className: css.body_copy, children: bodyCopy }),
58
+ bullets && bullets.length > 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: interstitial_list, children: bullets.map(
59
+ (item) => Object.hasOwn(item, "variant") ? /* @__PURE__ */ jsx(
60
+ BulletItem,
61
+ {
62
+ id: item.id,
63
+ variant: item?.variant,
64
+ children: item.copy
65
+ },
66
+ item.id
67
+ ) : /* @__PURE__ */ jsxs("li", { className: "list_item flex", children: [
68
+ /* @__PURE__ */ jsx("div", { className: "img_item", children: /* @__PURE__ */ jsx(
69
+ "img",
70
+ {
71
+ src: item.icon?.src,
72
+ alt: item.icon?.altText,
73
+ width: 18,
74
+ height: 18
75
+ }
76
+ ) }),
77
+ /* @__PURE__ */ jsx("span", { children: item.copy })
78
+ ] }, item.id)
79
+ ) }) }),
55
80
  Array.isArray(callToActionRow) && callToActionRow?.length > 0 && /* @__PURE__ */ jsx("div", { className: css.btns, children: callToActionRow.map(
56
81
  ({
57
82
  id: id2,
@@ -87,5 +112,5 @@ const Modal = ({
87
112
  );
88
113
  };
89
114
  export {
90
- Modal
115
+ Interstitial
91
116
  };
@@ -1,14 +1,19 @@
1
1
  import { jsx, Fragment, jsxs } from "react/jsx-runtime";
2
2
  import { chevron } from "../Chevron/Chevron.css.js";
3
- import { Button } from "../Button/Button.js";
3
+ import "../Accordion/Accordion.js";
4
+ import "../Accordion/Accordion.css.js";
4
5
  import "../icons/ArrowIcon/ArrowIcon.css.js";
5
6
  import "../icons/CheckIcon/CheckIcon.css.js";
6
7
  /* empty css */
7
8
  /* empty css */
8
9
  /* empty css */
9
10
  /* empty css */
10
- import "../IconBillboard/IconBillboard.css.js";
11
11
  import "react";
12
+ import "../AlertBanner/AlertBanner.css.js";
13
+ import "../Article/Article.css.js";
14
+ import "../ArticlesSet/ArticlesSet.css.js";
15
+ import { Button } from "../Button/Button.js";
16
+ import "../IconBillboard/IconBillboard.css.js";
12
17
  import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
13
18
  import "../Button/Button.css.js";
14
19
  import "../Calculators/ApyCalculator/ApyCalculator.css.js";
@@ -19,11 +24,12 @@ import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
19
24
  import "@hookform/resolvers/zod";
20
25
  import "../Input/Checkbox.js";
21
26
  import "../Input/CurrencyInput.js";
22
- import "../Input/Dropdown.js";
27
+ import "../Input/Input.css.js";
23
28
  /* empty css */
29
+ /* empty css */
30
+ import "../Input/Dropdown.js";
24
31
  /* empty css */
25
32
  import "../Input/Input.js";
26
- import "../Input/Input.css.js";
27
33
  import "../Input/InputPhone.js";
28
34
  import "../Input/InputTextArea.js";
29
35
  import "react-hook-form";
@@ -35,17 +41,13 @@ import "iframe-resizer";
35
41
  import "../Calculators/calculator.css.js";
36
42
  /* empty css */
37
43
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
38
- import "../Accordion/Accordion.js";
39
- import "../Accordion/Accordion.css.js";
40
- import "../AlertBanner/AlertBanner.css.js";
41
- import "../Article/Article.css.js";
42
- import "../ArticlesSet/ArticlesSet.css.js";
43
44
  /* empty css */
44
45
  /* empty css */
45
46
  import "next/image.js";
46
47
  /* empty css */
47
48
  /* empty css */
48
49
  import "../Carousel/index.js";
50
+ import "../Hyperlink/Hyperlink.css.js";
49
51
  /* empty css */
50
52
  import "../Comparison/Comparison.css.js";
51
53
  import "../HeroBanner/HeroBanner.css.js";
@@ -1,5 +1,4 @@
1
1
  const navItems = [
2
- { name: "Home", url: "/" },
3
2
  { name: "Scale Your Business", url: "/scale-your-business" },
4
3
  { name: "Serve Your Clients", url: "/serve-your-clients" },
5
4
  { name: "Optimize Operations", url: "/optimize-operations" },
@@ -15,7 +15,6 @@ function NavBar() {
15
15
  const [isOpenSignInToggle, setisOpenSignInToggle] = useState(false);
16
16
  const [isOpenMobile, setisOpenMobile] = useState(false);
17
17
  const [activeIndex, setActiveIndex] = useState();
18
- const [lastNavItem, setLastNavItem] = useState();
19
18
  const ref = useRef(null);
20
19
  const toggle = () => setisOpenSignIn(!isOpenSignIn);
21
20
  const signInToggle = () => setisOpenSignInToggle(!isOpenSignInToggle);
@@ -37,9 +36,6 @@ function NavBar() {
37
36
  useEffect(() => {
38
37
  getActiveIndex();
39
38
  }, [activeIndex]);
40
- useEffect(() => {
41
- setLastNavItem(navItems[navItems.length - 1]);
42
- }, []);
43
39
  useClickAway(ref, (e) => {
44
40
  if (e?.target?.tagName !== "A") {
45
41
  setisOpenSignIn(false);
@@ -65,7 +61,7 @@ function NavBar() {
65
61
  }
66
62
  ) }),
67
63
  /* @__PURE__ */ jsx("div", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
68
- (item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
64
+ (item, i) => /* @__PURE__ */ jsx(
69
65
  NavItem,
70
66
  {
71
67
  className: styles.main_nav_link,
@@ -127,18 +123,6 @@ function NavBar() {
127
123
  className: `${styles.desktop_only} flex_row middle relative`,
128
124
  ref,
129
125
  children: [
130
- lastNavItem && /* @__PURE__ */ jsx(
131
- NavItem,
132
- {
133
- url: lastNavItem.url,
134
- name: lastNavItem.name,
135
- className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
136
- isActive: activeIndex == navItems.length,
137
- onClick: handleClick,
138
- index: navItems.length
139
- },
140
- navItems.length + 1
141
- ),
142
126
  /* @__PURE__ */ jsxs(
143
127
  Button,
144
128
  {
@@ -1,31 +1,40 @@
1
1
  "use client";
2
2
  import { jsx, jsxs, Fragment } from "react/jsx-runtime";
3
- import "../../Modal/contextApi/store.js";
4
- import { findMoreAxosDomains } from "../../utils/allowedAxosDomains.js";
5
- import "clsx";
6
- import { useState, useEffect } from "react";
7
- import "../../Button/Button.css.js";
3
+ import "../../Accordion/Accordion.js";
4
+ import "../../Accordion/Accordion.css.js";
8
5
  import "../../icons/ArrowIcon/ArrowIcon.css.js";
9
6
  import "../../icons/CheckIcon/CheckIcon.css.js";
10
7
  /* empty css */
11
8
  /* empty css */
12
9
  /* empty css */
13
10
  /* empty css */
11
+ import { useState, useEffect } from "react";
14
12
  import "../../Chevron/Chevron.css.js";
13
+ import "../../AlertBanner/AlertBanner.css.js";
14
+ import "../../Article/Article.css.js";
15
+ import "../../ArticlesSet/ArticlesSet.css.js";
15
16
  import "../../IconBillboard/IconBillboard.css.js";
17
+ /* empty css */
18
+ /* empty css */
19
+ import { findMoreAxosDomains } from "../../utils/allowedAxosDomains.js";
20
+ import "../../Button/Button.css.js";
21
+ import "react-use";
22
+ import "../../Interstitial/Interstitial-variants.css.js";
23
+ /* empty css */
24
+ import "../../Modal/contextApi/store.js";
25
+ import "clsx";
16
26
  import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
17
27
  import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
18
- import "react-use";
19
28
  import "../../Table/Table.css.js";
20
29
  import "../../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
21
30
  import "@hookform/resolvers/zod";
22
31
  import "../../Input/Checkbox.js";
23
32
  import "../../Input/CurrencyInput.js";
33
+ import "../../Input/Input.css.js";
34
+ /* empty css */
24
35
  import "../../Input/Dropdown.js";
25
- /* empty css */
26
36
  /* empty css */
27
37
  import "../../Input/Input.js";
28
- import "../../Input/Input.css.js";
29
38
  import "../../Input/InputPhone.js";
30
39
  import "../../Input/InputTextArea.js";
31
40
  import "react-hook-form";
@@ -37,17 +46,12 @@ import "iframe-resizer";
37
46
  import "../../Calculators/calculator.css.js";
38
47
  /* empty css */
39
48
  import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
40
- import "../../Accordion/Accordion.js";
41
- import "../../Accordion/Accordion.css.js";
42
- import "../../AlertBanner/AlertBanner.css.js";
43
- import "../../Article/Article.css.js";
44
- import "../../ArticlesSet/ArticlesSet.css.js";
45
49
  /* empty css */
46
50
  /* empty css */
47
51
  import Image from "next/image.js";
48
- /* empty css */
49
52
  /* empty css */
50
53
  import "../../Carousel/index.js";
54
+ import "../../Hyperlink/Hyperlink.css.js";
51
55
  /* empty css */
52
56
  import "../../Comparison/Comparison.css.js";
53
57
  import "../../HeroBanner/HeroBanner.css.js";
@@ -63,9 +67,7 @@ import "../../FaqAccordion/index.js";
63
67
  import "../../FooterDisclosure/FooterDisclosure.css.js";
64
68
  /* empty css */
65
69
  import "../../ImageBillboard/ImageBillboard.css.js";
66
- import "../../Interstitial/Interstitial-variants.css.js";
67
70
  import "../../LandingPageHeader/LandingPageHeader.css.js";
68
- /* empty css */
69
71
  /* empty css */
70
72
  /* empty css */
71
73
  /* empty css */
@@ -1,10 +1,5 @@
1
1
  import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
- import "../Modal/contextApi/store.js";
3
- import { getVariant } from "../utils/getVariant.js";
4
- import clsx from "clsx";
5
- import "react";
6
- import "../Button/Button.css.js";
7
- import "react-use";
2
+ import { header_section } from "../IconBillboard/IconBillboard.css.js";
8
3
  import "../icons/ArrowIcon/ArrowIcon.css.js";
9
4
  import SvgAxosX from "../icons/AxosX/index.js";
10
5
  import SvgComponent from "../icons/AxosX/Blue.js";
@@ -13,19 +8,29 @@ import "../icons/CheckIcon/CheckIcon.css.js";
13
8
  /* empty css */
14
9
  /* empty css */
15
10
  /* empty css */
16
- import { header_section } from "../IconBillboard/IconBillboard.css.js";
11
+ /* empty css */
12
+ /* empty css */
13
+ import { getVariant } from "../utils/getVariant.js";
14
+ import "../Accordion/Accordion.js";
15
+ import "../Accordion/Accordion.css.js";
16
+ import "../AlertBanner/AlertBanner.css.js";
17
+ import "../Article/Article.css.js";
18
+ import "../ArticlesSet/ArticlesSet.css.js";
19
+ import "react";
17
20
  import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
21
+ import "../Button/Button.css.js";
18
22
  import "../Calculators/ApyCalculator/ApyCalculator.css.js";
23
+ import clsx from "clsx";
19
24
  import "../Table/Table.css.js";
20
25
  import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
21
26
  import "@hookform/resolvers/zod";
22
27
  import "../Input/Checkbox.js";
23
28
  import "../Input/CurrencyInput.js";
29
+ import "../Input/Input.css.js";
30
+ /* empty css */
24
31
  import "../Input/Dropdown.js";
25
- /* empty css */
26
32
  /* empty css */
27
33
  import "../Input/Input.js";
28
- import "../Input/Input.css.js";
29
34
  import "../Input/InputPhone.js";
30
35
  import "../Input/InputTextArea.js";
31
36
  import "react-hook-form";
@@ -37,17 +42,12 @@ import "iframe-resizer";
37
42
  import "../Calculators/calculator.css.js";
38
43
  /* empty css */
39
44
  import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
40
- import "../Accordion/Accordion.js";
41
- import "../Accordion/Accordion.css.js";
42
- import "../AlertBanner/AlertBanner.css.js";
43
- import "../Article/Article.css.js";
44
- import "../ArticlesSet/ArticlesSet.css.js";
45
45
  /* empty css */
46
46
  /* empty css */
47
47
  import "next/image.js";
48
- /* empty css */
49
48
  /* empty css */
50
49
  import "../Carousel/index.js";
50
+ import "../Hyperlink/Hyperlink.css.js";
51
51
  /* empty css */
52
52
  import "../Comparison/Comparison.css.js";
53
53
  import { set_container, isolate_container, heading, inline_container, setcontainer_section_text } from "./SetContainer.css.js";
@@ -61,10 +61,11 @@ import "../FaqAccordion/index.js";
61
61
  import "../FooterDisclosure/FooterDisclosure.css.js";
62
62
  /* empty css */
63
63
  import "../ImageBillboard/ImageBillboard.css.js";
64
- import "../Interstitial/Interstitial-variants.css.js";
65
64
  import "../LandingPageHeader/LandingPageHeader.css.js";
66
65
  import "../Chevron/Chevron.css.js";
67
66
  /* empty css */
67
+ import "../Modal/contextApi/store.js";
68
+ import "react-use";
68
69
  /* empty css */
69
70
  /* empty css */
70
71
  /* empty css */
@@ -84,6 +85,7 @@ import "../StepItemSet/StepItemSet.css.js";
84
85
  import "next/script.js";
85
86
  /* empty css */
86
87
  /* empty css */
88
+ import "../Interstitial/Interstitial-variants.css.js";
87
89
  import "../HeroBanner/LargeBanner.css.js";
88
90
  import "../HeroBanner/SelectionBanner.css.js";
89
91
  const SetContainer = ({
@@ -9,14 +9,14 @@ export declare const TableBody: ({ children }: PropsWithChildren) => import("rea
9
9
  export declare const TableCell: ({ children, as, variant, highlighted, ...props }: CellProps) => import('react').DetailedReactHTMLElement<{
10
10
  className: string;
11
11
  manifest?: string | undefined;
12
- amp?: string | undefined;
12
+ amp?: string;
13
13
  defaultChecked?: boolean | undefined;
14
14
  defaultValue?: string | number | readonly string[] | undefined;
15
15
  suppressContentEditableWarning?: boolean | undefined;
16
16
  suppressHydrationWarning?: boolean | undefined;
17
17
  accessKey?: string | undefined;
18
18
  autoFocus?: boolean | undefined;
19
- contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
19
+ contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
20
20
  contextMenu?: string | undefined;
21
21
  dir?: string | undefined;
22
22
  draggable?: (boolean | "false" | "true") | undefined;
@@ -55,37 +55,37 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
55
55
  results?: number | undefined;
56
56
  security?: string | undefined;
57
57
  unselectable?: "on" | "off" | undefined;
58
- inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
58
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
59
59
  is?: string | undefined;
60
60
  popover?: "" | "auto" | "manual" | undefined;
61
- popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
61
+ popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
62
62
  popoverTarget?: string | undefined;
63
63
  onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
64
64
  onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
65
65
  inert?: boolean | undefined;
66
66
  "aria-activedescendant"?: string | undefined;
67
67
  "aria-atomic"?: (boolean | "false" | "true") | undefined;
68
- "aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
68
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
69
69
  "aria-braillelabel"?: string | undefined;
70
70
  "aria-brailleroledescription"?: string | undefined;
71
71
  "aria-busy"?: (boolean | "false" | "true") | undefined;
72
- "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
72
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
73
73
  "aria-colcount"?: number | undefined;
74
74
  "aria-colindex"?: number | undefined;
75
75
  "aria-colindextext"?: string | undefined;
76
76
  "aria-colspan"?: number | undefined;
77
77
  "aria-controls"?: string | undefined;
78
- "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
78
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
79
79
  "aria-describedby"?: string | undefined;
80
80
  "aria-description"?: string | undefined;
81
81
  "aria-details"?: string | undefined;
82
82
  "aria-disabled"?: (boolean | "false" | "true") | undefined;
83
- "aria-dropeffect"?: "none" | "copy" | "move" | "link" | "execute" | "popup" | undefined;
83
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
84
84
  "aria-errormessage"?: string | undefined;
85
85
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
86
86
  "aria-flowto"?: string | undefined;
87
87
  "aria-grabbed"?: (boolean | "false" | "true") | undefined;
88
- "aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
88
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
89
89
  "aria-hidden"?: (boolean | "false" | "true") | undefined;
90
90
  "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
91
91
  "aria-keyshortcuts"?: string | undefined;
@@ -100,9 +100,9 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
100
100
  "aria-owns"?: string | undefined;
101
101
  "aria-placeholder"?: string | undefined;
102
102
  "aria-posinset"?: number | undefined;
103
- "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
103
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
104
104
  "aria-readonly"?: (boolean | "false" | "true") | undefined;
105
- "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
105
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
106
106
  "aria-required"?: (boolean | "false" | "true") | undefined;
107
107
  "aria-roledescription"?: string | undefined;
108
108
  "aria-rowcount"?: number | undefined;
@@ -22,8 +22,21 @@
22
22
  height: 50px;
23
23
  border-radius: 8px;
24
24
  margin-top: .5rem;
25
+ text-align-last: center;
25
26
  }
26
27
  ._10pitvc7 {
28
+ color: var(--_1073cm82);
29
+ }
30
+ ._10pitvc8 {
31
+ color: var(--_1073cm89);
32
+ }
33
+ ._10pitvc9 {
34
+ color: var(--_1073cm8g);
35
+ }
36
+ ._10pitvca {
37
+ color: var(--_1073cm8n);
38
+ }
39
+ ._10pitvcb {
27
40
  background: var(--_1073cm84);
28
41
  background-clip: text;
29
42
  -webkit-text-fill-color: transparent;
@@ -31,10 +44,10 @@
31
44
  font-size: 2.5rem;
32
45
  font-weight: 700;
33
46
  }
34
- ._10pitvc8 {
47
+ ._10pitvcc {
35
48
  padding: 2rem;
36
49
  }
37
- ._10pitvc9 {
50
+ ._10pitvcd {
38
51
  align-items: flex-start;
39
52
  }
40
53
  ._10pitvc5 input {
@@ -47,15 +60,15 @@ select {
47
60
  background: url(https://images.axos.com/o9ov1v03uwqk/4ayjjdIkEzQsfmhKbPeNaE/636b57923fbdac891d48f78ca06ffeb6/image_1_-_2024-06-27T142052.191.png) no-repeat 95%;
48
61
  background-color: #fff;
49
62
  }
50
- ._10pitvca {
63
+ ._10pitvce {
51
64
  font-weight: 700;
52
65
  font-size: 24px;
53
66
  color: #666;
54
67
  }
55
- ._10pitvcb {
68
+ ._10pitvcf {
56
69
  color: #d0021b;
57
70
  }
58
- ._10pitvcc {
71
+ ._10pitvcg {
59
72
  font-size: 34px!important;
60
73
  line-height: 1.25;
61
74
  }
@@ -64,7 +77,7 @@ select {
64
77
  width: 100%;
65
78
  margin-bottom: 1rem;
66
79
  }
67
- ._10pitvc9 {
80
+ ._10pitvcd {
68
81
  align-items: center;
69
82
  flex-direction: column;
70
83
  }