@rhinestone/deposit-modal 0.16.0 → 0.18.0

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.
Files changed (62) hide show
  1. package/README.md +68 -0
  2. package/dist/{DepositModalReown-IFN6YLZJ.cjs → DepositModalReown-TVO3ZQQK.cjs} +17 -17
  3. package/dist/{DepositModalReown-R7UROJPJ.mjs → DepositModalReown-VCY65DJX.mjs} +4 -4
  4. package/dist/WithdrawModal-GR3HLYXU.cjs +11 -0
  5. package/dist/{WithdrawModal-XKSSHVEJ.mjs → WithdrawModal-RMCYJJ4S.mjs} +3 -3
  6. package/dist/bearer-transport-CVHNBgoV.d.cts +14 -0
  7. package/dist/bearer-transport-CVHNBgoV.d.ts +14 -0
  8. package/dist/{chunk-24N4KMJX.cjs → chunk-34JVJZEZ.cjs} +71 -71
  9. package/dist/{chunk-3HCCR54R.mjs → chunk-3TEVMP76.mjs} +1 -1
  10. package/dist/chunk-ADEWTBSN.cjs +19 -0
  11. package/dist/{chunk-EA5CE2UZ.mjs → chunk-AIZKGFVA.mjs} +675 -233
  12. package/dist/{chunk-F6ROQ6RJ.mjs → chunk-EKC2IRQG.mjs} +185 -69
  13. package/dist/{chunk-V466XQSG.cjs → chunk-JV5OGG53.cjs} +630 -514
  14. package/dist/{chunk-H4O22O7Y.cjs → chunk-N3AAT6BS.cjs} +826 -384
  15. package/dist/{chunk-5CM3ZQ5U.cjs → chunk-N6JJG57R.cjs} +1 -1
  16. package/dist/chunk-O4JZKKCZ.cjs +41 -0
  17. package/dist/chunk-PP4QE32S.mjs +19 -0
  18. package/dist/{chunk-HMB2XQGD.mjs → chunk-R2B6VD4E.mjs} +1 -1
  19. package/dist/chunk-X4EUXBHJ.mjs +41 -0
  20. package/dist/compliance.cjs +14 -0
  21. package/dist/compliance.d.cts +10 -0
  22. package/dist/compliance.d.ts +10 -0
  23. package/dist/compliance.mjs +14 -0
  24. package/dist/constants.cjs +3 -3
  25. package/dist/constants.d.cts +1 -1
  26. package/dist/constants.d.ts +1 -1
  27. package/dist/constants.mjs +3 -3
  28. package/dist/deposit.cjs +4 -4
  29. package/dist/deposit.d.cts +2 -2
  30. package/dist/deposit.d.ts +2 -2
  31. package/dist/deposit.mjs +3 -3
  32. package/dist/embed.cjs +16 -16
  33. package/dist/embed.d.cts +1 -1
  34. package/dist/embed.d.ts +1 -1
  35. package/dist/embed.mjs +8 -8
  36. package/dist/index.cjs +5 -5
  37. package/dist/index.d.cts +1 -1
  38. package/dist/index.d.ts +1 -1
  39. package/dist/index.mjs +4 -4
  40. package/dist/offramp.cjs +25 -0
  41. package/dist/offramp.d.cts +28 -0
  42. package/dist/offramp.d.ts +28 -0
  43. package/dist/offramp.mjs +25 -0
  44. package/dist/onramp.cjs +27 -0
  45. package/dist/onramp.d.cts +37 -0
  46. package/dist/onramp.d.ts +37 -0
  47. package/dist/onramp.mjs +27 -0
  48. package/dist/ramp-types-C6aUz4SZ.d.cts +43 -0
  49. package/dist/ramp-types-C6aUz4SZ.d.ts +43 -0
  50. package/dist/server.cjs +54 -2
  51. package/dist/server.d.cts +13 -1
  52. package/dist/server.d.ts +13 -1
  53. package/dist/server.mjs +52 -0
  54. package/dist/styles.css +22 -0
  55. package/dist/{types-B9SbZQIG.d.ts → types-CZYypODQ.d.ts} +3 -2
  56. package/dist/{types-SwGGf0eH.d.cts → types-CbUs4boj.d.cts} +3 -2
  57. package/dist/withdraw.cjs +4 -4
  58. package/dist/withdraw.d.cts +2 -2
  59. package/dist/withdraw.d.ts +2 -2
  60. package/dist/withdraw.mjs +3 -3
  61. package/package.json +35 -5
  62. package/dist/WithdrawModal-SZEAI473.cjs +0 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rhinestone/deposit-modal",
3
- "version": "0.16.0",
3
+ "version": "0.18.0",
4
4
  "description": "React modal component for Rhinestone cross-chain deposits",
5
5
  "author": "Rhinestone <dev@rhinestone.wtf>",
6
6
  "bugs": {
@@ -61,6 +61,36 @@
61
61
  "default": "./dist/server.cjs"
62
62
  }
63
63
  },
64
+ "./onramp": {
65
+ "import": {
66
+ "types": "./dist/onramp.d.ts",
67
+ "default": "./dist/onramp.mjs"
68
+ },
69
+ "require": {
70
+ "types": "./dist/onramp.d.cts",
71
+ "default": "./dist/onramp.cjs"
72
+ }
73
+ },
74
+ "./offramp": {
75
+ "import": {
76
+ "types": "./dist/offramp.d.ts",
77
+ "default": "./dist/offramp.mjs"
78
+ },
79
+ "require": {
80
+ "types": "./dist/offramp.d.cts",
81
+ "default": "./dist/offramp.cjs"
82
+ }
83
+ },
84
+ "./compliance": {
85
+ "import": {
86
+ "types": "./dist/compliance.d.ts",
87
+ "default": "./dist/compliance.mjs"
88
+ },
89
+ "require": {
90
+ "types": "./dist/compliance.d.cts",
91
+ "default": "./dist/compliance.cjs"
92
+ }
93
+ },
64
94
  "./constants": {
65
95
  "import": {
66
96
  "types": "./dist/constants.d.ts",
@@ -171,7 +201,7 @@
171
201
  {
172
202
  "name": "Total Bundle (Everything)",
173
203
  "path": "dist/index.mjs",
174
- "limit": "96.5 kB",
204
+ "limit": "99.25 kB",
175
205
  "ignore": [
176
206
  "react",
177
207
  "react-dom",
@@ -190,7 +220,7 @@
190
220
  {
191
221
  "name": "Native Embed (deposit & withdraw)",
192
222
  "path": "dist/embed.mjs",
193
- "limit": "103.5 kB",
223
+ "limit": "105.75 kB",
194
224
  "ignore": [
195
225
  "react",
196
226
  "react-dom",
@@ -210,7 +240,7 @@
210
240
  "name": "Deposit & Withdraw Modals Only",
211
241
  "path": "dist/index.mjs",
212
242
  "import": "{ DepositModal, WithdrawModal }",
213
- "limit": "96 kB",
243
+ "limit": "98.75 kB",
214
244
  "ignore": [
215
245
  "react",
216
246
  "react-dom",
@@ -229,7 +259,7 @@
229
259
  {
230
260
  "name": "Withdraw Modal Only",
231
261
  "path": "dist/withdraw.mjs",
232
- "limit": "45 kB",
262
+ "limit": "46.75 kB",
233
263
  "ignore": [
234
264
  "react",
235
265
  "react-dom",
@@ -1,11 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
- var _chunk24N4KMJXcjs = require('./chunk-24N4KMJX.cjs');
5
- require('./chunk-H4O22O7Y.cjs');
6
- require('./chunk-5CM3ZQ5U.cjs');
7
- require('./chunk-OY5N3E6L.cjs');
8
-
9
-
10
-
11
- exports.WithdrawModal = _chunk24N4KMJXcjs.WithdrawModal; exports.buildWithdrawAnalyticsSessionProperties = _chunk24N4KMJXcjs.buildWithdrawAnalyticsSessionProperties;