@orderly.network/portfolio 2.1.3 → 2.2.0
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.mts +78 -40
- package/dist/index.d.ts +78 -40
- package/dist/index.js +66 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -11
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +19 -16
package/dist/index.d.mts
CHANGED
|
@@ -3,6 +3,8 @@ import { ScaffoldProps, SideBarProps, SideMenuItem } from '@orderly.network/ui-s
|
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _orderly_network_types from '@orderly.network/types';
|
|
5
5
|
import { API } from '@orderly.network/types';
|
|
6
|
+
import * as _orderly_network_hooks from '@orderly.network/hooks';
|
|
7
|
+
import { TWType } from '@orderly.network/hooks';
|
|
6
8
|
import * as _orderly_network_ui from '@orderly.network/ui';
|
|
7
9
|
import { Column } from '@orderly.network/ui';
|
|
8
10
|
import { PositionsProps } from '@orderly.network/ui-positions';
|
|
@@ -23,17 +25,24 @@ declare enum PortfolioLeftSidebarPath {
|
|
|
23
25
|
Orders = "/portfolio/orders",
|
|
24
26
|
FeeTier = "/portfolio/feeTier",
|
|
25
27
|
ApiKey = "/portfolio/apiKey",
|
|
26
|
-
Setting = "/portfolio/setting"
|
|
28
|
+
Setting = "/portfolio/setting",
|
|
29
|
+
History = "/portfolio/history"
|
|
27
30
|
}
|
|
28
31
|
type UseLayoutBuilderOptions = {
|
|
29
32
|
current?: string;
|
|
30
33
|
};
|
|
31
34
|
declare const usePortfolioLayoutScript: (props: UseLayoutBuilderOptions) => {
|
|
32
|
-
items: {
|
|
35
|
+
items: ({
|
|
33
36
|
name: string;
|
|
34
37
|
href: PortfolioLeftSidebarPath;
|
|
35
38
|
icon: react_jsx_runtime.JSX.Element;
|
|
36
|
-
|
|
39
|
+
hide?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
name: string;
|
|
42
|
+
href: PortfolioLeftSidebarPath;
|
|
43
|
+
hide: boolean;
|
|
44
|
+
icon?: undefined;
|
|
45
|
+
})[];
|
|
37
46
|
current: string;
|
|
38
47
|
hideSideBar: boolean;
|
|
39
48
|
onItemSelect: (item: SideMenuItem) => void;
|
|
@@ -78,6 +87,7 @@ declare const useAssetsLineChartScript: () => {
|
|
|
78
87
|
snapshot_time?: number | undefined;
|
|
79
88
|
}[] | null;
|
|
80
89
|
readonly invisible: boolean;
|
|
90
|
+
readonly type?: _orderly_network_hooks.TWType;
|
|
81
91
|
readonly periodTypes: PeriodType[];
|
|
82
92
|
readonly period: any;
|
|
83
93
|
readonly onPeriodChange: (value: PeriodType) => void;
|
|
@@ -95,6 +105,13 @@ declare const useAssetsLineChartScript: () => {
|
|
|
95
105
|
snapshot_time?: number | undefined;
|
|
96
106
|
}[];
|
|
97
107
|
readonly volumeUpdateDate: string;
|
|
108
|
+
readonly totalOrderClaimedReward: [number | undefined, {
|
|
109
|
+
refresh: () => void;
|
|
110
|
+
}];
|
|
111
|
+
readonly curEpochEstimate: _orderly_network_hooks.CurrentEpochEstimate | undefined;
|
|
112
|
+
readonly epochList: _orderly_network_hooks.EpochInfoType;
|
|
113
|
+
readonly brokerName: string | undefined;
|
|
114
|
+
readonly referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
98
115
|
};
|
|
99
116
|
|
|
100
117
|
declare const HistoryDataGroupWidget: () => react_jsx_runtime.JSX.Element;
|
|
@@ -134,6 +151,7 @@ declare const usePerformanceScript: () => {
|
|
|
134
151
|
}[] | null;
|
|
135
152
|
invisible: boolean;
|
|
136
153
|
visible: any;
|
|
154
|
+
type?: _orderly_network_hooks.TWType;
|
|
137
155
|
periodTypes: PeriodType[];
|
|
138
156
|
period: any;
|
|
139
157
|
onPeriodChange: (value: PeriodType) => void;
|
|
@@ -151,6 +169,13 @@ declare const usePerformanceScript: () => {
|
|
|
151
169
|
snapshot_time?: number | undefined;
|
|
152
170
|
}[];
|
|
153
171
|
volumeUpdateDate: string;
|
|
172
|
+
totalOrderClaimedReward: [number | undefined, {
|
|
173
|
+
refresh: () => void;
|
|
174
|
+
}];
|
|
175
|
+
curEpochEstimate: _orderly_network_hooks.CurrentEpochEstimate | undefined;
|
|
176
|
+
epochList: _orderly_network_hooks.EpochInfoType;
|
|
177
|
+
brokerName: string | undefined;
|
|
178
|
+
referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
154
179
|
};
|
|
155
180
|
type UsePerformanceScriptReturn = ReturnType<typeof usePerformanceScript>;
|
|
156
181
|
|
|
@@ -202,36 +227,40 @@ declare const useDistributionHistoryHook: () => {
|
|
|
202
227
|
};
|
|
203
228
|
type useDistributionHistoryHookReturn = ReturnType<typeof useDistributionHistoryHook>;
|
|
204
229
|
|
|
230
|
+
type FundingHistoryProps$1 = {} & useDistributionHistoryHookReturn;
|
|
231
|
+
declare const DistributionHistoryMobile: FC<FundingHistoryProps$1>;
|
|
232
|
+
|
|
205
233
|
type FundingHistoryProps = {} & useDistributionHistoryHookReturn;
|
|
206
|
-
declare const
|
|
234
|
+
declare const DistributionHistoryDesktop: FC<FundingHistoryProps>;
|
|
207
235
|
|
|
208
236
|
declare const OverviewPage: () => react_jsx_runtime.JSX.Element;
|
|
209
237
|
|
|
210
|
-
declare const OverviewContextProvider: (
|
|
211
|
-
|
|
212
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
213
|
-
|
|
214
|
-
declare const index$
|
|
215
|
-
declare const index$
|
|
216
|
-
declare const index$
|
|
217
|
-
declare const index$
|
|
218
|
-
declare const index$
|
|
219
|
-
declare const index$
|
|
220
|
-
declare const index$
|
|
221
|
-
declare const index$
|
|
222
|
-
declare const index$
|
|
223
|
-
declare const index$
|
|
224
|
-
declare const index$
|
|
225
|
-
declare const index$
|
|
226
|
-
declare const index$
|
|
227
|
-
declare const index$
|
|
228
|
-
declare const index$
|
|
229
|
-
declare const index$
|
|
230
|
-
declare const index$
|
|
231
|
-
declare const index$
|
|
232
|
-
declare const index$
|
|
233
|
-
declare
|
|
234
|
-
|
|
238
|
+
declare const OverviewContextProvider: (props: PropsWithChildren<{
|
|
239
|
+
type?: TWType;
|
|
240
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare const index$4_AssetHistory: typeof AssetHistory;
|
|
243
|
+
declare const index$4_AssetHistoryWidget: typeof AssetHistoryWidget;
|
|
244
|
+
declare const index$4_AssetWidget: typeof AssetWidget;
|
|
245
|
+
declare const index$4_AssetsChartWidget: typeof AssetsChartWidget;
|
|
246
|
+
declare const index$4_AssetsUI: typeof AssetsUI;
|
|
247
|
+
declare const index$4_DistributionHistoryDesktop: typeof DistributionHistoryDesktop;
|
|
248
|
+
declare const index$4_DistributionHistoryMobile: typeof DistributionHistoryMobile;
|
|
249
|
+
declare const index$4_DistributionHistoryWidget: typeof DistributionHistoryWidget;
|
|
250
|
+
declare const index$4_FundingHistoryWidget: typeof FundingHistoryWidget;
|
|
251
|
+
declare const index$4_HistoryDataGroupWidget: typeof HistoryDataGroupWidget;
|
|
252
|
+
declare const index$4_OverviewContextProvider: typeof OverviewContextProvider;
|
|
253
|
+
declare const index$4_OverviewPage: typeof OverviewPage;
|
|
254
|
+
declare const index$4_PerformanceUI: typeof PerformanceUI;
|
|
255
|
+
declare const index$4_PerformanceWidget: typeof PerformanceWidget;
|
|
256
|
+
declare const index$4_useAssetHistoryColumns: typeof useAssetHistoryColumns;
|
|
257
|
+
declare const index$4_useAssetHistoryHook: typeof useAssetHistoryHook;
|
|
258
|
+
declare const index$4_useAssetsLineChartScript: typeof useAssetsLineChartScript;
|
|
259
|
+
declare const index$4_useFundingHistoryColumns: typeof useFundingHistoryColumns;
|
|
260
|
+
declare const index$4_useFundingHistoryHook: typeof useFundingHistoryHook;
|
|
261
|
+
declare const index$4_usePerformanceScript: typeof usePerformanceScript;
|
|
262
|
+
declare namespace index$4 {
|
|
263
|
+
export { index$4_AssetHistory as AssetHistory, index$4_AssetHistoryWidget as AssetHistoryWidget, index$4_AssetWidget as AssetWidget, index$4_AssetsChartWidget as AssetsChartWidget, index$4_AssetsUI as AssetsUI, index$4_DistributionHistoryDesktop as DistributionHistoryDesktop, index$4_DistributionHistoryMobile as DistributionHistoryMobile, index$4_DistributionHistoryWidget as DistributionHistoryWidget, index$4_FundingHistoryWidget as FundingHistoryWidget, index$4_HistoryDataGroupWidget as HistoryDataGroupWidget, index$4_OverviewContextProvider as OverviewContextProvider, index$4_OverviewPage as OverviewPage, index$4_PerformanceUI as PerformanceUI, index$4_PerformanceWidget as PerformanceWidget, index$4_useAssetHistoryColumns as useAssetHistoryColumns, index$4_useAssetHistoryHook as useAssetHistoryHook, index$4_useAssetsLineChartScript as useAssetsLineChartScript, index$4_useFundingHistoryColumns as useFundingHistoryColumns, index$4_useFundingHistoryHook as useFundingHistoryHook, index$4_usePerformanceScript as usePerformanceScript };
|
|
235
264
|
}
|
|
236
265
|
|
|
237
266
|
type UseFeeTierScriptOptions = {
|
|
@@ -250,9 +279,9 @@ type FeeTierWidgetProps = UseFeeTierScriptOptions;
|
|
|
250
279
|
type FeeTierPageProps = FeeTierWidgetProps;
|
|
251
280
|
declare const FeeTierPage: FC<FeeTierPageProps>;
|
|
252
281
|
|
|
253
|
-
declare const index$
|
|
254
|
-
declare namespace index$
|
|
255
|
-
export { index$
|
|
282
|
+
declare const index$3_FeeTierPage: typeof FeeTierPage;
|
|
283
|
+
declare namespace index$3 {
|
|
284
|
+
export { index$3_FeeTierPage as FeeTierPage };
|
|
256
285
|
}
|
|
257
286
|
|
|
258
287
|
declare const PositionsPage: (props: PositionsProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -287,20 +316,29 @@ declare const APIManagerPage: (props: {
|
|
|
287
316
|
keyStatus?: string;
|
|
288
317
|
}) => react_jsx_runtime.JSX.Element;
|
|
289
318
|
|
|
290
|
-
declare const index$
|
|
291
|
-
declare const index$
|
|
292
|
-
declare namespace index$
|
|
293
|
-
export { index$
|
|
319
|
+
declare const index$2_APIManagerPage: typeof APIManagerPage;
|
|
320
|
+
declare const index$2_APIManagerWidget: typeof APIManagerWidget;
|
|
321
|
+
declare namespace index$2 {
|
|
322
|
+
export { index$2_APIManagerPage as APIManagerPage, index$2_APIManagerWidget as APIManagerWidget };
|
|
294
323
|
}
|
|
295
324
|
|
|
296
325
|
declare const SettingWidget: () => react_jsx_runtime.JSX.Element;
|
|
297
326
|
|
|
298
327
|
declare const SettingPage: () => react_jsx_runtime.JSX.Element;
|
|
299
328
|
|
|
300
|
-
declare const
|
|
301
|
-
declare const
|
|
329
|
+
declare const index$1_SettingPage: typeof SettingPage;
|
|
330
|
+
declare const index$1_SettingWidget: typeof SettingWidget;
|
|
331
|
+
declare namespace index$1 {
|
|
332
|
+
export { index$1_SettingPage as SettingPage, index$1_SettingWidget as SettingWidget };
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
declare const HistoryWidget: () => react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare const HistoryPage: () => react_jsx_runtime.JSX.Element;
|
|
337
|
+
|
|
338
|
+
declare const index_HistoryPage: typeof HistoryPage;
|
|
339
|
+
declare const index_HistoryWidget: typeof HistoryWidget;
|
|
302
340
|
declare namespace index {
|
|
303
|
-
export {
|
|
341
|
+
export { index_HistoryPage as HistoryPage, index_HistoryWidget as HistoryWidget };
|
|
304
342
|
}
|
|
305
343
|
|
|
306
|
-
export { index$
|
|
344
|
+
export { index$2 as APIManagerModule, index$3 as FeeTierModule, index as HistoryModule, page as OrdersModule, index$4 as OverviewModule, PortfolioLayout, type PortfolioLayoutProps, PortfolioLayoutWidget, type PortfolioLayoutWidgetProps, PortfolioLeftSidebarPath, page$1 as PositionsModule, index$1 as SettingModule, usePortfolioLayoutScript };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ import { ScaffoldProps, SideBarProps, SideMenuItem } from '@orderly.network/ui-s
|
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _orderly_network_types from '@orderly.network/types';
|
|
5
5
|
import { API } from '@orderly.network/types';
|
|
6
|
+
import * as _orderly_network_hooks from '@orderly.network/hooks';
|
|
7
|
+
import { TWType } from '@orderly.network/hooks';
|
|
6
8
|
import * as _orderly_network_ui from '@orderly.network/ui';
|
|
7
9
|
import { Column } from '@orderly.network/ui';
|
|
8
10
|
import { PositionsProps } from '@orderly.network/ui-positions';
|
|
@@ -23,17 +25,24 @@ declare enum PortfolioLeftSidebarPath {
|
|
|
23
25
|
Orders = "/portfolio/orders",
|
|
24
26
|
FeeTier = "/portfolio/feeTier",
|
|
25
27
|
ApiKey = "/portfolio/apiKey",
|
|
26
|
-
Setting = "/portfolio/setting"
|
|
28
|
+
Setting = "/portfolio/setting",
|
|
29
|
+
History = "/portfolio/history"
|
|
27
30
|
}
|
|
28
31
|
type UseLayoutBuilderOptions = {
|
|
29
32
|
current?: string;
|
|
30
33
|
};
|
|
31
34
|
declare const usePortfolioLayoutScript: (props: UseLayoutBuilderOptions) => {
|
|
32
|
-
items: {
|
|
35
|
+
items: ({
|
|
33
36
|
name: string;
|
|
34
37
|
href: PortfolioLeftSidebarPath;
|
|
35
38
|
icon: react_jsx_runtime.JSX.Element;
|
|
36
|
-
|
|
39
|
+
hide?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
name: string;
|
|
42
|
+
href: PortfolioLeftSidebarPath;
|
|
43
|
+
hide: boolean;
|
|
44
|
+
icon?: undefined;
|
|
45
|
+
})[];
|
|
37
46
|
current: string;
|
|
38
47
|
hideSideBar: boolean;
|
|
39
48
|
onItemSelect: (item: SideMenuItem) => void;
|
|
@@ -78,6 +87,7 @@ declare const useAssetsLineChartScript: () => {
|
|
|
78
87
|
snapshot_time?: number | undefined;
|
|
79
88
|
}[] | null;
|
|
80
89
|
readonly invisible: boolean;
|
|
90
|
+
readonly type?: _orderly_network_hooks.TWType;
|
|
81
91
|
readonly periodTypes: PeriodType[];
|
|
82
92
|
readonly period: any;
|
|
83
93
|
readonly onPeriodChange: (value: PeriodType) => void;
|
|
@@ -95,6 +105,13 @@ declare const useAssetsLineChartScript: () => {
|
|
|
95
105
|
snapshot_time?: number | undefined;
|
|
96
106
|
}[];
|
|
97
107
|
readonly volumeUpdateDate: string;
|
|
108
|
+
readonly totalOrderClaimedReward: [number | undefined, {
|
|
109
|
+
refresh: () => void;
|
|
110
|
+
}];
|
|
111
|
+
readonly curEpochEstimate: _orderly_network_hooks.CurrentEpochEstimate | undefined;
|
|
112
|
+
readonly epochList: _orderly_network_hooks.EpochInfoType;
|
|
113
|
+
readonly brokerName: string | undefined;
|
|
114
|
+
readonly referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
98
115
|
};
|
|
99
116
|
|
|
100
117
|
declare const HistoryDataGroupWidget: () => react_jsx_runtime.JSX.Element;
|
|
@@ -134,6 +151,7 @@ declare const usePerformanceScript: () => {
|
|
|
134
151
|
}[] | null;
|
|
135
152
|
invisible: boolean;
|
|
136
153
|
visible: any;
|
|
154
|
+
type?: _orderly_network_hooks.TWType;
|
|
137
155
|
periodTypes: PeriodType[];
|
|
138
156
|
period: any;
|
|
139
157
|
onPeriodChange: (value: PeriodType) => void;
|
|
@@ -151,6 +169,13 @@ declare const usePerformanceScript: () => {
|
|
|
151
169
|
snapshot_time?: number | undefined;
|
|
152
170
|
}[];
|
|
153
171
|
volumeUpdateDate: string;
|
|
172
|
+
totalOrderClaimedReward: [number | undefined, {
|
|
173
|
+
refresh: () => void;
|
|
174
|
+
}];
|
|
175
|
+
curEpochEstimate: _orderly_network_hooks.CurrentEpochEstimate | undefined;
|
|
176
|
+
epochList: _orderly_network_hooks.EpochInfoType;
|
|
177
|
+
brokerName: string | undefined;
|
|
178
|
+
referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
154
179
|
};
|
|
155
180
|
type UsePerformanceScriptReturn = ReturnType<typeof usePerformanceScript>;
|
|
156
181
|
|
|
@@ -202,36 +227,40 @@ declare const useDistributionHistoryHook: () => {
|
|
|
202
227
|
};
|
|
203
228
|
type useDistributionHistoryHookReturn = ReturnType<typeof useDistributionHistoryHook>;
|
|
204
229
|
|
|
230
|
+
type FundingHistoryProps$1 = {} & useDistributionHistoryHookReturn;
|
|
231
|
+
declare const DistributionHistoryMobile: FC<FundingHistoryProps$1>;
|
|
232
|
+
|
|
205
233
|
type FundingHistoryProps = {} & useDistributionHistoryHookReturn;
|
|
206
|
-
declare const
|
|
234
|
+
declare const DistributionHistoryDesktop: FC<FundingHistoryProps>;
|
|
207
235
|
|
|
208
236
|
declare const OverviewPage: () => react_jsx_runtime.JSX.Element;
|
|
209
237
|
|
|
210
|
-
declare const OverviewContextProvider: (
|
|
211
|
-
|
|
212
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
213
|
-
|
|
214
|
-
declare const index$
|
|
215
|
-
declare const index$
|
|
216
|
-
declare const index$
|
|
217
|
-
declare const index$
|
|
218
|
-
declare const index$
|
|
219
|
-
declare const index$
|
|
220
|
-
declare const index$
|
|
221
|
-
declare const index$
|
|
222
|
-
declare const index$
|
|
223
|
-
declare const index$
|
|
224
|
-
declare const index$
|
|
225
|
-
declare const index$
|
|
226
|
-
declare const index$
|
|
227
|
-
declare const index$
|
|
228
|
-
declare const index$
|
|
229
|
-
declare const index$
|
|
230
|
-
declare const index$
|
|
231
|
-
declare const index$
|
|
232
|
-
declare const index$
|
|
233
|
-
declare
|
|
234
|
-
|
|
238
|
+
declare const OverviewContextProvider: (props: PropsWithChildren<{
|
|
239
|
+
type?: TWType;
|
|
240
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare const index$4_AssetHistory: typeof AssetHistory;
|
|
243
|
+
declare const index$4_AssetHistoryWidget: typeof AssetHistoryWidget;
|
|
244
|
+
declare const index$4_AssetWidget: typeof AssetWidget;
|
|
245
|
+
declare const index$4_AssetsChartWidget: typeof AssetsChartWidget;
|
|
246
|
+
declare const index$4_AssetsUI: typeof AssetsUI;
|
|
247
|
+
declare const index$4_DistributionHistoryDesktop: typeof DistributionHistoryDesktop;
|
|
248
|
+
declare const index$4_DistributionHistoryMobile: typeof DistributionHistoryMobile;
|
|
249
|
+
declare const index$4_DistributionHistoryWidget: typeof DistributionHistoryWidget;
|
|
250
|
+
declare const index$4_FundingHistoryWidget: typeof FundingHistoryWidget;
|
|
251
|
+
declare const index$4_HistoryDataGroupWidget: typeof HistoryDataGroupWidget;
|
|
252
|
+
declare const index$4_OverviewContextProvider: typeof OverviewContextProvider;
|
|
253
|
+
declare const index$4_OverviewPage: typeof OverviewPage;
|
|
254
|
+
declare const index$4_PerformanceUI: typeof PerformanceUI;
|
|
255
|
+
declare const index$4_PerformanceWidget: typeof PerformanceWidget;
|
|
256
|
+
declare const index$4_useAssetHistoryColumns: typeof useAssetHistoryColumns;
|
|
257
|
+
declare const index$4_useAssetHistoryHook: typeof useAssetHistoryHook;
|
|
258
|
+
declare const index$4_useAssetsLineChartScript: typeof useAssetsLineChartScript;
|
|
259
|
+
declare const index$4_useFundingHistoryColumns: typeof useFundingHistoryColumns;
|
|
260
|
+
declare const index$4_useFundingHistoryHook: typeof useFundingHistoryHook;
|
|
261
|
+
declare const index$4_usePerformanceScript: typeof usePerformanceScript;
|
|
262
|
+
declare namespace index$4 {
|
|
263
|
+
export { index$4_AssetHistory as AssetHistory, index$4_AssetHistoryWidget as AssetHistoryWidget, index$4_AssetWidget as AssetWidget, index$4_AssetsChartWidget as AssetsChartWidget, index$4_AssetsUI as AssetsUI, index$4_DistributionHistoryDesktop as DistributionHistoryDesktop, index$4_DistributionHistoryMobile as DistributionHistoryMobile, index$4_DistributionHistoryWidget as DistributionHistoryWidget, index$4_FundingHistoryWidget as FundingHistoryWidget, index$4_HistoryDataGroupWidget as HistoryDataGroupWidget, index$4_OverviewContextProvider as OverviewContextProvider, index$4_OverviewPage as OverviewPage, index$4_PerformanceUI as PerformanceUI, index$4_PerformanceWidget as PerformanceWidget, index$4_useAssetHistoryColumns as useAssetHistoryColumns, index$4_useAssetHistoryHook as useAssetHistoryHook, index$4_useAssetsLineChartScript as useAssetsLineChartScript, index$4_useFundingHistoryColumns as useFundingHistoryColumns, index$4_useFundingHistoryHook as useFundingHistoryHook, index$4_usePerformanceScript as usePerformanceScript };
|
|
235
264
|
}
|
|
236
265
|
|
|
237
266
|
type UseFeeTierScriptOptions = {
|
|
@@ -250,9 +279,9 @@ type FeeTierWidgetProps = UseFeeTierScriptOptions;
|
|
|
250
279
|
type FeeTierPageProps = FeeTierWidgetProps;
|
|
251
280
|
declare const FeeTierPage: FC<FeeTierPageProps>;
|
|
252
281
|
|
|
253
|
-
declare const index$
|
|
254
|
-
declare namespace index$
|
|
255
|
-
export { index$
|
|
282
|
+
declare const index$3_FeeTierPage: typeof FeeTierPage;
|
|
283
|
+
declare namespace index$3 {
|
|
284
|
+
export { index$3_FeeTierPage as FeeTierPage };
|
|
256
285
|
}
|
|
257
286
|
|
|
258
287
|
declare const PositionsPage: (props: PositionsProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -287,20 +316,29 @@ declare const APIManagerPage: (props: {
|
|
|
287
316
|
keyStatus?: string;
|
|
288
317
|
}) => react_jsx_runtime.JSX.Element;
|
|
289
318
|
|
|
290
|
-
declare const index$
|
|
291
|
-
declare const index$
|
|
292
|
-
declare namespace index$
|
|
293
|
-
export { index$
|
|
319
|
+
declare const index$2_APIManagerPage: typeof APIManagerPage;
|
|
320
|
+
declare const index$2_APIManagerWidget: typeof APIManagerWidget;
|
|
321
|
+
declare namespace index$2 {
|
|
322
|
+
export { index$2_APIManagerPage as APIManagerPage, index$2_APIManagerWidget as APIManagerWidget };
|
|
294
323
|
}
|
|
295
324
|
|
|
296
325
|
declare const SettingWidget: () => react_jsx_runtime.JSX.Element;
|
|
297
326
|
|
|
298
327
|
declare const SettingPage: () => react_jsx_runtime.JSX.Element;
|
|
299
328
|
|
|
300
|
-
declare const
|
|
301
|
-
declare const
|
|
329
|
+
declare const index$1_SettingPage: typeof SettingPage;
|
|
330
|
+
declare const index$1_SettingWidget: typeof SettingWidget;
|
|
331
|
+
declare namespace index$1 {
|
|
332
|
+
export { index$1_SettingPage as SettingPage, index$1_SettingWidget as SettingWidget };
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
declare const HistoryWidget: () => react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare const HistoryPage: () => react_jsx_runtime.JSX.Element;
|
|
337
|
+
|
|
338
|
+
declare const index_HistoryPage: typeof HistoryPage;
|
|
339
|
+
declare const index_HistoryWidget: typeof HistoryWidget;
|
|
302
340
|
declare namespace index {
|
|
303
|
-
export {
|
|
341
|
+
export { index_HistoryPage as HistoryPage, index_HistoryWidget as HistoryWidget };
|
|
304
342
|
}
|
|
305
343
|
|
|
306
|
-
export { index$
|
|
344
|
+
export { index$2 as APIManagerModule, index$3 as FeeTierModule, index as HistoryModule, page as OrdersModule, index$4 as OverviewModule, PortfolioLayout, type PortfolioLayoutProps, PortfolioLayoutWidget, type PortfolioLayoutWidgetProps, PortfolioLeftSidebarPath, page$1 as PositionsModule, index$1 as SettingModule, usePortfolioLayoutScript };
|