@axos-web-dev/shared-components 1.0.99-feature-urlUpdates.1 → 1.0.99-feature-newQPvalues
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/README.md +111 -111
- package/dist/Avatar/Avatar.module.js +7 -7
- package/dist/Blockquote/Blockquote.module.js +3 -3
- package/dist/Calculators/BuyDownCalculator/index.js +1 -1
- package/dist/FdicCallout/FdicCallout.module.js +2 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -18
- package/dist/Forms/FormEnums.js +4 -1
- package/dist/HeroBanner/HeroBanner.js +1 -1
- package/dist/Interstitial/Interstitial.module.js +10 -10
- package/dist/NavigationMenu/AxosALTS/NavBar.module.js +23 -23
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.module.js +16 -16
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
- package/dist/NavigationMenu/LaVictoire/NavBar.module.js +37 -37
- package/dist/Table/Table.d.ts +1 -1
- package/dist/WalnutIframe/wrapper.module.js +3 -3
- package/dist/assets/Avatar/Avatar.css.css +59 -59
- package/dist/assets/Blockquote/Blockquote.css.css +68 -68
- package/dist/assets/FdicCallout/FdicCallout.css.css +48 -48
- package/dist/assets/Interstitial/Interstitial.css.css +142 -142
- package/dist/assets/NavigationMenu/AxosALTS/NavBar.css.css +264 -264
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +597 -597
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +618 -618
- package/dist/assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css +191 -191
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +473 -473
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +458 -458
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +426 -426
- package/dist/assets/NavigationMenu/LaVictoire/NavBar.css.css +429 -429
- package/dist/assets/WalnutIframe/wrapper.css.css +49 -49
- package/dist/assets/utils/optimizeImage/optimizeImage.css.css +47 -47
- package/dist/utils/optimizeImage/optimizeImage.module.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
# Installation
|
|
2
|
-
|
|
3
|
-
Using npm:
|
|
4
|
-
|
|
5
|
-
```shell
|
|
6
|
-
$ npm install @axos-web-dev/shared-components
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
To import components
|
|
10
|
-
In Node.js:
|
|
11
|
-
|
|
12
|
-
```js
|
|
13
|
-
// Import Components
|
|
14
|
-
import {
|
|
15
|
-
AlertBanner,
|
|
16
|
-
CallToActionBar,
|
|
17
|
-
DownloadTile,
|
|
18
|
-
ImageBillboard,
|
|
19
|
-
SecondaryFooter,
|
|
20
|
-
} from "@axos-web-dev/shared-components";
|
|
21
|
-
|
|
22
|
-
// Import Types/Interfaces
|
|
23
|
-
|
|
24
|
-
import { AlertBannerInterface } from "@axos-web-dev/shared-components/dist/AlertBanner/AlertBanner.interface";
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
In css files:
|
|
28
|
-
|
|
29
|
-
```css
|
|
30
|
-
/*** Import styles ***/
|
|
31
|
-
|
|
32
|
-
@import "@axos-web-dev/shared-components/dist/assets/AlertBanner/AlertBanner.css";
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
# Shared components
|
|
36
|
-
|
|
37
|
-
This project is develop using `React + TypeScript + Vite + Storybook + Vanilla-extract` to building custom components for internal use.
|
|
38
|
-
|
|
39
|
-
## How to add new component
|
|
40
|
-
|
|
41
|
-
For add a new component use the `src/lib` folder and create a folder for the component. After that you should register an export in `src/lib/main.ts` file.
|
|
42
|
-
|
|
43
|
-
Also you need create a storie for the new component. Go to `src/stories` and create a new file or folder.
|
|
44
|
-
|
|
45
|
-
```shell
|
|
46
|
-
git clone bofaz@vs-ssh.visualstudio.com:v3/bofaz/Axos%20Marketing%20Cloud/Shared%20Components shared-components
|
|
47
|
-
|
|
48
|
-
cd shared-components
|
|
49
|
-
|
|
50
|
-
npm install
|
|
51
|
-
|
|
52
|
-
# for using storybook
|
|
53
|
-
npm run storybook
|
|
54
|
-
|
|
55
|
-
# for build
|
|
56
|
-
npm run build
|
|
57
|
-
|
|
58
|
-
# for testing in other projects
|
|
59
|
-
npm run build
|
|
60
|
-
|
|
61
|
-
npm link
|
|
62
|
-
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
For publishing we need to udpate the version we are using [semantic versioning](https://semver.org/)
|
|
66
|
-
|
|
67
|
-
```
|
|
68
|
-
Given a version number MAJOR.MINOR.PATCH, increment the:
|
|
69
|
-
|
|
70
|
-
MAJOR version when you make incompatible API changes
|
|
71
|
-
MINOR version when you add functionality in a backward compatible manner
|
|
72
|
-
PATCH version when you make backward compatible bug fixes
|
|
73
|
-
|
|
74
|
-
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
we can update the version with the following commands:
|
|
78
|
-
|
|
79
|
-
```shell
|
|
80
|
-
# bumps the patch number like 0.0.0 -> 0.0.1
|
|
81
|
-
npm version patch
|
|
82
|
-
|
|
83
|
-
# bumps the patch number like 0.0.0 -> 0.1.0
|
|
84
|
-
npm version minor
|
|
85
|
-
|
|
86
|
-
# bumps the patch number like 0.0.0 -> 1.0.0
|
|
87
|
-
npm version major
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
## How to publish new library version to npm
|
|
94
|
-
|
|
95
|
-
First update the version as previously described
|
|
96
|
-
|
|
97
|
-
```shell
|
|
98
|
-
npm version [...]
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
Then you will need to login into npm to do that write:
|
|
102
|
-
|
|
103
|
-
```shell
|
|
104
|
-
npm login --scope=@my-org
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
Last you to publish the new version:
|
|
108
|
-
|
|
109
|
-
```shell
|
|
110
|
-
npm publish
|
|
111
|
-
```
|
|
1
|
+
# Installation
|
|
2
|
+
|
|
3
|
+
Using npm:
|
|
4
|
+
|
|
5
|
+
```shell
|
|
6
|
+
$ npm install @axos-web-dev/shared-components
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
To import components
|
|
10
|
+
In Node.js:
|
|
11
|
+
|
|
12
|
+
```js
|
|
13
|
+
// Import Components
|
|
14
|
+
import {
|
|
15
|
+
AlertBanner,
|
|
16
|
+
CallToActionBar,
|
|
17
|
+
DownloadTile,
|
|
18
|
+
ImageBillboard,
|
|
19
|
+
SecondaryFooter,
|
|
20
|
+
} from "@axos-web-dev/shared-components";
|
|
21
|
+
|
|
22
|
+
// Import Types/Interfaces
|
|
23
|
+
|
|
24
|
+
import { AlertBannerInterface } from "@axos-web-dev/shared-components/dist/AlertBanner/AlertBanner.interface";
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
In css files:
|
|
28
|
+
|
|
29
|
+
```css
|
|
30
|
+
/*** Import styles ***/
|
|
31
|
+
|
|
32
|
+
@import "@axos-web-dev/shared-components/dist/assets/AlertBanner/AlertBanner.css";
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
# Shared components
|
|
36
|
+
|
|
37
|
+
This project is develop using `React + TypeScript + Vite + Storybook + Vanilla-extract` to building custom components for internal use.
|
|
38
|
+
|
|
39
|
+
## How to add new component
|
|
40
|
+
|
|
41
|
+
For add a new component use the `src/lib` folder and create a folder for the component. After that you should register an export in `src/lib/main.ts` file.
|
|
42
|
+
|
|
43
|
+
Also you need create a storie for the new component. Go to `src/stories` and create a new file or folder.
|
|
44
|
+
|
|
45
|
+
```shell
|
|
46
|
+
git clone bofaz@vs-ssh.visualstudio.com:v3/bofaz/Axos%20Marketing%20Cloud/Shared%20Components shared-components
|
|
47
|
+
|
|
48
|
+
cd shared-components
|
|
49
|
+
|
|
50
|
+
npm install
|
|
51
|
+
|
|
52
|
+
# for using storybook
|
|
53
|
+
npm run storybook
|
|
54
|
+
|
|
55
|
+
# for build
|
|
56
|
+
npm run build
|
|
57
|
+
|
|
58
|
+
# for testing in other projects
|
|
59
|
+
npm run build
|
|
60
|
+
|
|
61
|
+
npm link
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
For publishing we need to udpate the version we are using [semantic versioning](https://semver.org/)
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
Given a version number MAJOR.MINOR.PATCH, increment the:
|
|
69
|
+
|
|
70
|
+
MAJOR version when you make incompatible API changes
|
|
71
|
+
MINOR version when you add functionality in a backward compatible manner
|
|
72
|
+
PATCH version when you make backward compatible bug fixes
|
|
73
|
+
|
|
74
|
+
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
we can update the version with the following commands:
|
|
78
|
+
|
|
79
|
+
```shell
|
|
80
|
+
# bumps the patch number like 0.0.0 -> 0.0.1
|
|
81
|
+
npm version patch
|
|
82
|
+
|
|
83
|
+
# bumps the patch number like 0.0.0 -> 0.1.0
|
|
84
|
+
npm version minor
|
|
85
|
+
|
|
86
|
+
# bumps the patch number like 0.0.0 -> 1.0.0
|
|
87
|
+
npm version major
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## How to publish new library version to npm
|
|
94
|
+
|
|
95
|
+
First update the version as previously described
|
|
96
|
+
|
|
97
|
+
```shell
|
|
98
|
+
npm version [...]
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Then you will need to login into npm to do that write:
|
|
102
|
+
|
|
103
|
+
```shell
|
|
104
|
+
npm login --scope=@my-org
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Last you to publish the new version:
|
|
108
|
+
|
|
109
|
+
```shell
|
|
110
|
+
npm publish
|
|
111
|
+
```
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import '../assets/Avatar/Avatar.css.css';const avatar_sec = "
|
|
2
|
-
const container = "
|
|
3
|
-
const image = "
|
|
4
|
-
const text = "
|
|
5
|
-
const name = "
|
|
6
|
-
const title = "
|
|
7
|
-
const description = "
|
|
1
|
+
import '../assets/Avatar/Avatar.css.css';const avatar_sec = "_avatar_sec_1bnm9_1";
|
|
2
|
+
const container = "_container_1bnm9_5";
|
|
3
|
+
const image = "_image_1bnm9_14";
|
|
4
|
+
const text = "_text_1bnm9_23";
|
|
5
|
+
const name = "_name_1bnm9_29";
|
|
6
|
+
const title = "_title_1bnm9_37";
|
|
7
|
+
const description = "_description_1bnm9_44";
|
|
8
8
|
const css = {
|
|
9
9
|
avatar_sec,
|
|
10
10
|
container,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "
|
|
2
|
-
const author = "
|
|
3
|
-
const quote = "
|
|
1
|
+
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "_quote_spacer_1mzku_1";
|
|
2
|
+
const author = "_author_1mzku_7";
|
|
3
|
+
const quote = "_quote_1mzku_1";
|
|
4
4
|
const css = {
|
|
5
5
|
quote_spacer,
|
|
6
6
|
author,
|
|
@@ -622,7 +622,7 @@ const BuyDownCalculator = ({
|
|
|
622
622
|
id: "mooringOutsideContinentalUS",
|
|
623
623
|
...register("mooringOutsideContinentalUS"),
|
|
624
624
|
value: 0.5,
|
|
625
|
-
radioText: "Mooring Outside Continental U.S. (Includes Puerto Rico,\
|
|
625
|
+
radioText: "Mooring Outside Continental U.S. (Includes Puerto Rico,\n Hawaii, and Alaska) (Does not apply to Full Time Charter)\n +0.500",
|
|
626
626
|
groupName: "dependentInputs",
|
|
627
627
|
disabled: disableMooringOutside
|
|
628
628
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '../assets/FdicCallout/FdicCallout.css.css';const fdic_callout = "
|
|
2
|
-
const inner_container = "
|
|
1
|
+
import '../assets/FdicCallout/FdicCallout.css.css';const fdic_callout = "_fdic_callout_1f6md_1";
|
|
2
|
+
const inner_container = "_inner_container_1f6md_6";
|
|
3
3
|
const css = {
|
|
4
4
|
fdic_callout,
|
|
5
5
|
inner_container
|
|
@@ -208,15 +208,7 @@ const AxosFooterSiteMap = ({
|
|
|
208
208
|
children: "Auto Loans"
|
|
209
209
|
}
|
|
210
210
|
) }),
|
|
211
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
212
|
-
"a",
|
|
213
|
-
{
|
|
214
|
-
href: findMoreAxosDomains(
|
|
215
|
-
"{AXOSBANK}/personal/borrow/marine-loans"
|
|
216
|
-
),
|
|
217
|
-
children: "Marine Loans"
|
|
218
|
-
}
|
|
219
|
-
) })
|
|
211
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/", children: "Marine Loans" }) })
|
|
220
212
|
] }),
|
|
221
213
|
/* @__PURE__ */ jsxs("ul", { children: [
|
|
222
214
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
@@ -624,15 +616,7 @@ const AxosFooterSiteMap = ({
|
|
|
624
616
|
children: "Auto Loans"
|
|
625
617
|
}
|
|
626
618
|
) }),
|
|
627
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
628
|
-
"a",
|
|
629
|
-
{
|
|
630
|
-
href: findMoreAxosDomains(
|
|
631
|
-
"{AXOSBANK}/personal/borrow/marine-loans"
|
|
632
|
-
),
|
|
633
|
-
children: "Marine Loans"
|
|
634
|
-
}
|
|
635
|
-
) })
|
|
619
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/", children: "Marine Loans" }) })
|
|
636
620
|
] }),
|
|
637
621
|
/* @__PURE__ */ jsxs("ul", { children: [
|
|
638
622
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
package/dist/Forms/FormEnums.js
CHANGED
|
@@ -48,7 +48,9 @@ const PurposeOfLoan = ["Bridge", "Construction"];
|
|
|
48
48
|
const Purposes = [
|
|
49
49
|
{ value: "Purchase", text: "Purchase" },
|
|
50
50
|
{ value: "RefiCashout", text: "Refi Cashout" },
|
|
51
|
-
{ value: "RefiRateTermLimitedCO", text: "Refi Rate-Term/Limited C.O." }
|
|
51
|
+
{ value: "RefiRateTermLimitedCO", text: "Refi Rate-Term/Limited C.O." },
|
|
52
|
+
{ value: "Construction to Perm", text: "Construction to Perm" },
|
|
53
|
+
{ value: "Investor Construction", text: "Investor Construction" }
|
|
52
54
|
];
|
|
53
55
|
const RepresentativesFico = [
|
|
54
56
|
{ value: "780", text: "780+" },
|
|
@@ -65,6 +67,7 @@ const RepresentativesFico = [
|
|
|
65
67
|
const DocType = [
|
|
66
68
|
{ value: "FullDoc", text: "Full Doc" },
|
|
67
69
|
{ value: "AssetDepletion", text: "Asset Depletion" },
|
|
70
|
+
{ value: "AssetUtilization", text: "Asset Utilization" },
|
|
68
71
|
{ value: "PersonalBankStmt12Mos", text: "Personal Bank Stmt: 12 Mos" },
|
|
69
72
|
{ value: "BusinessBankStmt12Mos", text: "Business Bank Stmt: 12 Mos" },
|
|
70
73
|
{ value: "PersonalBankStmt24Mos", text: "Personal Bank Stmt: 24 Mos" },
|
|
@@ -325,7 +325,7 @@ const HeroBanner = ({
|
|
|
325
325
|
/* @__PURE__ */ jsx("div", { className: "img_item", children: getVariant(variant) ? /* @__PURE__ */ jsx(
|
|
326
326
|
SvgCheckIcon,
|
|
327
327
|
{
|
|
328
|
-
variant: getVariant(variant) === "primary" || getVariant(variant) === "secondary" ? "
|
|
328
|
+
variant: getVariant(variant) === "primary" || getVariant(variant) === "secondary" ? "primary" : "secondary"
|
|
329
329
|
}
|
|
330
330
|
) : /* @__PURE__ */ jsx("img", { src: icon?.src, alt: icon?.altText }) }),
|
|
331
331
|
/* @__PURE__ */ jsx("span", { children: copy })
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import '../assets/Interstitial/Interstitial.css.css';const overlay = "
|
|
2
|
-
const modal = "
|
|
3
|
-
const vanish = "
|
|
4
|
-
const appear = "
|
|
5
|
-
const close_button = "
|
|
6
|
-
const modal_content = "
|
|
7
|
-
const img_area = "
|
|
8
|
-
const body_copy = "
|
|
9
|
-
const btns = "
|
|
10
|
-
const white_modal = "
|
|
1
|
+
import '../assets/Interstitial/Interstitial.css.css';const overlay = "_overlay_e4cra_24";
|
|
2
|
+
const modal = "_modal_e4cra_40";
|
|
3
|
+
const vanish = "_vanish_e4cra_1";
|
|
4
|
+
const appear = "_appear_e4cra_1";
|
|
5
|
+
const close_button = "_close_button_e4cra_55";
|
|
6
|
+
const modal_content = "_modal_content_e4cra_70";
|
|
7
|
+
const img_area = "_img_area_e4cra_74";
|
|
8
|
+
const body_copy = "_body_copy_e4cra_84";
|
|
9
|
+
const btns = "_btns_e4cra_98";
|
|
10
|
+
const white_modal = "_white_modal_e4cra_139";
|
|
11
11
|
const css = {
|
|
12
12
|
overlay,
|
|
13
13
|
modal,
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosALTS/NavBar.css.css';const alts_header = "
|
|
2
|
-
const alts_wrapper = "
|
|
3
|
-
const alts_header_main_row = "
|
|
4
|
-
const alts_mobile_header = "
|
|
5
|
-
const alts_logo_wrap = "
|
|
6
|
-
const alts_primary_links = "
|
|
7
|
-
const alts_main_nav_link = "
|
|
8
|
-
const alts_hamburger = "
|
|
9
|
-
const alts_mobile_logo = "
|
|
10
|
-
const alts_mobile_nav = "
|
|
11
|
-
const alts_mobile_opened = "
|
|
12
|
-
const alts_mobile_nav_item = "
|
|
13
|
-
const alts_icon_wrap = "
|
|
14
|
-
const alts_mobile_footer = "
|
|
15
|
-
const alts_mobile_footer_content = "
|
|
16
|
-
const alts_mobile_footer_media = "
|
|
17
|
-
const alts_inner_wrapper = "
|
|
18
|
-
const alts_btn = "
|
|
19
|
-
const alts_sub_menu = "
|
|
20
|
-
const alts_skip_btn = "
|
|
21
|
-
const alts_desktop_only = "
|
|
22
|
-
const alts_main_nav = "
|
|
23
|
-
const alts_mobile_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosALTS/NavBar.css.css';const alts_header = "_alts_header_1s4n2_1";
|
|
2
|
+
const alts_wrapper = "_alts_wrapper_1s4n2_5";
|
|
3
|
+
const alts_header_main_row = "_alts_header_main_row_1s4n2_11";
|
|
4
|
+
const alts_mobile_header = "_alts_mobile_header_1s4n2_12";
|
|
5
|
+
const alts_logo_wrap = "_alts_logo_wrap_1s4n2_18";
|
|
6
|
+
const alts_primary_links = "_alts_primary_links_1s4n2_22";
|
|
7
|
+
const alts_main_nav_link = "_alts_main_nav_link_1s4n2_27";
|
|
8
|
+
const alts_hamburger = "_alts_hamburger_1s4n2_63";
|
|
9
|
+
const alts_mobile_logo = "_alts_mobile_logo_1s4n2_77";
|
|
10
|
+
const alts_mobile_nav = "_alts_mobile_nav_1s4n2_102";
|
|
11
|
+
const alts_mobile_opened = "_alts_mobile_opened_1s4n2_113";
|
|
12
|
+
const alts_mobile_nav_item = "_alts_mobile_nav_item_1s4n2_121";
|
|
13
|
+
const alts_icon_wrap = "_alts_icon_wrap_1s4n2_136";
|
|
14
|
+
const alts_mobile_footer = "_alts_mobile_footer_1s4n2_141";
|
|
15
|
+
const alts_mobile_footer_content = "_alts_mobile_footer_content_1s4n2_146";
|
|
16
|
+
const alts_mobile_footer_media = "_alts_mobile_footer_media_1s4n2_157";
|
|
17
|
+
const alts_inner_wrapper = "_alts_inner_wrapper_1s4n2_167";
|
|
18
|
+
const alts_btn = "_alts_btn_1s4n2_172";
|
|
19
|
+
const alts_sub_menu = "_alts_sub_menu_1s4n2_177";
|
|
20
|
+
const alts_skip_btn = "_alts_skip_btn_1s4n2_185";
|
|
21
|
+
const alts_desktop_only = "_alts_desktop_only_1s4n2_209";
|
|
22
|
+
const alts_main_nav = "_alts_main_nav_1s4n2_27";
|
|
23
|
+
const alts_mobile_only = "_alts_mobile_only_1s4n2_261";
|
|
24
24
|
const styles = {
|
|
25
25
|
alts_header,
|
|
26
26
|
alts_wrapper,
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisor/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav_link = "
|
|
8
|
-
const sub_nav_link = "
|
|
9
|
-
const signin_wrap = "
|
|
10
|
-
const signin_btn = "
|
|
11
|
-
const header_sub_row = "
|
|
12
|
-
const signin_dropdown = "
|
|
13
|
-
const shadow = "
|
|
14
|
-
const signin_header = "
|
|
15
|
-
const signin_subheader = "
|
|
16
|
-
const opacity = "
|
|
17
|
-
const fadeInDown = "
|
|
18
|
-
const footer = "
|
|
19
|
-
const open = "
|
|
20
|
-
const dd_wrapper = "
|
|
21
|
-
const dd_media = "
|
|
22
|
-
const dd_media_img = "
|
|
23
|
-
const dd_site_navs = "
|
|
24
|
-
const dd_media_header = "
|
|
25
|
-
const mt_8 = "
|
|
26
|
-
const mt_16 = "
|
|
27
|
-
const ml_8 = "
|
|
28
|
-
const dd_media_cta = "
|
|
29
|
-
const reversed_row = "
|
|
30
|
-
const headline = "
|
|
31
|
-
const nav_anchor = "
|
|
32
|
-
const headline_cta = "
|
|
33
|
-
const site_lists = "
|
|
34
|
-
const hamburger = "
|
|
35
|
-
const mobile_only = "
|
|
36
|
-
const mobile_logo = "
|
|
37
|
-
const highlight = "
|
|
38
|
-
const mobile_nav = "
|
|
39
|
-
const mobile_opened = "
|
|
40
|
-
const mobile_nav_item = "
|
|
41
|
-
const has_dropdown = "
|
|
42
|
-
const icon_wrap = "
|
|
43
|
-
const mobile_footer = "
|
|
44
|
-
const mobile_footer_content = "
|
|
45
|
-
const mobile_footer_media = "
|
|
46
|
-
const footer_cta = "
|
|
47
|
-
const inner_wrapper = "
|
|
48
|
-
const btn = "
|
|
49
|
-
const sub_menu = "
|
|
50
|
-
const main = "
|
|
51
|
-
const dd_footer = "
|
|
52
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosAdvisor/NavBar.css.css';const header = "_header_6da2u_1";
|
|
2
|
+
const wrapper = "_wrapper_6da2u_5";
|
|
3
|
+
const header_main_row = "_header_main_row_6da2u_10";
|
|
4
|
+
const mobile_header = "_mobile_header_6da2u_11";
|
|
5
|
+
const logo_wrap = "_logo_wrap_6da2u_17";
|
|
6
|
+
const primary_links = "_primary_links_6da2u_21";
|
|
7
|
+
const main_nav_link = "_main_nav_link_6da2u_25";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_6da2u_47";
|
|
9
|
+
const signin_wrap = "_signin_wrap_6da2u_49";
|
|
10
|
+
const signin_btn = "_signin_btn_6da2u_50";
|
|
11
|
+
const header_sub_row = "_header_sub_row_6da2u_88";
|
|
12
|
+
const signin_dropdown = "_signin_dropdown_6da2u_107";
|
|
13
|
+
const shadow = "_shadow_6da2u_117";
|
|
14
|
+
const signin_header = "_signin_header_6da2u_125";
|
|
15
|
+
const signin_subheader = "_signin_subheader_6da2u_132";
|
|
16
|
+
const opacity = "_opacity_6da2u_154";
|
|
17
|
+
const fadeInDown = "_fadeInDown_6da2u_1";
|
|
18
|
+
const footer = "_footer_6da2u_160";
|
|
19
|
+
const open = "_open_6da2u_176";
|
|
20
|
+
const dd_wrapper = "_dd_wrapper_6da2u_188";
|
|
21
|
+
const dd_media = "_dd_media_6da2u_193";
|
|
22
|
+
const dd_media_img = "_dd_media_img_6da2u_198";
|
|
23
|
+
const dd_site_navs = "_dd_site_navs_6da2u_202";
|
|
24
|
+
const dd_media_header = "_dd_media_header_6da2u_209";
|
|
25
|
+
const mt_8 = "_mt_8_6da2u_218";
|
|
26
|
+
const mt_16 = "_mt_16_6da2u_222";
|
|
27
|
+
const ml_8 = "_ml_8_6da2u_226";
|
|
28
|
+
const dd_media_cta = "_dd_media_cta_6da2u_230";
|
|
29
|
+
const reversed_row = "_reversed_row_6da2u_244";
|
|
30
|
+
const headline = "_headline_6da2u_260";
|
|
31
|
+
const nav_anchor = "_nav_anchor_6da2u_266";
|
|
32
|
+
const headline_cta = "_headline_cta_6da2u_274";
|
|
33
|
+
const site_lists = "_site_lists_6da2u_289";
|
|
34
|
+
const hamburger = "_hamburger_6da2u_324";
|
|
35
|
+
const mobile_only = "_mobile_only_6da2u_338";
|
|
36
|
+
const mobile_logo = "_mobile_logo_6da2u_344";
|
|
37
|
+
const highlight = "_highlight_6da2u_349";
|
|
38
|
+
const mobile_nav = "_mobile_nav_6da2u_385";
|
|
39
|
+
const mobile_opened = "_mobile_opened_6da2u_396";
|
|
40
|
+
const mobile_nav_item = "_mobile_nav_item_6da2u_404";
|
|
41
|
+
const has_dropdown = "_has_dropdown_6da2u_419";
|
|
42
|
+
const icon_wrap = "_icon_wrap_6da2u_440";
|
|
43
|
+
const mobile_footer = "_mobile_footer_6da2u_445";
|
|
44
|
+
const mobile_footer_content = "_mobile_footer_content_6da2u_450";
|
|
45
|
+
const mobile_footer_media = "_mobile_footer_media_6da2u_464";
|
|
46
|
+
const footer_cta = "_footer_cta_6da2u_470";
|
|
47
|
+
const inner_wrapper = "_inner_wrapper_6da2u_498";
|
|
48
|
+
const btn = "_btn_6da2u_503";
|
|
49
|
+
const sub_menu = "_sub_menu_6da2u_508";
|
|
50
|
+
const main = "_main_6da2u_25";
|
|
51
|
+
const dd_footer = "_dd_footer_6da2u_533";
|
|
52
|
+
const desktop_only = "_desktop_only_6da2u_552";
|
|
53
53
|
const styles = {
|
|
54
54
|
header,
|
|
55
55
|
wrapper,
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const main_nav = "
|
|
4
|
-
const header_main_row = "
|
|
5
|
-
const mobile_header = "
|
|
6
|
-
const logo_wrap = "
|
|
7
|
-
const primary_links = "
|
|
8
|
-
const main_nav_link = "
|
|
9
|
-
const sub_nav_link = "
|
|
10
|
-
const signin_wrap = "
|
|
11
|
-
const signin_btn = "
|
|
12
|
-
const header_sub_row = "
|
|
13
|
-
const signin_dropdown = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const signin_header = "
|
|
16
|
-
const signin_subheader = "
|
|
17
|
-
const opacity = "
|
|
18
|
-
const fadeInDown = "
|
|
19
|
-
const footer = "
|
|
20
|
-
const open = "
|
|
21
|
-
const dd_wrapper = "
|
|
22
|
-
const dd_media = "
|
|
23
|
-
const dd_media_img = "
|
|
24
|
-
const dd_site_navs = "
|
|
25
|
-
const dd_media_header = "
|
|
26
|
-
const mt_8 = "
|
|
27
|
-
const mt_16 = "
|
|
28
|
-
const ml_8 = "
|
|
29
|
-
const dd_media_cta = "
|
|
30
|
-
const reversed_row = "
|
|
31
|
-
const headline = "
|
|
32
|
-
const nav_anchor = "
|
|
33
|
-
const headline_cta = "
|
|
34
|
-
const site_lists = "
|
|
35
|
-
const hamburger = "
|
|
36
|
-
const mobile_only = "
|
|
37
|
-
const mobile_logo = "
|
|
38
|
-
const highlight = "
|
|
39
|
-
const mobile_nav = "
|
|
40
|
-
const mobile_opened = "
|
|
41
|
-
const mobile_nav_item = "
|
|
42
|
-
const has_dropdown = "
|
|
43
|
-
const icon_wrap = "
|
|
44
|
-
const mobile_footer = "
|
|
45
|
-
const mobile_footer_content = "
|
|
46
|
-
const mobile_footer_media = "
|
|
47
|
-
const footer_cta = "
|
|
48
|
-
const inner_wrapper = "
|
|
49
|
-
const btn = "
|
|
50
|
-
const sub_menu = "
|
|
51
|
-
const main = "
|
|
52
|
-
const dd_footer = "
|
|
53
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css';const header = "_header_ztj5i_1";
|
|
2
|
+
const wrapper = "_wrapper_ztj5i_5";
|
|
3
|
+
const main_nav = "_main_nav_ztj5i_10";
|
|
4
|
+
const header_main_row = "_header_main_row_ztj5i_17";
|
|
5
|
+
const mobile_header = "_mobile_header_ztj5i_18";
|
|
6
|
+
const logo_wrap = "_logo_wrap_ztj5i_30";
|
|
7
|
+
const primary_links = "_primary_links_ztj5i_34";
|
|
8
|
+
const main_nav_link = "_main_nav_link_ztj5i_38";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_ztj5i_60";
|
|
10
|
+
const signin_wrap = "_signin_wrap_ztj5i_62";
|
|
11
|
+
const signin_btn = "_signin_btn_ztj5i_63";
|
|
12
|
+
const header_sub_row = "_header_sub_row_ztj5i_100";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_ztj5i_119";
|
|
14
|
+
const shadow = "_shadow_ztj5i_129";
|
|
15
|
+
const signin_header = "_signin_header_ztj5i_137";
|
|
16
|
+
const signin_subheader = "_signin_subheader_ztj5i_144";
|
|
17
|
+
const opacity = "_opacity_ztj5i_166";
|
|
18
|
+
const fadeInDown = "_fadeInDown_ztj5i_1";
|
|
19
|
+
const footer = "_footer_ztj5i_172";
|
|
20
|
+
const open = "_open_ztj5i_188";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_ztj5i_200";
|
|
22
|
+
const dd_media = "_dd_media_ztj5i_205";
|
|
23
|
+
const dd_media_img = "_dd_media_img_ztj5i_210";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_ztj5i_214";
|
|
25
|
+
const dd_media_header = "_dd_media_header_ztj5i_221";
|
|
26
|
+
const mt_8 = "_mt_8_ztj5i_230";
|
|
27
|
+
const mt_16 = "_mt_16_ztj5i_234";
|
|
28
|
+
const ml_8 = "_ml_8_ztj5i_238";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_ztj5i_242";
|
|
30
|
+
const reversed_row = "_reversed_row_ztj5i_256";
|
|
31
|
+
const headline = "_headline_ztj5i_272";
|
|
32
|
+
const nav_anchor = "_nav_anchor_ztj5i_278";
|
|
33
|
+
const headline_cta = "_headline_cta_ztj5i_286";
|
|
34
|
+
const site_lists = "_site_lists_ztj5i_301";
|
|
35
|
+
const hamburger = "_hamburger_ztj5i_336";
|
|
36
|
+
const mobile_only = "_mobile_only_ztj5i_350";
|
|
37
|
+
const mobile_logo = "_mobile_logo_ztj5i_356";
|
|
38
|
+
const highlight = "_highlight_ztj5i_361";
|
|
39
|
+
const mobile_nav = "_mobile_nav_ztj5i_397";
|
|
40
|
+
const mobile_opened = "_mobile_opened_ztj5i_408";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_ztj5i_416";
|
|
42
|
+
const has_dropdown = "_has_dropdown_ztj5i_431";
|
|
43
|
+
const icon_wrap = "_icon_wrap_ztj5i_452";
|
|
44
|
+
const mobile_footer = "_mobile_footer_ztj5i_457";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_ztj5i_462";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_ztj5i_477";
|
|
47
|
+
const footer_cta = "_footer_cta_ztj5i_483";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_ztj5i_511";
|
|
49
|
+
const btn = "_btn_ztj5i_516";
|
|
50
|
+
const sub_menu = "_sub_menu_ztj5i_522";
|
|
51
|
+
const main = "_main_ztj5i_10";
|
|
52
|
+
const dd_footer = "_dd_footer_ztj5i_547";
|
|
53
|
+
const desktop_only = "_desktop_only_ztj5i_567";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|