@axos-web-dev/shared-components 2.0.0-dev.26 → 2.0.0-dev.27-nav.1
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/Chatbot/Chatbot.js +26 -16
- package/dist/FdicCallout/FdicCallout.module.js +2 -2
- 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/MobileNavData.d.ts +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +3 -3
- 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/WalnutIframe/wrapper.module.js +3 -3
- package/dist/assets/Avatar/Avatar.css +59 -59
- package/dist/assets/Blockquote/Blockquote.css +72 -72
- package/dist/assets/FdicCallout/FdicCallout.css +48 -48
- package/dist/assets/Interstitial/Interstitial.css +142 -142
- package/dist/assets/NavigationMenu/AxosALTS/NavBar.css +264 -264
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +609 -609
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css +630 -630
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css +484 -484
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css +427 -427
- package/dist/assets/NavigationMenu/LaVictoire/NavBar.css +429 -429
- package/dist/assets/WalnutIframe/wrapper.css +48 -48
- package/dist/assets/utils/optimizeImage/optimizeImage.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';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';const avatar_sec = "_avatar_sec_q4a8z_1";
|
|
2
|
+
const container = "_container_q4a8z_9";
|
|
3
|
+
const image = "_image_q4a8z_27";
|
|
4
|
+
const text = "_text_q4a8z_45";
|
|
5
|
+
const name = "_name_q4a8z_57";
|
|
6
|
+
const title = "_title_q4a8z_73";
|
|
7
|
+
const description = "_description_q4a8z_87";
|
|
8
8
|
const css = {
|
|
9
9
|
avatar_sec,
|
|
10
10
|
container,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../assets/Blockquote/Blockquote.css';const quote_spacer = "
|
|
2
|
-
const author = "
|
|
3
|
-
const quote = "
|
|
1
|
+
import '../assets/Blockquote/Blockquote.css';const quote_spacer = "_quote_spacer_lqs2u_1";
|
|
2
|
+
const author = "_author_lqs2u_13";
|
|
3
|
+
const quote = "_quote_lqs2u_1";
|
|
4
4
|
const css = {
|
|
5
5
|
quote_spacer,
|
|
6
6
|
author,
|
package/dist/Chatbot/Chatbot.js
CHANGED
|
@@ -39,6 +39,7 @@ const Chatbot = ({
|
|
|
39
39
|
const menuRef = useRef(null);
|
|
40
40
|
const isMountedRef = useRef(false);
|
|
41
41
|
const chatRef = useRef(null);
|
|
42
|
+
const chatLoading = useRef(false);
|
|
42
43
|
const agent_virtual = useRef(null);
|
|
43
44
|
const [status, setStatus] = useState("idle");
|
|
44
45
|
const [hasStarted, setHasStarted] = useState(false);
|
|
@@ -98,7 +99,7 @@ const Chatbot = ({
|
|
|
98
99
|
setMenusLoaded(true);
|
|
99
100
|
console.log("menus:", menuRef.current);
|
|
100
101
|
if (menuRef.current !== null) {
|
|
101
|
-
await startChat();
|
|
102
|
+
await startChat("onReady");
|
|
102
103
|
}
|
|
103
104
|
}
|
|
104
105
|
};
|
|
@@ -256,23 +257,28 @@ const Chatbot = ({
|
|
|
256
257
|
registerEventHandlers();
|
|
257
258
|
return;
|
|
258
259
|
};
|
|
259
|
-
const startChat = async () => {
|
|
260
|
-
console.log("Starting chat", chatRef.current);
|
|
260
|
+
const startChat = async (source) => {
|
|
261
261
|
const client = clientRef.current;
|
|
262
262
|
if (!client) return;
|
|
263
263
|
if (hasStarted) return;
|
|
264
|
-
if (
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
await new Promise((res) => setTimeout(res, 100));
|
|
268
|
-
waited += 100;
|
|
269
|
-
}
|
|
270
|
-
if (!menuRef.current || !menuRef.current.menus) {
|
|
271
|
-
console.error("Menu not loaded, cannot start chat");
|
|
272
|
-
return;
|
|
273
|
-
}
|
|
264
|
+
if (chatLoading.current) {
|
|
265
|
+
console.log(`startChat skipped [${source}] — already in progress`);
|
|
266
|
+
return;
|
|
274
267
|
}
|
|
275
268
|
try {
|
|
269
|
+
console.log(`Starting chat [${source}]`, chatRef.current);
|
|
270
|
+
chatLoading.current = true;
|
|
271
|
+
if (!menuRef.current || !menuRef.current.menus) {
|
|
272
|
+
let waited = 0;
|
|
273
|
+
while ((!menuRef.current || !menuRef.current.menus) && waited < 5e3) {
|
|
274
|
+
await new Promise((res) => setTimeout(res, 100));
|
|
275
|
+
waited += 100;
|
|
276
|
+
}
|
|
277
|
+
if (!menuRef.current || !menuRef.current.menus) {
|
|
278
|
+
console.error("Menu not loaded, cannot start chat");
|
|
279
|
+
return;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
276
282
|
console.log("menus: ->", menuRef.current);
|
|
277
283
|
const ongoingChat = await client.loadOngoingChat();
|
|
278
284
|
console.log("theres a ongoing chat?: -->", ongoingChat);
|
|
@@ -302,6 +308,7 @@ const Chatbot = ({
|
|
|
302
308
|
} catch (err) {
|
|
303
309
|
console.error("Error creating chat:", err);
|
|
304
310
|
} finally {
|
|
311
|
+
chatLoading.current = false;
|
|
305
312
|
setHasStarted(true);
|
|
306
313
|
if (clientRef?.current?.chat?.state?.status == "va_assigned") {
|
|
307
314
|
const OriginalAudio = window.Audio;
|
|
@@ -319,12 +326,14 @@ const Chatbot = ({
|
|
|
319
326
|
toggle();
|
|
320
327
|
if (hasStarted) return;
|
|
321
328
|
if (!hasOpenedOnce) {
|
|
322
|
-
await startChat();
|
|
329
|
+
await startChat("bubbleClick");
|
|
323
330
|
setHasStarted(true);
|
|
324
331
|
}
|
|
325
332
|
};
|
|
326
333
|
const onSendMessage = async (msg) => {
|
|
327
|
-
|
|
334
|
+
const clientChatId = clientRef.current?.chat?.id;
|
|
335
|
+
const refChatId = chatRef.current?.id;
|
|
336
|
+
console.log("Sending message:", msg, "| client.chat.id:", clientChatId, "| chatRef.id:", refChatId);
|
|
328
337
|
try {
|
|
329
338
|
await clientRef.current?.sendTextMessage(msg);
|
|
330
339
|
} catch (error) {
|
|
@@ -350,7 +359,7 @@ const Chatbot = ({
|
|
|
350
359
|
const onEndAndStartNewChat = async () => {
|
|
351
360
|
console.log("Ending current chat and starting a new one");
|
|
352
361
|
await onEndChat();
|
|
353
|
-
await startChat();
|
|
362
|
+
await startChat("endAndStartNew");
|
|
354
363
|
};
|
|
355
364
|
useMount(async () => {
|
|
356
365
|
console.log("Chatbot mounted");
|
|
@@ -361,6 +370,7 @@ const Chatbot = ({
|
|
|
361
370
|
useUnmount(() => {
|
|
362
371
|
console.log("Chatbot unmounted");
|
|
363
372
|
deregisterEventHandlers();
|
|
373
|
+
chatLoading.current = false;
|
|
364
374
|
reset();
|
|
365
375
|
setHasStarted(false);
|
|
366
376
|
setStatus("idle");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '../assets/FdicCallout/FdicCallout.css';const fdic_callout = "
|
|
2
|
-
const inner_container = "
|
|
1
|
+
import '../assets/FdicCallout/FdicCallout.css';const fdic_callout = "_fdic_callout_eqzgp_1";
|
|
2
|
+
const inner_container = "_inner_container_eqzgp_11";
|
|
3
3
|
const css = {
|
|
4
4
|
fdic_callout,
|
|
5
5
|
inner_container
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import '../assets/Interstitial/Interstitial.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';const overlay = "_overlay_1ep5z_47";
|
|
2
|
+
const modal = "_modal_1ep5z_79";
|
|
3
|
+
const vanish = "_vanish_1ep5z_1";
|
|
4
|
+
const appear = "_appear_1ep5z_1";
|
|
5
|
+
const close_button = "_close_button_1ep5z_109";
|
|
6
|
+
const modal_content = "_modal_content_1ep5z_139";
|
|
7
|
+
const img_area = "_img_area_1ep5z_147";
|
|
8
|
+
const body_copy = "_body_copy_1ep5z_167";
|
|
9
|
+
const btns = "_btns_1ep5z_195";
|
|
10
|
+
const white_modal = "_white_modal_1ep5z_277";
|
|
11
11
|
const css = {
|
|
12
12
|
overlay,
|
|
13
13
|
modal,
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosALTS/NavBar.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';const alts_header = "_alts_header_19h22_1";
|
|
2
|
+
const alts_wrapper = "_alts_wrapper_19h22_9";
|
|
3
|
+
const alts_header_main_row = "_alts_header_main_row_19h22_21";
|
|
4
|
+
const alts_mobile_header = "_alts_mobile_header_19h22_23";
|
|
5
|
+
const alts_logo_wrap = "_alts_logo_wrap_19h22_35";
|
|
6
|
+
const alts_primary_links = "_alts_primary_links_19h22_43";
|
|
7
|
+
const alts_main_nav_link = "_alts_main_nav_link_19h22_53";
|
|
8
|
+
const alts_hamburger = "_alts_hamburger_19h22_125";
|
|
9
|
+
const alts_mobile_logo = "_alts_mobile_logo_19h22_153";
|
|
10
|
+
const alts_mobile_nav = "_alts_mobile_nav_19h22_203";
|
|
11
|
+
const alts_mobile_opened = "_alts_mobile_opened_19h22_225";
|
|
12
|
+
const alts_mobile_nav_item = "_alts_mobile_nav_item_19h22_241";
|
|
13
|
+
const alts_icon_wrap = "_alts_icon_wrap_19h22_271";
|
|
14
|
+
const alts_mobile_footer = "_alts_mobile_footer_19h22_281";
|
|
15
|
+
const alts_mobile_footer_content = "_alts_mobile_footer_content_19h22_291";
|
|
16
|
+
const alts_mobile_footer_media = "_alts_mobile_footer_media_19h22_313";
|
|
17
|
+
const alts_inner_wrapper = "_alts_inner_wrapper_19h22_333";
|
|
18
|
+
const alts_btn = "_alts_btn_19h22_343";
|
|
19
|
+
const alts_sub_menu = "_alts_sub_menu_19h22_353";
|
|
20
|
+
const alts_skip_btn = "_alts_skip_btn_19h22_369";
|
|
21
|
+
const alts_desktop_only = "_alts_desktop_only_19h22_417";
|
|
22
|
+
const alts_main_nav = "_alts_main_nav_19h22_53";
|
|
23
|
+
const alts_mobile_only = "_alts_mobile_only_19h22_521";
|
|
24
24
|
const styles = {
|
|
25
25
|
alts_header,
|
|
26
26
|
alts_wrapper,
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisor/NavBar.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';const header = "_header_epxpu_1";
|
|
2
|
+
const wrapper = "_wrapper_epxpu_9";
|
|
3
|
+
const header_main_row = "_header_main_row_epxpu_19";
|
|
4
|
+
const mobile_header = "_mobile_header_epxpu_21";
|
|
5
|
+
const logo_wrap = "_logo_wrap_epxpu_33";
|
|
6
|
+
const primary_links = "_primary_links_epxpu_41";
|
|
7
|
+
const main_nav_link = "_main_nav_link_epxpu_49";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_epxpu_113";
|
|
9
|
+
const signin_wrap = "_signin_wrap_epxpu_117";
|
|
10
|
+
const signin_btn = "_signin_btn_epxpu_119";
|
|
11
|
+
const header_sub_row = "_header_sub_row_epxpu_195";
|
|
12
|
+
const signin_dropdown = "_signin_dropdown_epxpu_235";
|
|
13
|
+
const shadow = "_shadow_epxpu_255";
|
|
14
|
+
const signin_header = "_signin_header_epxpu_271";
|
|
15
|
+
const signin_subheader = "_signin_subheader_epxpu_285";
|
|
16
|
+
const opacity = "_opacity_epxpu_329";
|
|
17
|
+
const fadeInDown = "_fadeInDown_epxpu_1";
|
|
18
|
+
const footer = "_footer_epxpu_341";
|
|
19
|
+
const open = "_open_epxpu_373";
|
|
20
|
+
const dd_wrapper = "_dd_wrapper_epxpu_397";
|
|
21
|
+
const dd_media = "_dd_media_epxpu_407";
|
|
22
|
+
const dd_media_img = "_dd_media_img_epxpu_417";
|
|
23
|
+
const dd_site_navs = "_dd_site_navs_epxpu_425";
|
|
24
|
+
const dd_media_header = "_dd_media_header_epxpu_439";
|
|
25
|
+
const mt_8 = "_mt_8_epxpu_457";
|
|
26
|
+
const mt_16 = "_mt_16_epxpu_465";
|
|
27
|
+
const ml_8 = "_ml_8_epxpu_473";
|
|
28
|
+
const dd_media_cta = "_dd_media_cta_epxpu_481";
|
|
29
|
+
const reversed_row = "_reversed_row_epxpu_509";
|
|
30
|
+
const headline = "_headline_epxpu_541";
|
|
31
|
+
const nav_anchor = "_nav_anchor_epxpu_553";
|
|
32
|
+
const headline_cta = "_headline_cta_epxpu_569";
|
|
33
|
+
const site_lists = "_site_lists_epxpu_599";
|
|
34
|
+
const hamburger = "_hamburger_epxpu_669";
|
|
35
|
+
const mobile_only = "_mobile_only_epxpu_697";
|
|
36
|
+
const mobile_logo = "_mobile_logo_epxpu_709";
|
|
37
|
+
const highlight = "_highlight_epxpu_719";
|
|
38
|
+
const mobile_nav = "_mobile_nav_epxpu_791";
|
|
39
|
+
const mobile_opened = "_mobile_opened_epxpu_813";
|
|
40
|
+
const mobile_nav_item = "_mobile_nav_item_epxpu_829";
|
|
41
|
+
const has_dropdown = "_has_dropdown_epxpu_859";
|
|
42
|
+
const icon_wrap = "_icon_wrap_epxpu_901";
|
|
43
|
+
const mobile_footer = "_mobile_footer_epxpu_911";
|
|
44
|
+
const mobile_footer_content = "_mobile_footer_content_epxpu_921";
|
|
45
|
+
const mobile_footer_media = "_mobile_footer_media_epxpu_951";
|
|
46
|
+
const footer_cta = "_footer_cta_epxpu_963";
|
|
47
|
+
const inner_wrapper = "_inner_wrapper_epxpu_1019";
|
|
48
|
+
const btn = "_btn_epxpu_1029";
|
|
49
|
+
const sub_menu = "_sub_menu_epxpu_1039";
|
|
50
|
+
const main = "_main_epxpu_49";
|
|
51
|
+
const dd_footer = "_dd_footer_epxpu_1089";
|
|
52
|
+
const desktop_only = "_desktop_only_epxpu_1127";
|
|
53
53
|
const styles = {
|
|
54
54
|
header,
|
|
55
55
|
wrapper,
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisorServices/NavBar.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';const header = "_header_1rlwu_1";
|
|
2
|
+
const wrapper = "_wrapper_1rlwu_9";
|
|
3
|
+
const main_nav = "_main_nav_1rlwu_19";
|
|
4
|
+
const header_main_row = "_header_main_row_1rlwu_33";
|
|
5
|
+
const mobile_header = "_mobile_header_1rlwu_35";
|
|
6
|
+
const logo_wrap = "_logo_wrap_1rlwu_59";
|
|
7
|
+
const primary_links = "_primary_links_1rlwu_67";
|
|
8
|
+
const main_nav_link = "_main_nav_link_1rlwu_75";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_1rlwu_139";
|
|
10
|
+
const signin_wrap = "_signin_wrap_1rlwu_143";
|
|
11
|
+
const signin_btn = "_signin_btn_1rlwu_145";
|
|
12
|
+
const header_sub_row = "_header_sub_row_1rlwu_219";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_1rlwu_259";
|
|
14
|
+
const shadow = "_shadow_1rlwu_279";
|
|
15
|
+
const signin_header = "_signin_header_1rlwu_295";
|
|
16
|
+
const signin_subheader = "_signin_subheader_1rlwu_309";
|
|
17
|
+
const opacity = "_opacity_1rlwu_353";
|
|
18
|
+
const fadeInDown = "_fadeInDown_1rlwu_1";
|
|
19
|
+
const footer = "_footer_1rlwu_365";
|
|
20
|
+
const open = "_open_1rlwu_397";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_1rlwu_421";
|
|
22
|
+
const dd_media = "_dd_media_1rlwu_431";
|
|
23
|
+
const dd_media_img = "_dd_media_img_1rlwu_441";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_1rlwu_449";
|
|
25
|
+
const dd_media_header = "_dd_media_header_1rlwu_463";
|
|
26
|
+
const mt_8 = "_mt_8_1rlwu_481";
|
|
27
|
+
const mt_16 = "_mt_16_1rlwu_489";
|
|
28
|
+
const ml_8 = "_ml_8_1rlwu_497";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_1rlwu_505";
|
|
30
|
+
const reversed_row = "_reversed_row_1rlwu_533";
|
|
31
|
+
const headline = "_headline_1rlwu_565";
|
|
32
|
+
const nav_anchor = "_nav_anchor_1rlwu_577";
|
|
33
|
+
const headline_cta = "_headline_cta_1rlwu_593";
|
|
34
|
+
const site_lists = "_site_lists_1rlwu_623";
|
|
35
|
+
const hamburger = "_hamburger_1rlwu_693";
|
|
36
|
+
const mobile_only = "_mobile_only_1rlwu_721";
|
|
37
|
+
const mobile_logo = "_mobile_logo_1rlwu_733";
|
|
38
|
+
const highlight = "_highlight_1rlwu_743";
|
|
39
|
+
const mobile_nav = "_mobile_nav_1rlwu_815";
|
|
40
|
+
const mobile_opened = "_mobile_opened_1rlwu_837";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_1rlwu_853";
|
|
42
|
+
const has_dropdown = "_has_dropdown_1rlwu_883";
|
|
43
|
+
const icon_wrap = "_icon_wrap_1rlwu_925";
|
|
44
|
+
const mobile_footer = "_mobile_footer_1rlwu_935";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_1rlwu_945";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_1rlwu_975";
|
|
47
|
+
const footer_cta = "_footer_cta_1rlwu_987";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_1rlwu_1045";
|
|
49
|
+
const btn = "_btn_1rlwu_1055";
|
|
50
|
+
const sub_menu = "_sub_menu_1rlwu_1067";
|
|
51
|
+
const main = "_main_1rlwu_19";
|
|
52
|
+
const dd_footer = "_dd_footer_1rlwu_1117";
|
|
53
|
+
const desktop_only = "_desktop_only_1rlwu_1157";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|