@axos-web-dev/shared-components 0.0.85 → 0.0.87
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/Calculators/Calculator.js +32 -34
- package/dist/Carousel/index.js +1 -0
- package/dist/Chevron/index.js +1 -0
- package/dist/Comparison/Comparison.js +1 -0
- package/dist/Comparison/ComparisonSet.js +1 -0
- package/dist/FaqAccordion/index.js +1 -1
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -0
- package/dist/Forms/ContactUsBusiness.js +1 -0
- package/dist/Forms/ContactUsNMLSId.js +1 -0
- package/dist/Forms/EmailOnly.js +1 -0
- package/dist/Forms/SuccesForm.js +1 -0
- package/dist/HeroBanner/HeroBanner.css.d.ts +1 -0
- package/dist/HeroBanner/HeroBanner.css.js +9 -7
- package/dist/HeroBanner/HeroBanner.js +79 -66
- package/dist/HeroBanner/index.js +2 -1
- 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/Interstitial/Interstitial-variants.css.d.ts +10 -0
- package/dist/Interstitial/Interstitial-variants.css.js +9 -0
- package/dist/Interstitial/Interstitial.d.ts +16 -0
- package/dist/Interstitial/Interstitial.js +91 -0
- package/dist/Interstitial/Interstitial.module.js +32 -0
- package/dist/Interstitial/index.d.ts +1 -0
- package/dist/Interstitial/index.js +22 -0
- package/dist/Modal/Modal.js +1 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +127 -651
- package/dist/SetContainer/SetContainer.js +1 -0
- package/dist/Table/Table.css.d.ts +1 -0
- package/dist/Table/Table.css.js +2 -0
- package/dist/Table/Table.interface.d.ts +1 -0
- package/dist/Table/Table.js +1 -1
- package/dist/Table/index.js +2 -1
- package/dist/assets/HeroBanner/HeroBanner.css +39 -35
- package/dist/assets/HeroBanner/SelectionBanner.css +1 -0
- package/dist/assets/Interstitial/Interstitial-variants.css +9 -0
- package/dist/assets/Interstitial/Interstitial.css.css +137 -0
- package/dist/assets/SetContainer/SetContainer.css +2 -3
- package/dist/assets/Table/Table.css +5 -1
- package/dist/assets/globals.css +6 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +6 -2
- package/dist/utils/allowedAxosDomains.js +3 -1
- package/package.json +1 -1
|
@@ -61,6 +61,7 @@ import "../FaqAccordion/index.js";
|
|
|
61
61
|
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
62
62
|
/* empty css */
|
|
63
63
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
64
|
+
import "../Interstitial/Interstitial-variants.css.js";
|
|
64
65
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
65
66
|
import "../Chevron/Chevron.css.js";
|
|
66
67
|
/* empty css */
|
|
@@ -159,3 +159,4 @@ export declare const table: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
|
159
159
|
export declare const alternate_color_rows: string;
|
|
160
160
|
export declare const apy_table: string;
|
|
161
161
|
export declare const table_description_text: string;
|
|
162
|
+
export declare const highlight_cell: string;
|
package/dist/Table/Table.css.js
CHANGED
|
@@ -17,12 +17,14 @@ var table = createRuntimeFn({ defaultClassName: "_1nivbwew", variantClassNames:
|
|
|
17
17
|
var alternate_color_rows = "_1nivbwe11";
|
|
18
18
|
var apy_table = "_1nivbwe12";
|
|
19
19
|
var table_description_text = "_1nivbwe13 _1nivbwe3";
|
|
20
|
+
var highlight_cell = "_1nivbwe14";
|
|
20
21
|
export {
|
|
21
22
|
alternate_color_rows,
|
|
22
23
|
apy_table,
|
|
23
24
|
bodyHeader,
|
|
24
25
|
headerCell,
|
|
25
26
|
headerVariants,
|
|
27
|
+
highlight_cell,
|
|
26
28
|
highlight_first_row,
|
|
27
29
|
highlight_last_row,
|
|
28
30
|
table,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CSSProperties, HtmlHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
|
|
2
2
|
|
|
3
3
|
export interface RowProps extends HtmlHTMLAttributes<HTMLTableRowElement>, PropsWithChildren {
|
|
4
|
+
className?: string;
|
|
4
5
|
}
|
|
5
6
|
export interface CellProps extends HtmlHTMLAttributes<HTMLTableCellElement>, PropsWithChildren {
|
|
6
7
|
as?: "td" | "th";
|
package/dist/Table/Table.js
CHANGED
|
@@ -66,7 +66,7 @@ const Table = ({
|
|
|
66
66
|
);
|
|
67
67
|
};
|
|
68
68
|
const TableRow = ({ children, ...props }) => {
|
|
69
|
-
return /* @__PURE__ */ jsx("tr", { ...props, children });
|
|
69
|
+
return /* @__PURE__ */ jsx("tr", { className: props.className, ...props, children });
|
|
70
70
|
};
|
|
71
71
|
const TableHead = ({ children }) => {
|
|
72
72
|
return /* @__PURE__ */ jsx("thead", { children });
|
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_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, td, th } from "./Table.css.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, td, th } from "./Table.css.js";
|
|
3
3
|
export {
|
|
4
4
|
Table,
|
|
5
5
|
TableBody,
|
|
@@ -12,6 +12,7 @@ export {
|
|
|
12
12
|
bodyHeader,
|
|
13
13
|
headerCell,
|
|
14
14
|
headerVariants,
|
|
15
|
+
highlight_cell,
|
|
15
16
|
highlight_first_row,
|
|
16
17
|
highlight_last_row,
|
|
17
18
|
table,
|
|
@@ -24,75 +24,75 @@
|
|
|
24
24
|
justify-content: space-between;
|
|
25
25
|
align-items: center;
|
|
26
26
|
}
|
|
27
|
-
.
|
|
27
|
+
._1ye8k3f9 {
|
|
28
28
|
padding: 2rem 0;
|
|
29
29
|
}
|
|
30
|
-
.
|
|
30
|
+
._1ye8k3fb {
|
|
31
31
|
display: flex;
|
|
32
32
|
justify-content: flex-end;
|
|
33
33
|
max-width: 600px;
|
|
34
34
|
}
|
|
35
|
-
.
|
|
35
|
+
._1ye8k3fb img {
|
|
36
36
|
max-width: 604px;
|
|
37
37
|
max-height: 480px;
|
|
38
38
|
object-fit: cover;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
._1ye8k3fc {
|
|
41
41
|
display: block;
|
|
42
42
|
font: 700 14px / 1.3 var(--main-font-family);
|
|
43
43
|
margin-bottom: 2px;
|
|
44
44
|
letter-spacing: .2px;
|
|
45
45
|
}
|
|
46
|
-
.
|
|
46
|
+
._1ye8k3fd {
|
|
47
47
|
background: var(--_1073cm84);
|
|
48
48
|
background-clip: text;
|
|
49
49
|
-webkit-text-fill-color: transparent;
|
|
50
50
|
text-shadow: 0px 0px #00000000;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
._1ye8k3fe {
|
|
53
53
|
background: var(--_1073cm8b);
|
|
54
54
|
background-clip: text;
|
|
55
55
|
-webkit-text-fill-color: transparent;
|
|
56
56
|
text-shadow: 0px 0px #00000000;
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
._1ye8k3ff {
|
|
59
59
|
color: var(--_1073cm8k);
|
|
60
60
|
}
|
|
61
|
-
.
|
|
61
|
+
._1ye8k3fg {
|
|
62
62
|
color: var(--_1073cm8n);
|
|
63
63
|
}
|
|
64
|
-
.
|
|
64
|
+
._1ye8k3fh {
|
|
65
65
|
font: 600 2.5rem / 1.25 var(--header-font-family);
|
|
66
66
|
}
|
|
67
|
-
.
|
|
67
|
+
._1ye8k3fi {
|
|
68
68
|
background: var(--_1073cm84);
|
|
69
69
|
background-clip: text;
|
|
70
70
|
-webkit-text-fill-color: transparent;
|
|
71
71
|
text-shadow: 0px 0px #00000000;
|
|
72
72
|
}
|
|
73
|
-
.
|
|
73
|
+
._1ye8k3fj {
|
|
74
74
|
background: var(--_1073cm8b);
|
|
75
75
|
background-clip: text;
|
|
76
76
|
-webkit-text-fill-color: transparent;
|
|
77
77
|
text-shadow: 0px 0px #00000000;
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
._1ye8k3fk {
|
|
80
80
|
color: var(--_1073cm8h);
|
|
81
81
|
}
|
|
82
|
-
.
|
|
82
|
+
._1ye8k3fl {
|
|
83
83
|
color: var(--_1073cm8o);
|
|
84
84
|
}
|
|
85
|
-
.
|
|
85
|
+
._1ye8k3f9 p {
|
|
86
86
|
font: 400 18px / 1.44 var(--main-font-family);
|
|
87
87
|
letter-spacing: .2px;
|
|
88
88
|
}
|
|
89
|
-
.
|
|
89
|
+
._1ye8k3fm {
|
|
90
90
|
margin-top: 3.5rem;
|
|
91
91
|
display: flex;
|
|
92
92
|
align-items: center;
|
|
93
93
|
gap: 2rem;
|
|
94
94
|
}
|
|
95
|
-
.
|
|
95
|
+
._1ye8k3fm:empty {
|
|
96
96
|
display: none;
|
|
97
97
|
}
|
|
98
98
|
@media screen and (min-width:1024px) {
|
|
@@ -100,34 +100,38 @@
|
|
|
100
100
|
flex-direction: row-reverse;
|
|
101
101
|
}
|
|
102
102
|
._1ye8k3f8 {
|
|
103
|
+
left: 0;
|
|
104
|
+
right: unset;
|
|
105
|
+
}
|
|
106
|
+
._1ye8k3f9 {
|
|
103
107
|
flex: 1 1;
|
|
104
108
|
max-width: 588px;
|
|
105
109
|
}
|
|
106
|
-
._1ye8k3f0 .
|
|
110
|
+
._1ye8k3f0 ._1ye8k3f9 {
|
|
107
111
|
max-width: 468px;
|
|
108
112
|
}
|
|
109
113
|
}
|
|
110
114
|
@media screen and (max-width:1280px) {
|
|
111
|
-
.
|
|
115
|
+
._1ye8k3fm {
|
|
112
116
|
margin-top: 2.5rem;
|
|
113
117
|
}
|
|
114
|
-
._1ye8k3f0 .
|
|
118
|
+
._1ye8k3f0 ._1ye8k3fm {
|
|
115
119
|
flex-direction: column;
|
|
116
120
|
}
|
|
117
|
-
._7etqoq5 .
|
|
121
|
+
._7etqoq5 ._1ye8k3fm {
|
|
118
122
|
flex-direction: row;
|
|
119
123
|
justify-content: center;
|
|
120
124
|
flex-wrap: wrap;
|
|
121
125
|
}
|
|
122
126
|
}
|
|
123
127
|
@media (max-width: 1280px) and (min-width: 1024px) {
|
|
124
|
-
._1ye8k3f0 .
|
|
128
|
+
._1ye8k3f0 ._1ye8k3fa {
|
|
125
129
|
width: calc(100%-28px);
|
|
126
130
|
}
|
|
127
|
-
.
|
|
131
|
+
._1ye8k3fb img {
|
|
128
132
|
aspect-ratio: 1 / 1;
|
|
129
133
|
}
|
|
130
|
-
._1ye8k3f0 .
|
|
134
|
+
._1ye8k3f0 ._1ye8k3fm {
|
|
131
135
|
align-items: flex-start;
|
|
132
136
|
}
|
|
133
137
|
}
|
|
@@ -135,19 +139,19 @@
|
|
|
135
139
|
._1ye8k3f6 {
|
|
136
140
|
flex-direction: column;
|
|
137
141
|
}
|
|
138
|
-
.
|
|
142
|
+
._1ye8k3f9 {
|
|
139
143
|
text-align: center;
|
|
140
144
|
}
|
|
141
|
-
.
|
|
145
|
+
._1ye8k3fm {
|
|
142
146
|
flex-direction: column;
|
|
143
147
|
}
|
|
144
148
|
}
|
|
145
149
|
@media (max-width: 1023px) {
|
|
146
|
-
.
|
|
150
|
+
._1ye8k3fb {
|
|
147
151
|
justify-content: center;
|
|
148
152
|
width: min(375px,100%);
|
|
149
153
|
}
|
|
150
|
-
.
|
|
154
|
+
._1ye8k3fb img {
|
|
151
155
|
max-width: 100%;
|
|
152
156
|
}
|
|
153
157
|
}
|
|
@@ -160,7 +164,7 @@
|
|
|
160
164
|
min-height: 740px;
|
|
161
165
|
gap: 1.5rem;
|
|
162
166
|
}
|
|
163
|
-
.
|
|
167
|
+
._1ye8k3fb {
|
|
164
168
|
min-height: 480px;
|
|
165
169
|
_1ye8k3f0 & {
|
|
166
170
|
max-width: 708px;
|
|
@@ -168,38 +172,38 @@
|
|
|
168
172
|
}
|
|
169
173
|
}
|
|
170
174
|
@media screen and (max-width:603px) {
|
|
171
|
-
.
|
|
175
|
+
._1ye8k3f9 {
|
|
172
176
|
max-width: calc(100% - 2rem);
|
|
173
177
|
margin-left: auto;
|
|
174
178
|
margin-right: auto;
|
|
175
179
|
}
|
|
176
180
|
}
|
|
177
181
|
@media (max-width: 603px) {
|
|
178
|
-
.
|
|
182
|
+
._1ye8k3fa {
|
|
179
183
|
width: 100%;
|
|
180
184
|
max-width: 100%;
|
|
181
185
|
}
|
|
182
186
|
}
|
|
183
187
|
@media (max-width: 450px) {
|
|
184
|
-
.
|
|
188
|
+
._1ye8k3fb {
|
|
185
189
|
width: 100%;
|
|
186
190
|
}
|
|
187
191
|
}
|
|
188
192
|
@media screen and (max-width:768px) {
|
|
189
|
-
.
|
|
193
|
+
._1ye8k3fh {
|
|
190
194
|
font-size: 28px;
|
|
191
195
|
line-height: 1.29;
|
|
192
196
|
}
|
|
193
|
-
.
|
|
197
|
+
._1ye8k3f9 p {
|
|
194
198
|
font-size: 1rem;
|
|
195
199
|
line-height: 1.5;
|
|
196
200
|
}
|
|
197
|
-
.
|
|
201
|
+
._1ye8k3fm {
|
|
198
202
|
margin-top: 1.7rem;
|
|
199
203
|
}
|
|
200
204
|
}
|
|
201
205
|
@media (max-width:1280px) and (min-width:1024px) {
|
|
202
|
-
.
|
|
206
|
+
._1ye8k3fb:not(._1ye8k3f0 ._1ye8k3fb) {
|
|
203
207
|
flex: 1 1;
|
|
204
208
|
overflow: hidden;
|
|
205
209
|
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
@keyframes _appear_1euix_1 {
|
|
2
|
+
0% {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
transform: scale(0.9);
|
|
5
|
+
}
|
|
6
|
+
to {
|
|
7
|
+
opacity: 1;
|
|
8
|
+
transform: scale(1);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
@keyframes _vanish_1euix_1 {
|
|
12
|
+
0% {
|
|
13
|
+
display: block;
|
|
14
|
+
opacity: 1;
|
|
15
|
+
transform: scale(1);
|
|
16
|
+
}
|
|
17
|
+
to {
|
|
18
|
+
display: none;
|
|
19
|
+
opacity: 0;
|
|
20
|
+
transform: scale(0.9);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
._overlay_1euix_24 {
|
|
25
|
+
position: fixed;
|
|
26
|
+
top: 0;
|
|
27
|
+
left: 0;
|
|
28
|
+
right: 0;
|
|
29
|
+
bottom: 0;
|
|
30
|
+
background: rgba(0, 0, 0, 0.4);
|
|
31
|
+
display: none;
|
|
32
|
+
align-items: center;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
._overlay_1euix_24.active {
|
|
37
|
+
display: flex;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
._modal_1euix_40 {
|
|
41
|
+
animation: _vanish_1euix_1 0.45s ease;
|
|
42
|
+
background: #fff;
|
|
43
|
+
border-radius: 16px;
|
|
44
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
45
|
+
position: relative;
|
|
46
|
+
transition: transform 0.45s ease;
|
|
47
|
+
width: min(calc(100% - 2rem), 800px);
|
|
48
|
+
overflow: hidden;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
._modal_1euix_40.active {
|
|
52
|
+
animation: _appear_1euix_1 0.45s ease;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
._close_button_1euix_55 {
|
|
56
|
+
position: absolute;
|
|
57
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
58
|
+
border-radius: 8px;
|
|
59
|
+
border: none;
|
|
60
|
+
color: #4a5560;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
font-size: 1.9rem;
|
|
63
|
+
line-height: 1;
|
|
64
|
+
right: 1.5rem;
|
|
65
|
+
text-align: center;
|
|
66
|
+
top: 1.5rem;
|
|
67
|
+
width: 32px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
._modal_content_1euix_70 {
|
|
71
|
+
padding: 16px 24px 24px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
._img_area_1euix_74 {
|
|
75
|
+
background-position: center center;
|
|
76
|
+
background-size: cover;
|
|
77
|
+
height: 418px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
body:has(._overlay_1euix_24.active) {
|
|
81
|
+
overflow-y: hidden;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
._body_copy_1euix_84 {
|
|
85
|
+
margin-top: 8px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
._body_copy_1euix_84 > * {
|
|
89
|
+
color: #333d46;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
._body_copy_1euix_84 > p {
|
|
93
|
+
text-align: center;
|
|
94
|
+
font-size: 16px;
|
|
95
|
+
line-height: 1.5;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
._btns_1euix_98 {
|
|
99
|
+
display: flex;
|
|
100
|
+
align-items: center;
|
|
101
|
+
gap: 2rem;
|
|
102
|
+
padding-top: 16px;
|
|
103
|
+
margin-top: 16px;
|
|
104
|
+
width: 100%;
|
|
105
|
+
justify-content: center;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
._btns_1euix_98:empty {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
._modal_content_1euix_70:nth-child(2) h2 {
|
|
113
|
+
margin-top: 31px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@media (max-width: 1023px) {
|
|
117
|
+
._btns_1euix_98 {
|
|
118
|
+
flex-direction: column-reverse;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@media (max-width: 832px) {
|
|
123
|
+
._img_area_1euix_74 {
|
|
124
|
+
height: calc(12.25rem + ((1vw - 3.75px) * 48.5777));
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media (max-width: 500px) {
|
|
129
|
+
._modal_1euix_40 {
|
|
130
|
+
width: calc(100% - 1rem);
|
|
131
|
+
}
|
|
132
|
+
._overlay_1euix_24.active {
|
|
133
|
+
align-items: flex-start;
|
|
134
|
+
overflow-y: scroll;
|
|
135
|
+
padding-top: 40px;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
._18ygy9m0 {
|
|
2
|
-
padding: 3rem 0;
|
|
3
|
-
}
|
|
4
1
|
._18ygy9m1 {
|
|
5
2
|
background: var(--_1073cm81);
|
|
6
3
|
}
|
|
@@ -25,6 +22,7 @@
|
|
|
25
22
|
padding-bottom: 2.5rem;
|
|
26
23
|
text-align: center;
|
|
27
24
|
max-width: 1000px;
|
|
25
|
+
padding-top: 3rem;
|
|
28
26
|
}
|
|
29
27
|
._18ygy9m5 .containment {
|
|
30
28
|
width: 100%;
|
|
@@ -44,6 +42,7 @@
|
|
|
44
42
|
padding-top: 2.5rem;
|
|
45
43
|
text-align: center;
|
|
46
44
|
max-width: 1000px;
|
|
45
|
+
padding-bottom: 2.5rem;
|
|
47
46
|
}
|
|
48
47
|
._18ygy9ma {
|
|
49
48
|
isolation: isolate;
|
|
@@ -215,7 +215,7 @@ tr:last-child td {
|
|
|
215
215
|
background: #f4f4f4;
|
|
216
216
|
}
|
|
217
217
|
._1nivbwe12 tr:nth-child(odd) td {
|
|
218
|
-
background: #ffffff
|
|
218
|
+
background: #ffffff;
|
|
219
219
|
}
|
|
220
220
|
._1nivbwe12 tr th:first-child {
|
|
221
221
|
text-align: left;
|
|
@@ -269,6 +269,10 @@ td:has(.flex.middle span.img_fluid) .flex.middle {
|
|
|
269
269
|
td:has(.flex.middle span.img_fluid) .img_fluid {
|
|
270
270
|
min-width: 24px;
|
|
271
271
|
}
|
|
272
|
+
._1nivbwe14 {
|
|
273
|
+
background-image: linear-gradient(0deg,#152d54,#27466f) !important;
|
|
274
|
+
color: var(--_1073cm8g) !important;
|
|
275
|
+
}
|
|
272
276
|
@media screen and (max-width: 768px) {
|
|
273
277
|
._1nivbwed:first-child {
|
|
274
278
|
box-shadow: 0 15px 20px 0px rgb(0 0 0 / 0.3);
|
package/dist/assets/globals.css
CHANGED
|
@@ -166,6 +166,12 @@ h1, h2, h3, h4, h5, h6, es_font {
|
|
|
166
166
|
line-height: 36px;
|
|
167
167
|
letter-spacing: 0.2px;
|
|
168
168
|
}
|
|
169
|
+
.header_4 {
|
|
170
|
+
font-weight: 600;
|
|
171
|
+
font-size: 20px;
|
|
172
|
+
line-height: 28px;
|
|
173
|
+
letter-spacing: 0.2px;
|
|
174
|
+
}
|
|
169
175
|
.gradient_text {
|
|
170
176
|
background: linear-gradient(3deg, #051A3F 14.64%, #1E3860 48.42%, #4D85B0 85.36%);
|
|
171
177
|
background-size: 100%;
|
package/dist/main.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export * from './IconBillboard';
|
|
|
32
32
|
export * from './ImageBillboard';
|
|
33
33
|
export * from './ImageLink';
|
|
34
34
|
export * from './Input';
|
|
35
|
+
export * from './Interstitial';
|
|
35
36
|
export * from './LandingPageHeader';
|
|
36
37
|
export * from './LoadingIndicator';
|
|
37
38
|
export * from './MainHTML';
|
package/dist/main.js
CHANGED
|
@@ -56,7 +56,7 @@ import { ScheduleCallPremier } from "./Forms/ScheduleCallPremier.js";
|
|
|
56
56
|
import { SuccesFormWrapper } from "./Forms/SuccesForm.js";
|
|
57
57
|
import { WCPLSurvey } from "./Forms/WcplSurvey.js";
|
|
58
58
|
import { HeroBanner } from "./HeroBanner/HeroBanner.js";
|
|
59
|
-
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_img, hero_text, hero_wrapper, logout, reversed } from "./HeroBanner/HeroBanner.css.js";
|
|
59
|
+
import { headline_text, heroSupertag, hero_banner, hero_btns, hero_content, hero_img, hero_text, hero_wrapper, logout, reversed, reversed_lg_image } from "./HeroBanner/HeroBanner.css.js";
|
|
60
60
|
import { selection_headline_text, selection_section, selection_section_bg, selection_section_content, selection_section_icon, selection_section_icon_img } from "./HeroBanner/SelectionBanner.css.js";
|
|
61
61
|
import { Hyperlink } from "./Hyperlink/index.js";
|
|
62
62
|
import { IconBillboard } from "./IconBillboard/IconBillboard.js";
|
|
@@ -78,6 +78,7 @@ import { Input } from "./Input/Input.js";
|
|
|
78
78
|
import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input/Input.css.js";
|
|
79
79
|
import { InputPhone } from "./Input/InputPhone.js";
|
|
80
80
|
import { InputTextArea } from "./Input/InputTextArea.js";
|
|
81
|
+
import { Interstitial } from "./Interstitial/index.js";
|
|
81
82
|
import { LandingPageHeader } from "./LandingPageHeader/LandingPageHeader.js";
|
|
82
83
|
import { lp_container, lp_hover, lp_theme, svg_fill } from "./LandingPageHeader/LandingPageHeader.css.js";
|
|
83
84
|
import { LoadingIndicator } from "./LoadingIndicator/index.js";
|
|
@@ -95,7 +96,7 @@ import { bs_copy, bs_topic, bullet_details, li, line_points, point, step_num } f
|
|
|
95
96
|
import { StepItemSet } from "./StepItemSet/StepItemSet.js";
|
|
96
97
|
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";
|
|
97
98
|
import { Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from "./Table/Table.js";
|
|
98
|
-
import { alternate_color_rows, apy_table, bodyHeader, headerCell, headerVariants, highlight_first_row, highlight_last_row, table, tableWrapper, table_container, table_container_text, table_description_text, table_headline, td, th } from "./Table/Table.css.js";
|
|
99
|
+
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, td, th } from "./Table/Table.css.js";
|
|
99
100
|
import { TextBlock } from "./TextBlock/TextBlock.js";
|
|
100
101
|
import { textBlockHeader, textBlockList, textBlockParagraph } from "./TextBlock/TextBlock.css.js";
|
|
101
102
|
import { picker_arrow, picker_itemContent, picker_itemProduct, picker_navIcon, picker_navItem } from "./TopicalNavItem/TopicalNavItem.css.js";
|
|
@@ -219,6 +220,7 @@ export {
|
|
|
219
220
|
Input,
|
|
220
221
|
InputPhone,
|
|
221
222
|
InputTextArea,
|
|
223
|
+
Interstitial,
|
|
222
224
|
LandingPageHeader,
|
|
223
225
|
LoadingIndicator,
|
|
224
226
|
default18 as LockIcon,
|
|
@@ -378,6 +380,7 @@ export {
|
|
|
378
380
|
hero_wrapper,
|
|
379
381
|
hide,
|
|
380
382
|
hide_transcript,
|
|
383
|
+
highlight_cell,
|
|
381
384
|
highlight_first_row,
|
|
382
385
|
highlight_last_row,
|
|
383
386
|
icon,
|
|
@@ -434,6 +437,7 @@ export {
|
|
|
434
437
|
rate_container,
|
|
435
438
|
rate_pad,
|
|
436
439
|
reversed,
|
|
440
|
+
reversed_lg_image,
|
|
437
441
|
sec_subtitle,
|
|
438
442
|
sec_title,
|
|
439
443
|
section_body,
|
|
@@ -9,7 +9,9 @@ const moreDomains = {
|
|
|
9
9
|
"{IMAGEASSETSURL}": "https://images.axos.com",
|
|
10
10
|
"{ONLINEBANKING}": "https://onlinebanking.uat.axsobank.com",
|
|
11
11
|
"{UFBDIRECT}": "https://www.ufbdirect.com",
|
|
12
|
-
"{ARMS}": "https://arms.axosadvisor.com"
|
|
12
|
+
"{ARMS}": "https://arms.axosadvisor.com",
|
|
13
|
+
"{APPS}": "https://apps.axosbank.com",
|
|
14
|
+
"{AFP}": "https://afp.axosbank.com"
|
|
13
15
|
// "assets.axos.com": "https://assets.axos.com",
|
|
14
16
|
// "images.axos.com": "https://images.axos.com",
|
|
15
17
|
};
|