@orderly.network/ui-transfer 3.0.0-beta.1 → 3.0.0-beta.10
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 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +548 -97
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +551 -100
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +15 -14
package/dist/index.d.mts
CHANGED
|
@@ -69,6 +69,9 @@ declare const useDepositFormScript: (options: DepositFormScriptOptions) => {
|
|
|
69
69
|
showSourceDepositCap: boolean;
|
|
70
70
|
showTargetDepositCap: boolean;
|
|
71
71
|
quantityNotional: number;
|
|
72
|
+
activeSubTab: "web3" | "exclusive_deposit";
|
|
73
|
+
setActiveSubTab: react.Dispatch<react.SetStateAction<"web3" | "exclusive_deposit">>;
|
|
74
|
+
showExclusiveDeposit: boolean;
|
|
72
75
|
};
|
|
73
76
|
|
|
74
77
|
declare const DepositForm: FC<DepositFormScriptReturn>;
|
|
@@ -318,6 +321,7 @@ declare const useConvertFormScript: (options: ConvertFormScriptOptions) => {
|
|
|
318
321
|
chain_id?: string | undefined;
|
|
319
322
|
contract_address?: string | undefined;
|
|
320
323
|
decimals?: number | undefined;
|
|
324
|
+
exclusive_deposit_supported?: boolean;
|
|
321
325
|
withdrawal_fee?: number | undefined;
|
|
322
326
|
chain_name?: string;
|
|
323
327
|
cross_chain_withdrawal_fee?: number | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -69,6 +69,9 @@ declare const useDepositFormScript: (options: DepositFormScriptOptions) => {
|
|
|
69
69
|
showSourceDepositCap: boolean;
|
|
70
70
|
showTargetDepositCap: boolean;
|
|
71
71
|
quantityNotional: number;
|
|
72
|
+
activeSubTab: "web3" | "exclusive_deposit";
|
|
73
|
+
setActiveSubTab: react.Dispatch<react.SetStateAction<"web3" | "exclusive_deposit">>;
|
|
74
|
+
showExclusiveDeposit: boolean;
|
|
72
75
|
};
|
|
73
76
|
|
|
74
77
|
declare const DepositForm: FC<DepositFormScriptReturn>;
|
|
@@ -318,6 +321,7 @@ declare const useConvertFormScript: (options: ConvertFormScriptOptions) => {
|
|
|
318
321
|
chain_id?: string | undefined;
|
|
319
322
|
contract_address?: string | undefined;
|
|
320
323
|
decimals?: number | undefined;
|
|
324
|
+
exclusive_deposit_supported?: boolean;
|
|
321
325
|
withdrawal_fee?: number | undefined;
|
|
322
326
|
chain_name?: string;
|
|
323
327
|
cross_chain_withdrawal_fee?: number | undefined;
|