@mx-cartographer/experiences 6.5.8-alpha.san1 → 6.5.8

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.
@@ -9,18 +9,12 @@ interface HoldingDetail {
9
9
  marketValue: number;
10
10
  }
11
11
  interface InvestmentDetailsDrawerProps {
12
+ isOpen: boolean;
13
+ onClose: () => void;
12
14
  accountHoldingsData: {
13
15
  accounts: any;
14
16
  holdings: HoldingDetail[];
15
17
  };
16
- currentEditedCostBasis: string;
17
- editingHoldingId: string | null;
18
- handleCostBasisBlur: (id: string) => void;
19
- handleCostBasisChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
20
- handleCostBasisClick: (holdingId: string, currentCostBasis: number) => void;
21
- handleCostBasisKeyDown: (event: React.KeyboardEvent<HTMLInputElement>, id: string) => void;
22
- isOpen: boolean;
23
- onClose: () => void;
24
18
  }
25
- declare const _default: React.FunctionComponent<InvestmentDetailsDrawerProps>;
26
- export default _default;
19
+ declare const InvestmentDetailsDrawer: React.FC<InvestmentDetailsDrawerProps>;
20
+ export default InvestmentDetailsDrawer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "6.5.8-alpha.san1",
3
+ "version": "6.5.8",
4
4
  "description": "Library containing experience widgets",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",