@axos-web-dev/shared-components 2.0.0-dev.27-evo.1 → 2.0.0-dev.29
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/ApyCalculator/ApyCalculator.css.d.ts +1 -0
- package/dist/Calculators/ApyCalculator/ApyCalculator.css.js +4 -2
- package/dist/Calculators/ApyCalculator/index.js +49 -28
- package/dist/Carousel/index.js +1 -1
- package/dist/Chatbot/AnimatedGradientBorder.css.d.ts +1 -0
- package/dist/Chatbot/AnimatedGradientBorder.css.js +2 -0
- package/dist/Chatbot/Bubble.js +1 -10
- package/dist/Chatbot/ChatWindow.js +86 -67
- package/dist/Chatbot/Chatbot.js +14 -2
- package/dist/FdicCallout/FdicCallout.module.js +2 -2
- package/dist/Forms/ApplyNow.js +1 -1
- package/dist/Forms/MortgageRate/MortgageRateForm.js +1 -1
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +1 -1
- package/dist/Forms/SuccesForm.js +1 -1
- package/dist/ImageLink/ImageLink.js +1 -1
- package/dist/Insight/Featured/CategorySelector.js +1 -1
- package/dist/Insight/Featured/Featured.js +1 -1
- package/dist/Insight/Featured/Header.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 +27 -27
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- 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/SetContainer/SetContainer.js +8 -2
- 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/Calculators/ApyCalculator/ApyCalculator.css +5 -2
- package/dist/assets/Chatbot/AnimatedGradientBorder.css +19 -19
- package/dist/assets/Chatbot/Bubble.css +2 -1
- package/dist/assets/Chatbot/ChatWindow.css +35 -33
- 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/AxosBank/MobileMenu/MobileMenu.css +353 -353
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css +445 -445
- 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/themes/axos.css +8 -7
- package/dist/assets/themes/premier.css +9 -8
- package/dist/assets/themes/ufb.css +9 -8
- package/dist/assets/themes/victorie.css +9 -8
- package/dist/assets/utils/optimizeImage/optimizeImage.css +47 -47
- package/dist/themes/axos.css.d.ts +1 -0
- package/dist/themes/axos.css.js +1 -1
- package/dist/utils/optimizeImage/optimizeImage.module.js +3 -3
- package/package.json +148 -148
|
@@ -6,9 +6,9 @@ import '../assets/themes/victorie.css';import '../assets/themes/ufb.css';import
|
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
8
|
import clsx from "clsx";
|
|
9
|
-
import React, { useRef, useEffect } from "react";
|
|
9
|
+
import React, { useRef, useState, useEffect } from "react";
|
|
10
10
|
import { useNetworkState, useMount } from "react-use";
|
|
11
|
-
import { gradientFocus } from "./AnimatedGradientBorder.css.js";
|
|
11
|
+
import { focusAnimation, gradientFocus } from "./AnimatedGradientBorder.css.js";
|
|
12
12
|
import { ChatbotMessage } from "./ChatbotMessage.js";
|
|
13
13
|
import { windowBarStyle, left_bar_section, chat_title, button_bar, chatbotMenuItem, chatbotMenu, chatEndDialogOverlay, chatFinishDialog, chatEndCircle, endChatButtonStyle, noAnswerButton, arrowFill, button_reset, buttonss_section, chatNetworkStatus, shimmerText, messagesContainerStyle, inputStyle, autoResize, sendButtonStyle, windowStyle, windowOpenStyle } from "./ChatWindow.css.js";
|
|
14
14
|
import { EllipsisIcon } from "./EllipsisIcon.js";
|
|
@@ -53,6 +53,7 @@ const ChatWindow = ({
|
|
|
53
53
|
const [input, setInput] = React.useState("");
|
|
54
54
|
const messagesEndRef = useRef(null);
|
|
55
55
|
const inputRef = useRef(null);
|
|
56
|
+
const [focused, setFocused] = useState(false);
|
|
56
57
|
useEffect(() => {
|
|
57
58
|
messagesEndRef.current?.scrollIntoView({ behavior: "smooth" });
|
|
58
59
|
}, [messages]);
|
|
@@ -459,71 +460,89 @@ const ChatWindow = ({
|
|
|
459
460
|
),
|
|
460
461
|
/* @__PURE__ */ jsx("div", { ref: messagesEndRef })
|
|
461
462
|
] }),
|
|
462
|
-
/* @__PURE__ */ jsx("div", { style: { padding: "16px 16px 24px 16px" }, children: /* @__PURE__ */
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
"
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
463
|
+
/* @__PURE__ */ jsx("div", { style: { padding: "16px 16px 24px 16px" }, children: /* @__PURE__ */ jsxs("form", { onSubmit: handleSend, className: clsx(gradientFocus), children: [
|
|
464
|
+
/* @__PURE__ */ jsx(
|
|
465
|
+
"div",
|
|
466
|
+
{
|
|
467
|
+
className: clsx(focused ? focusAnimation : ""),
|
|
468
|
+
style: {
|
|
469
|
+
position: "absolute",
|
|
470
|
+
// border: "1px solid red",
|
|
471
|
+
left: "10%",
|
|
472
|
+
width: "80%",
|
|
473
|
+
height: "40px",
|
|
474
|
+
zIndex: "-1"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
),
|
|
478
|
+
/* @__PURE__ */ jsxs(
|
|
479
|
+
"div",
|
|
480
|
+
{
|
|
481
|
+
style: {
|
|
482
|
+
display: "flex",
|
|
483
|
+
padding: "12px 16px",
|
|
484
|
+
background: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected ? "light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3))" : "#ffffff",
|
|
485
|
+
borderRadius: 12
|
|
486
|
+
},
|
|
487
|
+
children: [
|
|
488
|
+
/* @__PURE__ */ jsx(
|
|
489
|
+
"textarea",
|
|
490
|
+
{
|
|
491
|
+
ref: inputRef,
|
|
492
|
+
value: input,
|
|
493
|
+
onChange: (e) => setInput(e.target.value),
|
|
494
|
+
onKeyDown: (e) => {
|
|
495
|
+
if (hasEscalated) {
|
|
496
|
+
previewTyping(e.target?.value);
|
|
497
|
+
}
|
|
498
|
+
if (e.key === "Enter" && !e.shiftKey) {
|
|
499
|
+
handleSend(e);
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
onFocus: () => setFocused(true),
|
|
503
|
+
onBlur: () => setFocused(false),
|
|
504
|
+
placeholder: "Ask anything...",
|
|
505
|
+
className: clsx(inputStyle, autoResize),
|
|
506
|
+
autoFocus: true,
|
|
507
|
+
disabled: isBlockedInput || inputDisabled || status !== "connected" || messages.length == 0 || escalationDeflected,
|
|
508
|
+
rows: 1
|
|
509
|
+
}
|
|
510
|
+
),
|
|
511
|
+
/* @__PURE__ */ jsx(
|
|
512
|
+
"button",
|
|
513
|
+
{
|
|
514
|
+
className: clsx(
|
|
515
|
+
sendButtonStyle,
|
|
516
|
+
input.trim().length > 0 && "active"
|
|
517
|
+
),
|
|
518
|
+
type: "submit",
|
|
519
|
+
title: "Send message",
|
|
520
|
+
disabled: isBlockedInput || inputDisabled || status !== "connected" || !input.trim() || messages.length == 0 || escalationDeflected,
|
|
521
|
+
children: /* @__PURE__ */ jsx(
|
|
522
|
+
"svg",
|
|
523
|
+
{
|
|
524
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
525
|
+
width: "20",
|
|
526
|
+
height: "20",
|
|
527
|
+
viewBox: "0 0 16 16",
|
|
528
|
+
fill: "none",
|
|
529
|
+
children: /* @__PURE__ */ jsx(
|
|
530
|
+
"path",
|
|
531
|
+
{
|
|
532
|
+
fillRule: "evenodd",
|
|
533
|
+
clipRule: "evenodd",
|
|
534
|
+
d: "M0.0030533 5.42479C0.0273417 5.1795 0.193529 4.9714 0.427369 4.89345L15.0114 0.0320896C15.236 -0.0427712 15.4836 0.0156801 15.651 0.183075C15.8184 0.35047 15.8769 0.598075 15.802 0.822659L10.9407 15.4067C10.8627 15.6406 10.6546 15.8068 10.4093 15.8311C10.164 15.8553 9.92737 15.7332 9.80508 15.5192L6.35411 9.47999L0.314925 6.02903C0.100912 5.90673 -0.0212351 5.67008 0.0030533 5.42479ZM7.59169 9.1263L9.64202 12.7144C9.85645 13.0896 10.4138 13.0344 10.5505 12.6244L13.9046 2.56191C14.0349 2.17103 13.6631 1.79916 13.2722 1.92946L3.20969 5.28362C2.79967 5.4203 2.74448 5.97766 3.11973 6.19209L6.70781 8.24242L9.90579 5.04443C10.1499 4.80036 10.5456 4.80036 10.7897 5.04443C11.0337 5.28851 11.0337 5.68424 10.7897 5.92832L7.59169 9.1263Z",
|
|
535
|
+
fill: "#435164"
|
|
536
|
+
}
|
|
537
|
+
)
|
|
538
|
+
}
|
|
539
|
+
)
|
|
540
|
+
}
|
|
541
|
+
)
|
|
542
|
+
]
|
|
543
|
+
}
|
|
544
|
+
)
|
|
545
|
+
] }) })
|
|
527
546
|
] });
|
|
528
547
|
};
|
|
529
548
|
export {
|
package/dist/Chatbot/Chatbot.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
3
|
import { useRef, useState, useEffect } from "react";
|
|
4
|
-
import { useMount, useUnmount } from "react-use";
|
|
4
|
+
import { useLocation, useMount, useUnmount } from "react-use";
|
|
5
5
|
import notificationSound from "../assets/notification.mp3.js";
|
|
6
6
|
import { Bubble } from "./Bubble.js";
|
|
7
7
|
import { chatbotAXB, chatbotUFB } from "./Chatbot.css.js";
|
|
@@ -34,6 +34,7 @@ const Chatbot = ({
|
|
|
34
34
|
unblockInput,
|
|
35
35
|
blockInput
|
|
36
36
|
} = useOpenChat();
|
|
37
|
+
const location = useLocation();
|
|
37
38
|
const { addMessage, addMessages, clearMessages, messages } = useMessages();
|
|
38
39
|
const clientRef = useRef(null);
|
|
39
40
|
const menuRef = useRef(null);
|
|
@@ -89,6 +90,10 @@ const Chatbot = ({
|
|
|
89
90
|
env: {
|
|
90
91
|
label: "env",
|
|
91
92
|
value: projectEnv === "uat" ? "dev" : projectEnv
|
|
93
|
+
},
|
|
94
|
+
url: {
|
|
95
|
+
label: "url",
|
|
96
|
+
value: location.href
|
|
92
97
|
}
|
|
93
98
|
}
|
|
94
99
|
};
|
|
@@ -333,7 +338,14 @@ const Chatbot = ({
|
|
|
333
338
|
const onSendMessage = async (msg) => {
|
|
334
339
|
const clientChatId = clientRef.current?.chat?.id;
|
|
335
340
|
const refChatId = chatRef.current?.id;
|
|
336
|
-
console.log(
|
|
341
|
+
console.log(
|
|
342
|
+
"Sending message:",
|
|
343
|
+
msg,
|
|
344
|
+
"| client.chat.id:",
|
|
345
|
+
clientChatId,
|
|
346
|
+
"| chatRef.id:",
|
|
347
|
+
refChatId
|
|
348
|
+
);
|
|
337
349
|
try {
|
|
338
350
|
await clientRef.current?.sendTextMessage(msg);
|
|
339
351
|
} catch (error) {
|
|
@@ -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_1f6md_1";
|
|
2
|
+
const inner_container = "_inner_container_1f6md_6";
|
|
3
3
|
const css = {
|
|
4
4
|
fdic_callout,
|
|
5
5
|
inner_container
|
package/dist/Forms/ApplyNow.js
CHANGED
|
@@ -29,6 +29,7 @@ import "../Calculators/calculator.css.js";
|
|
|
29
29
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
30
30
|
import "../Modal/contextApi/store.js";
|
|
31
31
|
import "next/image.js";
|
|
32
|
+
import "../Button/Button.css.js";
|
|
32
33
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
33
34
|
import "../Table/Table.css.js";
|
|
34
35
|
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -62,7 +63,6 @@ import "../Hyperlink/Hyperlink.css.js";
|
|
|
62
63
|
/* empty css */
|
|
63
64
|
import "iframe-resizer";
|
|
64
65
|
/* empty css */
|
|
65
|
-
import "../Button/Button.css.js";
|
|
66
66
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
67
67
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
68
68
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -29,6 +29,7 @@ import "../../Calculators/calculator.css.js";
|
|
|
29
29
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
30
30
|
import "../../Modal/contextApi/store.js";
|
|
31
31
|
import "next/image.js";
|
|
32
|
+
import { button } from "../../Button/Button.css.js";
|
|
32
33
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
33
34
|
import "../../Table/Table.css.js";
|
|
34
35
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -64,7 +65,6 @@ import "../../Hyperlink/Hyperlink.css.js";
|
|
|
64
65
|
/* empty css */
|
|
65
66
|
import "iframe-resizer";
|
|
66
67
|
/* empty css */
|
|
67
|
-
import { button } from "../../Button/Button.css.js";
|
|
68
68
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
69
69
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
70
70
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -41,6 +41,7 @@ import "../../Calculators/calculator.css.js";
|
|
|
41
41
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
42
42
|
import "../../Modal/contextApi/store.js";
|
|
43
43
|
import "next/image.js";
|
|
44
|
+
import { button } from "../../Button/Button.css.js";
|
|
44
45
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
45
46
|
import "../../Table/Table.css.js";
|
|
46
47
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -59,7 +60,6 @@ import "../../Hyperlink/Hyperlink.css.js";
|
|
|
59
60
|
import { SuccesFormWrapper } from "../SuccesForm.js";
|
|
60
61
|
import "iframe-resizer";
|
|
61
62
|
/* empty css */
|
|
62
|
-
import { button } from "../../Button/Button.css.js";
|
|
63
63
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
64
64
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
65
65
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -23,6 +23,7 @@ import "../Calculators/calculator.css.js";
|
|
|
23
23
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
24
24
|
import "../Modal/contextApi/store.js";
|
|
25
25
|
import "next/image.js";
|
|
26
|
+
import "../Button/Button.css.js";
|
|
26
27
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
27
28
|
import "../Table/Table.css.js";
|
|
28
29
|
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -45,7 +46,6 @@ import "iframe-resizer";
|
|
|
45
46
|
/* empty css */
|
|
46
47
|
import "../Chevron/Chevron.css.js";
|
|
47
48
|
/* empty css */
|
|
48
|
-
import "../Button/Button.css.js";
|
|
49
49
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
50
50
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
51
51
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -22,6 +22,7 @@ import "../Calculators/calculator.css.js";
|
|
|
22
22
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
23
23
|
import "../Modal/contextApi/store.js";
|
|
24
24
|
import "next/image.js";
|
|
25
|
+
import "../Button/Button.css.js";
|
|
25
26
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
26
27
|
import "../Table/Table.css.js";
|
|
27
28
|
import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -56,7 +57,6 @@ import "../Inputs/Input.css.js";
|
|
|
56
57
|
/* empty css */
|
|
57
58
|
import "iframe-resizer";
|
|
58
59
|
/* empty css */
|
|
59
|
-
import "../Button/Button.css.js";
|
|
60
60
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -26,6 +26,7 @@ import "../../Calculators/calculator.css.js";
|
|
|
26
26
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
27
27
|
import "../../Modal/contextApi/store.js";
|
|
28
28
|
import "next/image.js";
|
|
29
|
+
import "../../Button/Button.css.js";
|
|
29
30
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
30
31
|
import "../../Table/Table.css.js";
|
|
31
32
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -58,7 +59,6 @@ import "../../Hyperlink/Hyperlink.css.js";
|
|
|
58
59
|
/* empty css */
|
|
59
60
|
import "iframe-resizer";
|
|
60
61
|
/* empty css */
|
|
61
|
-
import "../../Button/Button.css.js";
|
|
62
62
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
63
63
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
64
64
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -23,6 +23,7 @@ import "../../Calculators/calculator.css.js";
|
|
|
23
23
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
24
24
|
import "../../Modal/contextApi/store.js";
|
|
25
25
|
import Image from "next/image.js";
|
|
26
|
+
import "../../Button/Button.css.js";
|
|
26
27
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
27
28
|
import "../../Table/Table.css.js";
|
|
28
29
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -58,7 +59,6 @@ import "../../Hyperlink/Hyperlink.css.js";
|
|
|
58
59
|
/* empty css */
|
|
59
60
|
import "iframe-resizer";
|
|
60
61
|
/* empty css */
|
|
61
|
-
import "../../Button/Button.css.js";
|
|
62
62
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
63
63
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
64
64
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -21,6 +21,7 @@ import "../../Calculators/calculator.css.js";
|
|
|
21
21
|
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
22
22
|
import "../../Modal/contextApi/store.js";
|
|
23
23
|
import "next/image.js";
|
|
24
|
+
import "../../Button/Button.css.js";
|
|
24
25
|
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
25
26
|
import "../../Table/Table.css.js";
|
|
26
27
|
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -56,7 +57,6 @@ import "../../Hyperlink/Hyperlink.css.js";
|
|
|
56
57
|
/* empty css */
|
|
57
58
|
import "iframe-resizer";
|
|
58
59
|
/* empty css */
|
|
59
|
-
import "../../Button/Button.css.js";
|
|
60
60
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
61
61
|
import "../../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
|
|
62
62
|
import "../../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
|
|
@@ -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_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';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_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';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_9w33l_1";
|
|
2
|
+
const wrapper = "_wrapper_9w33l_5";
|
|
3
|
+
const header_main_row = "_header_main_row_9w33l_10";
|
|
4
|
+
const mobile_header = "_mobile_header_9w33l_11";
|
|
5
|
+
const logo_wrap = "_logo_wrap_9w33l_17";
|
|
6
|
+
const primary_links = "_primary_links_9w33l_21";
|
|
7
|
+
const main_nav_link = "_main_nav_link_9w33l_25";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_9w33l_57";
|
|
9
|
+
const signin_wrap = "_signin_wrap_9w33l_59";
|
|
10
|
+
const signin_btn = "_signin_btn_9w33l_60";
|
|
11
|
+
const header_sub_row = "_header_sub_row_9w33l_98";
|
|
12
|
+
const signin_dropdown = "_signin_dropdown_9w33l_118";
|
|
13
|
+
const shadow = "_shadow_9w33l_128";
|
|
14
|
+
const signin_header = "_signin_header_9w33l_136";
|
|
15
|
+
const signin_subheader = "_signin_subheader_9w33l_143";
|
|
16
|
+
const opacity = "_opacity_9w33l_165";
|
|
17
|
+
const fadeInDown = "_fadeInDown_9w33l_1";
|
|
18
|
+
const footer = "_footer_9w33l_171";
|
|
19
|
+
const open = "_open_9w33l_187";
|
|
20
|
+
const dd_wrapper = "_dd_wrapper_9w33l_199";
|
|
21
|
+
const dd_media = "_dd_media_9w33l_204";
|
|
22
|
+
const dd_media_img = "_dd_media_img_9w33l_209";
|
|
23
|
+
const dd_site_navs = "_dd_site_navs_9w33l_213";
|
|
24
|
+
const dd_media_header = "_dd_media_header_9w33l_220";
|
|
25
|
+
const mt_8 = "_mt_8_9w33l_229";
|
|
26
|
+
const mt_16 = "_mt_16_9w33l_233";
|
|
27
|
+
const ml_8 = "_ml_8_9w33l_237";
|
|
28
|
+
const dd_media_cta = "_dd_media_cta_9w33l_241";
|
|
29
|
+
const reversed_row = "_reversed_row_9w33l_255";
|
|
30
|
+
const headline = "_headline_9w33l_271";
|
|
31
|
+
const nav_anchor = "_nav_anchor_9w33l_277";
|
|
32
|
+
const headline_cta = "_headline_cta_9w33l_285";
|
|
33
|
+
const site_lists = "_site_lists_9w33l_300";
|
|
34
|
+
const hamburger = "_hamburger_9w33l_335";
|
|
35
|
+
const mobile_only = "_mobile_only_9w33l_349";
|
|
36
|
+
const mobile_logo = "_mobile_logo_9w33l_355";
|
|
37
|
+
const highlight = "_highlight_9w33l_360";
|
|
38
|
+
const mobile_nav = "_mobile_nav_9w33l_396";
|
|
39
|
+
const mobile_opened = "_mobile_opened_9w33l_407";
|
|
40
|
+
const mobile_nav_item = "_mobile_nav_item_9w33l_415";
|
|
41
|
+
const has_dropdown = "_has_dropdown_9w33l_430";
|
|
42
|
+
const icon_wrap = "_icon_wrap_9w33l_451";
|
|
43
|
+
const mobile_footer = "_mobile_footer_9w33l_456";
|
|
44
|
+
const mobile_footer_content = "_mobile_footer_content_9w33l_461";
|
|
45
|
+
const mobile_footer_media = "_mobile_footer_media_9w33l_476";
|
|
46
|
+
const footer_cta = "_footer_cta_9w33l_482";
|
|
47
|
+
const inner_wrapper = "_inner_wrapper_9w33l_510";
|
|
48
|
+
const btn = "_btn_9w33l_515";
|
|
49
|
+
const sub_menu = "_sub_menu_9w33l_520";
|
|
50
|
+
const main = "_main_9w33l_25";
|
|
51
|
+
const dd_footer = "_dd_footer_9w33l_545";
|
|
52
|
+
const desktop_only = "_desktop_only_9w33l_564";
|
|
53
53
|
const styles = {
|
|
54
54
|
header,
|
|
55
55
|
wrapper,
|