@axos-web-dev/shared-components 1.0.100-dev.72 → 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 =
|
|
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),
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
61
61
|
is?: string | undefined;
|
|
62
62
|
exportparts?: string | undefined;
|
|
63
63
|
part?: string | undefined;
|
|
64
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
64
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
65
65
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
66
66
|
popoverTarget?: string | undefined;
|
|
67
67
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
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