@axos-web-dev/shared-components 0.0.151 → 0.0.153
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/ATMLocator/ATMLocator.js +1 -0
- package/dist/Avatar/Avatar.module.js +7 -7
- package/dist/Blockquote/Blockquote.module.js +3 -3
- package/dist/Button/Button.js +1 -0
- package/dist/Calculators/Calculator.js +1 -0
- package/dist/Calculators/MarginTradingCalculator/index.js +4 -4
- package/dist/Carousel/index.js +1 -0
- package/dist/Chevron/index.js +1 -0
- package/dist/Comparison/Comparison.js +1 -0
- package/dist/FaqAccordion/index.js +1 -0
- package/dist/FdicCallout/FdicCallout.module.js +2 -2
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.d.ts +3 -1
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +43 -38
- package/dist/Forms/ContactUsBusiness.js +1 -0
- package/dist/Forms/ContactUsNMLSId.js +1 -0
- package/dist/Forms/CpraRequest.js +28 -2
- package/dist/Forms/EmailOnly.js +1 -0
- package/dist/Forms/MortgageRate/MortgageRateForm.js +11 -1
- package/dist/Forms/MortgageRate/MortgageRateQuoteFilters.d.ts +17 -4
- package/dist/Forms/MortgageRate/MortgageRateQuoteFilters.js +45 -27
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +1 -0
- package/dist/Forms/SalesforceFieldsForm.d.ts +6 -6
- package/dist/Forms/SalesforceFieldsForm.js +2 -2
- package/dist/Forms/SuccesForm.js +1 -0
- package/dist/Hyperlink/index.js +1 -0
- package/dist/ImageLink/ImageLink.js +1 -0
- package/dist/ImageLink/ImageLinkSet.js +1 -0
- package/dist/ImageLink/index.js +1 -0
- package/dist/Input/DownPaymentInput.js +0 -1
- package/dist/Insight/Featured/CategorySelector.js +1 -0
- package/dist/Insight/Featured/Featured.js +1 -1
- package/dist/Insight/Featured/Header.css.d.ts +5 -0
- package/dist/Insight/Featured/Header.css.js +13 -0
- package/dist/Insight/Featured/Header.d.ts +7 -0
- package/dist/Insight/Featured/Header.js +129 -0
- package/dist/Insight/Featured/index.d.ts +1 -0
- package/dist/Insight/Featured/index.js +2 -0
- package/dist/Insight/index.js +2 -0
- package/dist/Interstitial/Interstitial.module.js +10 -10
- package/dist/Modal/Modal.js +1 -0
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +54 -54
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +55 -55
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +55 -55
- package/dist/NavigationMenu/AxosBank/NavData.js +1 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -0
- package/dist/NavigationMenu/AxosBank/index.js +1 -0
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
- package/dist/SetContainer/SetContainer.js +1 -0
- package/dist/assets/Avatar/Avatar.css.css +59 -59
- package/dist/assets/Blockquote/Blockquote.css.css +69 -69
- package/dist/assets/FdicCallout/FdicCallout.css.css +48 -48
- package/dist/assets/Forms/Forms.css +5 -0
- package/dist/assets/Insight/Featured/Featured.css +10 -0
- package/dist/assets/Insight/Featured/Header.css +39 -0
- package/dist/assets/Interstitial/Interstitial.css.css +141 -141
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +600 -600
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +621 -621
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +666 -666
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +458 -458
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +426 -426
- package/dist/main.js +2 -0
- package/dist/utils/allowedAxosDomains.js +2 -3
- package/package.json +1 -1
|
@@ -22,18 +22,16 @@ import { formContainer, headerContainer, headerForm, form, formWrapper, fullRowF
|
|
|
22
22
|
import { SalesforceSchema } from "../SalesforceFieldsForm.js";
|
|
23
23
|
import { LoadingIndicator } from "../../LoadingIndicator/index.js";
|
|
24
24
|
const MortgageRateFilters = ({
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
initialLoanPurpose = 1
|
|
25
|
+
formData,
|
|
26
|
+
onSubmit
|
|
29
27
|
}) => {
|
|
30
|
-
const [loanPurpose, setLoanPurpose] = useState(
|
|
28
|
+
const [loanPurpose, setLoanPurpose] = useState(formData.loanPurpose);
|
|
31
29
|
const [salesPriceVal, setSalesPriceVal] = useState(0);
|
|
32
30
|
const [isTypingDownPayment, setIsTypingDownPayment] = useState(false);
|
|
33
31
|
const [downPaymentPercentage, setDownPaymentPercentage] = useState(10);
|
|
34
32
|
const [_downPayment, setDownPayment] = useState(0);
|
|
35
33
|
const schema = z.object({
|
|
36
|
-
loanPurpose: z.number({ message: "Loan Purpose is required." })
|
|
34
|
+
loanPurpose: z.number({ message: "Loan Purpose is required." }),
|
|
37
35
|
propertyType: z.number({ message: "Property Type is required." }).positive({ message: "Property Type is required." }),
|
|
38
36
|
occupancy: z.number({ message: "Property Usage is required." }).positive({ message: "Property Usage is required." }),
|
|
39
37
|
salesPrice: z.number({ message: "Purchase Price is required." }).optional().refine((val) => loanPurpose === 1 ? val != null : true, {
|
|
@@ -64,21 +62,21 @@ const MortgageRateFilters = ({
|
|
|
64
62
|
zipCode: z.number().positive({ message: "Zip Code is required." }),
|
|
65
63
|
appraisedValue: z.number({ message: "Home Price is required." }).optional().refine(
|
|
66
64
|
(val) => {
|
|
67
|
-
if (loanPurpose === 2
|
|
68
|
-
return
|
|
65
|
+
if (loanPurpose === 2) {
|
|
66
|
+
return val != null && val >= 5e4 && val <= 25e6;
|
|
69
67
|
}
|
|
70
68
|
return true;
|
|
71
69
|
},
|
|
72
|
-
{ message: "
|
|
70
|
+
{ message: "Value must be between $50,000 and $25,000,000." }
|
|
73
71
|
),
|
|
74
72
|
mortgageBalance: z.number({ message: "Mortgage Balance is required." }).optional().refine(
|
|
75
73
|
(val) => {
|
|
76
|
-
if (loanPurpose === 2
|
|
77
|
-
return
|
|
74
|
+
if (loanPurpose === 2) {
|
|
75
|
+
return val != null && val >= 5e4 && val <= 25e6;
|
|
78
76
|
}
|
|
79
77
|
return true;
|
|
80
78
|
},
|
|
81
|
-
{ message: "
|
|
79
|
+
{ message: "Value must be between $50,000 and $25,000,000." }
|
|
82
80
|
),
|
|
83
81
|
cashOut: z.number({ message: "Cash Out is required." }).optional().refine(
|
|
84
82
|
(val) => {
|
|
@@ -184,7 +182,7 @@ const MortgageRateFilters = ({
|
|
|
184
182
|
error: !!errors.propertyType,
|
|
185
183
|
helperText: errors.propertyType?.message,
|
|
186
184
|
variant: "tertiary",
|
|
187
|
-
defaultValue: "Select option",
|
|
185
|
+
defaultValue: formData.propertyType ?? "Select option",
|
|
188
186
|
children: [
|
|
189
187
|
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
190
188
|
/* @__PURE__ */ jsx("option", { value: "1", children: "Single Family Home" }),
|
|
@@ -210,7 +208,7 @@ const MortgageRateFilters = ({
|
|
|
210
208
|
error: !!errors.occupancy,
|
|
211
209
|
helperText: errors.occupancy?.message,
|
|
212
210
|
variant: "tertiary",
|
|
213
|
-
defaultValue: "Select option",
|
|
211
|
+
defaultValue: formData.occupancy ?? "Select option",
|
|
214
212
|
children: [
|
|
215
213
|
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
216
214
|
/* @__PURE__ */ jsx("option", { value: "1", children: "Primary Residence" }),
|
|
@@ -253,7 +251,8 @@ const MortgageRateFilters = ({
|
|
|
253
251
|
onFocus: (e) => {
|
|
254
252
|
const currentValue = e.target.value;
|
|
255
253
|
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
256
|
-
}
|
|
254
|
+
},
|
|
255
|
+
defaultValue: formData.salesPrice > 0 ? formatCurrency(formData.salesPrice) : ""
|
|
257
256
|
}
|
|
258
257
|
) }),
|
|
259
258
|
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
@@ -279,7 +278,8 @@ const MortgageRateFilters = ({
|
|
|
279
278
|
variant: "tertiary",
|
|
280
279
|
isTypingDownPayment,
|
|
281
280
|
setIsTypingDownPayment,
|
|
282
|
-
methods
|
|
281
|
+
methods,
|
|
282
|
+
defaultValue: formData.downPayment
|
|
283
283
|
}
|
|
284
284
|
) })
|
|
285
285
|
] }),
|
|
@@ -288,7 +288,7 @@ const MortgageRateFilters = ({
|
|
|
288
288
|
Input,
|
|
289
289
|
{
|
|
290
290
|
id: "appraisedValue",
|
|
291
|
-
type: "
|
|
291
|
+
type: "text",
|
|
292
292
|
...register("appraisedValue", {
|
|
293
293
|
required: true,
|
|
294
294
|
setValueAs: (value) => parseCurrency(value)
|
|
@@ -302,20 +302,28 @@ const MortgageRateFilters = ({
|
|
|
302
302
|
onBlur: (e) => {
|
|
303
303
|
const rawValue = e.target.value;
|
|
304
304
|
const parsedValue = parseCurrency(rawValue);
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
if (parsedValue === 0) {
|
|
306
|
+
methods.setError("appraisedValue", {
|
|
307
|
+
type: "manual",
|
|
308
|
+
message: "Purchase Price is required."
|
|
309
|
+
});
|
|
310
|
+
} else {
|
|
311
|
+
methods.setValue("appraisedValue", parsedValue);
|
|
312
|
+
e.target.value = formatCurrency(parsedValue);
|
|
313
|
+
}
|
|
307
314
|
},
|
|
308
315
|
onFocus: (e) => {
|
|
309
316
|
const currentValue = e.target.value;
|
|
310
317
|
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
311
|
-
}
|
|
318
|
+
},
|
|
319
|
+
defaultValue: formData.appraisedValue > 0 ? formatCurrency(formData.appraisedValue) : ""
|
|
312
320
|
}
|
|
313
321
|
) }),
|
|
314
322
|
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
315
323
|
Input,
|
|
316
324
|
{
|
|
317
325
|
id: "mortgageBalance",
|
|
318
|
-
type: "
|
|
326
|
+
type: "text",
|
|
319
327
|
...register("mortgageBalance", {
|
|
320
328
|
required: true,
|
|
321
329
|
setValueAs: (value) => parseCurrency(value)
|
|
@@ -329,13 +337,21 @@ const MortgageRateFilters = ({
|
|
|
329
337
|
onBlur: (e) => {
|
|
330
338
|
const rawValue = e.target.value;
|
|
331
339
|
const parsedValue = parseCurrency(rawValue);
|
|
332
|
-
|
|
333
|
-
|
|
340
|
+
if (parsedValue === 0) {
|
|
341
|
+
methods.setError("mortgageBalance", {
|
|
342
|
+
type: "manual",
|
|
343
|
+
message: "Purchase Price is required."
|
|
344
|
+
});
|
|
345
|
+
} else {
|
|
346
|
+
methods.setValue("mortgageBalance", parsedValue);
|
|
347
|
+
e.target.value = formatCurrency(parsedValue);
|
|
348
|
+
}
|
|
334
349
|
},
|
|
335
350
|
onFocus: (e) => {
|
|
336
351
|
const currentValue = e.target.value;
|
|
337
352
|
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
338
|
-
}
|
|
353
|
+
},
|
|
354
|
+
defaultValue: formData.mortgageBalance > 0 ? formatCurrency(formData.mortgageBalance) : ""
|
|
339
355
|
}
|
|
340
356
|
) })
|
|
341
357
|
] }),
|
|
@@ -353,7 +369,7 @@ const MortgageRateFilters = ({
|
|
|
353
369
|
error: !!errors.creditScore,
|
|
354
370
|
helperText: errors.creditScore?.message,
|
|
355
371
|
variant: "tertiary",
|
|
356
|
-
defaultValue: "Select option",
|
|
372
|
+
defaultValue: formData.creditScore ?? "Select option",
|
|
357
373
|
children: [
|
|
358
374
|
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
359
375
|
/* @__PURE__ */ jsx("option", { value: "740", children: "740+" }),
|
|
@@ -381,7 +397,8 @@ const MortgageRateFilters = ({
|
|
|
381
397
|
required: true,
|
|
382
398
|
error: !!errors.zipCode,
|
|
383
399
|
helperText: errors.zipCode?.message,
|
|
384
|
-
variant: "tertiary"
|
|
400
|
+
variant: "tertiary",
|
|
401
|
+
defaultValue: formData.zipCode
|
|
385
402
|
}
|
|
386
403
|
) }),
|
|
387
404
|
loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
@@ -398,7 +415,8 @@ const MortgageRateFilters = ({
|
|
|
398
415
|
required: true,
|
|
399
416
|
error: !!errors.cashOut,
|
|
400
417
|
helperText: errors.cashOut?.message,
|
|
401
|
-
variant: "tertiary"
|
|
418
|
+
variant: "tertiary",
|
|
419
|
+
defaultValue: formData.cashOut
|
|
402
420
|
}
|
|
403
421
|
) }) }) : null
|
|
404
422
|
] }),
|
|
@@ -45,8 +45,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
45
45
|
First_UTMMedium__c: z.ZodOptional<z.ZodString>;
|
|
46
46
|
First_UTMSource__c: z.ZodOptional<z.ZodString>;
|
|
47
47
|
First_UTMTerm__c: z.ZodOptional<z.ZodString>;
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
Primary_Cjdata__c: z.ZodOptional<z.ZodString>;
|
|
49
|
+
Primary_Cjevent__c: z.ZodOptional<z.ZodString>;
|
|
50
50
|
Fuutm_cjevennfatll_Web_Source__c: z.ZodOptional<z.ZodString>;
|
|
51
51
|
First_MicrosoftClickId__c: z.ZodOptional<z.ZodString>;
|
|
52
52
|
First_GoogleClickId__c: z.ZodOptional<z.ZodString>;
|
|
@@ -69,8 +69,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
69
69
|
First_UTMMedium__c?: string | undefined;
|
|
70
70
|
First_UTMSource__c?: string | undefined;
|
|
71
71
|
First_UTMTerm__c?: string | undefined;
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
Primary_Cjdata__c?: string | undefined;
|
|
73
|
+
Primary_Cjevent__c?: string | undefined;
|
|
74
74
|
Fuutm_cjevennfatll_Web_Source__c?: string | undefined;
|
|
75
75
|
First_MicrosoftClickId__c?: string | undefined;
|
|
76
76
|
First_GoogleClickId__c?: string | undefined;
|
|
@@ -93,8 +93,8 @@ export declare const SalesforceSchema: z.ZodObject<{
|
|
|
93
93
|
First_UTMMedium__c?: string | undefined;
|
|
94
94
|
First_UTMSource__c?: string | undefined;
|
|
95
95
|
First_UTMTerm__c?: string | undefined;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
Primary_Cjdata__c?: string | undefined;
|
|
97
|
+
Primary_Cjevent__c?: string | undefined;
|
|
98
98
|
Fuutm_cjevennfatll_Web_Source__c?: string | undefined;
|
|
99
99
|
First_MicrosoftClickId__c?: string | undefined;
|
|
100
100
|
First_GoogleClickId__c?: string | undefined;
|
|
@@ -24,8 +24,8 @@ const SalesforceSchema = z.object({
|
|
|
24
24
|
First_UTMMedium__c: z.string().optional(),
|
|
25
25
|
First_UTMSource__c: z.string().optional(),
|
|
26
26
|
First_UTMTerm__c: z.string().optional(),
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
Primary_Cjdata__c: z.string().optional(),
|
|
28
|
+
Primary_Cjevent__c: z.string().optional(),
|
|
29
29
|
Fuutm_cjevennfatll_Web_Source__c: z.string().optional(),
|
|
30
30
|
First_MicrosoftClickId__c: z.string().optional(),
|
|
31
31
|
First_GoogleClickId__c: z.string().optional(),
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -62,6 +62,7 @@ import "../Input/DownPaymentInput.js";
|
|
|
62
62
|
import "react-wrap-balancer";
|
|
63
63
|
/* empty css */
|
|
64
64
|
/* empty css */
|
|
65
|
+
/* empty css */
|
|
65
66
|
/* empty css */
|
|
66
67
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
67
68
|
import "../LoadingIndicator/LoadingIndicator.css.js";
|
package/dist/Hyperlink/index.js
CHANGED
package/dist/ImageLink/index.js
CHANGED
|
@@ -32,7 +32,6 @@ const DownPaymentInput = forwardRef(
|
|
|
32
32
|
const value = parseCurrency(e.target.value);
|
|
33
33
|
setDownPayment(value);
|
|
34
34
|
setIsTypingDownPayment(true);
|
|
35
|
-
console.log("handleDownPaymentChange ? yup");
|
|
36
35
|
methods.setValue("downPayment", value);
|
|
37
36
|
methods.trigger("downPayment");
|
|
38
37
|
if (salesPrice && !isTypingDownPayment) {
|
|
@@ -73,6 +73,7 @@ import "../../ImageBillboard/ImageBillboard.css.js";
|
|
|
73
73
|
/* empty css */
|
|
74
74
|
import Balancer from "react-wrap-balancer";
|
|
75
75
|
import { featured_maingrid_img, featured_maingrid_item, featured_center_vertical } from "./Featured.css.js";
|
|
76
|
+
/* empty css */
|
|
76
77
|
/* empty css */
|
|
77
78
|
import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
78
79
|
/* empty css */
|
|
@@ -77,6 +77,7 @@ import Balancer from "react-wrap-balancer";
|
|
|
77
77
|
/* empty css */
|
|
78
78
|
/* empty css */
|
|
79
79
|
import { featured_subgrid_item, featured_supertag, featured_subgrid_title, featured_center_vertical, featured_section, featured_title, featured_grid, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_subgrid, featured_subgrid_divider } from "./Featured.css.js";
|
|
80
|
+
/* empty css */
|
|
80
81
|
/* empty css */
|
|
81
82
|
import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
82
83
|
/* empty css */
|
|
@@ -134,7 +135,6 @@ const Featured = (props) => {
|
|
|
134
135
|
const { id, variant: fullVariant, featured, headline } = props;
|
|
135
136
|
const variant = getVariant(fullVariant);
|
|
136
137
|
const [main, ...restFeatured] = featured;
|
|
137
|
-
console.log(main);
|
|
138
138
|
return /* @__PURE__ */ jsx(
|
|
139
139
|
"section",
|
|
140
140
|
{
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
var header_featured = "_19yqlq40";
|
|
3
|
+
var breadcumbs_header_featured_section = "_19yqlq41";
|
|
4
|
+
var breadcumb_link = "_19yqlq42";
|
|
5
|
+
var header_title_featured = "_19yqlq43";
|
|
6
|
+
var header_in_insight = "_19yqlq44";
|
|
7
|
+
export {
|
|
8
|
+
breadcumb_link,
|
|
9
|
+
breadcumbs_header_featured_section,
|
|
10
|
+
header_featured,
|
|
11
|
+
header_in_insight,
|
|
12
|
+
header_title_featured
|
|
13
|
+
};
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { title } from "../../IconBillboard/IconBillboard.css.js";
|
|
3
|
+
import "../../icons/ArrowIcon/ArrowIcon.css.js";
|
|
4
|
+
import "../../icons/CheckIcon/CheckIcon.css.js";
|
|
5
|
+
/* empty css */
|
|
6
|
+
/* empty css */
|
|
7
|
+
/* empty css */
|
|
8
|
+
/* empty css */
|
|
9
|
+
import "../../utils/allowedAxosDomains.js";
|
|
10
|
+
/* empty css */
|
|
11
|
+
/* empty css */
|
|
12
|
+
import "../../Accordion/Accordion.js";
|
|
13
|
+
import "../../Accordion/Accordion.css.js";
|
|
14
|
+
import "../../AlertBanner/AlertBanner.css.js";
|
|
15
|
+
import "../../Article/Article.css.js";
|
|
16
|
+
import "../../Interstitial/Interstitial-variants.css.js";
|
|
17
|
+
import "../../Chevron/Chevron.css.js";
|
|
18
|
+
/* empty css */
|
|
19
|
+
import "../../Modal/contextApi/store.js";
|
|
20
|
+
import clsx from "clsx";
|
|
21
|
+
import "react";
|
|
22
|
+
import "../../Button/Button.css.js";
|
|
23
|
+
import "react-use";
|
|
24
|
+
import "../../ArticlesSet/ArticlesSet.css.js";
|
|
25
|
+
import "../../Calculators/calculator.css.js";
|
|
26
|
+
import "../../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
27
|
+
import "../../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
28
|
+
import "../../Table/Table.css.js";
|
|
29
|
+
import "../../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
|
|
30
|
+
import "../../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
31
|
+
import "@hookform/resolvers/zod";
|
|
32
|
+
import "../../Input/Checkbox.js";
|
|
33
|
+
import "../../Input/CurrencyInput.js";
|
|
34
|
+
import "../../Input/Dropdown.js";
|
|
35
|
+
import "../../Input/Dropdown.css.js";
|
|
36
|
+
import "../../Input/Input.js";
|
|
37
|
+
import "../../Input/Input.css.js";
|
|
38
|
+
import "../../Input/InputAmount.js";
|
|
39
|
+
import "../../Input/InputPhone.js";
|
|
40
|
+
import "../../Input/InputTextArea.js";
|
|
41
|
+
import "../../Input/DownPaymentInput.js";
|
|
42
|
+
import "react-hook-form";
|
|
43
|
+
import "../../Forms/Forms.css.js";
|
|
44
|
+
import "../../Forms/SalesforceFieldsForm.js";
|
|
45
|
+
import "../../Input/RadioButton.css.js";
|
|
46
|
+
import "../../Input/Checkbox.css.js";
|
|
47
|
+
import "../../LoadingIndicator/LoadingIndicator.css.js";
|
|
48
|
+
import "../../Input/RadioButton.js";
|
|
49
|
+
import "../../Inputs/Input.css.js";
|
|
50
|
+
import "iframe-resizer";
|
|
51
|
+
/* empty css */
|
|
52
|
+
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
53
|
+
/* empty css */
|
|
54
|
+
/* empty css */
|
|
55
|
+
/* empty css */
|
|
56
|
+
import "../../Carousel/index.js";
|
|
57
|
+
import "../../Hyperlink/Hyperlink.css.js";
|
|
58
|
+
/* empty css */
|
|
59
|
+
import "../../Comparison/Comparison.css.js";
|
|
60
|
+
import "../../HeroBanner/HeroBanner.css.js";
|
|
61
|
+
import "../../HeroBanner/LargeBanner.css.js";
|
|
62
|
+
import "../../HeroBanner/SelectionBanner.css.js";
|
|
63
|
+
import "../../SetContainer/SetContainer.css.js";
|
|
64
|
+
import "../../Tab/Tab.css.js";
|
|
65
|
+
import "../../icons/Star/Star.css.js";
|
|
66
|
+
import "../../ContentBanner/ContentBanner.css.js";
|
|
67
|
+
/* empty css */
|
|
68
|
+
import "../../ExecutiveBio/ExecutiveBio.css.js";
|
|
69
|
+
import "../../FaqAccordion/index.js";
|
|
70
|
+
import "../../FooterDisclosure/FooterDisclosure.css.js";
|
|
71
|
+
/* empty css */
|
|
72
|
+
import "../../ImageBillboard/ImageBillboard.css.js";
|
|
73
|
+
/* empty css */
|
|
74
|
+
import "react-wrap-balancer";
|
|
75
|
+
/* empty css */
|
|
76
|
+
/* empty css */
|
|
77
|
+
/* empty css */
|
|
78
|
+
import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
79
|
+
/* empty css */
|
|
80
|
+
/* empty css */
|
|
81
|
+
/* empty css */
|
|
82
|
+
/* empty css */
|
|
83
|
+
/* empty css */
|
|
84
|
+
import "../../NavigationMenu/AxosBank/NavData.js";
|
|
85
|
+
import "next/navigation.js";
|
|
86
|
+
import "next/image.js";
|
|
87
|
+
import "next/link.js";
|
|
88
|
+
/* empty css */
|
|
89
|
+
/* empty css */
|
|
90
|
+
import "../../PageNavItem/PageNavItem.css.js";
|
|
91
|
+
import "react-slick";
|
|
92
|
+
/* empty css */
|
|
93
|
+
/* empty css */
|
|
94
|
+
/* empty css */
|
|
95
|
+
import "../../StepItem/StepItem.css.js";
|
|
96
|
+
import "../../StepItemSet/StepItemSet.css.js";
|
|
97
|
+
/* empty css */
|
|
98
|
+
/* empty css */
|
|
99
|
+
/* empty css */
|
|
100
|
+
import "next/script.js";
|
|
101
|
+
/* empty css */
|
|
102
|
+
/* empty css */
|
|
103
|
+
import { header_in_insight, header_featured, header_title_featured } from "./Header.css.js";
|
|
104
|
+
const BreadcumbHeader = (props) => {
|
|
105
|
+
const { section, showTitle = true } = props;
|
|
106
|
+
return /* @__PURE__ */ jsx(
|
|
107
|
+
"div",
|
|
108
|
+
{
|
|
109
|
+
className: clsx(
|
|
110
|
+
!showTitle ? header_in_insight : "",
|
|
111
|
+
"containment",
|
|
112
|
+
header_featured
|
|
113
|
+
),
|
|
114
|
+
children: showTitle && /* @__PURE__ */ jsxs(
|
|
115
|
+
"h1",
|
|
116
|
+
{
|
|
117
|
+
className: clsx(title({ variant: "primary" }), header_title_featured),
|
|
118
|
+
children: [
|
|
119
|
+
section,
|
|
120
|
+
" Insights"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
)
|
|
124
|
+
}
|
|
125
|
+
);
|
|
126
|
+
};
|
|
127
|
+
export {
|
|
128
|
+
BreadcumbHeader
|
|
129
|
+
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { CategorySelector, InsightItem } from "./CategorySelector.js";
|
|
2
2
|
import { Featured, FeaturedItem } from "./Featured.js";
|
|
3
3
|
import { featured_center_vertical, featured_grid, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Featured.css.js";
|
|
4
|
+
import { BreadcumbHeader } from "./Header.js";
|
|
4
5
|
export {
|
|
6
|
+
BreadcumbHeader,
|
|
5
7
|
CategorySelector,
|
|
6
8
|
Featured,
|
|
7
9
|
FeaturedItem,
|
package/dist/Insight/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { CategorySelector, InsightItem } from "./Featured/CategorySelector.js";
|
|
2
2
|
import { Featured, FeaturedItem } from "./Featured/Featured.js";
|
|
3
3
|
import { featured_center_vertical, featured_grid, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Featured/Featured.css.js";
|
|
4
|
+
import { BreadcumbHeader } from "./Featured/Header.js";
|
|
4
5
|
import { footnotes, insight_header, insight_header_2, insight_header_3, insight_header_4, insight_info_row, insight_list_item, insight_p } from "./Insight.css.js";
|
|
5
6
|
export {
|
|
7
|
+
BreadcumbHeader,
|
|
6
8
|
CategorySelector,
|
|
7
9
|
Featured,
|
|
8
10
|
FeaturedItem,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
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
|
+
const overlay = "_overlay_1u8jc_24";
|
|
2
|
+
const modal = "_modal_1u8jc_40";
|
|
3
|
+
const vanish = "_vanish_1u8jc_1";
|
|
4
|
+
const appear = "_appear_1u8jc_1";
|
|
5
|
+
const close_button = "_close_button_1u8jc_55";
|
|
6
|
+
const modal_content = "_modal_content_1u8jc_70";
|
|
7
|
+
const img_area = "_img_area_1u8jc_74";
|
|
8
|
+
const body_copy = "_body_copy_1u8jc_84";
|
|
9
|
+
const btns = "_btns_1u8jc_98";
|
|
10
|
+
const white_modal = "_white_modal_1u8jc_139";
|
|
11
11
|
const css = {
|
|
12
12
|
overlay,
|
|
13
13
|
modal,
|
package/dist/Modal/Modal.js
CHANGED