@orderly.network/portfolio 2.2.0 → 2.3.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 +67 -54
- package/dist/index.d.ts +67 -54
- package/dist/index.js +26 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -12
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +20 -17
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC, PropsWithChildren } from 'react';
|
|
1
|
+
import React$1, { FC, PropsWithChildren } from 'react';
|
|
2
2
|
import { ScaffoldProps, SideBarProps, SideMenuItem } from '@orderly.network/ui-scaffold';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _orderly_network_types from '@orderly.network/types';
|
|
@@ -23,6 +23,7 @@ declare enum PortfolioLeftSidebarPath {
|
|
|
23
23
|
Overview = "/portfolio",
|
|
24
24
|
Positions = "/portfolio/positions",
|
|
25
25
|
Orders = "/portfolio/orders",
|
|
26
|
+
Assets = "/portfolio/assets",
|
|
26
27
|
FeeTier = "/portfolio/feeTier",
|
|
27
28
|
ApiKey = "/portfolio/apiKey",
|
|
28
29
|
Setting = "/portfolio/setting",
|
|
@@ -48,24 +49,29 @@ declare const usePortfolioLayoutScript: (props: UseLayoutBuilderOptions) => {
|
|
|
48
49
|
onItemSelect: (item: SideMenuItem) => void;
|
|
49
50
|
};
|
|
50
51
|
|
|
51
|
-
|
|
52
|
-
canTrade
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
52
|
+
declare const useAssetScript: () => {
|
|
53
|
+
readonly canTrade: boolean;
|
|
54
|
+
readonly connect: (options?: any) => Promise<_orderly_network_hooks.WalletState[]>;
|
|
55
|
+
readonly portfolioValue: number | null;
|
|
56
|
+
readonly freeCollateral: number;
|
|
57
|
+
readonly unrealPnL: number;
|
|
58
|
+
readonly unrealROI: number;
|
|
59
|
+
readonly currentLeverage: number;
|
|
60
|
+
readonly onLeverageEdit: () => void;
|
|
61
|
+
readonly visible: any;
|
|
62
|
+
readonly wrongNetwork: boolean;
|
|
63
|
+
readonly toggleVisible: () => void;
|
|
64
|
+
readonly onDeposit: () => void;
|
|
65
|
+
readonly onWithdraw: () => void;
|
|
66
|
+
readonly onTransfer: () => void;
|
|
67
|
+
readonly namespace: _orderly_network_types.ChainNamespace | null;
|
|
68
|
+
readonly isMainAccount: boolean;
|
|
67
69
|
};
|
|
68
|
-
|
|
70
|
+
type AssetScriptReturn = ReturnType<typeof useAssetScript>;
|
|
71
|
+
|
|
72
|
+
declare const AssetsUI: (props: AssetScriptReturn & {
|
|
73
|
+
onConnectWallet?: () => void;
|
|
74
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
69
75
|
|
|
70
76
|
declare const AssetWidget: () => react_jsx_runtime.JSX.Element;
|
|
71
77
|
|
|
@@ -114,7 +120,7 @@ declare const useAssetsLineChartScript: () => {
|
|
|
114
120
|
readonly referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
115
121
|
};
|
|
116
122
|
|
|
117
|
-
declare const HistoryDataGroupWidget:
|
|
123
|
+
declare const HistoryDataGroupWidget: React.FC;
|
|
118
124
|
|
|
119
125
|
declare const useAssetHistoryColumns: () => Column[];
|
|
120
126
|
|
|
@@ -207,7 +213,7 @@ declare const useFundingHistoryColumns: () => Column<API.FundingFeeRow & {
|
|
|
207
213
|
annual_rate: number;
|
|
208
214
|
}>[];
|
|
209
215
|
|
|
210
|
-
declare const DistributionHistoryWidget:
|
|
216
|
+
declare const DistributionHistoryWidget: React$1.FC;
|
|
211
217
|
|
|
212
218
|
declare const useDistributionHistoryHook: () => {
|
|
213
219
|
readonly dataSource: (_orderly_network_types.API.FundingFeeRow & {
|
|
@@ -239,28 +245,28 @@ declare const OverviewContextProvider: (props: PropsWithChildren<{
|
|
|
239
245
|
type?: TWType;
|
|
240
246
|
}>) => react_jsx_runtime.JSX.Element;
|
|
241
247
|
|
|
242
|
-
declare const index$
|
|
243
|
-
declare const index$
|
|
244
|
-
declare const index$
|
|
245
|
-
declare const index$
|
|
246
|
-
declare const index$
|
|
247
|
-
declare const index$
|
|
248
|
-
declare const index$
|
|
249
|
-
declare const index$
|
|
250
|
-
declare const index$
|
|
251
|
-
declare const index$
|
|
252
|
-
declare const index$
|
|
253
|
-
declare const index$
|
|
254
|
-
declare const index$
|
|
255
|
-
declare const index$
|
|
256
|
-
declare const index$
|
|
257
|
-
declare const index$
|
|
258
|
-
declare const index$
|
|
259
|
-
declare const index$
|
|
260
|
-
declare const index$
|
|
261
|
-
declare const index$
|
|
262
|
-
declare namespace index$
|
|
263
|
-
export { index$
|
|
248
|
+
declare const index$5_AssetHistory: typeof AssetHistory;
|
|
249
|
+
declare const index$5_AssetHistoryWidget: typeof AssetHistoryWidget;
|
|
250
|
+
declare const index$5_AssetWidget: typeof AssetWidget;
|
|
251
|
+
declare const index$5_AssetsChartWidget: typeof AssetsChartWidget;
|
|
252
|
+
declare const index$5_AssetsUI: typeof AssetsUI;
|
|
253
|
+
declare const index$5_DistributionHistoryDesktop: typeof DistributionHistoryDesktop;
|
|
254
|
+
declare const index$5_DistributionHistoryMobile: typeof DistributionHistoryMobile;
|
|
255
|
+
declare const index$5_DistributionHistoryWidget: typeof DistributionHistoryWidget;
|
|
256
|
+
declare const index$5_FundingHistoryWidget: typeof FundingHistoryWidget;
|
|
257
|
+
declare const index$5_HistoryDataGroupWidget: typeof HistoryDataGroupWidget;
|
|
258
|
+
declare const index$5_OverviewContextProvider: typeof OverviewContextProvider;
|
|
259
|
+
declare const index$5_OverviewPage: typeof OverviewPage;
|
|
260
|
+
declare const index$5_PerformanceUI: typeof PerformanceUI;
|
|
261
|
+
declare const index$5_PerformanceWidget: typeof PerformanceWidget;
|
|
262
|
+
declare const index$5_useAssetHistoryColumns: typeof useAssetHistoryColumns;
|
|
263
|
+
declare const index$5_useAssetHistoryHook: typeof useAssetHistoryHook;
|
|
264
|
+
declare const index$5_useAssetsLineChartScript: typeof useAssetsLineChartScript;
|
|
265
|
+
declare const index$5_useFundingHistoryColumns: typeof useFundingHistoryColumns;
|
|
266
|
+
declare const index$5_useFundingHistoryHook: typeof useFundingHistoryHook;
|
|
267
|
+
declare const index$5_usePerformanceScript: typeof usePerformanceScript;
|
|
268
|
+
declare namespace index$5 {
|
|
269
|
+
export { index$5_AssetHistory as AssetHistory, index$5_AssetHistoryWidget as AssetHistoryWidget, index$5_AssetWidget as AssetWidget, index$5_AssetsChartWidget as AssetsChartWidget, index$5_AssetsUI as AssetsUI, index$5_DistributionHistoryDesktop as DistributionHistoryDesktop, index$5_DistributionHistoryMobile as DistributionHistoryMobile, index$5_DistributionHistoryWidget as DistributionHistoryWidget, index$5_FundingHistoryWidget as FundingHistoryWidget, index$5_HistoryDataGroupWidget as HistoryDataGroupWidget, index$5_OverviewContextProvider as OverviewContextProvider, index$5_OverviewPage as OverviewPage, index$5_PerformanceUI as PerformanceUI, index$5_PerformanceWidget as PerformanceWidget, index$5_useAssetHistoryColumns as useAssetHistoryColumns, index$5_useAssetHistoryHook as useAssetHistoryHook, index$5_useAssetsLineChartScript as useAssetsLineChartScript, index$5_useFundingHistoryColumns as useFundingHistoryColumns, index$5_useFundingHistoryHook as useFundingHistoryHook, index$5_usePerformanceScript as usePerformanceScript };
|
|
264
270
|
}
|
|
265
271
|
|
|
266
272
|
type UseFeeTierScriptOptions = {
|
|
@@ -279,12 +285,12 @@ type FeeTierWidgetProps = UseFeeTierScriptOptions;
|
|
|
279
285
|
type FeeTierPageProps = FeeTierWidgetProps;
|
|
280
286
|
declare const FeeTierPage: FC<FeeTierPageProps>;
|
|
281
287
|
|
|
282
|
-
declare const index$
|
|
283
|
-
declare namespace index$
|
|
284
|
-
export { index$
|
|
288
|
+
declare const index$4_FeeTierPage: typeof FeeTierPage;
|
|
289
|
+
declare namespace index$4 {
|
|
290
|
+
export { index$4_FeeTierPage as FeeTierPage };
|
|
285
291
|
}
|
|
286
292
|
|
|
287
|
-
declare const PositionsPage:
|
|
293
|
+
declare const PositionsPage: React$1.FC<PositionsProps>;
|
|
288
294
|
|
|
289
295
|
declare const page$1_PositionsPage: typeof PositionsPage;
|
|
290
296
|
declare namespace page$1 {
|
|
@@ -316,20 +322,27 @@ declare const APIManagerPage: (props: {
|
|
|
316
322
|
keyStatus?: string;
|
|
317
323
|
}) => react_jsx_runtime.JSX.Element;
|
|
318
324
|
|
|
319
|
-
declare const index$
|
|
320
|
-
declare const index$
|
|
321
|
-
declare namespace index$
|
|
322
|
-
export { index$
|
|
325
|
+
declare const index$3_APIManagerPage: typeof APIManagerPage;
|
|
326
|
+
declare const index$3_APIManagerWidget: typeof APIManagerWidget;
|
|
327
|
+
declare namespace index$3 {
|
|
328
|
+
export { index$3_APIManagerPage as APIManagerPage, index$3_APIManagerWidget as APIManagerWidget };
|
|
323
329
|
}
|
|
324
330
|
|
|
325
331
|
declare const SettingWidget: () => react_jsx_runtime.JSX.Element;
|
|
326
332
|
|
|
327
333
|
declare const SettingPage: () => react_jsx_runtime.JSX.Element;
|
|
328
334
|
|
|
329
|
-
declare const index$
|
|
330
|
-
declare const index$
|
|
335
|
+
declare const index$2_SettingPage: typeof SettingPage;
|
|
336
|
+
declare const index$2_SettingWidget: typeof SettingWidget;
|
|
337
|
+
declare namespace index$2 {
|
|
338
|
+
export { index$2_SettingPage as SettingPage, index$2_SettingWidget as SettingWidget };
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
declare const AssetsPage: React$1.FC;
|
|
342
|
+
|
|
343
|
+
declare const index$1_AssetsPage: typeof AssetsPage;
|
|
331
344
|
declare namespace index$1 {
|
|
332
|
-
export { index$
|
|
345
|
+
export { index$1_AssetsPage as AssetsPage };
|
|
333
346
|
}
|
|
334
347
|
|
|
335
348
|
declare const HistoryWidget: () => react_jsx_runtime.JSX.Element;
|
|
@@ -341,4 +354,4 @@ declare namespace index {
|
|
|
341
354
|
export { index_HistoryPage as HistoryPage, index_HistoryWidget as HistoryWidget };
|
|
342
355
|
}
|
|
343
356
|
|
|
344
|
-
export { index$
|
|
357
|
+
export { index$3 as APIManagerModule, index$1 as AssetsModule, index$4 as FeeTierModule, index as HistoryModule, page as OrdersModule, index$5 as OverviewModule, PortfolioLayout, type PortfolioLayoutProps, PortfolioLayoutWidget, type PortfolioLayoutWidgetProps, PortfolioLeftSidebarPath, page$1 as PositionsModule, index$2 as SettingModule, usePortfolioLayoutScript };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC, PropsWithChildren } from 'react';
|
|
1
|
+
import React$1, { FC, PropsWithChildren } from 'react';
|
|
2
2
|
import { ScaffoldProps, SideBarProps, SideMenuItem } from '@orderly.network/ui-scaffold';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _orderly_network_types from '@orderly.network/types';
|
|
@@ -23,6 +23,7 @@ declare enum PortfolioLeftSidebarPath {
|
|
|
23
23
|
Overview = "/portfolio",
|
|
24
24
|
Positions = "/portfolio/positions",
|
|
25
25
|
Orders = "/portfolio/orders",
|
|
26
|
+
Assets = "/portfolio/assets",
|
|
26
27
|
FeeTier = "/portfolio/feeTier",
|
|
27
28
|
ApiKey = "/portfolio/apiKey",
|
|
28
29
|
Setting = "/portfolio/setting",
|
|
@@ -48,24 +49,29 @@ declare const usePortfolioLayoutScript: (props: UseLayoutBuilderOptions) => {
|
|
|
48
49
|
onItemSelect: (item: SideMenuItem) => void;
|
|
49
50
|
};
|
|
50
51
|
|
|
51
|
-
|
|
52
|
-
canTrade
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
52
|
+
declare const useAssetScript: () => {
|
|
53
|
+
readonly canTrade: boolean;
|
|
54
|
+
readonly connect: (options?: any) => Promise<_orderly_network_hooks.WalletState[]>;
|
|
55
|
+
readonly portfolioValue: number | null;
|
|
56
|
+
readonly freeCollateral: number;
|
|
57
|
+
readonly unrealPnL: number;
|
|
58
|
+
readonly unrealROI: number;
|
|
59
|
+
readonly currentLeverage: number;
|
|
60
|
+
readonly onLeverageEdit: () => void;
|
|
61
|
+
readonly visible: any;
|
|
62
|
+
readonly wrongNetwork: boolean;
|
|
63
|
+
readonly toggleVisible: () => void;
|
|
64
|
+
readonly onDeposit: () => void;
|
|
65
|
+
readonly onWithdraw: () => void;
|
|
66
|
+
readonly onTransfer: () => void;
|
|
67
|
+
readonly namespace: _orderly_network_types.ChainNamespace | null;
|
|
68
|
+
readonly isMainAccount: boolean;
|
|
67
69
|
};
|
|
68
|
-
|
|
70
|
+
type AssetScriptReturn = ReturnType<typeof useAssetScript>;
|
|
71
|
+
|
|
72
|
+
declare const AssetsUI: (props: AssetScriptReturn & {
|
|
73
|
+
onConnectWallet?: () => void;
|
|
74
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
69
75
|
|
|
70
76
|
declare const AssetWidget: () => react_jsx_runtime.JSX.Element;
|
|
71
77
|
|
|
@@ -114,7 +120,7 @@ declare const useAssetsLineChartScript: () => {
|
|
|
114
120
|
readonly referralInfo: _orderly_network_hooks.RefferalAPI.ReferralInfo | undefined;
|
|
115
121
|
};
|
|
116
122
|
|
|
117
|
-
declare const HistoryDataGroupWidget:
|
|
123
|
+
declare const HistoryDataGroupWidget: React.FC;
|
|
118
124
|
|
|
119
125
|
declare const useAssetHistoryColumns: () => Column[];
|
|
120
126
|
|
|
@@ -207,7 +213,7 @@ declare const useFundingHistoryColumns: () => Column<API.FundingFeeRow & {
|
|
|
207
213
|
annual_rate: number;
|
|
208
214
|
}>[];
|
|
209
215
|
|
|
210
|
-
declare const DistributionHistoryWidget:
|
|
216
|
+
declare const DistributionHistoryWidget: React$1.FC;
|
|
211
217
|
|
|
212
218
|
declare const useDistributionHistoryHook: () => {
|
|
213
219
|
readonly dataSource: (_orderly_network_types.API.FundingFeeRow & {
|
|
@@ -239,28 +245,28 @@ declare const OverviewContextProvider: (props: PropsWithChildren<{
|
|
|
239
245
|
type?: TWType;
|
|
240
246
|
}>) => react_jsx_runtime.JSX.Element;
|
|
241
247
|
|
|
242
|
-
declare const index$
|
|
243
|
-
declare const index$
|
|
244
|
-
declare const index$
|
|
245
|
-
declare const index$
|
|
246
|
-
declare const index$
|
|
247
|
-
declare const index$
|
|
248
|
-
declare const index$
|
|
249
|
-
declare const index$
|
|
250
|
-
declare const index$
|
|
251
|
-
declare const index$
|
|
252
|
-
declare const index$
|
|
253
|
-
declare const index$
|
|
254
|
-
declare const index$
|
|
255
|
-
declare const index$
|
|
256
|
-
declare const index$
|
|
257
|
-
declare const index$
|
|
258
|
-
declare const index$
|
|
259
|
-
declare const index$
|
|
260
|
-
declare const index$
|
|
261
|
-
declare const index$
|
|
262
|
-
declare namespace index$
|
|
263
|
-
export { index$
|
|
248
|
+
declare const index$5_AssetHistory: typeof AssetHistory;
|
|
249
|
+
declare const index$5_AssetHistoryWidget: typeof AssetHistoryWidget;
|
|
250
|
+
declare const index$5_AssetWidget: typeof AssetWidget;
|
|
251
|
+
declare const index$5_AssetsChartWidget: typeof AssetsChartWidget;
|
|
252
|
+
declare const index$5_AssetsUI: typeof AssetsUI;
|
|
253
|
+
declare const index$5_DistributionHistoryDesktop: typeof DistributionHistoryDesktop;
|
|
254
|
+
declare const index$5_DistributionHistoryMobile: typeof DistributionHistoryMobile;
|
|
255
|
+
declare const index$5_DistributionHistoryWidget: typeof DistributionHistoryWidget;
|
|
256
|
+
declare const index$5_FundingHistoryWidget: typeof FundingHistoryWidget;
|
|
257
|
+
declare const index$5_HistoryDataGroupWidget: typeof HistoryDataGroupWidget;
|
|
258
|
+
declare const index$5_OverviewContextProvider: typeof OverviewContextProvider;
|
|
259
|
+
declare const index$5_OverviewPage: typeof OverviewPage;
|
|
260
|
+
declare const index$5_PerformanceUI: typeof PerformanceUI;
|
|
261
|
+
declare const index$5_PerformanceWidget: typeof PerformanceWidget;
|
|
262
|
+
declare const index$5_useAssetHistoryColumns: typeof useAssetHistoryColumns;
|
|
263
|
+
declare const index$5_useAssetHistoryHook: typeof useAssetHistoryHook;
|
|
264
|
+
declare const index$5_useAssetsLineChartScript: typeof useAssetsLineChartScript;
|
|
265
|
+
declare const index$5_useFundingHistoryColumns: typeof useFundingHistoryColumns;
|
|
266
|
+
declare const index$5_useFundingHistoryHook: typeof useFundingHistoryHook;
|
|
267
|
+
declare const index$5_usePerformanceScript: typeof usePerformanceScript;
|
|
268
|
+
declare namespace index$5 {
|
|
269
|
+
export { index$5_AssetHistory as AssetHistory, index$5_AssetHistoryWidget as AssetHistoryWidget, index$5_AssetWidget as AssetWidget, index$5_AssetsChartWidget as AssetsChartWidget, index$5_AssetsUI as AssetsUI, index$5_DistributionHistoryDesktop as DistributionHistoryDesktop, index$5_DistributionHistoryMobile as DistributionHistoryMobile, index$5_DistributionHistoryWidget as DistributionHistoryWidget, index$5_FundingHistoryWidget as FundingHistoryWidget, index$5_HistoryDataGroupWidget as HistoryDataGroupWidget, index$5_OverviewContextProvider as OverviewContextProvider, index$5_OverviewPage as OverviewPage, index$5_PerformanceUI as PerformanceUI, index$5_PerformanceWidget as PerformanceWidget, index$5_useAssetHistoryColumns as useAssetHistoryColumns, index$5_useAssetHistoryHook as useAssetHistoryHook, index$5_useAssetsLineChartScript as useAssetsLineChartScript, index$5_useFundingHistoryColumns as useFundingHistoryColumns, index$5_useFundingHistoryHook as useFundingHistoryHook, index$5_usePerformanceScript as usePerformanceScript };
|
|
264
270
|
}
|
|
265
271
|
|
|
266
272
|
type UseFeeTierScriptOptions = {
|
|
@@ -279,12 +285,12 @@ type FeeTierWidgetProps = UseFeeTierScriptOptions;
|
|
|
279
285
|
type FeeTierPageProps = FeeTierWidgetProps;
|
|
280
286
|
declare const FeeTierPage: FC<FeeTierPageProps>;
|
|
281
287
|
|
|
282
|
-
declare const index$
|
|
283
|
-
declare namespace index$
|
|
284
|
-
export { index$
|
|
288
|
+
declare const index$4_FeeTierPage: typeof FeeTierPage;
|
|
289
|
+
declare namespace index$4 {
|
|
290
|
+
export { index$4_FeeTierPage as FeeTierPage };
|
|
285
291
|
}
|
|
286
292
|
|
|
287
|
-
declare const PositionsPage:
|
|
293
|
+
declare const PositionsPage: React$1.FC<PositionsProps>;
|
|
288
294
|
|
|
289
295
|
declare const page$1_PositionsPage: typeof PositionsPage;
|
|
290
296
|
declare namespace page$1 {
|
|
@@ -316,20 +322,27 @@ declare const APIManagerPage: (props: {
|
|
|
316
322
|
keyStatus?: string;
|
|
317
323
|
}) => react_jsx_runtime.JSX.Element;
|
|
318
324
|
|
|
319
|
-
declare const index$
|
|
320
|
-
declare const index$
|
|
321
|
-
declare namespace index$
|
|
322
|
-
export { index$
|
|
325
|
+
declare const index$3_APIManagerPage: typeof APIManagerPage;
|
|
326
|
+
declare const index$3_APIManagerWidget: typeof APIManagerWidget;
|
|
327
|
+
declare namespace index$3 {
|
|
328
|
+
export { index$3_APIManagerPage as APIManagerPage, index$3_APIManagerWidget as APIManagerWidget };
|
|
323
329
|
}
|
|
324
330
|
|
|
325
331
|
declare const SettingWidget: () => react_jsx_runtime.JSX.Element;
|
|
326
332
|
|
|
327
333
|
declare const SettingPage: () => react_jsx_runtime.JSX.Element;
|
|
328
334
|
|
|
329
|
-
declare const index$
|
|
330
|
-
declare const index$
|
|
335
|
+
declare const index$2_SettingPage: typeof SettingPage;
|
|
336
|
+
declare const index$2_SettingWidget: typeof SettingWidget;
|
|
337
|
+
declare namespace index$2 {
|
|
338
|
+
export { index$2_SettingPage as SettingPage, index$2_SettingWidget as SettingWidget };
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
declare const AssetsPage: React$1.FC;
|
|
342
|
+
|
|
343
|
+
declare const index$1_AssetsPage: typeof AssetsPage;
|
|
331
344
|
declare namespace index$1 {
|
|
332
|
-
export { index$
|
|
345
|
+
export { index$1_AssetsPage as AssetsPage };
|
|
333
346
|
}
|
|
334
347
|
|
|
335
348
|
declare const HistoryWidget: () => react_jsx_runtime.JSX.Element;
|
|
@@ -341,4 +354,4 @@ declare namespace index {
|
|
|
341
354
|
export { index_HistoryPage as HistoryPage, index_HistoryWidget as HistoryWidget };
|
|
342
355
|
}
|
|
343
356
|
|
|
344
|
-
export { index$
|
|
357
|
+
export { index$3 as APIManagerModule, index$1 as AssetsModule, index$4 as FeeTierModule, index as HistoryModule, page as OrdersModule, index$5 as OverviewModule, PortfolioLayout, type PortfolioLayoutProps, PortfolioLayoutWidget, type PortfolioLayoutWidgetProps, PortfolioLeftSidebarPath, page$1 as PositionsModule, index$2 as SettingModule, usePortfolioLayoutScript };
|