@rhinestone/deposit-modal 0.1.28 → 0.1.29
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/{DepositModalReown-6IXFIXR6.cjs → DepositModalReown-4PFOMSC6.cjs} +4 -4
- package/dist/{DepositModalReown-FF4YU5VV.mjs → DepositModalReown-BVHWFWIG.mjs} +3 -3
- package/dist/{WithdrawModalReown-LIYQG2BW.mjs → WithdrawModalReown-CJCNT7SA.mjs} +3 -3
- package/dist/{WithdrawModalReown-GMIE6AWA.cjs → WithdrawModalReown-YREQR7DV.cjs} +4 -4
- package/dist/{chunk-XJ4G6RO6.cjs → chunk-5QJNOPNF.cjs} +100 -100
- package/dist/{chunk-VW3QQWEL.cjs → chunk-7ZCUANBT.cjs} +29 -29
- package/dist/{chunk-LP6DQCKV.cjs → chunk-CPIQJR47.cjs} +54 -54
- package/dist/{chunk-A6QLADED.mjs → chunk-CSQRKM4Y.mjs} +123 -2
- package/dist/{chunk-CEIWN53N.cjs → chunk-DLYVHOME.cjs} +130 -9
- package/dist/{chunk-XF7M4TTT.mjs → chunk-K6YG3I6O.mjs} +3 -3
- package/dist/{chunk-RQSAANC3.mjs → chunk-N6T4TKXI.mjs} +1 -1
- package/dist/{chunk-YXTWMYHK.mjs → chunk-XTTTHW3W.mjs} +3 -3
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +11 -2
- package/dist/constants.d.ts +11 -2
- package/dist/constants.mjs +1 -1
- package/dist/deposit.cjs +4 -4
- package/dist/deposit.mjs +3 -3
- package/dist/index.cjs +5 -5
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +4 -4
- package/dist/reown.cjs +5 -5
- package/dist/reown.mjs +4 -4
- package/dist/withdraw.cjs +4 -4
- package/dist/withdraw.mjs +3 -3
- package/package.json +56 -9
package/dist/withdraw.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
3
|
+
var _chunkCPIQJR47cjs = require('./chunk-CPIQJR47.cjs');
|
|
4
|
+
require('./chunk-7ZCUANBT.cjs');
|
|
5
|
+
require('./chunk-DLYVHOME.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.WithdrawModal =
|
|
8
|
+
exports.WithdrawModal = _chunkCPIQJR47cjs.WithdrawModal;
|
package/dist/withdraw.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rhinestone/deposit-modal",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
4
|
"description": "React modal component for Rhinestone cross-chain deposits",
|
|
5
5
|
"author": "Rhinestone <dev@rhinestone.wtf>",
|
|
6
6
|
"bugs": {
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"*.css"
|
|
55
55
|
],
|
|
56
56
|
"scripts": {
|
|
57
|
+
"size": "size-limit",
|
|
57
58
|
"build": "tsup && bun run scripts/postbuild.ts",
|
|
58
59
|
"clean": "rm -rf dist",
|
|
59
60
|
"typecheck": "tsc --noEmit",
|
|
@@ -62,26 +63,72 @@
|
|
|
62
63
|
"peerDependencies": {
|
|
63
64
|
"react": ">=18",
|
|
64
65
|
"react-dom": ">=18",
|
|
65
|
-
"viem": ">=2"
|
|
66
|
+
"viem": ">=2",
|
|
67
|
+
"wagmi": ">=3",
|
|
68
|
+
"@reown/appkit": ">=1",
|
|
69
|
+
"@reown/appkit-adapter-wagmi": ">=1",
|
|
70
|
+
"@tanstack/react-query": ">=5"
|
|
66
71
|
},
|
|
67
72
|
"dependencies": {
|
|
68
|
-
"
|
|
69
|
-
"@reown/appkit": "^1.8.17",
|
|
70
|
-
"@reown/appkit-adapter-wagmi": "^1.8.17",
|
|
71
|
-
"qrcode-generator": "^2.0.4",
|
|
72
|
-
"wagmi": "^3.4.2",
|
|
73
|
-
"@tanstack/react-query": "^5.0.0"
|
|
73
|
+
"qrcode-generator": "^2.0.4"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
+
"@reown/appkit": "^1.8.17",
|
|
77
|
+
"@reown/appkit-adapter-wagmi": "^1.8.17",
|
|
78
|
+
"@size-limit/preset-small-lib": "^12.0.0",
|
|
79
|
+
"@tanstack/react-query": "^5.0.0",
|
|
76
80
|
"@types/react": "^19.0.0",
|
|
77
81
|
"@types/react-dom": "^19.0.0",
|
|
78
82
|
"bun-types": "^1.3.8",
|
|
79
83
|
"react": "^19.0.0",
|
|
80
84
|
"react-dom": "^19.0.0",
|
|
85
|
+
"size-limit": "^12.0.0",
|
|
81
86
|
"tsup": "^8.0.0",
|
|
82
87
|
"typescript": "^5.5.0",
|
|
83
|
-
"viem": "^2.0.0"
|
|
88
|
+
"viem": "^2.0.0",
|
|
89
|
+
"wagmi": "^3.4.2"
|
|
84
90
|
},
|
|
91
|
+
"size-limit": [
|
|
92
|
+
{
|
|
93
|
+
"name": "Total Bundle (Everything)",
|
|
94
|
+
"path": "dist/index.mjs",
|
|
95
|
+
"limit": "50 kB",
|
|
96
|
+
"ignore": [
|
|
97
|
+
"react",
|
|
98
|
+
"react-dom",
|
|
99
|
+
"viem",
|
|
100
|
+
"wagmi",
|
|
101
|
+
"@tanstack/react-query",
|
|
102
|
+
"@reown/appkit",
|
|
103
|
+
"@reown/appkit-adapter-wagmi",
|
|
104
|
+
"@walletconnect/ethereum-provider",
|
|
105
|
+
"@coinbase/wallet-sdk",
|
|
106
|
+
"@metamask/sdk",
|
|
107
|
+
"porto",
|
|
108
|
+
"porto/internal"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Deposit & Withdraw Modals Only",
|
|
113
|
+
"path": "dist/index.mjs",
|
|
114
|
+
"import": "{ DepositModal, WithdrawModal }",
|
|
115
|
+
"limit": "50 kB",
|
|
116
|
+
"ignore": [
|
|
117
|
+
"react",
|
|
118
|
+
"react-dom",
|
|
119
|
+
"viem",
|
|
120
|
+
"wagmi",
|
|
121
|
+
"@tanstack/react-query",
|
|
122
|
+
"@reown/appkit",
|
|
123
|
+
"@reown/appkit-adapter-wagmi",
|
|
124
|
+
"@walletconnect/ethereum-provider",
|
|
125
|
+
"@coinbase/wallet-sdk",
|
|
126
|
+
"@metamask/sdk",
|
|
127
|
+
"porto",
|
|
128
|
+
"porto/internal"
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
],
|
|
85
132
|
"keywords": [
|
|
86
133
|
"rhinestone",
|
|
87
134
|
"deposit",
|