@rango-dev/widget-embedded 0.1.11-next.23 → 0.1.11-next.25
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/App.d.ts.map +1 -1
- package/dist/hooks/useTheme.d.ts +2 -2
- package/dist/hooks/useTheme.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/lib.d.ts +4 -2
- package/dist/lib.d.ts.map +1 -1
- package/dist/types/config.d.ts +77 -9
- package/dist/types/config.d.ts.map +1 -1
- package/dist/widget-embedded.cjs.development.js +8 -2
- package/dist/widget-embedded.cjs.development.js.map +1 -1
- package/dist/widget-embedded.cjs.production.min.js +8 -2
- package/dist/widget-embedded.cjs.production.min.js.map +1 -1
- package/dist/widget-embedded.esm.js +3 -2
- package/dist/widget-embedded.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/App.tsx +1 -15
- package/src/hooks/useTheme.ts +2 -2
- package/src/index.tsx +1 -1
- package/src/lib.tsx +6 -14
- package/src/types/config.ts +78 -12
|
@@ -9,6 +9,7 @@ import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
|
|
|
9
9
|
import { persist, subscribeWithSelector } from 'zustand/middleware';
|
|
10
10
|
import { RangoClient, isEvmBlockchain as isEvmBlockchain$1 } from 'rango-sdk';
|
|
11
11
|
import { Network, isEvmAddress, KEPLR_COMPATIBLE_WALLETS, detectInstallLink, WalletType, getCosmosExperimentalChainInfo, detectMobileScreens, convertEvmBlockchainMetaToEvmChainInfo } from '@rango-dev/wallets-shared';
|
|
12
|
+
export { WalletType } from '@rango-dev/wallets-shared';
|
|
12
13
|
import { readAccountAddress, useWallets, Provider as Provider$1, Events } from '@rango-dev/wallets-core';
|
|
13
14
|
import { shallow } from 'zustand/shallow';
|
|
14
15
|
import { useTranslation, initReactI18next } from 'react-i18next';
|
|
@@ -3391,7 +3392,7 @@ function QueueManager(props) {
|
|
|
3391
3392
|
}, props.children);
|
|
3392
3393
|
}
|
|
3393
3394
|
|
|
3394
|
-
const
|
|
3395
|
+
const Widget = _ref => {
|
|
3395
3396
|
let {
|
|
3396
3397
|
config
|
|
3397
3398
|
} = _ref;
|
|
@@ -3475,5 +3476,5 @@ const SwapBox = _ref => {
|
|
|
3475
3476
|
}))))));
|
|
3476
3477
|
};
|
|
3477
3478
|
|
|
3478
|
-
export {
|
|
3479
|
+
export { Widget };
|
|
3479
3480
|
//# sourceMappingURL=widget-embedded.esm.js.map
|