@axos-web-dev/shared-components 1.0.77-patch.58 → 1.0.77-patch.59

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;
@@ -157,8 +157,14 @@ const AxosOneCalculator = ({
157
157
  /* @__PURE__ */ jsx("div", { className: clsx(headerCell, ax1_m_label), children: "Balance" })
158
158
  ] }),
159
159
  /* @__PURE__ */ jsxs(TableCell, { as: "th", variant: "primary", children: [
160
- /* @__PURE__ */ jsx("div", { className: clsx(headerCell, ax1_d_label), children: "Annual Percentage Yield*" }),
161
- /* @__PURE__ */ jsx("div", { className: clsx(headerCell, ax1_m_label), children: "APY*" })
160
+ /* @__PURE__ */ jsxs("div", { className: clsx(headerCell, ax1_d_label), children: [
161
+ "Annual Percentage Yield",
162
+ /* @__PURE__ */ jsx("sup", { children: "**" })
163
+ ] }),
164
+ /* @__PURE__ */ jsxs("div", { className: clsx(headerCell, ax1_m_label), children: [
165
+ "APY",
166
+ /* @__PURE__ */ jsx("sup", { children: "**" })
167
+ ] })
162
168
  ] }),
163
169
  /* @__PURE__ */ jsxs(TableCell, { as: "th", variant: "primary", children: [
164
170
  /* @__PURE__ */ jsx("div", { className: clsx(headerCell, ax1_d_label), children: "Annual Earnings" }),
@@ -184,7 +190,7 @@ const AxosOneCalculator = ({
184
190
  /* @__PURE__ */ jsxs(TableRow, { className: clsx(tieredRowAnimation), children: [
185
191
  /* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
186
192
  "$",
187
- formatUSD(499999.99)
193
+ formatUSD(249999.99)
188
194
  ] }),
189
195
  /* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
190
196
  AXOS_ONE_APY.toFixed(2),
@@ -198,7 +204,7 @@ const AxosOneCalculator = ({
198
204
  /* @__PURE__ */ jsxs(TableRow, { className: clsx(tieredRowAnimationDelayed), children: [
199
205
  /* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
200
206
  "$",
201
- formatUSD(calculatedBalance - 499999.99)
207
+ formatUSD(calculatedBalance - 249999.99)
202
208
  ] }),
203
209
  /* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
204
210
  AXOS_ONE_APY_TIERED.toFixed(2),
@@ -228,7 +234,7 @@ const AxosOneCalculator = ({
228
234
  id
229
235
  )
230
236
  ) }),
231
- showTieredRows && disclosure && /* @__PURE__ */ jsx("div", { className: ax1_calc_disclosure({ variant: calc_variant }), children: disclosure })
237
+ disclosure && /* @__PURE__ */ jsx("div", { className: ax1_calc_disclosure({ variant: calc_variant }), children: disclosure })
232
238
  ] }) });
233
239
  };
234
240
  export {
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.77-patch.58",
4
+ "version": "1.0.77-patch.59",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",