@rango-dev/widget-embedded 0.50.1-next.8 → 0.51.1-next.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rango-dev/widget-embedded",
3
- "version": "0.50.1-next.8",
3
+ "version": "0.51.1-next.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "source": "./src/index.ts",
@@ -25,15 +25,15 @@
25
25
  "@lingui/core": "4.2.1",
26
26
  "@lingui/react": "4.2.1",
27
27
  "@rango-dev/logging-core": "^0.11.0",
28
- "@rango-dev/provider-all": "^0.52.1-next.5",
28
+ "@rango-dev/provider-all": "^0.53.0",
29
29
  "@rango-dev/queue-manager-core": "^0.32.0",
30
- "@rango-dev/queue-manager-rango-preset": "^0.52.1-next.4",
30
+ "@rango-dev/queue-manager-rango-preset": "^0.53.0",
31
31
  "@rango-dev/queue-manager-react": "^0.32.0",
32
32
  "@rango-dev/signer-solana": "^0.44.0",
33
- "@rango-dev/ui": "^0.53.1-next.6",
34
- "@rango-dev/wallets-core": "^0.49.1-next.4",
35
- "@rango-dev/wallets-react": "^0.36.1-next.4",
36
- "@rango-dev/wallets-shared": "^0.50.1-next.4",
33
+ "@rango-dev/ui": "^0.54.0",
34
+ "@rango-dev/wallets-core": "^0.50.0",
35
+ "@rango-dev/wallets-react": "^0.37.0",
36
+ "@rango-dev/wallets-shared": "^0.51.0",
37
37
  "bignumber.js": "^9.1.1",
38
38
  "copy-to-clipboard": "^3.3.3",
39
39
  "dayjs": "^1.11.7",
@@ -1,4 +1,5 @@
1
1
  export { useStatefulConnect } from './useStatefulConnect';
2
+ export type { UseStatefulConnect } from './useStatefulConnect';
2
3
  export { ResultStatus } from './useStatefulConnect.types';
3
4
  export type {
4
5
  NeedsNamespacesState,
@@ -17,7 +17,7 @@ import {
17
17
  import { initState, reducer, type State } from './useStatefulConnect.state';
18
18
  import { ResultStatus } from './useStatefulConnect.types';
19
19
 
20
- interface UseStatefulConnect {
20
+ export interface UseStatefulConnect {
21
21
  handleConnect: (
22
22
  wallet: WalletInfoWithExtra,
23
23
  options?: HandleConnectOptions
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import type { WidgetProps } from './containers/Widget';
2
+ import type { UseStatefulConnect } from './hooks/useStatefulConnect';
2
3
  import type { ConnectedWallet } from './store/slices/wallets';
3
4
  import type {
4
5
  BlockchainAndTokenConfig,
@@ -131,6 +132,7 @@ export type {
131
132
  QuoteEventData,
132
133
  UiEventData,
133
134
  WalletInfoWithExtra,
135
+ UseStatefulConnect,
134
136
  };
135
137
  export {
136
138
  Widget,