@axos-web-dev/shared-components 0.0.195 → 0.0.197
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/Button/Button.d.ts +1 -1
- package/dist/Button/Button.js +6 -4
- package/dist/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.d.ts +16 -1
- package/dist/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js +14 -14
- package/dist/Calculators/MonthlyPaymentLVFCalculator/index.js +40 -74
- package/dist/CallToActionBar/index.js +1 -1
- package/dist/Chevron/Chevron.css.d.ts +1 -0
- package/dist/Chevron/Chevron.css.js +3 -1
- package/dist/Chevron/Chevron.interface.d.ts +8 -0
- package/dist/Chevron/index.js +20 -8
- package/dist/FaqAccordion/index.js +2 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -1
- package/dist/Forms/ApplyNow.d.ts +4 -0
- package/dist/Forms/ApplyNow.js +599 -0
- package/dist/Forms/ContactUsBusiness.js +3 -3
- package/dist/Forms/ContactUsNMLSId.js +3 -3
- package/dist/Forms/EmailOnly.js +3 -3
- package/dist/Forms/Forms.css.d.ts +5 -0
- package/dist/Forms/Forms.css.js +10 -0
- package/dist/Forms/index.d.ts +1 -0
- package/dist/Forms/index.js +9 -1
- package/dist/Hyperlink/index.js +1 -1
- package/dist/IconBillboard/IconBillboard.d.ts +2 -1
- package/dist/IconBillboard/IconBillboard.js +22 -4
- package/dist/IconBillboard/index.js +2 -1
- package/dist/ImageBillboard/ImageBillboardSet.js +1 -1
- package/dist/ImageLink/index.js +1 -1
- package/dist/Modal/Modal.js +3 -3
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/NavData.js +1 -6
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
- package/dist/NavigationMenu/AxosBank/index.js +4 -4
- package/dist/NavigationMenu/LaVictoire/NavBar.module.js +37 -37
- package/dist/NavigationMenu/LaVictoire/NavData.js +1 -1
- package/dist/NavigationMenu/LaVictoire/index.js +3 -3
- package/dist/SocialMediaBar/iconsRepository.js +1 -1
- package/dist/VideoWrapper/index.js +1 -1
- package/dist/assets/Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css +63 -34
- package/dist/assets/Chevron/Chevron.css +6 -0
- package/dist/assets/Comparison/Comparison.css +1 -1
- package/dist/assets/Forms/Forms.css +26 -0
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +658 -658
- package/dist/assets/NavigationMenu/LaVictoire/NavBar.css.css +429 -429
- package/dist/assets/globals.css +1 -0
- package/dist/icons/ArrowIcon/index.d.ts +2 -2
- package/dist/icons/ArrowIcon/index.js +6 -1
- package/dist/main.js +11 -2
- package/dist/utils/allowedAxosDomains.js +2 -1
- package/package.json +2 -2
package/dist/assets/globals.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CallToActionTypes } from '../../utils/variant.types';
|
|
2
|
-
import { FC } from 'react';
|
|
2
|
+
import { FC, SVGProps } from 'react';
|
|
3
3
|
|
|
4
4
|
export interface ArrowProps {
|
|
5
5
|
variant: CallToActionTypes;
|
|
6
6
|
className?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const SvgArrowIcon: FC<ArrowProps
|
|
8
|
+
declare const SvgArrowIcon: FC<ArrowProps & SVGProps<SVGSVGElement>>;
|
|
9
9
|
export default SvgArrowIcon;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Arrow } from "./ArrowIcon.css.js";
|
|
3
|
-
const SvgArrowIcon = ({
|
|
3
|
+
const SvgArrowIcon = ({
|
|
4
|
+
className,
|
|
5
|
+
variant,
|
|
6
|
+
style
|
|
7
|
+
}) => {
|
|
4
8
|
return /* @__PURE__ */ jsxs(
|
|
5
9
|
"svg",
|
|
6
10
|
{
|
|
@@ -10,6 +14,7 @@ const SvgArrowIcon = ({ className, variant }) => {
|
|
|
10
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11
15
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
12
16
|
className: className && className,
|
|
17
|
+
style,
|
|
13
18
|
children: [
|
|
14
19
|
/* @__PURE__ */ jsx("title", { children: "icon / arrow" }),
|
|
15
20
|
/* @__PURE__ */ jsx("desc", { children: "Created with Sketch." }),
|
package/dist/main.js
CHANGED
|
@@ -45,6 +45,7 @@ import { FooterContent, FooterDisclosure, FooterIcons, FooterParagraph } from ".
|
|
|
45
45
|
import { AxosFooterSiteMap } from "./FooterSiteMap/AxosBank/FooterSiteMap.js";
|
|
46
46
|
import { app_col, footer_mobile, footer_section, footer_wrapper, ft_col, ft_col_header, ft_col_subheader, ft_panel, ft_panel_group, nested_grid } from "./FooterSiteMap/AxosBank/FooterSiteMap.css.js";
|
|
47
47
|
import { ApplicationStart } from "./Forms/ApplicationStart.js";
|
|
48
|
+
import { ApplyNow, getLink } from "./Forms/ApplyNow.js";
|
|
48
49
|
import { ClearingForm } from "./Forms/ClearingForm.js";
|
|
49
50
|
import { CommercialDeposits } from "./Forms/CommercialDeposits.js";
|
|
50
51
|
import { CommercialLending } from "./Forms/CommercialLending.js";
|
|
@@ -58,7 +59,7 @@ import { CpraRequest } from "./Forms/CpraRequest.js";
|
|
|
58
59
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
59
60
|
import { EmailOnly } from "./Forms/EmailOnly.js";
|
|
60
61
|
import { EmailUs } from "./Forms/EmailUs.js";
|
|
61
|
-
import { actions, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, form, formBtns, formContainer, formWrapper, fullRowForm, fullRowSelect, headerContainer, headerForm, iconForm, modalCheckboxContainer, modalMobile, mt1Rem, mt2rem, mw24, na_cursor, one_row, pl_label, resposiveLabel, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
62
|
+
import { actions, back_btn_apply_now, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, form, formBtns, formContainer, formWrapper, form_nav_apply_now, fullRowForm, fullRowSelect, headerContainer, headerForm, hide_options, iconForm, iconbillboards_option_apply_now, modalCheckboxContainer, modalMobile, mt1Rem, mt2rem, mw24, na_cursor, one_row, pl_label, resposiveLabel, ro_input, section_title, show_options, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
62
63
|
import { MortgageRate } from "./Forms/MortgageRate/MortgageRateForm.js";
|
|
63
64
|
import "react/jsx-runtime";
|
|
64
65
|
import { RateWatchForm } from "./Forms/MortgageRate/MortgageRateWatch.js";
|
|
@@ -78,7 +79,7 @@ import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
|
78
79
|
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_embedded_image, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
|
|
79
80
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
80
81
|
import { Hyperlink } from "./Hyperlink/index.js";
|
|
81
|
-
import { IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
82
|
+
import { Icon, IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
82
83
|
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard/IconBillboard.css.js";
|
|
83
84
|
import { IconBillboardSet } from "./IconBillboard/IconBillboardSet.js";
|
|
84
85
|
import { default as default2 } from "./icons/ArrowIcon/index.js";
|
|
@@ -193,6 +194,7 @@ export {
|
|
|
193
194
|
AlertBanner,
|
|
194
195
|
AnnualFeeCalculator,
|
|
195
196
|
ApplicationStart,
|
|
197
|
+
ApplyNow,
|
|
196
198
|
ApyCalculator,
|
|
197
199
|
default2 as ArrowIcon,
|
|
198
200
|
Article,
|
|
@@ -261,6 +263,7 @@ export {
|
|
|
261
263
|
GoBackButton,
|
|
262
264
|
HeroBanner,
|
|
263
265
|
Hyperlink,
|
|
266
|
+
Icon,
|
|
264
267
|
IconBillboard,
|
|
265
268
|
IconBillboardSet,
|
|
266
269
|
ImageBillboard,
|
|
@@ -355,6 +358,7 @@ export {
|
|
|
355
358
|
awards_row,
|
|
356
359
|
awards_section,
|
|
357
360
|
axosTheme,
|
|
361
|
+
back_btn_apply_now,
|
|
358
362
|
billboard,
|
|
359
363
|
billboard_body,
|
|
360
364
|
billboard_container,
|
|
@@ -436,6 +440,7 @@ export {
|
|
|
436
440
|
formBtns,
|
|
437
441
|
formContainer,
|
|
438
442
|
formWrapper,
|
|
443
|
+
form_nav_apply_now,
|
|
439
444
|
ft_col,
|
|
440
445
|
ft_col_header,
|
|
441
446
|
ft_col_subheader,
|
|
@@ -443,6 +448,7 @@ export {
|
|
|
443
448
|
ft_panel_group,
|
|
444
449
|
fullRowForm,
|
|
445
450
|
fullRowSelect,
|
|
451
|
+
getLink,
|
|
446
452
|
getVariant,
|
|
447
453
|
getVariantWithRegex,
|
|
448
454
|
header,
|
|
@@ -470,6 +476,7 @@ export {
|
|
|
470
476
|
hero_text,
|
|
471
477
|
hero_wrapper,
|
|
472
478
|
hide,
|
|
479
|
+
hide_options,
|
|
473
480
|
hide_transcript,
|
|
474
481
|
highlight_cell,
|
|
475
482
|
highlight_first_row,
|
|
@@ -480,6 +487,7 @@ export {
|
|
|
480
487
|
iconContainerBase,
|
|
481
488
|
iconForm,
|
|
482
489
|
iconInput,
|
|
490
|
+
iconbillboards_option_apply_now,
|
|
483
491
|
iconsContent,
|
|
484
492
|
imageLinkContainer,
|
|
485
493
|
imagePlacement,
|
|
@@ -574,6 +582,7 @@ export {
|
|
|
574
582
|
shift,
|
|
575
583
|
shortUrl,
|
|
576
584
|
show,
|
|
585
|
+
show_options,
|
|
577
586
|
single_container,
|
|
578
587
|
smb_section,
|
|
579
588
|
smb_wrapper,
|
|
@@ -36,7 +36,8 @@ const moreDomains = {
|
|
|
36
36
|
"{AXTPL}": process.env.AXOS_THIRD_PARTY_LENDING ?? "https://thirdpartylending.axosbank.com",
|
|
37
37
|
"{AXBHUBSVIDYARD}": process.env.AXBHUBSVIDYARD_URL || "https://www.axosbank.hubs.vidyard.com",
|
|
38
38
|
"{AUTOAX}": process.env.AUTO_AXOSBANK_URL || "https://auto.axosbank.com",
|
|
39
|
-
"{AFAST}": process.env.SECURE_FAST_URL || "https://secure.approvedfast.com"
|
|
39
|
+
"{AFAST}": process.env.SECURE_FAST_URL || "https://secure.approvedfast.com",
|
|
40
|
+
"{LVFMYSITE}": process.env.LVF_MYSITE_URL || "https://lavictoire-finance.my.site.com"
|
|
40
41
|
};
|
|
41
42
|
const isAllowedUrl = (url) => {
|
|
42
43
|
const uri = new URL(url, location.href);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axos-web-dev/shared-components",
|
|
3
3
|
"description": "Axos shared components library for web.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.197",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"moment": "^2.30.1",
|
|
45
45
|
"react-date-picker": "^11.0.0",
|
|
46
46
|
"react-date-range": "^2.0.1",
|
|
47
|
-
"react-hook-form": "^7.54.
|
|
47
|
+
"react-hook-form": "^7.54.2",
|
|
48
48
|
"react-markdown": "^9.0.1",
|
|
49
49
|
"react-popper": "^2.3.0",
|
|
50
50
|
"react-slick": "^0.30.2",
|