@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.
@@ -53,7 +53,7 @@ const AxosOneCalculator = ({
53
53
  };
54
54
  const calculateBalance = (amount) => {
55
55
  setCalculatedBalance(amount);
56
- const TIER_THRESHOLD = 499999.99;
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(499999.99)
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 - 499999.99)
207
+ formatUSD(calculatedBalance - 249999.99)
208
208
  ] }),
209
209
  /* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
210
210
  AXOS_ONE_APY_TIERED.toFixed(2),
@@ -116,6 +116,7 @@ export declare const menuData: {
116
116
  "Business Premium Savings": string;
117
117
  "Business Savings": string;
118
118
  "Non-Profit Money Market": string;
119
+ "Business CDs": string;
119
120
  };
120
121
  Bundles: {
121
122
  "Axos Business Bundle": string;
@@ -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
  ] }),
@@ -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: 36px;
155
+ line-height: 1.29;
156
156
  }
157
157
  .header_4 {
158
158
  font-size: 20px;
159
- line-height: 28px;
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.5rem;
176
+ line-height: 1.5;
177
177
  -webkit-box-align: start;
178
178
  align-items: flex-start;
179
179
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "1.0.100-dev.71",
4
+ "version": "1.0.100-dev.73",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",