@axos-web-dev/shared-components 0.0.92 → 0.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ATMLocator/ATMLocator.js +13 -11
- package/dist/Accordion/Accordion.css.d.ts +9 -9
- package/dist/Button/Button.d.ts +3 -7
- package/dist/Button/Button.js +119 -18
- package/dist/Calculators/Calculator.js +25 -23
- package/dist/Calculators/MarginTradingCalculator/index.js +1 -2
- package/dist/Calculators/MaxLoanCalculator/index.js +6 -5
- package/dist/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.d.ts +16 -1
- package/dist/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js +7 -7
- package/dist/Calculators/MonthlyPaymentCalculator/index.js +9 -8
- package/dist/Carousel/index.js +14 -12
- package/dist/Chevron/Chevron.interface.d.ts +2 -0
- package/dist/Chevron/index.js +44 -24
- package/dist/Comparison/Comparison.js +11 -9
- package/dist/Comparison/ComparisonSet.js +16 -14
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +18 -16
- package/dist/Forms/ApplicationStart.js +3 -2
- package/dist/Forms/CommercialLending.js +3 -2
- package/dist/Forms/ContactCompany.js +3 -2
- package/dist/Forms/ContactUs.js +3 -2
- package/dist/Forms/ContactUsAAS.js +3 -2
- package/dist/Forms/ContactUsBusiness.js +11 -9
- package/dist/Forms/ContactUsNMLSId.js +11 -9
- package/dist/Forms/DealerServices.js +3 -2
- package/dist/Forms/EmailOnly.js +11 -9
- package/dist/Forms/SalesforceFieldsForm.d.ts +0 -1
- package/dist/Forms/ScheduleCall.js +7 -3
- package/dist/Forms/ScheduleCallPremier.js +3 -2
- package/dist/Forms/SuccesForm.js +28 -26
- package/dist/Forms/WcplSurvey.js +3 -2
- package/dist/Hyperlink/Hyperlink.css.d.ts +26 -0
- package/dist/Hyperlink/Hyperlink.css.js +6 -0
- package/dist/Hyperlink/Hyperlink.interface.d.ts +1 -0
- package/dist/Hyperlink/index.js +26 -19
- package/dist/IconBillboard/IconBillboard.js +10 -1
- package/dist/ImageLink/ImageLink.js +16 -15
- package/dist/ImageLink/ImageLinkSet.js +8 -6
- package/dist/ImageLink/index.js +17 -15
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/CurrencyInput.js +3 -2
- package/dist/Input/DatePicker.css.d.ts +1 -0
- package/dist/Input/DatePicker.css.js +6 -0
- package/dist/Input/Datepicker.d.ts +3 -0
- package/dist/Input/Datepicker.js +47 -0
- package/dist/Input/InputDate.css.d.ts +6 -0
- package/dist/Input/InputDate.css.js +15 -0
- package/dist/Input/InputDate.d.ts +3 -0
- package/dist/Input/InputDate.js +47 -0
- package/dist/Input/InputPhone.js +3 -2
- package/dist/Input/InputProps.d.ts +6 -0
- package/dist/Input/index.d.ts +3 -0
- package/dist/Input/index.js +6 -0
- package/dist/Interstitial/Interstitial-variants.css.d.ts +2 -0
- package/dist/Interstitial/Interstitial-variants.css.js +6 -2
- package/dist/Interstitial/Interstitial.d.ts +5 -3
- package/dist/Interstitial/Interstitial.js +30 -5
- package/dist/Modal/Modal.js +11 -9
- package/dist/NavigationMenu/AxosAdvisorServices/NavData.js +0 -1
- package/dist/NavigationMenu/AxosAdvisorServices/index.js +0 -16
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +18 -16
- package/dist/SetContainer/SetContainer.js +18 -16
- package/dist/Table/Table.d.ts +11 -11
- package/dist/assets/Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css +19 -6
- package/dist/assets/Hyperlink/Hyperlink.css +22 -0
- package/dist/assets/Input/DatePicker.css +95 -0
- package/dist/assets/Input/InputDate.css +39 -0
- package/dist/assets/Interstitial/Interstitial-variants.css +9 -0
- package/dist/main.d.ts +4 -4
- package/dist/main.js +69 -63
- package/package.json +1 -1
- package/dist/Interstitial/index.d.ts +0 -1
- 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
|
+
};
|
package/dist/Input/InputPhone.js
CHANGED
|
@@ -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 "./
|
|
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
|
+
}
|
package/dist/Input/index.d.ts
CHANGED
|
@@ -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';
|
package/dist/Input/index.js
CHANGED
|
@@ -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,
|
|
@@ -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
|
|
8
|
+
id?: string;
|
|
8
9
|
variant?: SecondaryTypes;
|
|
9
10
|
image?: ImageInterface;
|
|
10
|
-
callToActionRow?:
|
|
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
|
|
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
|
|
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
|
-
|
|
115
|
+
Interstitial
|
|
91
116
|
};
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -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
|
|
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/
|
|
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";
|
|
@@ -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);
|
|
@@ -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 "../../
|
|
4
|
-
import
|
|
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 "../
|
|
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
|
-
|
|
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 = ({
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -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
|
|
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?:
|
|
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" | "
|
|
58
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
59
59
|
is?: string | undefined;
|
|
60
60
|
popover?: "" | "auto" | "manual" | undefined;
|
|
61
|
-
popoverTargetAction?: "
|
|
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" | "
|
|
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 | "
|
|
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 | "
|
|
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" | "
|
|
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 | "
|
|
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 | "
|
|
103
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
104
104
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
105
|
-
"aria-relevant"?: "
|
|
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
|
-
.
|
|
47
|
+
._10pitvcc {
|
|
35
48
|
padding: 2rem;
|
|
36
49
|
}
|
|
37
|
-
.
|
|
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
|
-
.
|
|
63
|
+
._10pitvce {
|
|
51
64
|
font-weight: 700;
|
|
52
65
|
font-size: 24px;
|
|
53
66
|
color: #666;
|
|
54
67
|
}
|
|
55
|
-
.
|
|
68
|
+
._10pitvcf {
|
|
56
69
|
color: #d0021b;
|
|
57
70
|
}
|
|
58
|
-
.
|
|
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
|
-
.
|
|
80
|
+
._10pitvcd {
|
|
68
81
|
align-items: center;
|
|
69
82
|
flex-direction: column;
|
|
70
83
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.hvs5ng0 {
|
|
2
|
+
text-decoration: none;
|
|
3
|
+
cursor: pointer;
|
|
4
|
+
}
|
|
5
|
+
.hvs5ng1 {
|
|
6
|
+
color: #0062B3;
|
|
7
|
+
}
|
|
8
|
+
.hvs5ng1:hover {
|
|
9
|
+
text-decoration: underline;
|
|
10
|
+
text-decoration-color: #0062B3;
|
|
11
|
+
}
|
|
12
|
+
.hvs5ng2 {
|
|
13
|
+
color: #FAA74A;
|
|
14
|
+
}
|
|
15
|
+
.hvs5ng2:hover {
|
|
16
|
+
text-decoration: underline;
|
|
17
|
+
text-decoration-color: #FAA74A;
|
|
18
|
+
}
|
|
19
|
+
.hvs5ng3 {
|
|
20
|
+
color: inherit;
|
|
21
|
+
text-decoration: underline;
|
|
22
|
+
}
|