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/cjs/index.js +58 -20
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +58 -20
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +24 -1
- package/package.json +1 -1
- package/src/components/back-testing-wizard/index.ts +2 -0
- package/src/components/index.ts +1 -0
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
|
-
|
|
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
package/src/components/index.ts
CHANGED