@rash2x/bridge-widget 0.6.20 → 0.6.26

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.ts CHANGED
@@ -161,11 +161,13 @@ declare interface CurrentTransaction {
161
161
  }
162
162
 
163
163
  /**
164
- * Stores custom destination address override when user enables "Send to another address"
164
+ * Stores custom destination address override and toggle for "Send to another address".
165
165
  */
166
166
  declare interface CustomAddressState {
167
167
  customDstAddress?: string;
168
+ isEnabled: boolean;
168
169
  setCustomDstAddress: (address?: string) => void;
170
+ setEnabled: (enabled: boolean) => void;
169
171
  clearCustomDstAddress: () => void;
170
172
  }
171
173
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rash2x/bridge-widget",
3
- "version": "0.6.20",
3
+ "version": "0.6.26",
4
4
  "description": "Cross-chain bridge widget powered by Stargate Protocol with multi-chain wallet support",
5
5
  "type": "module",
6
6
  "main": "./dist/evaa-bridge.cjs",