@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
@@ -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.99-dev.20",
4
+ "version": "1.0.99-dev.21",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",