@axos-web-dev/shared-components 1.0.99-dev.20 → 1.0.99-dev.21
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.
|
@@ -13,5 +13,6 @@ export interface CalculatorProps {
|
|
|
13
13
|
disclosure?: React.ReactNode;
|
|
14
14
|
marketingTiles?: IconBillboardProps[];
|
|
15
15
|
callToActionRow?: ChevronProps[];
|
|
16
|
+
initialBalance?: number;
|
|
16
17
|
}
|
|
17
18
|
export declare const Calculator: (props: CalculatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -137,7 +137,8 @@ const Calculator = (props) => {
|
|
|
137
137
|
headline,
|
|
138
138
|
name,
|
|
139
139
|
marketingTiles,
|
|
140
|
-
callToActionRow
|
|
140
|
+
callToActionRow,
|
|
141
|
+
initialBalance
|
|
141
142
|
} = props;
|
|
142
143
|
const ref = useRef(null);
|
|
143
144
|
const iframe = calculators.get(name || "");
|
|
@@ -229,7 +230,8 @@ const Calculator = (props) => {
|
|
|
229
230
|
variant,
|
|
230
231
|
disclosure,
|
|
231
232
|
icon,
|
|
232
|
-
callToActionRow
|
|
233
|
+
callToActionRow,
|
|
234
|
+
initialBalance
|
|
233
235
|
}
|
|
234
236
|
);
|
|
235
237
|
} else if (name === "APY Balance Summit Savings") {
|
package/package.json
CHANGED