@axos-web-dev/shared-components 2.2.27 → 2.2.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/dist/ATMLocator/ATMLocator.js +1 -1
- package/dist/Auth/ErrorAlert.js +1 -1
- package/dist/Button/Button.js +1 -1
- package/dist/Calculators/ApyCalculator/index.js +76 -4
- package/dist/Calculators/Calculator.js +1 -1
- package/dist/Calculators/MarginTradingCalculator/index.js +1 -1
- package/dist/Carousel/index.js +1 -1
- package/dist/Chatbot/Bubble.css.js +0 -1
- package/dist/Chatbot/Chatbot.css.js +1 -0
- package/dist/Chevron/index.js +1 -1
- package/dist/Comparison/Comparison.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
- package/dist/FaqAccordion/index.js +1 -1
- package/dist/FdicCallout/index.js +1 -1
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +10 -1
- package/dist/Forms/ApplyNow.js +1 -1
- package/dist/Forms/CommercialTrustAndEstate.d.ts +15 -0
- package/dist/Forms/CommercialTrustAndEstate.js +237 -0
- package/dist/Forms/ContactUsBusiness.js +1 -1
- package/dist/Forms/ContactUsBusinessNameEmail.js +1 -1
- package/dist/Forms/ContactUsNMLSId.js +1 -1
- package/dist/Forms/ContactUsSchwabAAS.js +43 -26
- package/dist/Forms/CpraRequest.js +1 -1
- package/dist/Forms/CraPublicFile.js +1 -1
- package/dist/Forms/EmailOnly.js +1 -1
- package/dist/Forms/Forms.css.d.ts +1 -0
- package/dist/Forms/Forms.css.js +3 -1
- package/dist/Forms/MortgageRate/MortgageRateForm.js +1 -1
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +1 -1
- package/dist/Forms/MortgageWarehouseLending.js +1 -1
- package/dist/Forms/SuccesForm.js +1 -1
- package/dist/Forms/index.d.ts +1 -0
- package/dist/Forms/index.js +4 -1
- package/dist/Hyperlink/index.js +1 -1
- package/dist/ImageLink/ImageLink.js +1 -1
- package/dist/ImageLink/ImageLinkSet.js +1 -1
- package/dist/ImageLink/index.js +1 -1
- package/dist/ImageToast/index.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/LandingPageHeader/WithLogin.js +1 -1
- package/dist/Modal/Modal.js +1 -1
- package/dist/NavigationMenu/AxosALTS/index.js +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.js +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +1 -0
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +3 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +10 -1
- package/dist/NavigationMenu/AxosBank/index.js +1 -1
- package/dist/NavigationMenu/LaVictoire/index.js +1 -1
- package/dist/NavigationMenu/Navbar.js +1 -1
- package/dist/NavigationMenu/SignInNavButton.js +1 -1
- package/dist/SetContainer/SetContainer.js +1 -1
- package/dist/SocialMediaBar/iconsRepository.js +1 -1
- package/dist/VideoTile/VideoTile.js +1 -1
- package/dist/VideoWrapper/index.js +1 -1
- package/dist/assets/Forms/Forms.css +6 -1
- package/dist/main.js +4 -1
- package/package.json +1 -1
|
@@ -52,6 +52,40 @@ const ContactUsSchwabAAS = ({
|
|
|
52
52
|
id
|
|
53
53
|
}) => {
|
|
54
54
|
const cachedEmailValidator = useCachedEmailValidator(validateEmail);
|
|
55
|
+
const isOptionalFieldsMode = typeof window !== "undefined" && new URLSearchParams(window.location.search).get("type")?.toLowerCase() === "optional";
|
|
56
|
+
const phoneSchema = isOptionalFieldsMode ? z.string().trim().optional().or(z.literal("")).refine((val) => val == null || val === "" || /[\d-]{10}/.test(val), {
|
|
57
|
+
message: "Invalid phone number."
|
|
58
|
+
}).transform((val) => {
|
|
59
|
+
if (!val) return "";
|
|
60
|
+
const removeDashes = val.replace(/-/gi, "");
|
|
61
|
+
if (removeDashes.length !== 10) {
|
|
62
|
+
return z.NEVER;
|
|
63
|
+
}
|
|
64
|
+
if (removeDashes.endsWith("00000") || removeDashes.startsWith("999") || removeDashes.length === 10 && /^[01]/.test(removeDashes)) {
|
|
65
|
+
return z.NEVER;
|
|
66
|
+
}
|
|
67
|
+
return removeDashes;
|
|
68
|
+
}) : z.string({ message: "Phone is required." }).regex(/[\d-]{10}/, "Invalid phone number.").min(10, { message: "Phone is required." }).max(12, { message: "Phone is required." }).transform((val, ctx) => {
|
|
69
|
+
const removeDashes = val.replace(/-/gi, "");
|
|
70
|
+
if (removeDashes.length !== 10) {
|
|
71
|
+
ctx.addIssue({
|
|
72
|
+
code: z.ZodIssueCode.custom,
|
|
73
|
+
message: "Phone must have at least 10 and no more than 10 characters."
|
|
74
|
+
});
|
|
75
|
+
return z.NEVER;
|
|
76
|
+
}
|
|
77
|
+
if (removeDashes.endsWith("00000") || removeDashes.startsWith("999") || removeDashes.length === 10 && /^[01]/.test(removeDashes)) {
|
|
78
|
+
ctx.addIssue({
|
|
79
|
+
code: z.ZodIssueCode.custom,
|
|
80
|
+
message: "Invalid phone number."
|
|
81
|
+
});
|
|
82
|
+
return z.NEVER;
|
|
83
|
+
}
|
|
84
|
+
return removeDashes;
|
|
85
|
+
});
|
|
86
|
+
const roleSchema = isOptionalFieldsMode ? z.string().trim().optional().or(z.literal("")).refine((val) => val == null || val === "" || Roles.includes(val), {
|
|
87
|
+
message: "Role is required"
|
|
88
|
+
}) : z.string().min(1, { message: "Role is required." }).refine((val) => Roles.includes(val), "Role is required");
|
|
55
89
|
const schema = z.object({
|
|
56
90
|
first_name: z.string({ message: "First name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
57
91
|
message: "Invalid first name"
|
|
@@ -60,29 +94,12 @@ const ContactUsSchwabAAS = ({
|
|
|
60
94
|
message: "Invalid last name"
|
|
61
95
|
}).trim().min(1, { message: "Last Name is required." }),
|
|
62
96
|
email: z.string({ message: "Email is required." }).email({ message: "Email is required." }).refine(cachedEmailValidator, { message: "Invalid email address." }),
|
|
63
|
-
phone:
|
|
64
|
-
const removeDashes = val.replace(/-/gi, "");
|
|
65
|
-
if (removeDashes.length !== 10) {
|
|
66
|
-
ctx.addIssue({
|
|
67
|
-
code: z.ZodIssueCode.custom,
|
|
68
|
-
message: "Phone must have at least 10 and no more than 10 characters."
|
|
69
|
-
});
|
|
70
|
-
return z.NEVER;
|
|
71
|
-
}
|
|
72
|
-
if (removeDashes.endsWith("00000") || removeDashes.startsWith("999") || removeDashes.length === 10 && /^[01]/.test(removeDashes)) {
|
|
73
|
-
ctx.addIssue({
|
|
74
|
-
code: z.ZodIssueCode.custom,
|
|
75
|
-
message: "Invalid phone number."
|
|
76
|
-
});
|
|
77
|
-
return z.NEVER;
|
|
78
|
-
}
|
|
79
|
-
return removeDashes;
|
|
80
|
-
}),
|
|
97
|
+
phone: phoneSchema,
|
|
81
98
|
company: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
|
|
82
99
|
message: "Invalid company name"
|
|
83
100
|
}).trim().optional().or(z.literal("")),
|
|
84
101
|
Current_Assets_Under_Management__c: z.union([z.string(), z.undefined()]),
|
|
85
|
-
Role__c:
|
|
102
|
+
Role__c: roleSchema,
|
|
86
103
|
description: z.optional(z.string().trim().max(32e3))
|
|
87
104
|
});
|
|
88
105
|
const gen_schema = schema.merge(SalesforceSchema).merge(honeyPotSchema).superRefine((data, ctx) => {
|
|
@@ -183,14 +200,14 @@ const ContactUsSchwabAAS = ({
|
|
|
183
200
|
{
|
|
184
201
|
id: "phone",
|
|
185
202
|
...register("phone", {
|
|
186
|
-
required:
|
|
203
|
+
required: !isOptionalFieldsMode,
|
|
187
204
|
maxLength: 12
|
|
188
205
|
}),
|
|
189
|
-
label: "Phone*",
|
|
206
|
+
label: isOptionalFieldsMode ? "Phone" : "Phone*",
|
|
190
207
|
sizes: "medium",
|
|
191
208
|
placeholder: "",
|
|
192
209
|
type: "tel",
|
|
193
|
-
required:
|
|
210
|
+
required: !isOptionalFieldsMode,
|
|
194
211
|
error: !!errors.phone,
|
|
195
212
|
helperText: errors.phone?.message,
|
|
196
213
|
variant
|
|
@@ -214,15 +231,15 @@ const ContactUsSchwabAAS = ({
|
|
|
214
231
|
{
|
|
215
232
|
id: "Role__c",
|
|
216
233
|
...register("Role__c", {
|
|
217
|
-
required:
|
|
234
|
+
required: !isOptionalFieldsMode
|
|
218
235
|
}),
|
|
219
|
-
label: "What best describes your role?*",
|
|
236
|
+
label: isOptionalFieldsMode ? "What best describes your role?" : "What best describes your role?*",
|
|
220
237
|
sizes: "medium",
|
|
221
|
-
required:
|
|
238
|
+
required: !isOptionalFieldsMode,
|
|
222
239
|
error: !!errors.Role__c,
|
|
223
240
|
helperText: errors.Role__c?.message,
|
|
224
241
|
variant,
|
|
225
|
-
defaultValue: "Select option",
|
|
242
|
+
defaultValue: isOptionalFieldsMode ? "" : "Select option",
|
|
226
243
|
children: [
|
|
227
244
|
/* @__PURE__ */ jsx("option", { value: "Select option", disabled: true, children: "Select Option" }),
|
|
228
245
|
/* @__PURE__ */ jsx("option", { value: "RIA Principal", children: "RIA Principal" }),
|
|
@@ -83,10 +83,10 @@ import "../Auth/SignInPassword.js";
|
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Carousel/index.js";
|
|
85
85
|
/* empty css */
|
|
86
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
87
86
|
/* empty css */
|
|
88
87
|
import "../Chatbot/store/chat.js";
|
|
89
88
|
import "../Chatbot/Chatbot.js";
|
|
89
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
90
90
|
/* empty css */
|
|
91
91
|
import "../Chatbot/store/messages.js";
|
|
92
92
|
/* empty css */
|
|
@@ -83,10 +83,10 @@ import "../Auth/SignInPassword.js";
|
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Carousel/index.js";
|
|
85
85
|
/* empty css */
|
|
86
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
87
86
|
/* empty css */
|
|
88
87
|
import "../Chatbot/store/chat.js";
|
|
89
88
|
import "../Chatbot/Chatbot.js";
|
|
89
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
90
90
|
/* empty css */
|
|
91
91
|
import "../Chatbot/store/messages.js";
|
|
92
92
|
/* empty css */
|
package/dist/Forms/EmailOnly.js
CHANGED
|
@@ -84,10 +84,10 @@ import "../Auth/SignInPassword.js";
|
|
|
84
84
|
/* empty css */
|
|
85
85
|
import "../Carousel/index.js";
|
|
86
86
|
/* empty css */
|
|
87
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
88
87
|
/* empty css */
|
|
89
88
|
import "../Chatbot/store/chat.js";
|
|
90
89
|
import "../Chatbot/Chatbot.js";
|
|
90
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
91
91
|
/* empty css */
|
|
92
92
|
import "../Chatbot/store/messages.js";
|
|
93
93
|
/* empty css */
|
|
@@ -212,4 +212,5 @@ export declare const back_btn_apply_now: string;
|
|
|
212
212
|
export declare const iconbillboards_option_apply_now: string;
|
|
213
213
|
export declare const form_nav_apply_now: string;
|
|
214
214
|
export declare const step_title_apply_now: string;
|
|
215
|
+
export declare const submitErrorText: string;
|
|
215
216
|
export declare const email_only_btn: string;
|
package/dist/Forms/Forms.css.js
CHANGED
|
@@ -55,7 +55,8 @@ var back_btn_apply_now = "tfms6a2d";
|
|
|
55
55
|
var iconbillboards_option_apply_now = "tfms6a2e";
|
|
56
56
|
var form_nav_apply_now = "tfms6a2f";
|
|
57
57
|
var step_title_apply_now = "tfms6a2g";
|
|
58
|
-
var
|
|
58
|
+
var submitErrorText = "tfms6a2h";
|
|
59
|
+
var email_only_btn = "tfms6a2i";
|
|
59
60
|
export {
|
|
60
61
|
actions,
|
|
61
62
|
apply_now_form,
|
|
@@ -97,6 +98,7 @@ export {
|
|
|
97
98
|
section_title,
|
|
98
99
|
show_options,
|
|
99
100
|
step_title_apply_now,
|
|
101
|
+
submitErrorText,
|
|
100
102
|
succes_check_mark,
|
|
101
103
|
success_circle,
|
|
102
104
|
success_icon,
|
|
@@ -84,10 +84,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
84
84
|
/* empty css */
|
|
85
85
|
import "../../Carousel/index.js";
|
|
86
86
|
/* empty css */
|
|
87
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
88
87
|
/* empty css */
|
|
89
88
|
import "../../Chatbot/store/chat.js";
|
|
90
89
|
import "../../Chatbot/Chatbot.js";
|
|
90
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
91
91
|
/* empty css */
|
|
92
92
|
import "../../Chatbot/store/messages.js";
|
|
93
93
|
/* empty css */
|
|
@@ -79,10 +79,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
79
79
|
/* empty css */
|
|
80
80
|
import "../../Carousel/index.js";
|
|
81
81
|
/* empty css */
|
|
82
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
82
|
/* empty css */
|
|
84
83
|
import "../../Chatbot/store/chat.js";
|
|
85
84
|
import "../../Chatbot/Chatbot.js";
|
|
85
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
86
86
|
/* empty css */
|
|
87
87
|
import "../../Chatbot/store/messages.js";
|
|
88
88
|
/* empty css */
|
|
@@ -83,10 +83,10 @@ import "../Auth/SignInPassword.js";
|
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Carousel/index.js";
|
|
85
85
|
/* empty css */
|
|
86
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
87
86
|
/* empty css */
|
|
88
87
|
import "../Chatbot/store/chat.js";
|
|
89
88
|
import "../Chatbot/Chatbot.js";
|
|
89
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
90
90
|
/* empty css */
|
|
91
91
|
import "../Chatbot/store/messages.js";
|
|
92
92
|
/* empty css */
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -66,10 +66,10 @@ import "../Auth/SignInPassword.js";
|
|
|
66
66
|
/* empty css */
|
|
67
67
|
import "../Carousel/index.js";
|
|
68
68
|
/* empty css */
|
|
69
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
70
69
|
/* empty css */
|
|
71
70
|
import "../Chatbot/store/chat.js";
|
|
72
71
|
import "../Chatbot/Chatbot.js";
|
|
72
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
73
73
|
import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
74
74
|
import "react-use";
|
|
75
75
|
/* empty css */
|
package/dist/Forms/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './CommercialDepositsACS';
|
|
|
7
7
|
export * from './CommercialDepositsNoLendingOption';
|
|
8
8
|
export * from './CommercialLending';
|
|
9
9
|
export * from './CommercialPremiumFinance';
|
|
10
|
+
export * from './CommercialTrustAndEstate';
|
|
10
11
|
export * from './ConstructionLendingDynamic';
|
|
11
12
|
export * from './ContactCompany';
|
|
12
13
|
export * from './ContactCompanyTitle';
|
package/dist/Forms/index.js
CHANGED
|
@@ -8,6 +8,7 @@ import { CommercialDepositsACS } from "./CommercialDepositsACS.js";
|
|
|
8
8
|
import { CommercialDepositsNoLendingOption } from "./CommercialDepositsNoLendingOption.js";
|
|
9
9
|
import { CommercialLending } from "./CommercialLending.js";
|
|
10
10
|
import { CommercialPremiumFinance } from "./CommercialPremiumFinance.js";
|
|
11
|
+
import { CommercialTrustAndEstate } from "./CommercialTrustAndEstate.js";
|
|
11
12
|
import { ConstructionLendingDynamic } from "./ConstructionLendingDynamic.js";
|
|
12
13
|
import { ContactCompany } from "./ContactCompany.js";
|
|
13
14
|
import { ContactCompanyTitle } from "./ContactCompanyTitle.js";
|
|
@@ -23,7 +24,7 @@ import { CraPublicFile } from "./CraPublicFile.js";
|
|
|
23
24
|
import { DealerServices } from "./DealerServices.js";
|
|
24
25
|
import { EmailOnly } from "./EmailOnly.js";
|
|
25
26
|
import { EmailUs } from "./EmailUs.js";
|
|
26
|
-
import { actions, apply_now_form, axosHeader, back_btn_apply_now, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, email_only_btn, email_only_h2, email_only_padding, form, formBtns, formContainer, formWrapper, form_nav_apply_now, form_row, fullRowForm, fullRowSelect, headerContainer, headerF, 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, step_title_apply_now, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms.css.js";
|
|
27
|
+
import { actions, apply_now_form, axosHeader, back_btn_apply_now, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, email_only_btn, email_only_h2, email_only_padding, form, formBtns, formContainer, formWrapper, form_nav_apply_now, form_row, fullRowForm, fullRowSelect, headerContainer, headerF, 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, step_title_apply_now, submitErrorText, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms.css.js";
|
|
27
28
|
import { HoneyPot, honeyPotSchema, isValidHoneyPot } from "./HoneyPot/index.js";
|
|
28
29
|
import { MortgageRate } from "./MortgageRate/MortgageRateForm.js";
|
|
29
30
|
import "react/jsx-runtime";
|
|
@@ -54,6 +55,7 @@ export {
|
|
|
54
55
|
CommercialDepositsNoLendingOption,
|
|
55
56
|
CommercialLending,
|
|
56
57
|
CommercialPremiumFinance,
|
|
58
|
+
CommercialTrustAndEstate,
|
|
57
59
|
ConstructionLendingDynamic,
|
|
58
60
|
ContactCompany,
|
|
59
61
|
ContactCompanyTitle,
|
|
@@ -129,6 +131,7 @@ export {
|
|
|
129
131
|
section_title,
|
|
130
132
|
show_options,
|
|
131
133
|
step_title_apply_now,
|
|
134
|
+
submitErrorText,
|
|
132
135
|
succes_check_mark,
|
|
133
136
|
success_circle,
|
|
134
137
|
success_icon,
|
package/dist/Hyperlink/index.js
CHANGED
|
@@ -76,10 +76,10 @@ import "../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../Chatbot/store/chat.js";
|
|
82
81
|
import "../Chatbot/Chatbot.js";
|
|
82
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
|
@@ -71,10 +71,10 @@ import "../Auth/SignInPassword.js";
|
|
|
71
71
|
/* empty css */
|
|
72
72
|
import "../Carousel/index.js";
|
|
73
73
|
/* empty css */
|
|
74
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
75
74
|
/* empty css */
|
|
76
75
|
import "../Chatbot/store/chat.js";
|
|
77
76
|
import "../Chatbot/Chatbot.js";
|
|
77
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../Chatbot/store/messages.js";
|
|
80
80
|
/* empty css */
|
|
@@ -76,10 +76,10 @@ import "../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../Chatbot/store/chat.js";
|
|
82
81
|
import "../Chatbot/Chatbot.js";
|
|
82
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
package/dist/ImageLink/index.js
CHANGED
|
@@ -74,10 +74,10 @@ import "../Auth/SignInPassword.js";
|
|
|
74
74
|
/* empty css */
|
|
75
75
|
import "../Carousel/index.js";
|
|
76
76
|
/* empty css */
|
|
77
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
78
77
|
/* empty css */
|
|
79
78
|
import "../Chatbot/store/chat.js";
|
|
80
79
|
import "../Chatbot/Chatbot.js";
|
|
80
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
81
81
|
/* empty css */
|
|
82
82
|
import "../Chatbot/store/messages.js";
|
|
83
83
|
/* empty css */
|
package/dist/ImageToast/index.js
CHANGED
|
@@ -78,10 +78,10 @@ import "../Auth/SignInPassword.js";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../Carousel/index.js";
|
|
80
80
|
/* empty css */
|
|
81
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
82
81
|
/* empty css */
|
|
83
82
|
import "../Chatbot/store/chat.js";
|
|
84
83
|
import "../Chatbot/Chatbot.js";
|
|
84
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
85
|
/* empty css */
|
|
86
86
|
import "../Chatbot/store/messages.js";
|
|
87
87
|
/* empty css */
|
|
@@ -78,10 +78,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../../Carousel/index.js";
|
|
80
80
|
/* empty css */
|
|
81
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
82
81
|
/* empty css */
|
|
83
82
|
import "../../Chatbot/store/chat.js";
|
|
84
83
|
import "../../Chatbot/Chatbot.js";
|
|
84
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
85
|
/* empty css */
|
|
86
86
|
import "../../Chatbot/store/messages.js";
|
|
87
87
|
/* empty css */
|
|
@@ -78,10 +78,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../../Carousel/index.js";
|
|
80
80
|
/* empty css */
|
|
81
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
82
81
|
/* empty css */
|
|
83
82
|
import "../../Chatbot/store/chat.js";
|
|
84
83
|
import "../../Chatbot/Chatbot.js";
|
|
84
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
85
|
/* empty css */
|
|
86
86
|
import "../../Chatbot/store/messages.js";
|
|
87
87
|
/* empty css */
|
|
@@ -76,10 +76,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../../Chatbot/store/chat.js";
|
|
82
81
|
import "../../Chatbot/Chatbot.js";
|
|
82
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
|
@@ -82,10 +82,10 @@ import "../Auth/SignInPassword.js";
|
|
|
82
82
|
/* empty css */
|
|
83
83
|
import "../Carousel/index.js";
|
|
84
84
|
/* empty css */
|
|
85
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
86
85
|
/* empty css */
|
|
87
86
|
import "../Chatbot/store/chat.js";
|
|
88
87
|
import "../Chatbot/Chatbot.js";
|
|
88
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
89
89
|
/* empty css */
|
|
90
90
|
import "../Chatbot/store/messages.js";
|
|
91
91
|
/* empty css */
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -76,10 +76,10 @@ import "../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../Chatbot/store/chat.js";
|
|
82
81
|
import "../Chatbot/Chatbot.js";
|
|
82
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
|
@@ -77,10 +77,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
77
77
|
/* empty css */
|
|
78
78
|
import "../../Carousel/index.js";
|
|
79
79
|
/* empty css */
|
|
80
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
81
80
|
/* empty css */
|
|
82
81
|
import "../../Chatbot/store/chat.js";
|
|
83
82
|
import "../../Chatbot/Chatbot.js";
|
|
83
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
84
84
|
/* empty css */
|
|
85
85
|
import "../../Chatbot/store/messages.js";
|
|
86
86
|
/* empty css */
|
|
@@ -81,10 +81,10 @@ import "../../../Auth/SignInPassword.js";
|
|
|
81
81
|
/* empty css */
|
|
82
82
|
import "../../../Carousel/index.js";
|
|
83
83
|
/* empty css */
|
|
84
|
-
import "../../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
84
|
/* empty css */
|
|
86
85
|
import "../../../Chatbot/store/chat.js";
|
|
87
86
|
import "../../../Chatbot/Chatbot.js";
|
|
87
|
+
import "../../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
88
88
|
/* empty css */
|
|
89
89
|
import "../../../Chatbot/store/messages.js";
|
|
90
90
|
/* empty css */
|
|
@@ -156,6 +156,7 @@ export declare const getMenuData: (resolveUrl: UrlResolver) => {
|
|
|
156
156
|
"Hedge Funds & Alternative Fund Banking Solutions": string;
|
|
157
157
|
"Middle Market": string;
|
|
158
158
|
"Technology & Life Sciences Banking": string;
|
|
159
|
+
"Trust & Estate": string;
|
|
159
160
|
};
|
|
160
161
|
Services: {
|
|
161
162
|
"Commercial Banking Services Home": string;
|
|
@@ -279,6 +279,9 @@ const getMenuData = (resolveUrl) => ({
|
|
|
279
279
|
),
|
|
280
280
|
"Technology & Life Sciences Banking": resolveUrl(
|
|
281
281
|
"{AXOSBANK}/commercial/banking/technology-and-life-sciences-banking"
|
|
282
|
+
),
|
|
283
|
+
"Trust & Estate": resolveUrl(
|
|
284
|
+
"{AXOSBANK}/commercial/banking/trust-and-estate"
|
|
282
285
|
)
|
|
283
286
|
},
|
|
284
287
|
Services: {
|
|
@@ -78,10 +78,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../../Carousel/index.js";
|
|
80
80
|
/* empty css */
|
|
81
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
82
81
|
/* empty css */
|
|
83
82
|
import "../../Chatbot/store/chat.js";
|
|
84
83
|
import "../../Chatbot/Chatbot.js";
|
|
84
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
85
|
/* empty css */
|
|
86
86
|
import "../../Chatbot/store/messages.js";
|
|
87
87
|
/* empty css */
|
|
@@ -2509,6 +2509,15 @@ function SubNavBar() {
|
|
|
2509
2509
|
),
|
|
2510
2510
|
children: "Technology & Life Sciences Banking"
|
|
2511
2511
|
}
|
|
2512
|
+
) }),
|
|
2513
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2514
|
+
Link,
|
|
2515
|
+
{
|
|
2516
|
+
href: resolveUrl(
|
|
2517
|
+
"{AXOSBANK}/commercial/banking/trust-and-estate"
|
|
2518
|
+
),
|
|
2519
|
+
children: "Trust & Estate"
|
|
2520
|
+
}
|
|
2512
2521
|
) })
|
|
2513
2522
|
] })
|
|
2514
2523
|
] }),
|
|
@@ -79,10 +79,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
79
79
|
/* empty css */
|
|
80
80
|
import "../../Carousel/index.js";
|
|
81
81
|
/* empty css */
|
|
82
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
82
|
/* empty css */
|
|
84
83
|
import "../../Chatbot/store/chat.js";
|
|
85
84
|
import "../../Chatbot/Chatbot.js";
|
|
85
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
86
86
|
/* empty css */
|
|
87
87
|
import "../../Chatbot/store/messages.js";
|
|
88
88
|
/* empty css */
|
|
@@ -79,10 +79,10 @@ import "../../Auth/SignInPassword.js";
|
|
|
79
79
|
/* empty css */
|
|
80
80
|
import "../../Carousel/index.js";
|
|
81
81
|
/* empty css */
|
|
82
|
-
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
82
|
/* empty css */
|
|
84
83
|
import "../../Chatbot/store/chat.js";
|
|
85
84
|
import "../../Chatbot/Chatbot.js";
|
|
85
|
+
import "../../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
86
86
|
/* empty css */
|
|
87
87
|
import "../../Chatbot/store/messages.js";
|
|
88
88
|
/* empty css */
|
|
@@ -78,10 +78,10 @@ import "../Auth/SignInPassword.js";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
import "../Carousel/index.js";
|
|
80
80
|
/* empty css */
|
|
81
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
82
81
|
/* empty css */
|
|
83
82
|
import "../Chatbot/store/chat.js";
|
|
84
83
|
import "../Chatbot/Chatbot.js";
|
|
84
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
85
85
|
/* empty css */
|
|
86
86
|
import "../Chatbot/store/messages.js";
|
|
87
87
|
/* empty css */
|
|
@@ -79,10 +79,10 @@ import "../Auth/SignInPassword.js";
|
|
|
79
79
|
/* empty css */
|
|
80
80
|
import "../Carousel/index.js";
|
|
81
81
|
/* empty css */
|
|
82
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
82
|
/* empty css */
|
|
84
83
|
import "../Chatbot/store/chat.js";
|
|
85
84
|
import "../Chatbot/Chatbot.js";
|
|
85
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
86
86
|
/* empty css */
|
|
87
87
|
import "../Chatbot/store/messages.js";
|
|
88
88
|
/* empty css */
|
|
@@ -76,10 +76,10 @@ import "../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../Chatbot/store/chat.js";
|
|
82
81
|
import "../Chatbot/Chatbot.js";
|
|
82
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
|
@@ -76,10 +76,10 @@ import "../Auth/SignInPassword.js";
|
|
|
76
76
|
/* empty css */
|
|
77
77
|
import "../Carousel/index.js";
|
|
78
78
|
/* empty css */
|
|
79
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
80
79
|
/* empty css */
|
|
81
80
|
import "../Chatbot/store/chat.js";
|
|
82
81
|
import "../Chatbot/Chatbot.js";
|
|
82
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
83
83
|
/* empty css */
|
|
84
84
|
import "../Chatbot/store/messages.js";
|
|
85
85
|
/* empty css */
|
|
@@ -84,10 +84,10 @@ import "../Auth/SignInPassword.js";
|
|
|
84
84
|
/* empty css */
|
|
85
85
|
import "../Carousel/index.js";
|
|
86
86
|
/* empty css */
|
|
87
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
88
87
|
/* empty css */
|
|
89
88
|
import "../Chatbot/store/chat.js";
|
|
90
89
|
import "../Chatbot/Chatbot.js";
|
|
90
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
91
91
|
/* empty css */
|
|
92
92
|
import "../Chatbot/store/messages.js";
|
|
93
93
|
/* empty css */
|
|
@@ -77,10 +77,10 @@ import "../Auth/SignInPassword.js";
|
|
|
77
77
|
/* empty css */
|
|
78
78
|
import "../Carousel/index.js";
|
|
79
79
|
/* empty css */
|
|
80
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
81
80
|
/* empty css */
|
|
82
81
|
import "../Chatbot/store/chat.js";
|
|
83
82
|
import "../Chatbot/Chatbot.js";
|
|
83
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
84
84
|
/* empty css */
|
|
85
85
|
import "../Chatbot/store/messages.js";
|
|
86
86
|
/* empty css */
|
|
@@ -405,6 +405,11 @@
|
|
|
405
405
|
max-width: fit-content;
|
|
406
406
|
}
|
|
407
407
|
.tfms6a2h {
|
|
408
|
+
color: var(--_1073cm8t);
|
|
409
|
+
text-align: center;
|
|
410
|
+
margin-top: 16px;
|
|
411
|
+
}
|
|
412
|
+
.tfms6a2i {
|
|
408
413
|
padding: 16px 64px;
|
|
409
414
|
border-radius: 0 8px 8px 0;
|
|
410
415
|
}
|
|
@@ -412,7 +417,7 @@
|
|
|
412
417
|
.tfms6a0 {
|
|
413
418
|
font-size: 28px;
|
|
414
419
|
}
|
|
415
|
-
.
|
|
420
|
+
.tfms6a2i {
|
|
416
421
|
padding: 16px;
|
|
417
422
|
}
|
|
418
423
|
}
|