@dodoex/widgets 3.0.2-pool.9 → 3.0.2-rise.1
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/locales/en-US.js +1 -1
- package/dist/cjs/locales/zh-CN.js +1 -1
- package/dist/{helper-D7mXueax.js → helper-Cn7LIi7f.js} +1 -1
- package/dist/{helper-ChWSI6Ql.cjs → helper-DmwmyAg2.cjs} +1 -1
- package/dist/index-5PCIiwtZ.js +78 -0
- package/dist/index-6fhZA_Cb.cjs +31 -0
- package/dist/{index-DDLYaMrw.cjs → index-8M7lpUFg.cjs} +6 -6
- package/dist/{index-CMNmx6P2.js → index-BwMPShDW.js} +1 -1
- package/dist/index-C1T26jFv.js +31 -0
- package/dist/{index-CWqBhyLP.cjs → index-C40xvoe0.cjs} +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/locales/en-US.js +1 -1
- package/dist/locales/zh-CN.js +1 -1
- package/dist/types/components/AddressWithLinkAndCopy.d.ts +1 -2
- package/dist/types/components/Widget/index.d.ts +0 -19
- package/dist/types/components/WidgetContainer.d.ts +1 -1
- package/dist/types/store/actions/globals.d.ts +9 -0
- package/dist/types/store/actions/index.d.ts +4 -0
- package/dist/types/store/actions/settings.d.ts +3 -0
- package/dist/types/store/actions/token.d.ts +7 -0
- package/dist/types/store/actions/wallet.d.ts +6 -0
- package/dist/types/store/index.d.ts +12 -0
- package/dist/types/store/reducers/globals.d.ts +21 -0
- package/dist/types/store/reducers/index.d.ts +17 -0
- package/dist/types/store/reducers/settings.d.ts +8 -0
- package/dist/types/store/reducers/token.d.ts +22 -0
- package/dist/types/store/reducers/wallet.d.ts +13 -0
- package/dist/types/store/selectors/globals.d.ts +7 -0
- package/dist/types/store/selectors/settings.d.ts +2 -0
- package/dist/types/store/selectors/token.d.ts +6 -0
- package/dist/types/store/selectors/wallet.d.ts +6 -0
- package/dist/types/utils/address.d.ts +1 -1
- package/dist/types/utils/token.d.ts +1 -1
- package/dist/types/widgets/MiningWidget/hooks/helper.d.ts +2 -2
- package/dist/types/widgets/MiningWidget/hooks/useReviewRewardToken.d.ts +2 -2
- package/dist/types/widgets/PoolWidget/AMMV3/sdks/sdk-core/addresses.d.ts +0 -14
- package/dist/types/widgets/PoolWidget/AMMV3/sdks/sdk-core/chains.d.ts +6 -0
- package/dist/types/widgets/PoolWidget/PoolList/AddLiquidity.d.ts +1 -7
- package/dist/types/widgets/PoolWidget/PoolList/MyLiquidity.d.ts +1 -7
- package/dist/types/widgets/PoolWidget/PoolList/components/LiquidityTable.d.ts +1 -3
- package/dist/types/widgets/PoolWidget/PoolList/hooks/usePoolListFilterTokenAndPool.d.ts +1 -7
- package/dist/types/widgets/PoolWidget/PoolList/index.d.ts +1 -10
- package/dist/types/widgets/PoolWidget/hooks/usePoolDetail.d.ts +0 -35
- package/package.json +8 -5
- package/dist/index-B3RycdR3.js +0 -31
- package/dist/index-C4NZOSSX.js +0 -78
- package/dist/index-eATJQwjF.cjs +0 -31
- package/dist/types/hooks/useGlobalState.d.ts +0 -32
- package/dist/types/hooks/useTokenState.d.ts +0 -18
- package/dist/types/widgets/PoolWidget/PoolList/components/migationWidget.d.ts +0 -7
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { State as settingsState } from './settings';
|
|
2
|
+
import { State as walletState } from './wallet';
|
|
3
|
+
import { State as tokenState } from './token';
|
|
4
|
+
import { State as globalState } from './globals';
|
|
5
|
+
export interface RootState {
|
|
6
|
+
settings: settingsState;
|
|
7
|
+
wallet: walletState;
|
|
8
|
+
token: tokenState;
|
|
9
|
+
globals: globalState;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: () => import("redux").Reducer<import("redux").CombinedState<{
|
|
12
|
+
settings: settingsState;
|
|
13
|
+
wallet: walletState;
|
|
14
|
+
token: tokenState;
|
|
15
|
+
globals: globalState;
|
|
16
|
+
}>, import("redux").AnyAction>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AnyAction } from 'redux';
|
|
2
|
+
export type Slippage = string | null;
|
|
3
|
+
export type State = {
|
|
4
|
+
slippage: Slippage;
|
|
5
|
+
};
|
|
6
|
+
export declare const initialState: State;
|
|
7
|
+
declare const _default: (state: State | undefined, action: AnyAction) => State;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import BigNumber from 'bignumber.js';
|
|
2
|
+
import { AnyAction } from 'redux';
|
|
3
|
+
import type { TokenList } from '../../hooks/Token';
|
|
4
|
+
export type AccountBalance = {
|
|
5
|
+
tokenBalances?: BigNumber;
|
|
6
|
+
tokenAllowances?: BigNumber;
|
|
7
|
+
};
|
|
8
|
+
export type AccountBalances = {
|
|
9
|
+
[key in string]: AccountBalance;
|
|
10
|
+
};
|
|
11
|
+
export type SlippageWithToken = {
|
|
12
|
+
slippage: string;
|
|
13
|
+
tokens: string[];
|
|
14
|
+
};
|
|
15
|
+
export type State = {
|
|
16
|
+
tokenList: TokenList;
|
|
17
|
+
popularTokenList: TokenList;
|
|
18
|
+
slippageWithTokens: SlippageWithToken[];
|
|
19
|
+
};
|
|
20
|
+
export declare const initialState: State;
|
|
21
|
+
declare const _default: (state: State | undefined, action: AnyAction) => State;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AnyAction } from 'redux';
|
|
2
|
+
import { ChainId } from '@dodoex/api';
|
|
3
|
+
export type State = {
|
|
4
|
+
fromTokenChainId?: ChainId;
|
|
5
|
+
latestBlockNumber: number;
|
|
6
|
+
openConnectWalletInfo: boolean | {
|
|
7
|
+
/** Wallet is connected, chainID needs to be switched */
|
|
8
|
+
chainId?: ChainId;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export declare const initialState: State;
|
|
12
|
+
declare const _default: (state: State | undefined, action: AnyAction) => State;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RootState } from '../reducers';
|
|
2
|
+
export declare const getContractStatus: (state?: RootState) => import("../reducers/globals").ContractStatus | undefined;
|
|
3
|
+
export declare const getAutoConnectLoading: (state?: RootState) => boolean | undefined;
|
|
4
|
+
export declare const getAutoSlippage: (state?: RootState) => {
|
|
5
|
+
loading: boolean;
|
|
6
|
+
value: number | null;
|
|
7
|
+
} | undefined;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ChainId } from '@dodoex/api';
|
|
2
|
+
import { RootState } from '../reducers';
|
|
3
|
+
export declare const getTokenList: (state?: RootState) => import("../../hooks/Token").TokenList;
|
|
4
|
+
export declare const getAllTokenList: (state?: RootState) => import("../../hooks/Token").TokenInfo[];
|
|
5
|
+
export declare const getPopularTokenList: (chainId: ChainId, state?: RootState) => import("../../hooks/Token").TokenInfo[];
|
|
6
|
+
export declare const getSlippageWithTokens: (state?: RootState) => import("../reducers/token").SlippageWithToken[];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { RootState } from '../reducers';
|
|
2
|
+
export declare const getFromTokenChainId: (state?: RootState) => import("@dodoex/api").ChainId | undefined;
|
|
3
|
+
export declare const getLatestBlockNumber: (state?: RootState) => number;
|
|
4
|
+
export declare const getOpenConnectWalletInfo: (state?: RootState) => boolean | {
|
|
5
|
+
chainId?: import("@dodoex/api").ChainId;
|
|
6
|
+
};
|
|
@@ -23,7 +23,7 @@ export declare function openEtherscanPage(path: string | undefined, chainId: Cha
|
|
|
23
23
|
* @returns
|
|
24
24
|
* @see https://test-explorer.plumenetwork.xyz/address/0x3A7Bc5F9E41356728f037f17D88c642EE46d1Aaa?tab=contract
|
|
25
25
|
*/
|
|
26
|
-
export declare const getUniInitCodeHash: (chainId: number) => "
|
|
26
|
+
export declare const getUniInitCodeHash: (chainId: number) => "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" | "0x007722521498f3d29a63d1eb6ab35e202874706c77ce73d45c1ad9da88174a3f" | "0x67a372377cf6d7f78cfdcc9df0bc21e1139bd49e5a47c33ee0de5389a4396410" | "0x2ebf1082215ab683deab4ee8ff50d42205db2059829b641717ab3f61f18d481a";
|
|
27
27
|
export declare function sortsBefore(tokenA: TokenInfo, tokenB: TokenInfo): boolean;
|
|
28
28
|
export declare const computePairAddress: ({ factoryAddress, tokenA, tokenB, fee, }: {
|
|
29
29
|
factoryAddress: string;
|
|
@@ -19,7 +19,7 @@ export declare function getTokenPairCompareText({ fromToken, toToken, fromFiatPr
|
|
|
19
19
|
comparePriceText: string;
|
|
20
20
|
loading: boolean;
|
|
21
21
|
};
|
|
22
|
-
export declare function getShowDecimals(decimals: string | number):
|
|
22
|
+
export declare function getShowDecimals(decimals: string | number): 4 | 6;
|
|
23
23
|
export declare function convertFetchTokenToTokenInfo(token: {
|
|
24
24
|
id?: string | null;
|
|
25
25
|
address?: string | null;
|
|
@@ -60,10 +60,10 @@ export declare function getV3MiningSingleRewardAmount(t: ReviewedMiningRewardTok
|
|
|
60
60
|
workThroughReward: BigNumber | undefined;
|
|
61
61
|
lastFlagBlock: BigNumber | undefined;
|
|
62
62
|
rewardVault: string | undefined;
|
|
63
|
+
startTime: BigNumber | undefined;
|
|
64
|
+
endTime: BigNumber | undefined;
|
|
63
65
|
rewardPerBlock: BigNumber | undefined;
|
|
64
66
|
startBlock: BigNumber | undefined;
|
|
65
67
|
endBlock: BigNumber | undefined;
|
|
66
|
-
startTime: BigNumber | undefined;
|
|
67
|
-
endTime: BigNumber | undefined;
|
|
68
68
|
};
|
|
69
69
|
export {};
|
|
@@ -19,10 +19,10 @@ export declare function useReviewRewardToken({ chainId, index, miningContractAdd
|
|
|
19
19
|
workThroughReward: BigNumber | undefined;
|
|
20
20
|
lastFlagBlock: BigNumber | undefined;
|
|
21
21
|
rewardVault: string | undefined;
|
|
22
|
+
startTime: BigNumber | undefined;
|
|
23
|
+
endTime: BigNumber | undefined;
|
|
22
24
|
rewardPerBlock: BigNumber | undefined;
|
|
23
25
|
startBlock: BigNumber | undefined;
|
|
24
26
|
endBlock: BigNumber | undefined;
|
|
25
|
-
startTime: BigNumber | undefined;
|
|
26
|
-
endTime: BigNumber | undefined;
|
|
27
27
|
};
|
|
28
28
|
};
|
|
@@ -1,20 +1,6 @@
|
|
|
1
|
-
import { SupportedChainsType } from './chains';
|
|
2
1
|
type AddressMap = {
|
|
3
2
|
[chainId: number]: string;
|
|
4
3
|
};
|
|
5
|
-
type ChainAddresses = {
|
|
6
|
-
/**
|
|
7
|
-
* UniswapV3Factory
|
|
8
|
-
* @see https://taikoscan.io/address/0x78172691DD3B8ADa7aEbd9bFfB487FB11D735DB2?tab=contract#code
|
|
9
|
-
*/
|
|
10
|
-
v3CoreFactoryAddress: string;
|
|
11
|
-
/**
|
|
12
|
-
* NonfungiblePositionManager
|
|
13
|
-
* @see https://taikoscan.io/address/0x2623281DdcC34A73a9e8898f2c57A32A860903f1?tab=contract#code
|
|
14
|
-
*/
|
|
15
|
-
nonfungiblePositionManagerAddress?: string;
|
|
16
|
-
};
|
|
17
|
-
export declare const CHAIN_TO_ADDRESSES_MAP: Record<SupportedChainsType, ChainAddresses>;
|
|
18
4
|
export declare const V3_CORE_FACTORY_ADDRESSES: AddressMap;
|
|
19
5
|
export declare const NONFUNGIBLE_POSITION_MANAGER_ADDRESSES: AddressMap;
|
|
20
6
|
export {};
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { ChainId } from '@dodoex/api';
|
|
2
2
|
export { ChainId } from '@dodoex/api';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated
|
|
5
|
+
*/
|
|
3
6
|
export declare const SUPPORTED_CHAINS: readonly [ChainId.MAINNET, ChainId.ARBITRUM_ONE, ChainId.SEPOLIA, ChainId.TAIKO];
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated
|
|
9
|
+
*/
|
|
4
10
|
export type SupportedChainsType = (typeof SUPPORTED_CHAINS)[number];
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ChainId } from '@dodoex/api';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { TokenAndPoolFilterUserOptions } from './hooks/usePoolListFilterTokenAndPool';
|
|
4
3
|
import { PoolOperateProps } from '../PoolOperate';
|
|
5
|
-
export default function AddLiquidityList({ scrollParentRef, filterChainIds, activeChainId, handleChangeActiveChainId, operatePool, setOperatePool,
|
|
4
|
+
export default function AddLiquidityList({ scrollParentRef, filterChainIds, activeChainId, handleChangeActiveChainId, operatePool, setOperatePool, }: {
|
|
6
5
|
scrollParentRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
7
6
|
account?: string;
|
|
8
7
|
filterChainIds?: ChainId[];
|
|
@@ -10,9 +9,4 @@ export default function AddLiquidityList({ scrollParentRef, filterChainIds, acti
|
|
|
10
9
|
handleChangeActiveChainId: (chainId: number | undefined) => void;
|
|
11
10
|
operatePool: Partial<PoolOperateProps> | null;
|
|
12
11
|
setOperatePool: (operate: Partial<PoolOperateProps> | null) => void;
|
|
13
|
-
tokenAndPoolFilter?: TokenAndPoolFilterUserOptions;
|
|
14
|
-
getMigrationPairAndMining?: (p: {
|
|
15
|
-
address: string;
|
|
16
|
-
chainId: number;
|
|
17
|
-
}) => void;
|
|
18
12
|
}): JSX.Element;
|
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
import { ChainId } from '@dodoex/api';
|
|
2
|
-
import { TokenAndPoolFilterUserOptions } from './hooks/usePoolListFilterTokenAndPool';
|
|
3
2
|
import { PoolOperateProps } from '../PoolOperate';
|
|
4
|
-
export default function MyLiquidity({ account, filterChainIds, activeChainId, handleChangeActiveChainId, operatePool, setOperatePool,
|
|
3
|
+
export default function MyLiquidity({ account, filterChainIds, activeChainId, handleChangeActiveChainId, operatePool, setOperatePool, }: {
|
|
5
4
|
account?: string;
|
|
6
5
|
filterChainIds?: ChainId[];
|
|
7
6
|
activeChainId: ChainId | undefined;
|
|
8
7
|
handleChangeActiveChainId: (chainId: number | undefined) => void;
|
|
9
8
|
operatePool: Partial<PoolOperateProps> | null;
|
|
10
9
|
setOperatePool: (operate: Partial<PoolOperateProps> | null) => void;
|
|
11
|
-
getMigrationPairAndMining?: (p: {
|
|
12
|
-
address: string;
|
|
13
|
-
chainId: number;
|
|
14
|
-
}) => void;
|
|
15
|
-
tokenAndPoolFilter?: TokenAndPoolFilterUserOptions;
|
|
16
10
|
}): JSX.Element;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { BoxProps } from '@dodoex/components';
|
|
2
|
-
export default function LiquidityTable({ sx, children,
|
|
3
|
-
empty?: boolean;
|
|
4
|
-
loading?: boolean;
|
|
2
|
+
export default function LiquidityTable({ sx, children, hasMore, loadMore, loadMoreLoading, ...props }: BoxProps & {
|
|
5
3
|
hasMore?: boolean;
|
|
6
4
|
loadMore?: () => void;
|
|
7
5
|
loadMoreLoading?: boolean;
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import { TokenInfo } from '../../../../hooks/Token';
|
|
3
2
|
import { FetchLiquidityListLqList } from '../../utils';
|
|
4
|
-
export
|
|
5
|
-
tokens: Array<TokenInfo>;
|
|
6
|
-
lqList: FetchLiquidityListLqList;
|
|
7
|
-
element: React.ReactNode;
|
|
8
|
-
}
|
|
9
|
-
export declare function usePoolListFilterTokenAndPool(tokenAndPoolFilter?: TokenAndPoolFilterUserOptions): {
|
|
3
|
+
export declare function usePoolListFilterTokenAndPool(): {
|
|
10
4
|
filterTokens: TokenInfo[];
|
|
11
5
|
filterASymbol: string;
|
|
12
6
|
filterBSymbol: string;
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Page, PageType } from '../../../router/types';
|
|
3
|
-
|
|
4
|
-
import { TokenAndPoolFilterUserOptions } from './hooks/usePoolListFilterTokenAndPool';
|
|
5
|
-
export default function PoolList({ params, scrollRef: scrollParentRefProps, tokenAndPoolFilter, operatePMMPoolElement, onOperatePool, getMigrationPairAndMining, }: {
|
|
3
|
+
export default function PoolList({ params, scrollRef: scrollParentRefProps, }: {
|
|
6
4
|
params?: Page<PageType.Pool>['params'];
|
|
7
5
|
scrollRef?: React.RefObject<any>;
|
|
8
|
-
tokenAndPoolFilter?: TokenAndPoolFilterUserOptions;
|
|
9
|
-
operatePMMPoolElement?: React.ReactElement;
|
|
10
|
-
onOperatePool?: (pool: Partial<PoolOperateProps> | null) => void;
|
|
11
|
-
getMigrationPairAndMining?: (p: {
|
|
12
|
-
address: string;
|
|
13
|
-
chainId: number;
|
|
14
|
-
}) => void;
|
|
15
6
|
}): JSX.Element;
|
|
@@ -11,13 +11,6 @@ export declare function usePoolDetail({ id, chainId, }: {
|
|
|
11
11
|
baseToken: TokenInfo;
|
|
12
12
|
quoteToken: TokenInfo;
|
|
13
13
|
miningAddress: string;
|
|
14
|
-
apy: {
|
|
15
|
-
miningBaseApy?: any | null;
|
|
16
|
-
miningQuoteApy?: any | null;
|
|
17
|
-
transactionBaseApy?: any | null;
|
|
18
|
-
transactionQuoteApy?: any | null;
|
|
19
|
-
metromMiningApy?: any | null;
|
|
20
|
-
} | null | undefined;
|
|
21
14
|
baseApy: string | undefined;
|
|
22
15
|
quoteApy: string | undefined;
|
|
23
16
|
isCpPool: boolean;
|
|
@@ -87,13 +80,6 @@ export declare function usePoolDetail({ id, chainId, }: {
|
|
|
87
80
|
baseToken: TokenInfo;
|
|
88
81
|
quoteToken: TokenInfo;
|
|
89
82
|
miningAddress: string;
|
|
90
|
-
apy: {
|
|
91
|
-
miningBaseApy?: any | null;
|
|
92
|
-
miningQuoteApy?: any | null;
|
|
93
|
-
transactionBaseApy?: any | null;
|
|
94
|
-
transactionQuoteApy?: any | null;
|
|
95
|
-
metromMiningApy?: any | null;
|
|
96
|
-
} | null | undefined;
|
|
97
83
|
baseApy: string | undefined;
|
|
98
84
|
quoteApy: string | undefined;
|
|
99
85
|
isCpPool: boolean;
|
|
@@ -163,13 +149,6 @@ export declare function usePoolDetail({ id, chainId, }: {
|
|
|
163
149
|
baseToken: TokenInfo;
|
|
164
150
|
quoteToken: TokenInfo;
|
|
165
151
|
miningAddress: string;
|
|
166
|
-
apy: {
|
|
167
|
-
miningBaseApy?: any | null;
|
|
168
|
-
miningQuoteApy?: any | null;
|
|
169
|
-
transactionBaseApy?: any | null;
|
|
170
|
-
transactionQuoteApy?: any | null;
|
|
171
|
-
metromMiningApy?: any | null;
|
|
172
|
-
} | null | undefined;
|
|
173
152
|
baseApy: string | undefined;
|
|
174
153
|
quoteApy: string | undefined;
|
|
175
154
|
isCpPool: boolean;
|
|
@@ -239,13 +218,6 @@ export declare function usePoolDetail({ id, chainId, }: {
|
|
|
239
218
|
baseToken: TokenInfo;
|
|
240
219
|
quoteToken: TokenInfo;
|
|
241
220
|
miningAddress: string;
|
|
242
|
-
apy: {
|
|
243
|
-
miningBaseApy?: any | null;
|
|
244
|
-
miningQuoteApy?: any | null;
|
|
245
|
-
transactionBaseApy?: any | null;
|
|
246
|
-
transactionQuoteApy?: any | null;
|
|
247
|
-
metromMiningApy?: any | null;
|
|
248
|
-
} | null | undefined;
|
|
249
221
|
baseApy: string | undefined;
|
|
250
222
|
quoteApy: string | undefined;
|
|
251
223
|
isCpPool: boolean;
|
|
@@ -315,13 +287,6 @@ export declare function usePoolDetail({ id, chainId, }: {
|
|
|
315
287
|
baseToken: TokenInfo;
|
|
316
288
|
quoteToken: TokenInfo;
|
|
317
289
|
miningAddress: string;
|
|
318
|
-
apy: {
|
|
319
|
-
miningBaseApy?: any | null;
|
|
320
|
-
miningQuoteApy?: any | null;
|
|
321
|
-
transactionBaseApy?: any | null;
|
|
322
|
-
transactionQuoteApy?: any | null;
|
|
323
|
-
metromMiningApy?: any | null;
|
|
324
|
-
} | null | undefined;
|
|
325
290
|
baseApy: string | undefined;
|
|
326
291
|
quoteApy: string | undefined;
|
|
327
292
|
isCpPool: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dodoex/widgets",
|
|
3
|
-
"version": "3.0.2-
|
|
3
|
+
"version": "3.0.2-rise.1",
|
|
4
4
|
"description": "DODO Widgets",
|
|
5
5
|
"source": "src/index.tsx",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -58,10 +58,10 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@babel/runtime": "^7.17.0",
|
|
61
|
-
"@dodoex/api": "3.0.3-
|
|
61
|
+
"@dodoex/api": "3.0.3-rise.1",
|
|
62
62
|
"@dodoex/components": "3.0.3",
|
|
63
63
|
"@dodoex/contract-request": "^1.3.0",
|
|
64
|
-
"@dodoex/dodo-contract-request": "
|
|
64
|
+
"@dodoex/dodo-contract-request": "1.10.0-alpha.4",
|
|
65
65
|
"@dodoex/icons": "^2.0.2",
|
|
66
66
|
"@emotion/react": "^11.10.0",
|
|
67
67
|
"@emotion/styled": "^11.10.0",
|
|
@@ -106,7 +106,9 @@
|
|
|
106
106
|
"peerDependencies": {
|
|
107
107
|
"@babel/runtime": ">=7.17.0",
|
|
108
108
|
"react": ">=17.0.1",
|
|
109
|
-
"react-dom": ">=17.0.1"
|
|
109
|
+
"react-dom": ">=17.0.1",
|
|
110
|
+
"react-redux": ">=7.2.2",
|
|
111
|
+
"redux": ">=4.1.2"
|
|
110
112
|
},
|
|
111
113
|
"devDependencies": {
|
|
112
114
|
"@babel/preset-env": "^7.16.11",
|
|
@@ -152,4 +154,5 @@
|
|
|
152
154
|
"ts-jest": "^29.0.1",
|
|
153
155
|
"typescript": "^5.6.3"
|
|
154
156
|
}
|
|
155
|
-
}
|
|
157
|
+
}
|
|
158
|
+
|