back-testing-react 1.0.7 → 1.0.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.
package/dist/index.d.ts CHANGED
@@ -94,4 +94,27 @@ interface BackTestingStormLegendProps {
94
94
 
95
95
  declare const BackTestingStormLegend: (props: BackTestingStormLegendProps) => react_jsx_runtime.JSX.Element;
96
96
 
97
- export { BackTestingCatLegend, BackTestingMap, BackTestingStormLegend };
97
+ interface BackTestingWizardProps {
98
+ apiAccessToken: string;
99
+ mapAccessToken: string;
100
+ env: 'dev' | 'uat' | 'prod';
101
+ selectedProxyPayoutOptionIndex: number;
102
+ proxyPayoutOptions: {
103
+ key: string;
104
+ value: Payout[];
105
+ }[];
106
+ selectedAnemometerPayoutOptionIndex: number;
107
+ anemometerPayoutOptions: {
108
+ key: string;
109
+ value: Payout[];
110
+ }[];
111
+ selectedCIACPayoutOptionIndex: number;
112
+ ciacPayoutOptions: {
113
+ key: string;
114
+ value: Payout[];
115
+ }[];
116
+ }
117
+
118
+ declare function BackTestingWizard(props: BackTestingWizardProps): react_jsx_runtime.JSX.Element;
119
+
120
+ export { BackTestingCatLegend, BackTestingMap, BackTestingStormLegend, BackTestingWizard };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "back-testing-react",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Parametric back testing application developed by NormanMax Insurance Solutions",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -0,0 +1,2 @@
1
+ import BackTestingWizard from './back-testing-wizard';
2
+ export {BackTestingWizard}
@@ -1,3 +1,4 @@
1
1
  export * from './back-testing-map';
2
2
  export * from './back-testing-cat-legend';
3
3
  export * from './back-testing-storm-legend';
4
+ export * from './back-testing-wizard';