@rango-dev/widget-embedded 0.31.1-next.5 → 0.31.1-next.6
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 +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +2 -2
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -63,6 +63,7 @@ import { WidgetWallets } from './containers/Wallets';
|
|
|
63
63
|
import { Widget } from './containers/Widget';
|
|
64
64
|
import { useWidget } from './containers/WidgetInfo';
|
|
65
65
|
import { WidgetProvider } from './containers/WidgetProvider';
|
|
66
|
+
import { useStatefulConnect } from './hooks/useStatefulConnect';
|
|
66
67
|
import { useWalletList } from './hooks/useWalletList';
|
|
67
68
|
import { useWidgetEvents } from './hooks/useWidgetEvents';
|
|
68
69
|
import { widgetEventEmitter } from './services/eventEmitter';
|
|
@@ -119,6 +120,7 @@ export {
|
|
|
119
120
|
WidgetProvider,
|
|
120
121
|
useWidget,
|
|
121
122
|
useWallets,
|
|
123
|
+
useStatefulConnect,
|
|
122
124
|
/**
|
|
123
125
|
* @deprecated Use `widgetEventEmitter` instead. This hook will be removed in future versions.
|
|
124
126
|
*/
|