@axos-web-dev/shared-components 0.0.147 → 0.0.149
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 +5 -3
- package/dist/Button/Button.js +5 -2
- package/dist/Calculators/Calculator.js +3 -1
- package/dist/Carousel/index.js +3 -1
- package/dist/Chevron/index.js +5 -2
- package/dist/Comparison/Comparison.js +6 -4
- package/dist/FaqAccordion/index.js +6 -4
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +3 -1
- package/dist/Forms/ApplicationStart.js +2 -2
- package/dist/Forms/ClearingForm.js +2 -2
- package/dist/Forms/CommercialDeposits.js +7 -11
- package/dist/Forms/CommercialLending.js +2 -2
- package/dist/Forms/ContactCompany.js +2 -2
- package/dist/Forms/ContactUs.js +2 -2
- package/dist/Forms/ContactUsAAS.js +2 -2
- package/dist/Forms/ContactUsBusiness.js +5 -3
- package/dist/Forms/ContactUsNMLSId.js +5 -3
- package/dist/Forms/CpraRequest.js +2 -2
- package/dist/Forms/DealerServices.js +2 -2
- package/dist/Forms/EmailOnly.js +5 -3
- package/dist/Forms/Forms.css.d.ts +13 -0
- package/dist/Forms/Forms.css.js +26 -0
- package/dist/Forms/MortgageRate/MortgageRateForm.d.ts +26 -0
- package/dist/Forms/MortgageRate/MortgageRateForm.js +735 -0
- package/dist/Forms/MortgageRate/MortgageRateModal.d.ts +16 -0
- package/dist/Forms/MortgageRate/MortgageRateModal.js +65 -0
- package/dist/Forms/MortgageRate/MortgageRateQuoteFilters.d.ts +16 -0
- package/dist/Forms/MortgageRate/MortgageRateQuoteFilters.js +428 -0
- package/dist/Forms/MortgageRate/MortgageRateWatch.d.ts +28 -0
- package/dist/Forms/MortgageRate/MortgageRateWatch.js +484 -0
- package/dist/Forms/QuickPricer.js +2 -2
- package/dist/Forms/ScheduleCall.js +2 -2
- package/dist/Forms/ScheduleCallPremier.js +2 -2
- package/dist/Forms/SuccesForm.js +3 -1
- package/dist/Forms/WcplSurvey.js +2 -2
- package/dist/Forms/index.d.ts +4 -0
- package/dist/Forms/index.js +24 -1
- package/dist/Hyperlink/index.js +3 -1
- package/dist/ImageLink/ImageLink.js +5 -3
- package/dist/ImageLink/ImageLinkSet.js +5 -3
- package/dist/ImageLink/index.js +3 -1
- package/dist/Input/CurrencyInput.js +2 -2
- package/dist/Input/DownPaymentInput.d.ts +12 -0
- package/dist/Input/DownPaymentInput.js +123 -0
- package/dist/Input/Dropdown.css.d.ts +5 -0
- package/dist/Input/Dropdown.css.js +3 -0
- package/dist/Input/Input.js +3 -1
- package/dist/Input/InputAmount.js +2 -2
- package/dist/Input/InputPhone.js +2 -2
- package/dist/Input/InputProps.d.ts +3 -0
- package/dist/Input/index.d.ts +1 -0
- package/dist/Input/index.js +4 -1
- package/dist/Insight/Featured/CategorySelector.css.d.ts +1 -0
- package/dist/Insight/Featured/CategorySelector.css.js +7 -5
- package/dist/Insight/Featured/CategorySelector.js +5 -2
- package/dist/Insight/Featured/Featured.js +3 -1
- package/dist/Interstitial/Interstitial.module.js +14 -11
- package/dist/Modal/Modal.js +5 -3
- package/dist/NavigationMenu/AxosBank/NavData.js +3 -1
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +3 -1
- package/dist/NavigationMenu/AxosBank/index.js +5 -3
- package/dist/SetContainer/SetContainer.js +5 -3
- package/dist/Table/Table.css.d.ts +1 -0
- package/dist/Table/Table.css.js +2 -0
- package/dist/Table/index.js +2 -1
- package/dist/assets/Forms/Forms.css +81 -3
- package/dist/assets/Input/Dropdown.css +3 -0
- package/dist/assets/Insight/Featured/CategorySelector.css +9 -6
- package/dist/assets/Interstitial/Interstitial.css.css +26 -22
- package/dist/assets/Table/Table.css +6 -0
- package/dist/main.js +29 -5
- package/package.json +1 -1
|
@@ -29,13 +29,13 @@ import "@hookform/resolvers/zod";
|
|
|
29
29
|
import "../../Input/Checkbox.js";
|
|
30
30
|
import "../../Input/CurrencyInput.js";
|
|
31
31
|
import "../../Input/Dropdown.js";
|
|
32
|
-
|
|
33
|
-
/* empty css */
|
|
32
|
+
import "../../Input/Dropdown.css.js";
|
|
34
33
|
import "../../Input/Input.js";
|
|
35
34
|
import "../../Input/Input.css.js";
|
|
36
35
|
import "../../Input/InputAmount.js";
|
|
37
36
|
import "../../Input/InputPhone.js";
|
|
38
37
|
import "../../Input/InputTextArea.js";
|
|
38
|
+
import "../../Input/DownPaymentInput.js";
|
|
39
39
|
import "react-hook-form";
|
|
40
40
|
import "../../Forms/Forms.css.js";
|
|
41
41
|
import "../../Forms/SalesforceFieldsForm.js";
|
|
@@ -43,12 +43,15 @@ import "../../Input/RadioButton.css.js";
|
|
|
43
43
|
import "../../Input/Checkbox.css.js";
|
|
44
44
|
import "../../LoadingIndicator/LoadingIndicator.css.js";
|
|
45
45
|
import "../../Input/RadioButton.js";
|
|
46
|
+
import "../../Interstitial/Interstitial-variants.css.js";
|
|
47
|
+
import "../../Inputs/Input.css.js";
|
|
46
48
|
import "iframe-resizer";
|
|
47
49
|
/* empty css */
|
|
48
50
|
import "../../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
49
51
|
/* empty css */
|
|
50
52
|
/* empty css */
|
|
51
53
|
/* empty css */
|
|
54
|
+
/* empty css */
|
|
52
55
|
/* empty css */
|
|
53
56
|
import "../../Carousel/index.js";
|
|
54
57
|
import "../../Hyperlink/Hyperlink.css.js";
|
|
@@ -72,7 +75,6 @@ import "react-wrap-balancer";
|
|
|
72
75
|
/* empty css */
|
|
73
76
|
/* empty css */
|
|
74
77
|
/* empty css */
|
|
75
|
-
import "../../Interstitial/Interstitial-variants.css.js";
|
|
76
78
|
import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
77
79
|
/* empty css */
|
|
78
80
|
import "../../Modal/contextApi/store.js";
|
|
@@ -30,12 +30,13 @@ import "@hookform/resolvers/zod";
|
|
|
30
30
|
import "../Input/Checkbox.js";
|
|
31
31
|
import "../Input/CurrencyInput.js";
|
|
32
32
|
import "../Input/Dropdown.js";
|
|
33
|
-
|
|
33
|
+
import "../Input/Dropdown.css.js";
|
|
34
34
|
import "../Input/Input.js";
|
|
35
35
|
import "../Input/Input.css.js";
|
|
36
36
|
import "../Input/InputAmount.js";
|
|
37
37
|
import "../Input/InputPhone.js";
|
|
38
38
|
import "../Input/InputTextArea.js";
|
|
39
|
+
import "../Input/DownPaymentInput.js";
|
|
39
40
|
import "react-hook-form";
|
|
40
41
|
import "../Forms/Forms.css.js";
|
|
41
42
|
import "../Forms/SalesforceFieldsForm.js";
|
|
@@ -44,6 +45,9 @@ import "../Input/Checkbox.css.js";
|
|
|
44
45
|
import "../LoadingIndicator/LoadingIndicator.css.js";
|
|
45
46
|
import "react-use";
|
|
46
47
|
import "../Input/RadioButton.js";
|
|
48
|
+
import "../Chevron/Chevron.css.js";
|
|
49
|
+
import "../Interstitial/Interstitial-variants.css.js";
|
|
50
|
+
import "../Inputs/Input.css.js";
|
|
47
51
|
import "iframe-resizer";
|
|
48
52
|
/* empty css */
|
|
49
53
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
@@ -71,7 +75,6 @@ import "react-wrap-balancer";
|
|
|
71
75
|
/* empty css */
|
|
72
76
|
/* empty css */
|
|
73
77
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
74
|
-
import "../Chevron/Chevron.css.js";
|
|
75
78
|
/* empty css */
|
|
76
79
|
import "../Modal/contextApi/store.js";
|
|
77
80
|
/* empty css */
|
|
@@ -98,7 +101,6 @@ import "../StepItemSet/StepItemSet.css.js";
|
|
|
98
101
|
import "next/script.js";
|
|
99
102
|
/* empty css */
|
|
100
103
|
/* empty css */
|
|
101
|
-
import "../Interstitial/Interstitial-variants.css.js";
|
|
102
104
|
import "../HeroBanner/LargeBanner.css.js";
|
|
103
105
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
104
106
|
const SetContainer = ({
|
package/dist/Table/Table.css.js
CHANGED
|
@@ -19,6 +19,7 @@ var alternate_color_rows = "_1nivbwe12";
|
|
|
19
19
|
var apy_table = "_1nivbwe13";
|
|
20
20
|
var table_description_text = "_1nivbwe14 _1nivbwe4";
|
|
21
21
|
var highlight_cell = "_1nivbwe15";
|
|
22
|
+
var highlight_th = "_1nivbwe16";
|
|
22
23
|
export {
|
|
23
24
|
alternate_color_rows,
|
|
24
25
|
apy_table,
|
|
@@ -28,6 +29,7 @@ export {
|
|
|
28
29
|
highlight_cell,
|
|
29
30
|
highlight_first_row,
|
|
30
31
|
highlight_last_row,
|
|
32
|
+
highlight_th,
|
|
31
33
|
table,
|
|
32
34
|
tableWrapper,
|
|
33
35
|
table_container,
|
package/dist/Table/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "./Table.js";
|
|
2
|
-
import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_cell, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, table_section, td, th } from "./Table.css.js";
|
|
2
|
+
import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_cell, highlight_first_row, highlight_last_row, highlight_th, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, table_section, td, th } from "./Table.css.js";
|
|
3
3
|
export {
|
|
4
4
|
Table,
|
|
5
5
|
TableBody,
|
|
@@ -15,6 +15,7 @@ export {
|
|
|
15
15
|
highlight_cell,
|
|
16
16
|
highlight_first_row,
|
|
17
17
|
highlight_last_row,
|
|
18
|
+
highlight_th,
|
|
18
19
|
table,
|
|
19
20
|
tableWrapper,
|
|
20
21
|
table_container,
|
|
@@ -246,6 +246,58 @@
|
|
|
246
246
|
.tfms6a1i {
|
|
247
247
|
padding-left: 16px;
|
|
248
248
|
}
|
|
249
|
+
.tfms6a1k label {
|
|
250
|
+
white-space: nowrap;
|
|
251
|
+
}
|
|
252
|
+
.tfms6a1m {
|
|
253
|
+
margin-top: 2rem;
|
|
254
|
+
}
|
|
255
|
+
.tfms6a1n {
|
|
256
|
+
display: flex;
|
|
257
|
+
justify-content: center;
|
|
258
|
+
}
|
|
259
|
+
.tfms6a1n > div {
|
|
260
|
+
width: 100%;
|
|
261
|
+
}
|
|
262
|
+
.tfms6a1o {
|
|
263
|
+
display: flex;
|
|
264
|
+
justify-content: center;
|
|
265
|
+
align-items: center;
|
|
266
|
+
gap: 2rem;
|
|
267
|
+
}
|
|
268
|
+
.tfms6a1p {
|
|
269
|
+
display: flex;
|
|
270
|
+
margin: 1rem 0;
|
|
271
|
+
text-align: left;
|
|
272
|
+
gap: 1rem;
|
|
273
|
+
}
|
|
274
|
+
.tfms6a1q {
|
|
275
|
+
display: flex;
|
|
276
|
+
justify-content: space-between;
|
|
277
|
+
}
|
|
278
|
+
.tfms6a1q > div {
|
|
279
|
+
min-width: 32%;
|
|
280
|
+
}
|
|
281
|
+
.tfms6a1r {
|
|
282
|
+
margin-top: 1rem;
|
|
283
|
+
}
|
|
284
|
+
.tfms6a1s {
|
|
285
|
+
min-width: 24px;
|
|
286
|
+
}
|
|
287
|
+
.tfms6a1t {
|
|
288
|
+
width: min(calc(100% - 2rem));
|
|
289
|
+
height: min(calc(100% - 2rem));
|
|
290
|
+
overflow: scroll!important;
|
|
291
|
+
}
|
|
292
|
+
.tfms6a1u {
|
|
293
|
+
display: none;
|
|
294
|
+
}
|
|
295
|
+
.tfms6a1w::placeholder {
|
|
296
|
+
color: transparent;
|
|
297
|
+
}
|
|
298
|
+
.tfms6a1x {
|
|
299
|
+
cursor: not-allowed;
|
|
300
|
+
}
|
|
249
301
|
@media screen and (max-width:1023px) {
|
|
250
302
|
.tfms6a0 {
|
|
251
303
|
padding-inline: 0;
|
|
@@ -295,8 +347,34 @@
|
|
|
295
347
|
align-items: flex-end;
|
|
296
348
|
}
|
|
297
349
|
}
|
|
298
|
-
@media screen and (
|
|
299
|
-
.
|
|
300
|
-
|
|
350
|
+
@media screen and (min-width: 481px) {
|
|
351
|
+
.tfms6a1l select {
|
|
352
|
+
background: url(https://images.axos.com/o9ov1v03uwqk/4ayjjdIkEzQsfmhKbPeNaE/636b57923fbdac891d48f78ca06ffeb6/image_1_-_2024-06-27T142052.191.png) no-repeat 98%;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
@media screen and (min-width: 769px) {
|
|
356
|
+
.tfms6a1n > div {
|
|
357
|
+
grid-template: none;
|
|
358
|
+
width: 50%;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
@media screen and (max-width: 800px) {
|
|
362
|
+
.tfms6a1q {
|
|
363
|
+
flex-direction: column;
|
|
364
|
+
}
|
|
365
|
+
.tfms6a1v select {
|
|
366
|
+
white-space: normal;
|
|
367
|
+
padding-right: 4rem;
|
|
368
|
+
}
|
|
369
|
+
.tfms6a1w::placeholder {
|
|
370
|
+
color: #5E6A74;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
@media screen and (min-width: 801px) {
|
|
374
|
+
hr {
|
|
375
|
+
display: none;
|
|
376
|
+
}
|
|
377
|
+
.tfms6a1u {
|
|
378
|
+
display: block;
|
|
301
379
|
}
|
|
302
380
|
}
|
|
@@ -16,16 +16,19 @@
|
|
|
16
16
|
font-weight: 600;
|
|
17
17
|
}
|
|
18
18
|
._13y9ptj3 {
|
|
19
|
+
text-transform: capitalize;
|
|
20
|
+
}
|
|
21
|
+
._13y9ptj4 {
|
|
19
22
|
display: grid;
|
|
20
23
|
grid-template-columns: 1fr 1fr 1fr;
|
|
21
24
|
gap: 24px;
|
|
22
25
|
overflow: hidden;
|
|
23
26
|
}
|
|
24
|
-
.
|
|
27
|
+
._13y9ptj5 {
|
|
25
28
|
max-width: 370px;
|
|
26
29
|
grid-template-rows: 1fr 1fr;
|
|
27
30
|
}
|
|
28
|
-
.
|
|
31
|
+
._13y9ptj6 {
|
|
29
32
|
font-size: 28px;
|
|
30
33
|
padding-bottom: 10px;
|
|
31
34
|
-webkit-line-clamp: 4;
|
|
@@ -34,7 +37,7 @@
|
|
|
34
37
|
text-overflow: ellipsis;
|
|
35
38
|
max-height: min(76px, 108px);
|
|
36
39
|
}
|
|
37
|
-
.
|
|
40
|
+
._13y9ptj7 {
|
|
38
41
|
padding: 24px;
|
|
39
42
|
color: #333D46;
|
|
40
43
|
font-family: var(--main-font-family);
|
|
@@ -42,16 +45,16 @@
|
|
|
42
45
|
display: grid;
|
|
43
46
|
grid-template-rows: 120px 30px;
|
|
44
47
|
}
|
|
45
|
-
.
|
|
48
|
+
._13y9ptj8 {
|
|
46
49
|
aspect-ratio: 16 / 9;
|
|
47
50
|
}
|
|
48
51
|
@media screen and (max-width:1024px) {
|
|
49
|
-
.
|
|
52
|
+
._13y9ptj4 {
|
|
50
53
|
grid-template-columns: 1fr 1fr 1fr;
|
|
51
54
|
}
|
|
52
55
|
}
|
|
53
56
|
@media screen and (max-width:768px) {
|
|
54
|
-
.
|
|
57
|
+
._13y9ptj4 {
|
|
55
58
|
grid-template-columns: 1fr;
|
|
56
59
|
justify-items: center;
|
|
57
60
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes
|
|
1
|
+
@keyframes _appear_1u8jc_1 {
|
|
2
2
|
0% {
|
|
3
3
|
opacity: 0;
|
|
4
4
|
transform: scale(0.9);
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
transform: scale(1);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
@keyframes
|
|
11
|
+
@keyframes _vanish_1u8jc_1 {
|
|
12
12
|
0% {
|
|
13
13
|
display: block;
|
|
14
14
|
opacity: 1;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
.
|
|
24
|
+
._overlay_1u8jc_24 {
|
|
25
25
|
position: fixed;
|
|
26
26
|
top: 0;
|
|
27
27
|
left: 0;
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
justify-content: center;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
._overlay_1u8jc_24.active {
|
|
37
37
|
display: flex;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
.
|
|
41
|
-
animation:
|
|
40
|
+
._modal_1u8jc_40 {
|
|
41
|
+
animation: _vanish_1u8jc_1 0.45s ease;
|
|
42
42
|
background: #fff;
|
|
43
43
|
border-radius: 16px;
|
|
44
44
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
overflow: hidden;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
.
|
|
52
|
-
animation:
|
|
51
|
+
._modal_1u8jc_40.active {
|
|
52
|
+
animation: _appear_1u8jc_1 0.45s ease;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.
|
|
55
|
+
._close_button_1u8jc_55 {
|
|
56
56
|
position: absolute;
|
|
57
57
|
background-color: rgba(255, 255, 255, 0.3);
|
|
58
58
|
border-radius: 8px;
|
|
@@ -67,35 +67,35 @@
|
|
|
67
67
|
width: 32px;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
.
|
|
70
|
+
._modal_content_1u8jc_70 {
|
|
71
71
|
padding: 16px 24px 24px;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
.
|
|
74
|
+
._img_area_1u8jc_74 {
|
|
75
75
|
background-position: center center;
|
|
76
76
|
background-size: cover;
|
|
77
77
|
height: 418px;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
body:has(.
|
|
80
|
+
body:has(._overlay_1u8jc_24.active) {
|
|
81
81
|
overflow-y: hidden;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
.
|
|
84
|
+
._body_copy_1u8jc_84 {
|
|
85
85
|
margin-top: 8px;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
.
|
|
88
|
+
._body_copy_1u8jc_84 > * {
|
|
89
89
|
color: #333d46;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
.
|
|
92
|
+
._body_copy_1u8jc_84 > p {
|
|
93
93
|
text-align: center;
|
|
94
94
|
font-size: 16px;
|
|
95
95
|
line-height: 1.5;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
.
|
|
98
|
+
._btns_1u8jc_98 {
|
|
99
99
|
display: flex;
|
|
100
100
|
align-items: center;
|
|
101
101
|
gap: 2rem;
|
|
@@ -105,33 +105,37 @@ body:has(._overlay_1euix_24.active) {
|
|
|
105
105
|
justify-content: center;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
.
|
|
108
|
+
._btns_1u8jc_98:empty {
|
|
109
109
|
display: none;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
.
|
|
112
|
+
._modal_content_1u8jc_70:nth-child(2) h2 {
|
|
113
113
|
margin-top: 31px;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
@media (max-width: 1023px) {
|
|
117
|
-
.
|
|
117
|
+
._btns_1u8jc_98 {
|
|
118
118
|
flex-direction: column-reverse;
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
@media (max-width: 832px) {
|
|
123
|
-
.
|
|
123
|
+
._img_area_1u8jc_74 {
|
|
124
124
|
height: calc(12.25rem + ((1vw - 3.75px) * 48.5777));
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
@media (max-width: 500px) {
|
|
129
|
-
.
|
|
129
|
+
._modal_1u8jc_40 {
|
|
130
130
|
width: calc(100% - 1rem);
|
|
131
131
|
}
|
|
132
|
-
.
|
|
132
|
+
._overlay_1u8jc_24.active {
|
|
133
133
|
align-items: flex-start;
|
|
134
134
|
overflow-y: scroll;
|
|
135
135
|
padding-top: 40px;
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
+
|
|
139
|
+
._white_modal_1u8jc_139 {
|
|
140
|
+
color: #1e3860;
|
|
141
|
+
}
|
|
@@ -275,6 +275,12 @@ td:has(.flex.middle span.img_fluid) .img_fluid {
|
|
|
275
275
|
main > div:nth-last-child(2) > ._1nivbwe0 {
|
|
276
276
|
margin-bottom: 3.5rem;
|
|
277
277
|
}
|
|
278
|
+
._1nivbwe16 {
|
|
279
|
+
background: var(--_1073cm8f)!important;
|
|
280
|
+
}
|
|
281
|
+
._1nivbwe16 th:first-child {
|
|
282
|
+
background: none;
|
|
283
|
+
}
|
|
278
284
|
@media screen and (max-width: 1023px) {
|
|
279
285
|
main > div:nth-last-child(2) > ._1nivbwe0 {
|
|
280
286
|
margin-bottom: 42px;
|
package/dist/main.js
CHANGED
|
@@ -55,7 +55,7 @@ import { CpraRequest } from "./Forms/CpraRequest.js";
|
|
|
55
55
|
import { DealerServices } from "./Forms/DealerServices.js";
|
|
56
56
|
import { EmailOnly } from "./Forms/EmailOnly.js";
|
|
57
57
|
import { EmailUs } from "./Forms/EmailUs.js";
|
|
58
|
-
import { actions, checkbox_group, descriptionField, disclosureForm, form, formContainer, formWrapper, fullRowForm, headerContainer, headerForm, iconForm, one_row, pl_label, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
58
|
+
import { actions, centerSelect, checkbox_group, descriptionField, disclosureForm, dropdown, dynPH, form, formBtns, formContainer, formWrapper, fullRowForm, fullRowSelect, headerContainer, headerForm, iconForm, modalCheckboxContainer, modalMobile, mt1Rem, mt2rem, mw24, na_cursor, one_row, pl_label, resposiveLabel, ro_input, section_title, succes_check_mark, success_circle, success_icon, success_wrap, threeColRow, x_input, xc_input } from "./Forms/Forms.css.js";
|
|
59
59
|
import { QuickPricer } from "./Forms/QuickPricer.js";
|
|
60
60
|
import { SalesforceFieldsForm, SalesforceSchema } from "./Forms/SalesforceFieldsForm.js";
|
|
61
61
|
import { ScheduleCall } from "./Forms/ScheduleCall.js";
|
|
@@ -63,6 +63,12 @@ import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
|
|
|
63
63
|
import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
|
|
64
64
|
import { WCPLSurvey } from "./Forms/WcplSurvey.js";
|
|
65
65
|
import { CommercialDeposits } from "./Forms/CommercialDeposits.js";
|
|
66
|
+
import { MortgageRate } from "./Forms/MortgageRate/MortgageRateForm.js";
|
|
67
|
+
import { MortgageRateFilters } from "./Forms/MortgageRate/MortgageRateQuoteFilters.js";
|
|
68
|
+
import "react/jsx-runtime";
|
|
69
|
+
import { RateWatchForm } from "./Forms/MortgageRate/MortgageRateWatch.js";
|
|
70
|
+
import { LoadingIndicator } from "./LoadingIndicator/index.js";
|
|
71
|
+
import "./Interstitial/Interstitial-variants.css.js";
|
|
66
72
|
import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
67
73
|
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_embedded_image, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
|
|
68
74
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
@@ -98,7 +104,6 @@ import { default as default25 } from "./icons/Logos/AXOS.js";
|
|
|
98
104
|
import { ImageBillboardSet } from "./ImageBillboard/ImageBillboard.js";
|
|
99
105
|
import { apy_billboard, billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_image, billboard_img, body, body_copy, header, imagePlacement, image_background, mh_330, rate_billboard, rate_container, rate_pad, section_text_ImageBillboard, single_container, sub_bullets, supertag, three_inline, two_inline, up_to } from "./ImageBillboard/ImageBillboard.css.js";
|
|
100
106
|
import { ImageBillboard } from "./ImageBillboard/ImageBillboardSet.js";
|
|
101
|
-
import "react/jsx-runtime";
|
|
102
107
|
import { SetContainer } from "./SetContainer/SetContainer.js";
|
|
103
108
|
import { heading, imageLinkContainer, inline_container, isolate_container, set_container, set_logo, setcontainer_section_text } from "./SetContainer/SetContainer.css.js";
|
|
104
109
|
import "react";
|
|
@@ -106,12 +111,13 @@ import { ImageLinkSet } from "./ImageLink/ImageLinkSet.js";
|
|
|
106
111
|
import { Checkbox } from "./Input/Checkbox.js";
|
|
107
112
|
import { CurrencyInput } from "./Input/CurrencyInput.js";
|
|
108
113
|
import { Dropdown } from "./Input/Dropdown.js";
|
|
109
|
-
import { selectInput } from "./Input/Dropdown.css.js";
|
|
114
|
+
import { dp_input, selectInput } from "./Input/Dropdown.css.js";
|
|
110
115
|
import { Input } from "./Input/Input.js";
|
|
111
116
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input/Input.css.js";
|
|
112
117
|
import { InputAmount } from "./Input/InputAmount.js";
|
|
113
118
|
import { InputPhone } from "./Input/InputPhone.js";
|
|
114
119
|
import { InputTextArea } from "./Input/InputTextArea.js";
|
|
120
|
+
import { DownPaymentInput } from "./Input/DownPaymentInput.js";
|
|
115
121
|
import { CategorySelector, InsightItem } from "./Insight/Featured/CategorySelector.js";
|
|
116
122
|
import { Featured, FeaturedItem } from "./Insight/Featured/Featured.js";
|
|
117
123
|
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 "./Insight/Featured/Featured.css.js";
|
|
@@ -119,7 +125,6 @@ import { footnotes, insight_header, insight_header_2, insight_header_3, insight_
|
|
|
119
125
|
import { Interstitial } from "./Interstitial/Interstitial.js";
|
|
120
126
|
import { LandingPageHeader } from "./LandingPageHeader/LandingPageHeader.js";
|
|
121
127
|
import { lp_container, lp_hover, lp_theme, svg_fill } from "./LandingPageHeader/LandingPageHeader.css.js";
|
|
122
|
-
import { LoadingIndicator } from "./LoadingIndicator/index.js";
|
|
123
128
|
import { MainHTML } from "./MainHTML/index.js";
|
|
124
129
|
import { Modal } from "./Modal/Modal.js";
|
|
125
130
|
import { GlobalContext, GlobalContextProvider, useGlobalContext } from "./Modal/contextApi/store.js";
|
|
@@ -138,7 +143,7 @@ import { bs_copy, bs_topic, bullet_details, li, line_points, point, step_num } f
|
|
|
138
143
|
import { StepItemSet } from "./StepItemSet/StepItemSet.js";
|
|
139
144
|
import { bs_add_details, bs_btns, bs_image, bs_section, bs_wrapper, modifier, ol, sec_subtitle, sec_title, steps_wrapper, svg_logo, tablet_col } from "./StepItemSet/StepItemSet.css.js";
|
|
140
145
|
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "./Table/Table.js";
|
|
141
|
-
import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_cell, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, table_section, td, th } from "./Table/Table.css.js";
|
|
146
|
+
import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_cell, highlight_first_row, highlight_last_row, highlight_th, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, table_section, td, th } from "./Table/Table.css.js";
|
|
142
147
|
import { TextBlock } from "./TextBlock/TextBlock.js";
|
|
143
148
|
import { textBlockHeader, textBlockList, textBlockParagraph, textBlockSection } from "./TextBlock/TextBlock.css.js";
|
|
144
149
|
import { axosTheme, vars } from "./themes/axos.css.js";
|
|
@@ -220,6 +225,7 @@ export {
|
|
|
220
225
|
CpraRequest,
|
|
221
226
|
CurrencyInput,
|
|
222
227
|
DealerServices,
|
|
228
|
+
DownPaymentInput,
|
|
223
229
|
default11 as DownloadIcon,
|
|
224
230
|
DownloadTile,
|
|
225
231
|
Dropdown,
|
|
@@ -262,6 +268,8 @@ export {
|
|
|
262
268
|
default15 as MemberFdicLogo,
|
|
263
269
|
Modal,
|
|
264
270
|
MonthlyPaymentCalculator,
|
|
271
|
+
MortgageRate,
|
|
272
|
+
MortgageRateFilters,
|
|
265
273
|
default27 as NavBarAAS,
|
|
266
274
|
default30 as NavBarAFS,
|
|
267
275
|
default26 as NavBarAXA,
|
|
@@ -273,6 +281,7 @@ export {
|
|
|
273
281
|
default16 as QuoteIconGrey,
|
|
274
282
|
default17 as QuoteIconWhite,
|
|
275
283
|
default18 as QuoteIconYellow,
|
|
284
|
+
RateWatchForm,
|
|
276
285
|
SalesforceFieldsForm,
|
|
277
286
|
SalesforceSchema,
|
|
278
287
|
ScheduleCall,
|
|
@@ -352,6 +361,7 @@ export {
|
|
|
352
361
|
calculator,
|
|
353
362
|
calculator_description,
|
|
354
363
|
calculator_headline,
|
|
364
|
+
centerSelect,
|
|
355
365
|
checkbox_group,
|
|
356
366
|
comparison,
|
|
357
367
|
comparison_buttons,
|
|
@@ -373,6 +383,9 @@ export {
|
|
|
373
383
|
descriptionField,
|
|
374
384
|
details,
|
|
375
385
|
disclosureForm,
|
|
386
|
+
dp_input,
|
|
387
|
+
dropdown,
|
|
388
|
+
dynPH,
|
|
376
389
|
executive_bio,
|
|
377
390
|
expand_icon,
|
|
378
391
|
feature_header,
|
|
@@ -399,6 +412,7 @@ export {
|
|
|
399
412
|
footer_wrapper,
|
|
400
413
|
footnotes,
|
|
401
414
|
form,
|
|
415
|
+
formBtns,
|
|
402
416
|
formContainer,
|
|
403
417
|
formWrapper,
|
|
404
418
|
ft_col,
|
|
@@ -407,6 +421,7 @@ export {
|
|
|
407
421
|
ft_panel,
|
|
408
422
|
ft_panel_group,
|
|
409
423
|
fullRowForm,
|
|
424
|
+
fullRowSelect,
|
|
410
425
|
getVariant,
|
|
411
426
|
getVariantWithRegex,
|
|
412
427
|
header,
|
|
@@ -438,6 +453,7 @@ export {
|
|
|
438
453
|
highlight_cell,
|
|
439
454
|
highlight_first_row,
|
|
440
455
|
highlight_last_row,
|
|
456
|
+
highlight_th,
|
|
441
457
|
icon,
|
|
442
458
|
iconContainer,
|
|
443
459
|
iconContainerBase,
|
|
@@ -478,7 +494,13 @@ export {
|
|
|
478
494
|
mb_8,
|
|
479
495
|
media,
|
|
480
496
|
mh_330,
|
|
497
|
+
modalCheckboxContainer,
|
|
498
|
+
modalMobile,
|
|
481
499
|
modifier,
|
|
500
|
+
mt1Rem,
|
|
501
|
+
mt2rem,
|
|
502
|
+
mw24,
|
|
503
|
+
na_cursor,
|
|
482
504
|
nested_grid,
|
|
483
505
|
ol,
|
|
484
506
|
one_row,
|
|
@@ -502,6 +524,7 @@ export {
|
|
|
502
524
|
rate_billboard,
|
|
503
525
|
rate_container,
|
|
504
526
|
rate_pad,
|
|
527
|
+
resposiveLabel,
|
|
505
528
|
reversed,
|
|
506
529
|
reversed_lg_image,
|
|
507
530
|
ro_input,
|
|
@@ -554,6 +577,7 @@ export {
|
|
|
554
577
|
textBlockParagraph,
|
|
555
578
|
textBlockSection,
|
|
556
579
|
th,
|
|
580
|
+
threeColRow,
|
|
557
581
|
three_inline,
|
|
558
582
|
title,
|
|
559
583
|
toggle_container,
|