@web3jskit/walletkit 0.0.3 → 0.0.5
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/package.json +6 -3
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/src/assets/svg/dataBase.ts +0 -11
- package/src/assets/svg/metaMaskWallet.ts +0 -35
- package/src/components/ConnectButton/ConnectedInfo.tsx +0 -17
- package/src/components/ConnectButton/index.tsx +0 -48
- package/src/components/Connecting/index.tsx +0 -26
- package/src/components/Connecting/style.ts +0 -53
- package/src/components/GetWallet/index.tsx +0 -82
- package/src/components/GetWallet/style.ts +0 -118
- package/src/components/Header/ModalHeader.tsx +0 -24
- package/src/components/Header/style.ts +0 -74
- package/src/components/Icon/index.tsx +0 -120
- package/src/components/Introduce/index.tsx +0 -30
- package/src/components/Introduce/style.ts +0 -73
- package/src/components/Modal/ConnectModal.tsx +0 -155
- package/src/components/Modal/WalletInfoModal.tsx +0 -82
- package/src/components/Modal/index.tsx +0 -80
- package/src/components/Modal/style.ts +0 -190
- package/src/components/SVGs/backArrowSvg.tsx +0 -10
- package/src/components/SVGs/closeSvg.tsx +0 -11
- package/src/components/SVGs/copiedSvg.tsx +0 -11
- package/src/components/SVGs/copySvg.tsx +0 -11
- package/src/components/SVGs/exitSvg.tsx +0 -11
- package/src/components/SVGs/spinSvg.tsx +0 -10
- package/src/components/Text/index.tsx +0 -67
- package/src/components/WalletKitProvider/ChainProvider.tsx +0 -34
- package/src/components/WalletKitProvider/I18nProvider.tsx +0 -52
- package/src/components/WalletKitProvider/ThemeProvider.tsx +0 -16
- package/src/components/WalletKitProvider/index.tsx +0 -40
- package/src/components/WalletList/index.tsx +0 -42
- package/src/components/WalletList/style.ts +0 -102
- package/src/components/WalletTriggerButton/index.tsx +0 -50
- package/src/components/WalletTriggerButton/style.ts +0 -53
- package/src/default.d.ts +0 -18
- package/src/hooks/useWalletKit.ts +0 -42
- package/src/index.ts +0 -9
- package/src/locals/i18n.ts +0 -19
- package/src/locals/languages/en.json +0 -30
- package/src/locals/languages/zh.json +0 -30
- package/src/locals/resources.ts +0 -11
- package/src/stores/SlotsWalletStore.ts +0 -48
- package/src/stores/index.ts +0 -75
- package/src/styled/index.ts +0 -79
- package/src/test/getwalletprovider.test.ts +0 -9
- package/src/test/setup.ts +0 -7
- package/src/theme/index.ts +0 -93
- package/src/theme/styled.d.ts +0 -30
- package/src/types/configType.ts +0 -2
- package/src/types/slotsType.ts +0 -23
- package/src/utils/formatter.ts +0 -4
- package/src/utils/generateAvatar.ts +0 -35
- package/src/wallets/GelWallet/index.ts +0 -0
- package/src/wallets/SlotsWallets/index.ts +0 -30
- package/tsconfig.build.json +0 -4
- package/tsconfig.json +0 -55
- package/vitest.config.ts +0 -10
package/dist/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@web3jskit/walletkit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "walletkit",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
6
9
|
"scripts": {
|
|
7
10
|
"build": "tsc --build tsconfig.build.json",
|
|
8
11
|
"watch": "tsc --watch"
|
|
@@ -11,7 +14,8 @@
|
|
|
11
14
|
"dependencies": {
|
|
12
15
|
"@reach/dialog": "^0.18.0",
|
|
13
16
|
"@react-spring/web": "^9.7.1",
|
|
14
|
-
"@
|
|
17
|
+
"@tanstack/react-query": "^5.0.0",
|
|
18
|
+
"@web3jskit/wallethelper": "0.0.5",
|
|
15
19
|
"copy-to-clipboard": "^3.3.3",
|
|
16
20
|
"i18next": "^22.4.13",
|
|
17
21
|
"i18next-browser-languagedetector": "^7.0.1",
|
|
@@ -35,7 +39,6 @@
|
|
|
35
39
|
"vitest": "2.0.5"
|
|
36
40
|
},
|
|
37
41
|
"peerDependencies": {
|
|
38
|
-
"@tanstack/react-query": ">=5.0.0",
|
|
39
42
|
"react": ">=18",
|
|
40
43
|
"react-dom": ">=18"
|
|
41
44
|
}
|