@axos-web-dev/shared-components 1.0.42 → 1.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +111 -111
- package/dist/Avatar/Avatar.module.js +7 -7
- package/dist/Blockquote/Blockquote.module.js +3 -3
- package/dist/Calculators/BuyDownCalculator/index.js +1 -1
- package/dist/FdicCallout/FdicCallout.module.js +2 -2
- package/dist/Interstitial/Interstitial.module.js +10 -10
- package/dist/NavigationMenu/AxosALTS/NavBar.module.js +23 -23
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
- package/dist/NavigationMenu/AxosBank/index.js +2 -2
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
- package/dist/NavigationMenu/LaVictoire/NavBar.module.js +37 -37
- package/dist/Table/Table.d.ts +1 -1
- package/dist/WalnutIframe/wrapper.module.js +2 -2
- package/dist/assets/Avatar/Avatar.css.css +59 -59
- package/dist/assets/Blockquote/Blockquote.css.css +68 -68
- package/dist/assets/FdicCallout/FdicCallout.css.css +48 -48
- package/dist/assets/Interstitial/Interstitial.css.css +142 -142
- package/dist/assets/NavigationMenu/AxosALTS/NavBar.css.css +264 -264
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +597 -597
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +618 -618
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +126 -138
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +458 -458
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +426 -426
- package/dist/assets/NavigationMenu/LaVictoire/NavBar.css.css +429 -429
- package/dist/assets/WalnutIframe/wrapper.css.css +51 -51
- package/dist/assets/utils/optimizeImage/optimizeImage.css.css +48 -48
- package/dist/utils/allowedAxosDomains.js +1 -1
- package/dist/utils/optimizeImage/optimizeImage.module.js +3 -3
- package/package.json +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.d.ts +0 -2
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.js +0 -345
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.module.js +0 -4
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +0 -250
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +0 -627
- package/dist/assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css +0 -178
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
/* .overlay {
|
|
2
|
-
position: fixed;
|
|
3
|
-
inset: 0;
|
|
4
|
-
height: 100vh;
|
|
5
|
-
background: rgba(0, 0, 0, 0.6);
|
|
6
|
-
z-index: 10000;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.drawer {
|
|
10
|
-
position: fixed;
|
|
11
|
-
top: 0;
|
|
12
|
-
right: 0;
|
|
13
|
-
background: #fff;
|
|
14
|
-
border-radius: 0 0 0 1rem;
|
|
15
|
-
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
|
|
16
|
-
max-height: 100vh;
|
|
17
|
-
max-width: 500px;
|
|
18
|
-
overflow-y: auto;
|
|
19
|
-
width: 85%;
|
|
20
|
-
z-index: 10001;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.hamburger {
|
|
24
|
-
background: transparent;
|
|
25
|
-
border: none;
|
|
26
|
-
cursor: pointer;
|
|
27
|
-
transition: opacity 0.3s ease;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.hamburger:hover {
|
|
31
|
-
opacity: 0.8;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.header {
|
|
35
|
-
display: flex;
|
|
36
|
-
align-items: center;
|
|
37
|
-
background: #f4f4f4;
|
|
38
|
-
justify-content: space-between;
|
|
39
|
-
padding: 0.9rem 1.2rem 0.9rem 1rem;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.back {
|
|
43
|
-
background: none;
|
|
44
|
-
border: none;
|
|
45
|
-
color: var(--_1073cm86);
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
font-size: 1rem;
|
|
48
|
-
font-weight: 700;
|
|
49
|
-
line-height: 1;
|
|
50
|
-
padding: 0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.close {
|
|
54
|
-
background: none;
|
|
55
|
-
border: none;
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
font-size: 1.3rem;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.levelContainer {
|
|
61
|
-
height: 100%;
|
|
62
|
-
overflow: hidden;
|
|
63
|
-
position: relative;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.level {
|
|
67
|
-
background: var(--_1073cm86);
|
|
68
|
-
color: var(--_1073cm85);
|
|
69
|
-
font-size: 0.9rem;
|
|
70
|
-
padding: 14px 1.2rem;
|
|
71
|
-
width: 100%;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.levelTitle {
|
|
75
|
-
font: 700 0.9rem / 1.39 var(--main-font-family);
|
|
76
|
-
letter-spacing: 0.4px;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.menu {
|
|
80
|
-
background-color: transparent;
|
|
81
|
-
list-style: none;
|
|
82
|
-
margin: 0;
|
|
83
|
-
min-height: 100%;
|
|
84
|
-
padding: 0 1.2rem;
|
|
85
|
-
position: relative;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.menu li {
|
|
89
|
-
color: var(--_1073cm83);
|
|
90
|
-
font-family: var(--header-font-family);
|
|
91
|
-
font-weight: 500;
|
|
92
|
-
border-top: 1px solid #e9e9e9;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.menu li + li {
|
|
96
|
-
margin-top: 0.5rem;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.menuItem {
|
|
100
|
-
display: flex;
|
|
101
|
-
align-items: center;
|
|
102
|
-
background: none;
|
|
103
|
-
border: none;
|
|
104
|
-
color: inherit;
|
|
105
|
-
cursor: pointer;
|
|
106
|
-
font-size: 1rem;
|
|
107
|
-
justify-content: space-between;
|
|
108
|
-
padding: 0.75rem 0;
|
|
109
|
-
text-align: left;
|
|
110
|
-
text-decoration: none;
|
|
111
|
-
transition: background 0.2s ease;
|
|
112
|
-
width: 100%;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.chevron {
|
|
116
|
-
font-size: 1.2rem;
|
|
117
|
-
margin-left: auto;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.chevronIcon {
|
|
121
|
-
margin-right: 10px;
|
|
122
|
-
max-width: 8px;
|
|
123
|
-
height: auto;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
body:has(.drawer) {
|
|
127
|
-
overflow-y: hidden;
|
|
128
|
-
position: relative;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.quickLinks {
|
|
132
|
-
padding: 1rem;
|
|
133
|
-
background-color: #f4f4f4;
|
|
134
|
-
box-shadow: 0 15px 10px -20px rgba(0, 0, 0, 0.45) inset;
|
|
135
|
-
margin-top: 9px;
|
|
136
|
-
gap: 8px;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.quickLink {
|
|
140
|
-
display: flex;
|
|
141
|
-
align-items: center;
|
|
142
|
-
color: var(--_1073cm86);
|
|
143
|
-
flex-direction: column;
|
|
144
|
-
flex: 1 1 0%;
|
|
145
|
-
font-size: 0.8rem;
|
|
146
|
-
font-weight: 600;
|
|
147
|
-
gap: 8px;
|
|
148
|
-
line-height: 1.5;
|
|
149
|
-
text-decoration: none;
|
|
150
|
-
text-transform: uppercase;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.sr_only {
|
|
154
|
-
position: absolute;
|
|
155
|
-
width: 1px;
|
|
156
|
-
height: 1px;
|
|
157
|
-
padding: 0;
|
|
158
|
-
margin: -1px;
|
|
159
|
-
overflow: hidden;
|
|
160
|
-
clip: rect(0, 0, 0, 0);
|
|
161
|
-
white-space: nowrap;
|
|
162
|
-
border: 0;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
@media (max-width: 540px) {
|
|
166
|
-
.drawer {
|
|
167
|
-
border-radius: 0;
|
|
168
|
-
max-width: none;
|
|
169
|
-
width: 100%;
|
|
170
|
-
}
|
|
171
|
-
.menu li + li {
|
|
172
|
-
margin-top: 3px;
|
|
173
|
-
}
|
|
174
|
-
.menuItem {
|
|
175
|
-
font-size: 0.9rem;
|
|
176
|
-
padding: 0.65rem 0;
|
|
177
|
-
}
|
|
178
|
-
} */
|