@huma-finance/widgets 0.0.62-beta.691 → 0.0.62-beta.693
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/cjs/index.cjs +6 -10
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/index.js +6 -10
- package/dist/index.js.map +1 -1
- package/package.json +5 -9
- package/src/index.tsx +7 -13
package/dist/cjs/index.cjs
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var providers = require('@ethersproject/providers');
|
|
6
|
-
var webShared = require('@huma-finance/web-shared');
|
|
7
6
|
var material = require('@mui/material');
|
|
8
7
|
var jotai = require('jotai');
|
|
9
8
|
var React = require('react');
|
|
@@ -11,6 +10,7 @@ var reactRedux = require('react-redux');
|
|
|
11
10
|
var shared = require('@huma-finance/shared');
|
|
12
11
|
var core = require('@web3-react/core');
|
|
13
12
|
var ErrorOutlineIcon = require('@mui/icons-material/ErrorOutline');
|
|
13
|
+
var webShared = require('@huma-finance/web-shared');
|
|
14
14
|
var utils = require('jotai/utils');
|
|
15
15
|
var toolkit = require('@reduxjs/toolkit');
|
|
16
16
|
var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
@@ -10255,15 +10255,11 @@ function Widget(props) {
|
|
|
10255
10255
|
theme: themeHuma,
|
|
10256
10256
|
children: jsxRuntime.jsx(reactRedux.Provider, {
|
|
10257
10257
|
store: store,
|
|
10258
|
-
children: jsxRuntime.jsx(
|
|
10259
|
-
|
|
10260
|
-
|
|
10261
|
-
|
|
10262
|
-
|
|
10263
|
-
children: jsxRuntime.jsx(NotifiContextWrapper, {
|
|
10264
|
-
chainId: chainId,
|
|
10265
|
-
children: children
|
|
10266
|
-
})
|
|
10258
|
+
children: jsxRuntime.jsx(jotai.Provider, {
|
|
10259
|
+
children: jsxRuntime.jsx(ChainSupportProvider, {
|
|
10260
|
+
children: jsxRuntime.jsx(NotifiContextWrapper, {
|
|
10261
|
+
chainId: chainId,
|
|
10262
|
+
children: children
|
|
10267
10263
|
})
|
|
10268
10264
|
})
|
|
10269
10265
|
})
|