@dhedge/trading-widget 1.2.5 → 1.2.7

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.
@@ -10,7 +10,7 @@ export declare const useUpdateTradingSettings: () => (payload: Partial<{
10
10
  }>) => void;
11
11
  export declare const useSetTradingType: () => (payload: import("../../types").TradingPanelType) => void;
12
12
  export declare const useUpdateTradingMeta: () => (payload: Partial<{
13
- approvingStatus?: "success" | "pending" | undefined;
13
+ approvingStatus?: "pending" | "success" | undefined;
14
14
  }>) => void;
15
15
  export declare const useUpdateEntryFee: () => (payload: Partial<Record<import("../../types").DepositMethodName, number>>) => void;
16
16
  export declare const useUpdateTradingModal: () => (payload: Partial<import("../../types").TradingPanelStateModal>) => void;
@@ -3,6 +3,6 @@ export declare const useTradingPanelMeta: () => [
3
3
  TradingPanelState['meta'],
4
4
  TradingPanelActionsState['updateTradingMeta']
5
5
  ];
6
- export declare const useTradingPanelApprovingStatus: () => ["success" | "pending" | undefined, (approvingStatus: TradingPanelState['meta']['approvingStatus']) => void];
6
+ export declare const useTradingPanelApprovingStatus: () => ["pending" | "success" | undefined, (approvingStatus: TradingPanelState['meta']['approvingStatus']) => void];
7
7
  export declare const useTradingPanelEntryFee: () => [number, (entryFeeSlice: Partial<TradingPanelState['entryFee']>) => void];
8
8
  export declare const useTradingPanelLockTime: () => string;