@axos-web-dev/shared-components 1.0.100-dev.71 → 1.0.100-dev.73
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/AxosOneCalculator/index.js +3 -3
- 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 +9 -0
- package/dist/assets/globals.css +3 -3
- package/package.json +1 -1
|
@@ -53,7 +53,7 @@ const AxosOneCalculator = ({
|
|
|
53
53
|
};
|
|
54
54
|
const calculateBalance = (amount) => {
|
|
55
55
|
setCalculatedBalance(amount);
|
|
56
|
-
const TIER_THRESHOLD =
|
|
56
|
+
const TIER_THRESHOLD = 249999.99;
|
|
57
57
|
if (amount > TIER_THRESHOLD) {
|
|
58
58
|
const tier1Amount = TIER_THRESHOLD;
|
|
59
59
|
const tier2Amount = amount - TIER_THRESHOLD;
|
|
@@ -190,7 +190,7 @@ const AxosOneCalculator = ({
|
|
|
190
190
|
/* @__PURE__ */ jsxs(TableRow, { className: clsx(tieredRowAnimation), children: [
|
|
191
191
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
192
192
|
"$",
|
|
193
|
-
formatUSD(
|
|
193
|
+
formatUSD(249999.99)
|
|
194
194
|
] }),
|
|
195
195
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
196
196
|
AXOS_ONE_APY.toFixed(2),
|
|
@@ -204,7 +204,7 @@ const AxosOneCalculator = ({
|
|
|
204
204
|
/* @__PURE__ */ jsxs(TableRow, { className: clsx(tieredRowAnimationDelayed), children: [
|
|
205
205
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
206
206
|
"$",
|
|
207
|
-
formatUSD(calculatedBalance -
|
|
207
|
+
formatUSD(calculatedBalance - 249999.99)
|
|
208
208
|
] }),
|
|
209
209
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
210
210
|
AXOS_ONE_APY_TIERED.toFixed(2),
|
|
@@ -365,6 +365,9 @@ const menuData = {
|
|
|
365
365
|
),
|
|
366
366
|
"Non-Profit Money Market": findMoreAxosDomains(
|
|
367
367
|
"{AXOSBANK}/business/savings/business-money-market-accounts/non-profit-money-market"
|
|
368
|
+
),
|
|
369
|
+
"Business CDs": findMoreAxosDomains(
|
|
370
|
+
"{AXOSBANK}/business/savings/business-cds"
|
|
368
371
|
)
|
|
369
372
|
},
|
|
370
373
|
Bundles: {
|
|
@@ -2167,6 +2167,15 @@ function SubNavBar() {
|
|
|
2167
2167
|
),
|
|
2168
2168
|
children: "Non-Profit Money Market"
|
|
2169
2169
|
}
|
|
2170
|
+
) }),
|
|
2171
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2172
|
+
Link,
|
|
2173
|
+
{
|
|
2174
|
+
href: findMoreAxosDomains(
|
|
2175
|
+
"{AXOSBANK}/business/savings/business-cds"
|
|
2176
|
+
),
|
|
2177
|
+
children: "Business CDs"
|
|
2178
|
+
}
|
|
2170
2179
|
) })
|
|
2171
2180
|
] })
|
|
2172
2181
|
] }),
|
package/dist/assets/globals.css
CHANGED
|
@@ -152,11 +152,11 @@ h1, h2, h3, h4, h5, h6, es_font {
|
|
|
152
152
|
}
|
|
153
153
|
.header_3 {
|
|
154
154
|
font-size: 28px;
|
|
155
|
-
line-height:
|
|
155
|
+
line-height: 1.29;
|
|
156
156
|
}
|
|
157
157
|
.header_4 {
|
|
158
158
|
font-size: 20px;
|
|
159
|
-
line-height:
|
|
159
|
+
line-height: 1.4;
|
|
160
160
|
}
|
|
161
161
|
.gradient_text {
|
|
162
162
|
background: linear-gradient(3deg, #1E3860 14.64%, #1E3860 48.42%, #1E3860 85.36%);
|
|
@@ -173,7 +173,7 @@ h1, h2, h3, h4, h5, h6, es_font {
|
|
|
173
173
|
}
|
|
174
174
|
.list_item {
|
|
175
175
|
font-size: 1rem;
|
|
176
|
-
line-height: 1.
|
|
176
|
+
line-height: 1.5;
|
|
177
177
|
-webkit-box-align: start;
|
|
178
178
|
align-items: flex-start;
|
|
179
179
|
}
|
package/package.json
CHANGED