@orderly.network/trading 2.7.1-alpha.0 → 2.7.2-alpha.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 +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +22 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +25 -20
package/dist/index.d.mts
CHANGED
|
@@ -151,9 +151,10 @@ declare enum DataListTabType {
|
|
|
151
151
|
filled = "Filled",
|
|
152
152
|
positionHistory = "Position history",
|
|
153
153
|
orderHistory = "Order history",
|
|
154
|
-
liquidation = "Liquidation"
|
|
154
|
+
liquidation = "Liquidation",
|
|
155
|
+
assets = "Assets"
|
|
155
156
|
}
|
|
156
|
-
declare const useDataListScript: (
|
|
157
|
+
declare const useDataListScript: (inputs: {
|
|
157
158
|
current?: DataListTabType;
|
|
158
159
|
} & PositionsProps) => {
|
|
159
160
|
positionCount: number;
|
|
@@ -176,7 +177,7 @@ declare const useDataListScript: (props: {
|
|
|
176
177
|
};
|
|
177
178
|
type DataListState = ReturnType<typeof useDataListScript>;
|
|
178
179
|
|
|
179
|
-
declare const DataList: FC<DataListState>;
|
|
180
|
+
declare const DataList: React__default.FC<DataListState>;
|
|
180
181
|
|
|
181
182
|
declare const DataListWidget: React__default.FC<{
|
|
182
183
|
current?: DataListTabType;
|
package/dist/index.d.ts
CHANGED
|
@@ -151,9 +151,10 @@ declare enum DataListTabType {
|
|
|
151
151
|
filled = "Filled",
|
|
152
152
|
positionHistory = "Position history",
|
|
153
153
|
orderHistory = "Order history",
|
|
154
|
-
liquidation = "Liquidation"
|
|
154
|
+
liquidation = "Liquidation",
|
|
155
|
+
assets = "Assets"
|
|
155
156
|
}
|
|
156
|
-
declare const useDataListScript: (
|
|
157
|
+
declare const useDataListScript: (inputs: {
|
|
157
158
|
current?: DataListTabType;
|
|
158
159
|
} & PositionsProps) => {
|
|
159
160
|
positionCount: number;
|
|
@@ -176,7 +177,7 @@ declare const useDataListScript: (props: {
|
|
|
176
177
|
};
|
|
177
178
|
type DataListState = ReturnType<typeof useDataListScript>;
|
|
178
179
|
|
|
179
|
-
declare const DataList: FC<DataListState>;
|
|
180
|
+
declare const DataList: React__default.FC<DataListState>;
|
|
180
181
|
|
|
181
182
|
declare const DataListWidget: React__default.FC<{
|
|
182
183
|
current?: DataListTabType;
|