@axos-web-dev/shared-components 2.0.0-dev.2 → 2.0.0-dev.2-bwaTest
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/Accordion/Accordion.js +3 -3
- package/dist/AlertBanner/index.js +1 -1
- package/dist/Article/Article.js +1 -1
- package/dist/Calculators/AnnualFeeCalculator/index.js +1 -1
- package/dist/Calculators/ApyCalculator/index.js +1 -1
- package/dist/Calculators/BuyDownCalculator/index.js +1 -1
- package/dist/Calculators/MarginTradingCalculator/index.js +1 -1
- package/dist/Calculators/MarineLoanMonthlyPaymentCalculator/index.js +1 -1
- package/dist/Calculators/MaxLoanCalculator/index.js +1 -1
- package/dist/Calculators/MonthlyPaymentCalculator/index.js +1 -1
- package/dist/Calculators/MonthlyPaymentLVFCalculator/index.js +1 -1
- package/dist/Carousel/index.js +1 -1
- package/dist/ContentBanner/index.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBioSet.js +1 -1
- package/dist/FaqAccordion/index.js +1 -1
- package/dist/FooterDisclosure/FooterDisclosure.js +1 -1
- package/dist/Forms/EmailUs.js +40 -34
- package/dist/Forms/Forms.css.d.ts +3 -0
- package/dist/Forms/Forms.css.js +39 -39
- package/dist/Forms/MortgageRate/MortgageRateForm.js +1 -1
- package/dist/HeroBanner/HeroBanner.js +2 -2
- package/dist/IconBillboard/IconBillboardSet.js +1 -1
- package/dist/ImageBillboard/ImageBillboard.js +1 -1
- package/dist/Input/Checkbox.js +2 -2
- package/dist/Input/DownPaymentInput.js +1 -1
- package/dist/Input/Dropdown.js +1 -1
- package/dist/Input/Input.js +1 -1
- package/dist/Input/InputTextArea.js +1 -1
- package/dist/Insight/Featured/Featured.js +2 -2
- package/dist/LandingPageHeader/LandingPageHeader.js +1 -1
- package/dist/Modal/contextApi/store.js +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +2 -4
- package/dist/NavigationMenu/AxosBank/index.js +2 -10
- package/dist/PageNavItem/PageNavItem.js +1 -1
- package/dist/SetContainer/SetContainer.js +1 -1
- package/dist/StepItem/StepItem.js +1 -1
- package/dist/StepItemSet/StepItemSet.js +1 -1
- package/dist/Table/Table.js +1 -1
- package/dist/Topic/Topic.js +1 -1
- package/dist/assets/Forms/Forms.css +94 -91
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
3
|
import clsx from "clsx";
|
|
4
|
-
import React, { createContext,
|
|
4
|
+
import React, { createContext, useContext, useState } from "react";
|
|
5
5
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
6
6
|
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
7
7
|
import SvgChevronDown from "../icons/ChevronDown.js";
|
|
@@ -12,7 +12,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
|
|
|
12
12
|
/* empty css */
|
|
13
13
|
/* empty css */
|
|
14
14
|
/* empty css */
|
|
15
|
-
import {
|
|
15
|
+
import { headerContent, icon, headerAccordion, bodyAccordion, hide, paragraph, accordion } from "./Accordion.css.js";
|
|
16
16
|
const AccordionCtx = createContext({
|
|
17
17
|
isOpen: false,
|
|
18
18
|
onclick: () => {
|
|
@@ -10,7 +10,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
|
|
|
10
10
|
/* empty css */
|
|
11
11
|
import SvgLockIcon from "../icons/LockIcon/index.js";
|
|
12
12
|
import { SvgWarningIcon } from "../icons/WarningIcon/index.js";
|
|
13
|
-
import { alertBanner_img_section, alertBanner_body, alertBanner_cta
|
|
13
|
+
import { alertBanner, alertBanner_img_section, alertBanner_body, alertBanner_cta } from "./AlertBanner.css.js";
|
|
14
14
|
const AlertBanner = ({
|
|
15
15
|
alertType,
|
|
16
16
|
message,
|
package/dist/Article/Article.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
3
|
import { OptimizeImage } from "../utils/optimizeImage/OptimizeImage.js";
|
|
4
|
-
import { ant_img, ant_content, ant_eyebrow, ant_card_title, ant_card_body, ant_card_cta
|
|
4
|
+
import { ant_article, ant_img, ant_content, ant_eyebrow, ant_card_title, ant_card_body, ant_card_cta } from "./Article.css.js";
|
|
5
5
|
import { Button } from "../Button/Button.js";
|
|
6
6
|
import "../Button/Button.css.js";
|
|
7
7
|
import "react";
|
|
@@ -7,7 +7,7 @@ import { getVariant } from "../../utils/getVariant.js";
|
|
|
7
7
|
import { useRef, useState, useEffect } from "react";
|
|
8
8
|
import clsx from "clsx";
|
|
9
9
|
import { calculator } from "../calculator.css.js";
|
|
10
|
-
import { calc_container, calc_block, pb0_1023, slider_block_wrapper, w100, stat_row, balance_wrapper, fb50, stat, slider_wrapper, slider, pt0_1023, text_block
|
|
10
|
+
import { container, calc_container, calc_block, pb0_1023, slider_block_wrapper, w100, stat_row, balance_wrapper, fb50, stat, slider_wrapper, slider, pt0_1023, text_block } from "./AnnualFeeCalculator.css.js";
|
|
11
11
|
const AnnualFeeCalculator = ({
|
|
12
12
|
marketingTiles,
|
|
13
13
|
variant: fullVariant = "primary"
|
|
@@ -8,7 +8,7 @@ import { Chevron } from "../../Chevron/index.js";
|
|
|
8
8
|
import { section_container, content, headerIconBillboard, buttons } from "../../IconBillboard/IconBillboard.css.js";
|
|
9
9
|
import { useGlobalContext } from "../../Modal/contextApi/store.js";
|
|
10
10
|
import { getVariant } from "../../utils/getVariant.js";
|
|
11
|
-
import { apy_calculator, calculator_section, section_header, header_theme, mt_8, apy_calculator_form, pis_0, errorTag, fieldset, field_row, relative, label_symbol, cash, prefix_pad, percent, submit_section, span_12, form_disclosure, marketing, marketingTile, bodyContent
|
|
11
|
+
import { container, apy_calculator, calculator_section, section_header, header_theme, mt_8, apy_calculator_form, pis_0, errorTag, fieldset, field_row, relative, label_symbol, cash, prefix_pad, percent, submit_section, span_12, form_disclosure, marketing, marketingTile, bodyContent } from "./ApyCalculator.css.js";
|
|
12
12
|
const ApyCalculator = ({
|
|
13
13
|
header,
|
|
14
14
|
body,
|
|
@@ -22,7 +22,7 @@ import { z } from "zod";
|
|
|
22
22
|
import { getVariant } from "../../utils/getVariant.js";
|
|
23
23
|
import clsx from "clsx";
|
|
24
24
|
import { useForm, FormProvider } from "react-hook-form";
|
|
25
|
-
import { calculator_section, section_header, theme_header, mt_8, buydown_calculator_form, row_form, calculate_row, form_wrapper, form_disclosure
|
|
25
|
+
import { calc_container, calculator_section, section_header, theme_header, mt_8, buydown_calculator_form, row_form, calculate_row, form_wrapper, form_disclosure } from "./BuyDownCalculator.css.js";
|
|
26
26
|
const BuyDownCalculator = ({
|
|
27
27
|
header,
|
|
28
28
|
body,
|
|
@@ -4,7 +4,7 @@ import { Button } from "../../Button/Button.js";
|
|
|
4
4
|
import { button } from "../../Button/Button.css.js";
|
|
5
5
|
import { useEffect } from "react";
|
|
6
6
|
import "react-use";
|
|
7
|
-
import { field_row, errorTag, marketingTile, bodyContent, header_theme
|
|
7
|
+
import { container, field_row, errorTag, marketingTile, bodyContent, header_theme } from "../ApyCalculator/ApyCalculator.css.js";
|
|
8
8
|
import { Chevron } from "../../Chevron/index.js";
|
|
9
9
|
import { content, headerIconBillboard, buttons } from "../../IconBillboard/IconBillboard.css.js";
|
|
10
10
|
import { getVariant } from "../../utils/getVariant.js";
|
|
@@ -7,7 +7,7 @@ import { useState } from "react";
|
|
|
7
7
|
import clsx from "clsx";
|
|
8
8
|
import { calc_text, description_text, calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
9
9
|
import { calculator } from "../calculator.css.js";
|
|
10
|
-
import { calc_container, h2i, inputs_container, input_container, input_box, error_message, hide_select_arrow, calculation_header, payment_results
|
|
10
|
+
import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, hide_select_arrow, calculation_header, payment_results } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
11
11
|
const MarineLoanMonthlyPaymentCalculator = ({ variant, header, disclosure, bodyCopy = true }) => {
|
|
12
12
|
const fullVariant = getVariant(variant);
|
|
13
13
|
const [loanAmountDisplay, setLoanAmountDisplay] = useState("$75,000");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { button } from "../../Button/Button.css.js";
|
|
4
|
-
import { calc_container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results
|
|
4
|
+
import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results } from "../MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
5
5
|
import { title } from "../../IconBillboard/IconBillboard.css.js";
|
|
6
6
|
import { getVariant } from "../../utils/getVariant.js";
|
|
7
7
|
import { useState } from "react";
|
|
@@ -7,7 +7,7 @@ import { useState } from "react";
|
|
|
7
7
|
import clsx from "clsx";
|
|
8
8
|
import { calc_text, description_text, calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
9
9
|
import { calculator } from "../calculator.css.js";
|
|
10
|
-
import { calc_container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results
|
|
10
|
+
import { calc_container, container, h2i, inputs_container, input_container, input_box, error_message, calculation_header, payment_results } from "./MonthlyPaymentCalculator.css.js";
|
|
11
11
|
const MonthlyPaymentCalculator = ({
|
|
12
12
|
variant,
|
|
13
13
|
header,
|
|
@@ -4,7 +4,7 @@ import { button } from "../../Button/Button.css.js";
|
|
|
4
4
|
import { getVariant } from "../../utils/getVariant.js";
|
|
5
5
|
import { useState } from "react";
|
|
6
6
|
import { calc_disclosure } from "../BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
7
|
-
import { calc_content_area, calc_h2, calc_bodycopy, lvf_calc_wrapper, lvf_calc_header, calc_wrapper_inner, calc_input_wrap, rounded_cell, calc_input_styles, error_dialog, results_wrap, result_header, result_value, waves, parallax
|
|
7
|
+
import { bg_vars, calc_content_area, calc_h2, calc_bodycopy, lvf_calc_wrapper, lvf_calc_header, calc_wrapper_inner, calc_input_wrap, rounded_cell, calc_input_styles, error_dialog, results_wrap, result_header, result_value, waves, parallax } from "./MonthlyPaymentCalculator.css.js";
|
|
8
8
|
const MonthlyPaymentLVFCalculator = ({ variant, header, bodyCopy, disclosure }) => {
|
|
9
9
|
const theme = getVariant(variant);
|
|
10
10
|
const [loanAmountMasked, setLoanAmountMasked] = useState("50,000");
|
package/dist/Carousel/index.js
CHANGED
|
@@ -128,7 +128,7 @@ import "../StepItemSet/StepItemSet.css.js";
|
|
|
128
128
|
/* empty css */
|
|
129
129
|
/* empty css */
|
|
130
130
|
/* empty css */
|
|
131
|
-
import { icon,
|
|
131
|
+
import { icon, slide, authorLocation, author, quoteSetContainer, headerCarousel, descriptionCarousel, slides, carousel, dots, dot } from "./Carousel.css.js";
|
|
132
132
|
import { useCarousel } from "./store.js";
|
|
133
133
|
const iconVarints = /* @__PURE__ */ new Map([
|
|
134
134
|
[
|
|
@@ -7,7 +7,7 @@ import { getVariant } from "../utils/getVariant.js";
|
|
|
7
7
|
import { Button } from "../Button/Button.js";
|
|
8
8
|
import "../Button/Button.css.js";
|
|
9
9
|
import "react-use";
|
|
10
|
-
import { section_pad, section_min_pad, push_down_24, cb_eyebrow, body_copy, call_to_action_row, link
|
|
10
|
+
import { content_banner, section_pad, section_min_pad, push_down_24, cb_eyebrow, body_copy, call_to_action_row, link } from "./ContentBanner.css.js";
|
|
11
11
|
const ContentBanner = ({
|
|
12
12
|
variant,
|
|
13
13
|
icon,
|
|
@@ -4,7 +4,7 @@ import { getVariant } from "../utils/getVariant.js";
|
|
|
4
4
|
import { Chevron } from "../Chevron/index.js";
|
|
5
5
|
import { OptimizeImage } from "../utils/optimizeImage/OptimizeImage.js";
|
|
6
6
|
import { Overlay } from "./Overlay.js";
|
|
7
|
-
import { executive_bio, compact, padding, shift, media, headshot, img_area, description, person, headline_setting, job_title, copy, contacts, contact_col, svg_icon, contact_entry, url_row,
|
|
7
|
+
import { executive_bio, compact, padding, item_bio, shift, media, headshot, img_area, description, person, headline_setting, job_title, copy, contacts, contact_col, svg_icon, contact_entry, url_row, ceoSection, ceoContainer, ceoWrapper, ceoMedia, ceoImgWrapper, imgAlignment, highlights, bulletsHeadline, bulletsWrapper, ceoContent, ceoHeader, ceoPersonalInfo, ceo_name, ceo_title, ceo_contacts, social, hover, svg_color, tooltip, ceo_quote, ceo_body, order_3, overlay } from "./ExecutiveBio.css.js";
|
|
8
8
|
import "../Accordion/Accordion.js";
|
|
9
9
|
import "../Accordion/Accordion.css.js";
|
|
10
10
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
3
|
import { ExecutiveBio } from "./ExecutiveBio.js";
|
|
4
|
-
import { bio_section_text, header_theme, components, details
|
|
4
|
+
import { section_theme, bio_section_text, header_theme, components, details } from "./ExecutiveBio.css.js";
|
|
5
5
|
import "react";
|
|
6
6
|
import { columnValues } from "../utils/variant.types.js";
|
|
7
7
|
import { getNumOfColumns } from "../utils/getNumber.js";
|
|
@@ -130,7 +130,7 @@ import "../StepItemSet/StepItemSet.css.js";
|
|
|
130
130
|
/* empty css */
|
|
131
131
|
import { getLevelNumber } from "../utils/faqAccordionOptions.js";
|
|
132
132
|
import { create } from "zustand";
|
|
133
|
-
import {
|
|
133
|
+
import { summary, summaryHeader, content, header, faqAccordion, faqAccordion_section } from "./FaqAccordion.css.js";
|
|
134
134
|
const useAccordion = create()((set) => ({
|
|
135
135
|
itemsOpened: [],
|
|
136
136
|
addItem: (id) => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
|
-
import {
|
|
3
|
+
import { footerParagraph, iconsContent, footerDisclosure } from "./FooterDisclosure.css.js";
|
|
4
4
|
const FooterContent = (props) => {
|
|
5
5
|
return /* @__PURE__ */ jsx(
|
|
6
6
|
"div",
|
package/dist/Forms/EmailUs.js
CHANGED
|
@@ -24,7 +24,7 @@ import { getVariant } from "../utils/getVariant.js";
|
|
|
24
24
|
import { useCachedEmailValidator } from "../utils/useCachedValidators.js";
|
|
25
25
|
import clsx from "clsx";
|
|
26
26
|
import { useForm, FormProvider } from "react-hook-form";
|
|
27
|
-
import { iconForm, headerContainer, headerForm, form, descriptionField,
|
|
27
|
+
import { iconForm, headerContainer, headerForm, form, descriptionField, formWrapper, disclosureForm, actions, formContainer } from "./Forms.css.js";
|
|
28
28
|
import { honeyPotSchema, isValidHoneyPot, HoneyPot } from "./HoneyPot/index.js";
|
|
29
29
|
const EmailUs = ({
|
|
30
30
|
icon = false,
|
|
@@ -97,40 +97,46 @@ const EmailUs = ({
|
|
|
97
97
|
e.preventDefault();
|
|
98
98
|
},
|
|
99
99
|
children: [
|
|
100
|
-
/* @__PURE__ */ jsxs(
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
{
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
100
|
+
/* @__PURE__ */ jsxs(
|
|
101
|
+
"div",
|
|
102
|
+
{
|
|
103
|
+
className: clsx(formWrapper({ variant, formType: "emailUs" })),
|
|
104
|
+
children: [
|
|
105
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
106
|
+
Input,
|
|
107
|
+
{
|
|
108
|
+
id: "email",
|
|
109
|
+
...register("email", {
|
|
110
|
+
required: true,
|
|
111
|
+
validate: {
|
|
112
|
+
isValid: associatedEmail
|
|
113
|
+
}
|
|
114
|
+
}),
|
|
115
|
+
label: "Email",
|
|
116
|
+
sizes: "medium",
|
|
117
|
+
required: true,
|
|
118
|
+
error: !!errors.email,
|
|
119
|
+
helperText: errors.email?.message,
|
|
120
|
+
variant
|
|
121
|
+
}
|
|
122
|
+
) }),
|
|
123
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
124
|
+
InputTextArea,
|
|
125
|
+
{
|
|
126
|
+
id: "message",
|
|
127
|
+
...register("message", { required: true }),
|
|
128
|
+
label: "Write Your Message",
|
|
129
|
+
sizes: "medium",
|
|
130
|
+
required: true,
|
|
131
|
+
error: !!errors.message,
|
|
132
|
+
helperText: errors.message?.message,
|
|
133
|
+
variant
|
|
109
134
|
}
|
|
110
|
-
}),
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
helperText: errors.email?.message,
|
|
116
|
-
variant
|
|
117
|
-
}
|
|
118
|
-
) }),
|
|
119
|
-
/* @__PURE__ */ jsx("div", { className: fullRowForm, children: /* @__PURE__ */ jsx(
|
|
120
|
-
InputTextArea,
|
|
121
|
-
{
|
|
122
|
-
id: "message",
|
|
123
|
-
...register("message", { required: true }),
|
|
124
|
-
label: "Write Your Message",
|
|
125
|
-
sizes: "medium",
|
|
126
|
-
required: true,
|
|
127
|
-
error: !!errors.message,
|
|
128
|
-
helperText: errors.message?.message,
|
|
129
|
-
variant
|
|
130
|
-
}
|
|
131
|
-
) }),
|
|
132
|
-
/* @__PURE__ */ jsx(HoneyPot, { register, variant })
|
|
133
|
-
] }),
|
|
135
|
+
) }),
|
|
136
|
+
/* @__PURE__ */ jsx(HoneyPot, { register, variant })
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
),
|
|
134
140
|
children,
|
|
135
141
|
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
136
142
|
/* @__PURE__ */ jsx("div", { className: actions, children: isSubmitting ? /* @__PURE__ */ jsx(
|
|
@@ -76,6 +76,9 @@ export declare const formWrapper: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
76
76
|
gap: number;
|
|
77
77
|
gridTemplateColumns: "1fr auto !important";
|
|
78
78
|
};
|
|
79
|
+
emailUs: {
|
|
80
|
+
gridTemplateColumns: "1fr !important";
|
|
81
|
+
};
|
|
79
82
|
questionnaire: {
|
|
80
83
|
display: "flex";
|
|
81
84
|
flexDirection: "column";
|
package/dist/Forms/Forms.css.js
CHANGED
|
@@ -17,45 +17,45 @@ var headerContainer = "tfms6a8";
|
|
|
17
17
|
var axosHeader = "tfms6a9";
|
|
18
18
|
var headerF = createRuntimeFn({ defaultClassName: "tfms6aa", variantClassNames: { variant: { primary: "tfms6ab", secondary: "tfms6ac", tertiary: "tfms6ad", quaternary: "tfms6ae" } }, defaultVariants: {}, compoundVariants: [] });
|
|
19
19
|
var headerForm = createRuntimeFn({ defaultClassName: "tfms6af", variantClassNames: { variant: { primary: "tfms6ag", secondary: "tfms6ah", tertiary: "tfms6ai", quaternary: "tfms6aj" } }, defaultVariants: {}, compoundVariants: [] });
|
|
20
|
-
var formWrapper = createRuntimeFn({ defaultClassName: "tfms6ak", variantClassNames: { variant: { primary: "tfms6al", secondary: "tfms6am", tertiary: "tfms6an", quaternary: "tfms6ao" }, formType: { email: "tfms6ap",
|
|
21
|
-
var form_row = "
|
|
22
|
-
var actions = "
|
|
23
|
-
var disclosureForm = createRuntimeFn({ defaultClassName: "
|
|
24
|
-
var form = "
|
|
25
|
-
var apply_now_form = "
|
|
26
|
-
var success_wrap = createRuntimeFn({ defaultClassName: "
|
|
27
|
-
var success_icon = "
|
|
28
|
-
var succes_check_mark = "
|
|
29
|
-
var success_circle = createRuntimeFn({ defaultClassName: "
|
|
30
|
-
var descriptionField = createRuntimeFn({ defaultClassName: "
|
|
31
|
-
var fullRowForm = "
|
|
32
|
-
var one_row = "
|
|
33
|
-
var section_title = createRuntimeFn({ defaultClassName: "
|
|
34
|
-
var checkbox_group = "
|
|
35
|
-
var ro_input = "
|
|
36
|
-
var pl_label = "
|
|
37
|
-
var x_input = "
|
|
38
|
-
var xc_input = "
|
|
39
|
-
var fullRowSelect = "
|
|
40
|
-
var mt2rem = "
|
|
41
|
-
var centerSelect = "
|
|
42
|
-
var formBtns = "
|
|
43
|
-
var modalCheckboxContainer = "
|
|
44
|
-
var threeColRow = "
|
|
45
|
-
var mt1Rem = "
|
|
46
|
-
var mw24 = "
|
|
47
|
-
var modalMobile = "
|
|
48
|
-
var resposiveLabel = "
|
|
49
|
-
var dropdown = "
|
|
50
|
-
var dynPH = "
|
|
51
|
-
var na_cursor = "
|
|
52
|
-
var show_options = "
|
|
53
|
-
var hide_options = "
|
|
54
|
-
var back_btn_apply_now = "
|
|
55
|
-
var iconbillboards_option_apply_now = "
|
|
56
|
-
var form_nav_apply_now = "
|
|
57
|
-
var step_title_apply_now = "
|
|
58
|
-
var email_only_btn = "
|
|
20
|
+
var formWrapper = createRuntimeFn({ defaultClassName: "tfms6ak", variantClassNames: { variant: { primary: "tfms6al", secondary: "tfms6am", tertiary: "tfms6an", quaternary: "tfms6ao" }, formType: { email: "tfms6ap", emailUs: "tfms6aq", questionnaire: "tfms6ar", "default": "tfms6as" } }, defaultVariants: {}, compoundVariants: [] });
|
|
21
|
+
var form_row = "tfms6at";
|
|
22
|
+
var actions = "tfms6au";
|
|
23
|
+
var disclosureForm = createRuntimeFn({ defaultClassName: "tfms6av", variantClassNames: { variant: { primary: "tfms6aw", secondary: "tfms6ax", tertiary: "tfms6ay", quaternary: "tfms6az" } }, defaultVariants: {}, compoundVariants: [] });
|
|
24
|
+
var form = "tfms6a10";
|
|
25
|
+
var apply_now_form = "tfms6a11";
|
|
26
|
+
var success_wrap = createRuntimeFn({ defaultClassName: "tfms6a14", variantClassNames: { variant: { primary: "tfms6a15", secondary: "tfms6a16", tertiary: "tfms6a17", quaternary: "tfms6a18" } }, defaultVariants: {}, compoundVariants: [] });
|
|
27
|
+
var success_icon = "tfms6a19";
|
|
28
|
+
var succes_check_mark = "tfms6a1a";
|
|
29
|
+
var success_circle = createRuntimeFn({ defaultClassName: "tfms6a1b", variantClassNames: { variant: { primary: "tfms6a1c", secondary: "tfms6a1d", tertiary: "tfms6a1e", quaternary: "tfms6a1f" } }, defaultVariants: {}, compoundVariants: [] });
|
|
30
|
+
var descriptionField = createRuntimeFn({ defaultClassName: "tfms6a1g", variantClassNames: { variant: { primary: "tfms6a1h", secondary: "tfms6a1i", tertiary: "tfms6a1j", quaternary: "tfms6a1k" }, formType: { questionnaire: "tfms6a1l" } }, defaultVariants: {}, compoundVariants: [] });
|
|
31
|
+
var fullRowForm = "tfms6a1m";
|
|
32
|
+
var one_row = "tfms6a1n";
|
|
33
|
+
var section_title = createRuntimeFn({ defaultClassName: "tfms6a1o", variantClassNames: { variant: { primary: "tfms6a1p", secondary: "tfms6a1q", tertiary: "tfms6a1r", quaternary: "tfms6a1s" } }, defaultVariants: {}, compoundVariants: [] });
|
|
34
|
+
var checkbox_group = "tfms6a1t";
|
|
35
|
+
var ro_input = "tfms6a1u";
|
|
36
|
+
var pl_label = "tfms6a1v";
|
|
37
|
+
var x_input = "tfms6a1w";
|
|
38
|
+
var xc_input = "tfms6a1x";
|
|
39
|
+
var fullRowSelect = "tfms6a1y";
|
|
40
|
+
var mt2rem = "tfms6a1z";
|
|
41
|
+
var centerSelect = "tfms6a20";
|
|
42
|
+
var formBtns = "tfms6a21";
|
|
43
|
+
var modalCheckboxContainer = "tfms6a22";
|
|
44
|
+
var threeColRow = "tfms6a23";
|
|
45
|
+
var mt1Rem = "tfms6a24";
|
|
46
|
+
var mw24 = "tfms6a25";
|
|
47
|
+
var modalMobile = "tfms6a26";
|
|
48
|
+
var resposiveLabel = "tfms6a27";
|
|
49
|
+
var dropdown = "tfms6a28";
|
|
50
|
+
var dynPH = "tfms6a29";
|
|
51
|
+
var na_cursor = "tfms6a2a";
|
|
52
|
+
var show_options = "tfms6a2b";
|
|
53
|
+
var hide_options = "tfms6a2c";
|
|
54
|
+
var back_btn_apply_now = "tfms6a2d";
|
|
55
|
+
var iconbillboards_option_apply_now = "tfms6a2e";
|
|
56
|
+
var form_nav_apply_now = "tfms6a2f";
|
|
57
|
+
var step_title_apply_now = "tfms6a2g";
|
|
58
|
+
var email_only_btn = "tfms6a2h";
|
|
59
59
|
export {
|
|
60
60
|
actions,
|
|
61
61
|
apply_now_form,
|
|
@@ -47,7 +47,7 @@ import "../../Input/RadioButton.js";
|
|
|
47
47
|
import "../../Input/PercentageInput.js";
|
|
48
48
|
import { useForm, FormProvider } from "react-hook-form";
|
|
49
49
|
import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
50
|
-
import { iconForm, headerForm, form, descriptionField, headerContainer, fullRowSelect,
|
|
50
|
+
import { iconForm, headerForm, form, descriptionField, headerContainer, fullRowSelect, formWrapper, centerSelect, mt2rem, fullRowForm, disclosureForm, actions, formBtns, na_cursor, formContainer } from "../Forms.css.js";
|
|
51
51
|
import { honeyPotSchema, isValidHoneyPot, HoneyPot } from "../HoneyPot/index.js";
|
|
52
52
|
import { SalesforceSchema } from "../SalesforceFieldsForm.js";
|
|
53
53
|
import "../../Input/RadioButton.css.js";
|
|
@@ -16,8 +16,8 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
|
|
|
16
16
|
import { getVariant } from "../utils/getVariant.js";
|
|
17
17
|
import Image from "next/image.js";
|
|
18
18
|
import clsx from "clsx";
|
|
19
|
-
import { logout, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents,
|
|
20
|
-
import { lg_hero_content, lg_hero_eyebrow, lg_headline_text,
|
|
19
|
+
import { logout, hero_banner, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents, reversed_lg_image } from "./HeroBanner.css.js";
|
|
20
|
+
import { lg_hero_banner, lg_hero_content, lg_hero_text, lg_hero_eyebrow, lg_headline_text, lg_hero_img, lg_hero_sizing } from "./LargeBanner.css.js";
|
|
21
21
|
import { selection_section_icon_img, selection_section_icon, selection_section, selection_section_bg, selection_section_content, selection_headline_text } from "./SelectionBanner.css.js";
|
|
22
22
|
const HeroBanner = ({
|
|
23
23
|
id,
|
|
@@ -7,7 +7,7 @@ import { Button } from "../Button/Button.js";
|
|
|
7
7
|
import "../Button/Button.css.js";
|
|
8
8
|
import "react";
|
|
9
9
|
import "react-use";
|
|
10
|
-
import { section_text, header_section, section_body, section_container, billboard_icon, content, headerIconBillboard, title, list,
|
|
10
|
+
import { section_text, header_section, section_body, section_container, containerIconBillboard, layout, billboard_icon, content, headerIconBillboard, title, list, buttons } from "./IconBillboard.css.js";
|
|
11
11
|
const IconBillboardSet = ({
|
|
12
12
|
variant,
|
|
13
13
|
side = false,
|
|
@@ -15,7 +15,7 @@ import "../Button/Button.css.js";
|
|
|
15
15
|
import "react";
|
|
16
16
|
import "react-use";
|
|
17
17
|
import { inline_container } from "../SetContainer/SetContainer.css.js";
|
|
18
|
-
import { section_text_ImageBillboard, header, billboard_container, body, billboard_body, billboard_header_section, supertag, billboard_ctas
|
|
18
|
+
import { section_text_ImageBillboard, header, billboard, billboard_container, body, billboard_body, billboard_header_section, supertag, billboard_ctas } from "./ImageBillboard.css.js";
|
|
19
19
|
const ImageBillboardSet = ({
|
|
20
20
|
id,
|
|
21
21
|
variant,
|
package/dist/Input/Checkbox.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { checkboxContainer, checkbox } from "./Checkbox.css.js";
|
|
5
|
+
import { wrapper, container, labelClassName, input, helperText } from "./Input.css.js";
|
|
6
6
|
const Checkbox = forwardRef((props, ref) => {
|
|
7
7
|
const {
|
|
8
8
|
disabled,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import { forwardRef, useState, useEffect } from "react";
|
|
5
|
-
import {
|
|
5
|
+
import { wrapper, labelClassName, container, input, helperText } from "./Input.css.js";
|
|
6
6
|
import { dp_input } from "./Dropdown.css.js";
|
|
7
7
|
const DownPaymentInput = forwardRef(
|
|
8
8
|
({
|
package/dist/Input/Dropdown.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import clsx from "clsx";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
4
|
import { selectInput } from "./Dropdown.css.js";
|
|
5
|
-
import { labelClassName, iconContainer, iconInput, input,
|
|
5
|
+
import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
|
|
6
6
|
const Dropdown = forwardRef(
|
|
7
7
|
(props, ref) => {
|
|
8
8
|
const {
|
package/dist/Input/Input.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
|
-
import { labelClassName, iconContainer, iconInput, input,
|
|
4
|
+
import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
|
|
5
5
|
const Input = forwardRef((props, ref) => {
|
|
6
6
|
const {
|
|
7
7
|
disabled,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
|
-
import { labelClassName, iconContainer, iconInput, input,
|
|
4
|
+
import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
|
|
5
5
|
const InputTextArea = forwardRef((props, ref) => {
|
|
6
6
|
const {
|
|
7
7
|
disabled,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
3
|
import { Fragment } from "react";
|
|
4
4
|
import { getVariant } from "../../utils/getVariant.js";
|
|
@@ -100,7 +100,7 @@ import "next/script.js";
|
|
|
100
100
|
/* empty css */
|
|
101
101
|
/* empty css */
|
|
102
102
|
/* empty css */
|
|
103
|
-
import { featured_title, featured_maingrid_img, featured_maingrid_title,
|
|
103
|
+
import { featured_subgrid_item, featured_supertag, featured_subgrid_title, featured_center_vertical, featured_title, featured_maingrid_img, featured_maingrid_title, featured_maingrid_item, featured_maingrid, featured_hero, featured_subgrid_divider, featured_subgrid, featured_grid, featured_section } from "./Featured.css.js";
|
|
104
104
|
/* empty css */
|
|
105
105
|
import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
106
106
|
/* empty css */
|
|
@@ -16,7 +16,7 @@ import SvgComponent$5 from "../icons/Logos/AXOS.js";
|
|
|
16
16
|
import SvgComponent$6 from "../icons/Logos/GBLVF.js";
|
|
17
17
|
import SvgComponent$7 from "../icons/Logos/SPB.js";
|
|
18
18
|
import { getVariant } from "../utils/getVariant.js";
|
|
19
|
-
import { svg_fill, spb_container, lp_container, spb_hover, lp_hover
|
|
19
|
+
import { svg_fill, lp_theme, spb_container, lp_container, spb_hover, lp_hover } from "./LandingPageHeader.css.js";
|
|
20
20
|
const LandingPageHeader = ({
|
|
21
21
|
id,
|
|
22
22
|
variant: fullVariant = "primary",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
3
|
import { Modal } from "../Modal.js";
|
|
4
4
|
import { findMoreAxosDomains, isAllowedUrl } from "../../utils/allowedAxosDomains.js";
|
|
5
|
-
import { createContext, useState, useCallback
|
|
5
|
+
import { createContext, useContext, useState, useCallback } from "react";
|
|
6
6
|
import { validateLink, shortUrl } from "../../utils/validateExternalLinks.js";
|
|
7
7
|
const noopResolver = (url) => url;
|
|
8
8
|
const GlobalContext = createContext({
|
|
@@ -441,10 +441,8 @@ const getMenuData = (resolveUrl) => ({
|
|
|
441
441
|
"Make a Payment": "https://loanpayment.axosbank.com"
|
|
442
442
|
},
|
|
443
443
|
Business: {
|
|
444
|
-
"Business Banking Login": resolveUrl("{
|
|
445
|
-
"MWA Business Login": resolveUrl(
|
|
446
|
-
"{AXOSBANK}/business/mwa-business-banking"
|
|
447
|
-
),
|
|
444
|
+
"Business Banking Login": resolveUrl("{ONLINEBANKING}/auth/Login"),
|
|
445
|
+
"MWA Business Login": resolveUrl("{ONLINEBANKING}/auth/Login"),
|
|
448
446
|
"Commercial Portal": resolveUrl(
|
|
449
447
|
"{AXOSBANK}/commercial/lending/commercial-portal"
|
|
450
448
|
)
|
|
@@ -466,22 +466,14 @@ function NavBar({
|
|
|
466
466
|
"li",
|
|
467
467
|
{
|
|
468
468
|
className: `${styles.signin_subheader} ${signin_subheader}`,
|
|
469
|
-
children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{
|
|
469
|
+
children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{ONLINEBANKING}/auth/Login"), children: "Business Banking Login" })
|
|
470
470
|
}
|
|
471
471
|
),
|
|
472
472
|
/* @__PURE__ */ jsx(
|
|
473
473
|
"li",
|
|
474
474
|
{
|
|
475
475
|
className: `${styles.signin_subheader} ${signin_subheader}`,
|
|
476
|
-
children: /* @__PURE__ */ jsx(
|
|
477
|
-
"a",
|
|
478
|
-
{
|
|
479
|
-
href: resolveUrl(
|
|
480
|
-
"{AXOSBANK}/business/mwa-business-banking"
|
|
481
|
-
),
|
|
482
|
-
children: "MWA Business Banking"
|
|
483
|
-
}
|
|
484
|
-
)
|
|
476
|
+
children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{ONLINEBANKING}/auth/Login"), children: "MWA Business Banking" })
|
|
485
477
|
}
|
|
486
478
|
),
|
|
487
479
|
/* @__PURE__ */ jsx(
|
|
@@ -81,7 +81,7 @@ import "../Chatbot/authenticate.js";
|
|
|
81
81
|
import "../Chatbot/store/messages.js";
|
|
82
82
|
/* empty css */
|
|
83
83
|
import "../Comparison/Comparison.css.js";
|
|
84
|
-
import { setcontainer_section_text,
|
|
84
|
+
import { setcontainer_section_text, set_container_cols, inline_container, set_container, isolate_container } from "./SetContainer.css.js";
|
|
85
85
|
import "../Tab/Tab.css.js";
|
|
86
86
|
import "../icons/Star/Star.css.js";
|
|
87
87
|
import { heroSupertag } from "../HeroBanner/HeroBanner.css.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
|
-
import { li, point, step_num,
|
|
3
|
+
import { li, line_points, point, step_num, bullet_details, bs_topic, bs_copy } from "./StepItem.css.js";
|
|
4
4
|
const StepItem = ({
|
|
5
5
|
id,
|
|
6
6
|
counter,
|
|
@@ -16,7 +16,7 @@ import '../assets/VideoTile/VideoTile.css';import '../assets/themes/victorie.css
|
|
|
16
16
|
/* empty css */
|
|
17
17
|
/* empty css */
|
|
18
18
|
/* empty css */
|
|
19
|
-
import { bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, bs_video, steps_wrapper, ol, ul, bs_btns, bs_add_details
|
|
19
|
+
import { bs_section, bs_wrapper, svg_logo, modifier, sec_title, sec_subtitle, tablet_col, bs_image, bs_video, steps_wrapper, ol, ul, bs_btns, bs_add_details } from "./StepItemSet.css.js";
|
|
20
20
|
const StepItemSet = ({
|
|
21
21
|
id,
|
|
22
22
|
variant: fullVariant = "primary",
|
package/dist/Table/Table.js
CHANGED
|
@@ -11,7 +11,7 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
|
|
|
11
11
|
/* empty css */
|
|
12
12
|
import { getVariant } from "../utils/getVariant.js";
|
|
13
13
|
import { createElement } from "react";
|
|
14
|
-
import {
|
|
14
|
+
import { table_section, table_container_text, table_headline, table_description_text, table_container, table, highlight_first_row, highlight_last_row, alternate_color_rows, apy_table, tableWrapper, td, th } from "./Table.css.js";
|
|
15
15
|
const TableContainer = ({
|
|
16
16
|
tableTitle,
|
|
17
17
|
tableBody,
|
package/dist/Topic/Topic.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import clsx from "clsx";
|
|
3
|
-
import { topic_container,
|
|
3
|
+
import { topic_container, topic_header, topic_columns, topic_item } from "./Topic.css.js";
|
|
4
4
|
const Topic = ({ children }) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("div", { className: clsx(topic_container), children });
|
|
6
6
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes
|
|
1
|
+
@keyframes tfms6a12 {
|
|
2
2
|
from {
|
|
3
3
|
stroke-dashoffset: 1;
|
|
4
4
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
opacity: 100;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
@keyframes
|
|
9
|
+
@keyframes tfms6a13 {
|
|
10
10
|
0% {
|
|
11
11
|
stroke-dashoffset: -1000;
|
|
12
12
|
}
|
|
@@ -116,13 +116,16 @@
|
|
|
116
116
|
grid-template-columns: 1fr auto !important;
|
|
117
117
|
}
|
|
118
118
|
.tfms6aq {
|
|
119
|
+
grid-template-columns: 1fr !important;
|
|
120
|
+
}
|
|
121
|
+
.tfms6ar {
|
|
119
122
|
display: flex;
|
|
120
123
|
flex-direction: column;
|
|
121
124
|
}
|
|
122
|
-
.
|
|
125
|
+
.tfms6as {
|
|
123
126
|
grid-template-columns: 1fr 1fr;
|
|
124
127
|
}
|
|
125
|
-
.
|
|
128
|
+
.tfms6ar h4 {
|
|
126
129
|
font-size: 24px;
|
|
127
130
|
font-weight: 700;
|
|
128
131
|
letter-spacing: 3px;
|
|
@@ -131,88 +134,88 @@
|
|
|
131
134
|
font-family: var(--header-font-family);
|
|
132
135
|
line-height: 30px;
|
|
133
136
|
}
|
|
134
|
-
.
|
|
137
|
+
.tfms6ar h4:before {
|
|
135
138
|
content: "";
|
|
136
139
|
border-top: 2px solid #60AECB;
|
|
137
140
|
height: 40px;
|
|
138
141
|
position: relative;
|
|
139
142
|
width: 100%;
|
|
140
143
|
}
|
|
141
|
-
.
|
|
144
|
+
.tfms6ar h5 {
|
|
142
145
|
font-size: 14px;
|
|
143
146
|
font-weight: 500;
|
|
144
147
|
letter-spacing: 2px;
|
|
145
148
|
font-family: var(--header-font-family);
|
|
146
149
|
line-height: 16px;
|
|
147
150
|
}
|
|
148
|
-
.
|
|
151
|
+
.tfms6ar p {
|
|
149
152
|
font-size: 15px;
|
|
150
153
|
font-weight: 400;
|
|
151
154
|
margin-bottom: 10px;
|
|
152
155
|
font-family: var(--header-font-family);
|
|
153
156
|
line-height: 28px;
|
|
154
157
|
}
|
|
155
|
-
.
|
|
158
|
+
.tfms6ar label {
|
|
156
159
|
padding-left: 0;
|
|
157
160
|
margin-bottom: 10px;
|
|
158
161
|
}
|
|
159
|
-
.
|
|
162
|
+
.tfms6at {
|
|
160
163
|
display: flex;
|
|
161
164
|
flex-direction: row;
|
|
162
165
|
width: 100%;
|
|
163
166
|
gap: 15px;
|
|
164
167
|
}
|
|
165
|
-
.
|
|
168
|
+
.tfms6at > div {
|
|
166
169
|
flex-grow: 1;
|
|
167
170
|
}
|
|
168
|
-
.
|
|
171
|
+
.tfms6au {
|
|
169
172
|
margin-top: 1.5rem;
|
|
170
173
|
text-align: center;
|
|
171
174
|
margin-inline: auto;
|
|
172
175
|
}
|
|
173
|
-
.
|
|
176
|
+
.tfms6av {
|
|
174
177
|
margin-top: 16px;
|
|
175
178
|
}
|
|
176
|
-
.
|
|
179
|
+
.tfms6aw {
|
|
177
180
|
color: var(--_1073cm83);
|
|
178
181
|
}
|
|
179
|
-
.
|
|
182
|
+
.tfms6ax {
|
|
180
183
|
color: var(--_1073cm8a);
|
|
181
184
|
}
|
|
182
|
-
.
|
|
185
|
+
.tfms6ay {
|
|
183
186
|
color: var(--_1073cm8h);
|
|
184
187
|
}
|
|
185
|
-
.
|
|
188
|
+
.tfms6az {
|
|
186
189
|
color: var(--_1073cm8o);
|
|
187
190
|
}
|
|
188
|
-
.
|
|
191
|
+
.tfms6a10 {
|
|
189
192
|
max-width: 860px;
|
|
190
193
|
margin-inline: auto;
|
|
191
194
|
}
|
|
192
|
-
.
|
|
195
|
+
.tfms6a11 {
|
|
193
196
|
max-width: 900px;
|
|
194
197
|
margin-inline: auto;
|
|
195
198
|
}
|
|
196
|
-
.
|
|
199
|
+
.tfms6a14 {
|
|
197
200
|
padding: 2.5rem 0;
|
|
198
201
|
}
|
|
199
|
-
.
|
|
202
|
+
.tfms6a15 {
|
|
200
203
|
color: var(--_1073cm85);
|
|
201
204
|
background: var(--_1073cm81);
|
|
202
205
|
}
|
|
203
|
-
.
|
|
206
|
+
.tfms6a16 {
|
|
204
207
|
color: var(--_1073cm8c);
|
|
205
208
|
background: var(--_1073cm88);
|
|
206
209
|
}
|
|
207
|
-
.
|
|
210
|
+
.tfms6a17 {
|
|
208
211
|
color: var(--_1073cm8h);
|
|
209
212
|
background: var(--_1073cm8f);
|
|
210
213
|
}
|
|
211
|
-
.
|
|
214
|
+
.tfms6a18 {
|
|
212
215
|
color: var(--_1073cm8o);
|
|
213
216
|
background: var(--_1073cm8m);
|
|
214
217
|
}
|
|
215
|
-
.
|
|
218
|
+
.tfms6a14 h1 {
|
|
216
219
|
font-size: 43px;
|
|
217
220
|
font-weight: 700;
|
|
218
221
|
letter-spacing: 1px;
|
|
@@ -220,29 +223,29 @@
|
|
|
220
223
|
margin-bottom: 0.7rem;
|
|
221
224
|
font-family: var(--header-font-family);
|
|
222
225
|
}
|
|
223
|
-
.
|
|
226
|
+
.tfms6a14 p {
|
|
224
227
|
margin-bottom: 0;
|
|
225
228
|
}
|
|
226
|
-
.
|
|
229
|
+
.tfms6a19 {
|
|
227
230
|
margin: 0 auto;
|
|
228
231
|
display: block;
|
|
229
232
|
}
|
|
230
|
-
.
|
|
233
|
+
.tfms6a1a {
|
|
231
234
|
fill: none;
|
|
232
235
|
stroke: #faa74a;
|
|
233
236
|
stroke-width: 4;
|
|
234
237
|
stroke-dasharray: 100px;
|
|
235
238
|
stroke-dashoffset: 100;
|
|
236
|
-
animation:
|
|
239
|
+
animation: tfms6a12 0.5s ease-in-out forwards reverse;
|
|
237
240
|
-webkit-animation-delay: 0.7s;
|
|
238
241
|
}
|
|
239
|
-
.
|
|
242
|
+
.tfms6a1b {
|
|
240
243
|
fill: none;
|
|
241
244
|
stroke-width: 4;
|
|
242
245
|
stroke-dasharray: 1000px;
|
|
243
246
|
stroke-dashoffset: 1000;
|
|
244
|
-
-webkit-animation:
|
|
245
|
-
animation:
|
|
247
|
+
-webkit-animation: tfms6a13 0.8s ease-in-out forwards;
|
|
248
|
+
animation: tfms6a13 0.8s ease-in-out forwards;
|
|
246
249
|
-webkit-transform-origin: center;
|
|
247
250
|
-ms-transform-origin: center;
|
|
248
251
|
transform-origin: center;
|
|
@@ -250,143 +253,143 @@
|
|
|
250
253
|
-ms-transform: rotate(-40deg);
|
|
251
254
|
transform: rotate(-40deg);
|
|
252
255
|
}
|
|
253
|
-
.
|
|
256
|
+
.tfms6a1c {
|
|
254
257
|
stroke: var(--_1073cm85);
|
|
255
258
|
}
|
|
256
|
-
.
|
|
259
|
+
.tfms6a1d {
|
|
257
260
|
stroke: var(--_1073cm8c);
|
|
258
261
|
}
|
|
259
|
-
.
|
|
262
|
+
.tfms6a1e {
|
|
260
263
|
stroke: var(--_1073cm8h);
|
|
261
264
|
}
|
|
262
|
-
.
|
|
265
|
+
.tfms6a1f {
|
|
263
266
|
stroke: var(--_1073cm8o);
|
|
264
267
|
}
|
|
265
|
-
.
|
|
268
|
+
.tfms6a1g {
|
|
266
269
|
margin-top: 1rem;
|
|
267
270
|
}
|
|
268
|
-
.
|
|
271
|
+
.tfms6a1h {
|
|
269
272
|
color: var(--_1073cm83);
|
|
270
273
|
}
|
|
271
|
-
.
|
|
274
|
+
.tfms6a1i {
|
|
272
275
|
color: var(--_1073cm8a);
|
|
273
276
|
}
|
|
274
|
-
.
|
|
277
|
+
.tfms6a1j {
|
|
275
278
|
color: var(--_1073cm8h);
|
|
276
279
|
}
|
|
277
|
-
.
|
|
280
|
+
.tfms6a1k {
|
|
278
281
|
color: var(--_1073cm8o);
|
|
279
282
|
}
|
|
280
|
-
.
|
|
283
|
+
.tfms6a1l {
|
|
281
284
|
margin-top: 1rem;
|
|
282
285
|
}
|
|
283
|
-
.tfms6ak .
|
|
286
|
+
.tfms6ak .tfms6a1m {
|
|
284
287
|
grid-column-start: 1;
|
|
285
288
|
grid-column-end: 3;
|
|
286
289
|
}
|
|
287
|
-
.
|
|
290
|
+
.tfms6a1n {
|
|
288
291
|
grid-column: 1 / -1;
|
|
289
292
|
}
|
|
290
|
-
.
|
|
293
|
+
.tfms6a1o {
|
|
291
294
|
width: 100%;
|
|
292
295
|
padding-bottom: 4px;
|
|
293
296
|
}
|
|
294
|
-
.
|
|
297
|
+
.tfms6a1p {
|
|
295
298
|
border-bottom: 1px solid var(--_1073cm83);
|
|
296
299
|
}
|
|
297
|
-
.
|
|
300
|
+
.tfms6a1q {
|
|
298
301
|
border-bottom: 1px solid var(--_1073cm8a);
|
|
299
302
|
}
|
|
300
|
-
.
|
|
303
|
+
.tfms6a1r {
|
|
301
304
|
border-bottom: 1px solid var(--_1073cm8h);
|
|
302
305
|
}
|
|
303
|
-
.
|
|
306
|
+
.tfms6a1s {
|
|
304
307
|
border-bottom: 1px solid var(--_1073cm8o);
|
|
305
308
|
}
|
|
306
|
-
.
|
|
309
|
+
.tfms6a1p > h4, .tfms6a1q > h4 {
|
|
307
310
|
-webkit-background-clip: text;
|
|
308
311
|
background-image: var(--_1073cm85);
|
|
309
312
|
-webkit-text-fill-color: var(--_1073cm85);
|
|
310
313
|
}
|
|
311
|
-
.
|
|
314
|
+
.tfms6a1r > h4, .tfms6a1s > h4 {
|
|
312
315
|
-webkit-background-clip: text;
|
|
313
316
|
background-image: var(--_1073cm8j);
|
|
314
317
|
-webkit-text-fill-color: var(--_1073cm8j);
|
|
315
318
|
}
|
|
316
|
-
.
|
|
319
|
+
.tfms6a1t {
|
|
317
320
|
display: flex;
|
|
318
321
|
}
|
|
319
|
-
.
|
|
322
|
+
.tfms6a1u {
|
|
320
323
|
cursor: pointer;
|
|
321
324
|
caret-color: transparent;
|
|
322
325
|
}
|
|
323
|
-
.
|
|
326
|
+
.tfms6a1v {
|
|
324
327
|
padding-left: 16px;
|
|
325
328
|
}
|
|
326
|
-
.
|
|
329
|
+
.tfms6a1x label {
|
|
327
330
|
white-space: nowrap;
|
|
328
331
|
}
|
|
329
|
-
.
|
|
332
|
+
.tfms6a1z {
|
|
330
333
|
margin-top: 2rem;
|
|
331
334
|
}
|
|
332
|
-
.
|
|
335
|
+
.tfms6a20 {
|
|
333
336
|
display: flex;
|
|
334
337
|
justify-content: center;
|
|
335
338
|
}
|
|
336
|
-
.
|
|
339
|
+
.tfms6a20 > div {
|
|
337
340
|
width: 100%;
|
|
338
341
|
}
|
|
339
|
-
.
|
|
342
|
+
.tfms6a21 {
|
|
340
343
|
display: flex;
|
|
341
344
|
justify-content: center;
|
|
342
345
|
align-items: center;
|
|
343
346
|
gap: 2rem;
|
|
344
347
|
}
|
|
345
|
-
.
|
|
348
|
+
.tfms6a22 {
|
|
346
349
|
display: flex;
|
|
347
350
|
margin: 1rem 0;
|
|
348
351
|
text-align: left;
|
|
349
352
|
gap: 1rem;
|
|
350
353
|
}
|
|
351
|
-
.
|
|
354
|
+
.tfms6a23 {
|
|
352
355
|
display: flex;
|
|
353
356
|
justify-content: space-between;
|
|
354
357
|
}
|
|
355
|
-
.
|
|
358
|
+
.tfms6a23 > div {
|
|
356
359
|
min-width: 32%;
|
|
357
360
|
}
|
|
358
|
-
.
|
|
361
|
+
.tfms6a24 {
|
|
359
362
|
margin-top: 1rem;
|
|
360
363
|
}
|
|
361
|
-
.
|
|
364
|
+
.tfms6a25 {
|
|
362
365
|
min-width: 24px;
|
|
363
366
|
}
|
|
364
|
-
.
|
|
367
|
+
.tfms6a26 {
|
|
365
368
|
width: min(calc(100% - 2rem));
|
|
366
369
|
height: min(calc(100% - 2rem));
|
|
367
370
|
overflow: scroll!important;
|
|
368
371
|
}
|
|
369
|
-
.
|
|
372
|
+
.tfms6a27 {
|
|
370
373
|
display: none;
|
|
371
374
|
}
|
|
372
|
-
.
|
|
375
|
+
.tfms6a29::placeholder {
|
|
373
376
|
color: transparent;
|
|
374
377
|
}
|
|
375
|
-
.
|
|
378
|
+
.tfms6a2a {
|
|
376
379
|
cursor: not-allowed;
|
|
377
380
|
}
|
|
378
|
-
.
|
|
381
|
+
.tfms6a2b {
|
|
379
382
|
display: flex;
|
|
380
383
|
}
|
|
381
|
-
.
|
|
384
|
+
.tfms6a2c {
|
|
382
385
|
visibility: hidden;
|
|
383
386
|
display: none;
|
|
384
387
|
}
|
|
385
|
-
.
|
|
388
|
+
.tfms6a2e {
|
|
386
389
|
display: flex;
|
|
387
390
|
gap: 24px;
|
|
388
391
|
}
|
|
389
|
-
.
|
|
392
|
+
.tfms6a2f {
|
|
390
393
|
vertical-align: vertical;
|
|
391
394
|
width: 100%;
|
|
392
395
|
display: flex;
|
|
@@ -395,12 +398,12 @@
|
|
|
395
398
|
align-items: center;
|
|
396
399
|
flex-direction: column-reverse;
|
|
397
400
|
}
|
|
398
|
-
.
|
|
401
|
+
.tfms6a2g {
|
|
399
402
|
text-transform: capitalize;
|
|
400
403
|
margin: auto ;
|
|
401
404
|
max-width: fit-content;
|
|
402
405
|
}
|
|
403
|
-
.
|
|
406
|
+
.tfms6a2h {
|
|
404
407
|
padding: 16px 64px;
|
|
405
408
|
border-radius: 0 8px 8px 0;
|
|
406
409
|
}
|
|
@@ -408,7 +411,7 @@
|
|
|
408
411
|
.tfms6a0 {
|
|
409
412
|
font-size: 28px;
|
|
410
413
|
}
|
|
411
|
-
.
|
|
414
|
+
.tfms6a2h {
|
|
412
415
|
padding: 16px;
|
|
413
416
|
}
|
|
414
417
|
}
|
|
@@ -433,80 +436,80 @@
|
|
|
433
436
|
.tfms6ak {
|
|
434
437
|
grid-template-columns: 1fr;
|
|
435
438
|
}
|
|
436
|
-
.
|
|
439
|
+
.tfms6at {
|
|
437
440
|
flex-direction: column;
|
|
438
441
|
}
|
|
439
|
-
.tfms6ak .
|
|
442
|
+
.tfms6ak .tfms6a1m {
|
|
440
443
|
grid-column-start: 1;
|
|
441
444
|
grid-column-end: 2;
|
|
442
445
|
}
|
|
443
446
|
}
|
|
444
447
|
@media screen and (max-width: 992px) {
|
|
445
|
-
.
|
|
448
|
+
.tfms6a14 h1 {
|
|
446
449
|
font-size: 37px;
|
|
447
450
|
line-height: 1.29;
|
|
448
451
|
margin-bottom: 0.4rem;
|
|
449
452
|
}
|
|
450
453
|
}
|
|
451
454
|
@media screen and (maxwidth: 767px) {
|
|
452
|
-
.
|
|
455
|
+
.tfms6a14 h1 {
|
|
453
456
|
font-size: 32px;
|
|
454
457
|
font-weight: 700;
|
|
455
458
|
margin-top: 0;
|
|
456
459
|
margin-bottom: 0.4rem;
|
|
457
460
|
}
|
|
458
|
-
.
|
|
461
|
+
.tfms6a19 {
|
|
459
462
|
max-width: 69px;
|
|
460
463
|
}
|
|
461
464
|
}
|
|
462
465
|
@media screen and (max-width: 780px) {
|
|
463
|
-
.
|
|
466
|
+
.tfms6a1t {
|
|
464
467
|
flex-direction: column;
|
|
465
468
|
}
|
|
466
469
|
}
|
|
467
470
|
@media screen and (max-width: 1103px) {
|
|
468
|
-
.
|
|
471
|
+
.tfms6a1t ._18du0lag {
|
|
469
472
|
padding: 6px;
|
|
470
473
|
}
|
|
471
474
|
}
|
|
472
475
|
@media screen and (max-width: 571px) and (min-width: 481px) {
|
|
473
|
-
.
|
|
476
|
+
.tfms6a1w label {
|
|
474
477
|
height: 48px;
|
|
475
478
|
display: flex;
|
|
476
479
|
align-items: flex-end;
|
|
477
480
|
}
|
|
478
481
|
}
|
|
479
482
|
@media screen and (min-width: 481px) {
|
|
480
|
-
.
|
|
483
|
+
.tfms6a1y select {
|
|
481
484
|
background: url(https://images.axos.com/o9ov1v03uwqk/4ayjjdIkEzQsfmhKbPeNaE/636b57923fbdac891d48f78ca06ffeb6/image_1_-_2024-06-27T142052.191.png) no-repeat 98%;
|
|
482
485
|
}
|
|
483
486
|
}
|
|
484
487
|
@media screen and (min-width: 769px) {
|
|
485
|
-
.
|
|
488
|
+
.tfms6a20 > div {
|
|
486
489
|
grid-template: none;
|
|
487
490
|
width: 50%;
|
|
488
491
|
}
|
|
489
492
|
}
|
|
490
493
|
@media screen and (max-width: 500px) {
|
|
491
|
-
.
|
|
494
|
+
.tfms6a21 {
|
|
492
495
|
flex-direction: column;
|
|
493
496
|
}
|
|
494
497
|
}
|
|
495
498
|
@media screen and (max-width: 800px) {
|
|
496
|
-
.
|
|
499
|
+
.tfms6a23 {
|
|
497
500
|
flex-direction: column;
|
|
498
501
|
}
|
|
499
|
-
.
|
|
502
|
+
.tfms6a28 select {
|
|
500
503
|
white-space: normal;
|
|
501
504
|
padding-right: 4rem;
|
|
502
505
|
}
|
|
503
|
-
.
|
|
506
|
+
.tfms6a29::placeholder {
|
|
504
507
|
color: #5E6A74;
|
|
505
508
|
}
|
|
506
|
-
.
|
|
509
|
+
.tfms6a2e {
|
|
507
510
|
flex-direction: column;
|
|
508
511
|
}
|
|
509
|
-
.
|
|
512
|
+
.tfms6a2f {
|
|
510
513
|
flex-direction: column-reverse;
|
|
511
514
|
}
|
|
512
515
|
}
|
|
@@ -514,7 +517,7 @@
|
|
|
514
517
|
.rate-watch-form hr {
|
|
515
518
|
display: none;
|
|
516
519
|
}
|
|
517
|
-
.
|
|
520
|
+
.tfms6a27 {
|
|
518
521
|
display: block;
|
|
519
522
|
}
|
|
520
523
|
}
|
package/package.json
CHANGED