@rhinestone/deposit-modal 0.0.0-dev-20260617160708 → 0.0.0-dev-20260619105734
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-TE5QXBVM.cjs → DepositModalReown-57L66M4T.cjs} +6 -6
- package/dist/{DepositModalReown-45FGNMM2.mjs → DepositModalReown-KKN6NSW5.mjs} +3 -3
- package/dist/{WithdrawModalReown-XAJJNJDV.cjs → WithdrawModalReown-DMUAZJY2.cjs} +6 -6
- package/dist/{WithdrawModalReown-C4K77TIT.mjs → WithdrawModalReown-XYBEGAOH.mjs} +3 -3
- package/dist/{chunk-X44MBJJM.mjs → chunk-43RTPRQY.mjs} +1 -1
- package/dist/{chunk-XOXF3RIG.cjs → chunk-4DGKZD56.cjs} +192 -192
- package/dist/{chunk-33WCLK5U.cjs → chunk-543J7MZT.cjs} +54 -54
- package/dist/{chunk-KNP4QWHF.mjs → chunk-75WJQYCX.mjs} +2 -2
- package/dist/{chunk-O754ZFAA.mjs → chunk-A33QFRKD.mjs} +127 -62
- package/dist/{chunk-FF27W35D.cjs → chunk-LJJCPDZO.cjs} +127 -62
- package/dist/{chunk-5UWBHOFH.mjs → chunk-PURTNYRW.mjs} +2 -2
- package/dist/{chunk-AVZSVC6E.cjs → chunk-ULCCXH2A.cjs} +2 -2
- package/dist/deposit.cjs +3 -3
- package/dist/deposit.mjs +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.mjs +3 -3
- package/dist/styles.css +12 -24
- package/dist/withdraw.cjs +3 -3
- package/dist/withdraw.mjs +2 -2
- package/package.json +1 -1
|
@@ -1787,6 +1787,7 @@ ListRow.displayName = "ListRow";
|
|
|
1787
1787
|
|
|
1788
1788
|
// src/components/ui/SegmentedToggle.tsx
|
|
1789
1789
|
|
|
1790
|
+
var SEGMENTED_INSET_PX = 2;
|
|
1790
1791
|
function SegmentedToggle({
|
|
1791
1792
|
options,
|
|
1792
1793
|
value,
|
|
@@ -1797,36 +1798,51 @@ function SegmentedToggle({
|
|
|
1797
1798
|
0,
|
|
1798
1799
|
options.findIndex((opt) => opt.value === value)
|
|
1799
1800
|
);
|
|
1800
|
-
const
|
|
1801
|
-
|
|
1802
|
-
|
|
1801
|
+
const count = Math.max(options.length, 1);
|
|
1802
|
+
const totalInsetPx = SEGMENTED_INSET_PX * (count + 1);
|
|
1803
|
+
const offsetPercent = activeIndex / count * 100;
|
|
1804
|
+
const offsetCorrectionPx = activeIndex * SEGMENTED_INSET_PX / count;
|
|
1805
|
+
const segmentedStyle = {
|
|
1806
|
+
"--rs-segmented-count": count,
|
|
1807
|
+
"--rs-segmented-index": activeIndex,
|
|
1808
|
+
"--rs-segmented-inset": `${SEGMENTED_INSET_PX}px`,
|
|
1809
|
+
"--rs-segmented-thumb-width": `calc((100% - ${totalInsetPx}px) / ${count})`,
|
|
1810
|
+
"--rs-segmented-thumb-offset": `calc(${offsetPercent}% - ${offsetCorrectionPx}px)`
|
|
1803
1811
|
};
|
|
1804
|
-
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1812
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
1813
|
+
"div",
|
|
1814
|
+
{
|
|
1815
|
+
className: "rs-segmented",
|
|
1816
|
+
role: "tablist",
|
|
1817
|
+
"aria-label": ariaLabel,
|
|
1818
|
+
style: segmentedStyle,
|
|
1819
|
+
children: [
|
|
1820
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
1821
|
+
"span",
|
|
1822
|
+
{
|
|
1823
|
+
className: "rs-segmented-thumb",
|
|
1824
|
+
"data-value": value,
|
|
1825
|
+
"aria-hidden": "true"
|
|
1826
|
+
}
|
|
1827
|
+
),
|
|
1828
|
+
options.map((opt) => {
|
|
1829
|
+
const active = opt.value === value;
|
|
1830
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
1831
|
+
"button",
|
|
1832
|
+
{
|
|
1833
|
+
type: "button",
|
|
1834
|
+
role: "tab",
|
|
1835
|
+
"aria-selected": active,
|
|
1836
|
+
className: `rs-segmented-option${active ? " rs-segmented-option--active" : ""}`,
|
|
1837
|
+
onClick: () => onChange(opt.value),
|
|
1838
|
+
children: opt.label
|
|
1839
|
+
},
|
|
1840
|
+
opt.value
|
|
1841
|
+
);
|
|
1842
|
+
})
|
|
1843
|
+
]
|
|
1844
|
+
}
|
|
1845
|
+
);
|
|
1830
1846
|
}
|
|
1831
1847
|
SegmentedToggle.displayName = "SegmentedToggle";
|
|
1832
1848
|
|
|
@@ -2180,47 +2196,96 @@ function getExchangeLogo(name, connection) {
|
|
|
2180
2196
|
// src/components/ui/BrandIcons.tsx
|
|
2181
2197
|
|
|
2182
2198
|
function VisaMark() {
|
|
2183
|
-
return /* @__PURE__ */ _jsxruntime.
|
|
2184
|
-
"
|
|
2199
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
2200
|
+
"svg",
|
|
2185
2201
|
{
|
|
2186
|
-
|
|
2187
|
-
|
|
2202
|
+
width: "38",
|
|
2203
|
+
height: "24",
|
|
2204
|
+
viewBox: "0 0 38 24",
|
|
2205
|
+
fill: "none",
|
|
2206
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2207
|
+
"aria-hidden": "true",
|
|
2208
|
+
children: [
|
|
2209
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { width: "37.2537", height: "24", rx: "4.2985", fill: "white" }),
|
|
2210
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2211
|
+
"path",
|
|
2212
|
+
{
|
|
2213
|
+
d: "M18.3993 8.08878L16.6616 16.2114H14.5605L16.2984 8.08878H18.3993ZM27.2397 13.3336L28.3459 10.2833L28.9824 13.3336H27.2397ZM29.584 16.2114H31.5276L29.8316 8.08878H28.0376C27.6345 8.08878 27.2944 8.32324 27.143 8.6847L23.9906 16.2114H26.1972L26.6352 14.9985H29.331L29.584 16.2114ZM24.1001 13.5593C24.1091 11.4155 21.1354 11.2975 21.156 10.3398C21.1622 10.048 21.4401 9.7385 22.0471 9.65906C22.3486 9.61972 23.1777 9.58964 24.1192 10.0228L24.4878 8.30036C23.9821 8.1168 23.3314 7.94019 22.5221 7.94019C20.4454 7.94019 18.9836 9.04437 18.9713 10.6254C18.9582 11.7947 20.0148 12.4471 20.811 12.8359C21.6295 13.2341 21.9046 13.4891 21.901 13.8452C21.8956 14.3905 21.248 14.6306 20.6439 14.6401C19.5873 14.6568 18.9741 14.355 18.4854 14.1272L18.1047 15.907C18.5954 16.1325 19.5017 16.3284 20.4418 16.3384C22.6489 16.3384 24.0929 15.2478 24.1001 13.5593ZM15.3968 8.08878L11.9925 16.2114H9.77099L8.09583 9.72898C7.99402 9.32973 7.90559 9.18371 7.59631 9.01532C7.09165 8.74152 6.25741 8.48418 5.52344 8.32479L5.57357 8.08878H9.14885C9.6044 8.08878 10.0145 8.39214 10.1178 8.91685L11.0027 13.6174L13.1892 8.08878H15.3968Z",
|
|
2214
|
+
fill: "#1434CB"
|
|
2215
|
+
}
|
|
2216
|
+
)
|
|
2217
|
+
]
|
|
2188
2218
|
}
|
|
2189
|
-
)
|
|
2219
|
+
);
|
|
2190
2220
|
}
|
|
2191
2221
|
function MastercardMark() {
|
|
2192
|
-
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2222
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
2223
|
+
"svg",
|
|
2224
|
+
{
|
|
2225
|
+
width: "38",
|
|
2226
|
+
height: "24",
|
|
2227
|
+
viewBox: "0 0 38 24",
|
|
2228
|
+
fill: "none",
|
|
2229
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2230
|
+
"aria-hidden": "true",
|
|
2231
|
+
children: [
|
|
2232
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { width: "37.2537", height: "24", rx: "4.2985", fill: "white" }),
|
|
2233
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2234
|
+
"path",
|
|
2235
|
+
{
|
|
2236
|
+
d: "M21.303 7.07157H15.8179V16.9284H21.303V7.07157Z",
|
|
2237
|
+
fill: "#FF5F00"
|
|
2238
|
+
}
|
|
2239
|
+
),
|
|
2240
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2241
|
+
"path",
|
|
2242
|
+
{
|
|
2243
|
+
d: "M16.1662 12C16.1653 11.0507 16.3804 10.1136 16.7953 9.25979C17.2101 8.40593 17.8137 7.65764 18.5605 7.07156C17.6357 6.34468 16.5251 5.89265 15.3556 5.76713C14.1861 5.6416 13.0048 5.84765 11.9469 6.36172C10.8889 6.87579 9.99698 7.67715 9.37294 8.67419C8.7489 9.67124 8.41797 10.8237 8.41797 12C8.41797 13.1762 8.7489 14.3287 9.37294 15.3257C9.99698 16.3228 10.8889 17.1241 11.9469 17.6382C13.0048 18.1523 14.1861 18.3583 15.3556 18.2328C16.5251 18.1073 17.6357 17.6553 18.5605 16.9284C17.8137 16.3423 17.2101 15.594 16.7953 14.7401C16.3805 13.8863 16.1653 12.9492 16.1662 12Z",
|
|
2244
|
+
fill: "#EB001B"
|
|
2245
|
+
}
|
|
2246
|
+
),
|
|
2247
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2248
|
+
"path",
|
|
2249
|
+
{
|
|
2250
|
+
d: "M28.7026 12C28.7027 13.1762 28.3718 14.3287 27.7478 15.3257C27.1238 16.3228 26.2318 17.1241 25.1739 17.6382C24.116 18.1523 22.9348 18.3583 21.7653 18.2328C20.5958 18.1073 19.4852 17.6553 18.5605 16.9284C19.3066 16.3417 19.9097 15.5933 20.3245 14.7396C20.7392 13.8858 20.9547 12.9491 20.9547 12C20.9547 11.0508 20.7392 10.1141 20.3245 9.26037C19.9097 8.40665 19.3066 7.65824 18.5605 7.07156C19.4852 6.34468 20.5958 5.89265 21.7653 5.76712C22.9348 5.6416 24.116 5.84765 25.1739 6.36173C26.2318 6.87581 27.1238 7.67717 27.7478 8.67421C28.3718 9.67126 28.7027 10.8238 28.7026 12Z",
|
|
2251
|
+
fill: "#F79E1B"
|
|
2252
|
+
}
|
|
2253
|
+
),
|
|
2254
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2255
|
+
"path",
|
|
2256
|
+
{
|
|
2257
|
+
d: "M28.1046 15.8844V15.6826H28.1859V15.6415H27.9787V15.6826H28.0601V15.8844H28.1046ZM28.5069 15.8844V15.6411H28.4434L28.3703 15.8084L28.2972 15.6411H28.2337V15.8844H28.2785V15.7009L28.347 15.8591H28.3936L28.4621 15.7005V15.8844H28.5069Z",
|
|
2258
|
+
fill: "#F79E1B"
|
|
2259
|
+
}
|
|
2260
|
+
)
|
|
2261
|
+
]
|
|
2262
|
+
}
|
|
2263
|
+
);
|
|
2215
2264
|
}
|
|
2216
2265
|
function AmexMark() {
|
|
2217
|
-
return /* @__PURE__ */ _jsxruntime.
|
|
2218
|
-
"
|
|
2266
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
2267
|
+
"svg",
|
|
2219
2268
|
{
|
|
2220
|
-
|
|
2221
|
-
|
|
2269
|
+
width: "38",
|
|
2270
|
+
height: "24",
|
|
2271
|
+
viewBox: "0 0 38 24",
|
|
2272
|
+
fill: "none",
|
|
2273
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2274
|
+
"aria-hidden": "true",
|
|
2275
|
+
children: [
|
|
2276
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { width: "37.2537", height: "24", rx: "4.2985", fill: "#006FCF" }),
|
|
2277
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
2278
|
+
"path",
|
|
2279
|
+
{
|
|
2280
|
+
fillRule: "evenodd",
|
|
2281
|
+
clipRule: "evenodd",
|
|
2282
|
+
d: "M37.268 4.34531H34.1845L32.5727 8.9706L30.8908 4.34531H27.7373V11.5472L24.5136 4.34531H21.9208L18.6971 11.7036H20.9395L21.5702 10.232H24.9341L25.5648 11.7036H29.7696V6.58776L31.6617 11.7036H33.4136L35.3057 6.58776V11.7036H37.268V12.8248H34.675L32.5727 15.1375L30.4003 12.8248H21.5003V20.1831H30.3303L32.5026 17.8004L34.675 20.1831H37.268V21.0939H34.1845L32.5026 19.272L30.8206 21.0939H20.379V12.6846H17.0151L21.2199 3.22388H25.2845L26.756 6.44759V3.22388H31.8019L32.6427 5.6767L33.4838 3.22388H37.268V4.34531ZM37.268 14.4366L35.3759 16.4689L37.268 18.5011V20.1831L33.8342 16.4689L37.268 12.8248V14.4366ZM27.7373 20.1831V18.4312H23.5325V17.3099H27.6671V15.628H23.5325V14.5068H27.7373V12.8248L31.2411 16.4689L27.7373 20.1831ZM22.2009 8.62005L23.1822 6.23742L24.1632 8.62005H22.2009Z",
|
|
2283
|
+
fill: "white"
|
|
2284
|
+
}
|
|
2285
|
+
)
|
|
2286
|
+
]
|
|
2222
2287
|
}
|
|
2223
|
-
)
|
|
2288
|
+
);
|
|
2224
2289
|
}
|
|
2225
2290
|
function ExchangeBadgeImage({ name }) {
|
|
2226
2291
|
const src = getExchangeLogoSrc(name);
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
saveSessionOwnerToStorage,
|
|
31
31
|
useLatestRef,
|
|
32
32
|
useTokenPrices
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-A33QFRKD.mjs";
|
|
34
34
|
import {
|
|
35
35
|
buildSafeTransaction,
|
|
36
36
|
executeSafeErc20Transfer,
|
|
@@ -1516,7 +1516,7 @@ function deriveStepView(step, _registration) {
|
|
|
1516
1516
|
// src/WithdrawModal.tsx
|
|
1517
1517
|
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
1518
1518
|
var ReownWithdrawInner = lazy(
|
|
1519
|
-
() => import("./WithdrawModalReown-
|
|
1519
|
+
() => import("./WithdrawModalReown-XYBEGAOH.mjs").then((m) => ({
|
|
1520
1520
|
default: m.WithdrawModalReown
|
|
1521
1521
|
}))
|
|
1522
1522
|
);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkLJJCPDZOcjs = require('./chunk-LJJCPDZO.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -155,7 +155,7 @@ function useReownWallet() {
|
|
|
155
155
|
await switchChainAsync({ chainId });
|
|
156
156
|
}
|
|
157
157
|
} catch (err) {
|
|
158
|
-
if (
|
|
158
|
+
if (_chunkLJJCPDZOcjs.isUnsupportedChainSwitchError.call(void 0, err)) {
|
|
159
159
|
throw new Error(
|
|
160
160
|
`Switch to ${_chunkABVRVW3Pcjs.getChainName.call(void 0, chainId)} in your wallet to continue`
|
|
161
161
|
);
|
package/dist/deposit.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk4DGKZD56cjs = require('./chunk-4DGKZD56.cjs');
|
|
4
4
|
require('./chunk-NRNJAQUA.cjs');
|
|
5
|
-
require('./chunk-
|
|
5
|
+
require('./chunk-LJJCPDZO.cjs');
|
|
6
6
|
require('./chunk-UEKPBRBY.cjs');
|
|
7
7
|
require('./chunk-ABVRVW3P.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.DepositModal =
|
|
10
|
+
exports.DepositModal = _chunk4DGKZD56cjs.DepositModal;
|
package/dist/deposit.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DepositModal
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-75WJQYCX.mjs";
|
|
4
4
|
import "./chunk-FJWLC4AM.mjs";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-A33QFRKD.mjs";
|
|
6
6
|
import "./chunk-F7P4MV72.mjs";
|
|
7
7
|
import "./chunk-WJX3TJFK.mjs";
|
|
8
8
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk4DGKZD56cjs = require('./chunk-4DGKZD56.cjs');
|
|
4
4
|
require('./chunk-NRNJAQUA.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
7
|
+
var _chunk543J7MZTcjs = require('./chunk-543J7MZT.cjs');
|
|
8
|
+
require('./chunk-LJJCPDZO.cjs');
|
|
9
9
|
require('./chunk-UEKPBRBY.cjs');
|
|
10
10
|
|
|
11
11
|
|
|
@@ -85,4 +85,4 @@ async function disconnectWallet() {
|
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
exports.CHAIN_BY_ID = _chunkABVRVW3Pcjs.CHAIN_BY_ID; exports.DEFAULT_BACKEND_URL = _chunkABVRVW3Pcjs.DEFAULT_BACKEND_URL; exports.DEFAULT_SIGNER_ADDRESS = _chunkABVRVW3Pcjs.DEFAULT_SIGNER_ADDRESS; exports.DepositModal =
|
|
88
|
+
exports.CHAIN_BY_ID = _chunkABVRVW3Pcjs.CHAIN_BY_ID; exports.DEFAULT_BACKEND_URL = _chunkABVRVW3Pcjs.DEFAULT_BACKEND_URL; exports.DEFAULT_SIGNER_ADDRESS = _chunkABVRVW3Pcjs.DEFAULT_SIGNER_ADDRESS; exports.DepositModal = _chunk4DGKZD56cjs.DepositModal; exports.HYPERCORE_CHAIN_ID = _chunkABVRVW3Pcjs.HYPERCORE_CHAIN_ID; exports.HYPERCORE_USDC_ADDRESS = _chunkABVRVW3Pcjs.HYPERCORE_USDC_ADDRESS; exports.NATIVE_TOKEN_ADDRESS = _chunkABVRVW3Pcjs.NATIVE_TOKEN_ADDRESS; exports.SOURCE_CHAINS = _chunkABVRVW3Pcjs.SOURCE_CHAINS; exports.SUPPORTED_CHAINS = _chunkABVRVW3Pcjs.SUPPORTED_CHAINS; exports.WithdrawModal = _chunk543J7MZTcjs.WithdrawModal; exports.chainRegistry = _chunkABVRVW3Pcjs.chainRegistry; exports.disconnectWallet = disconnectWallet; exports.findChainIdForToken = _chunkABVRVW3Pcjs.findChainIdForToken; exports.getChainBadge = _chunkABVRVW3Pcjs.getChainBadge; exports.getChainIcon = _chunkABVRVW3Pcjs.getChainIcon; exports.getChainId = _chunkABVRVW3Pcjs.getChainId; exports.getChainName = _chunkABVRVW3Pcjs.getChainName; exports.getChainObject = _chunkABVRVW3Pcjs.getChainObject; exports.getExplorerName = _chunkABVRVW3Pcjs.getExplorerName; exports.getExplorerTxUrl = _chunkABVRVW3Pcjs.getExplorerTxUrl; exports.getExplorerUrl = _chunkABVRVW3Pcjs.getExplorerUrl; exports.getSupportedChainIds = _chunkABVRVW3Pcjs.getSupportedChainIds; exports.getSupportedTargetTokens = _chunkABVRVW3Pcjs.getSupportedTargetTokens; exports.getSupportedTokenSymbolsForChain = _chunkABVRVW3Pcjs.getSupportedTokenSymbolsForChain; exports.getTargetTokenSymbolsForChain = _chunkABVRVW3Pcjs.getTargetTokenSymbolsForChain; exports.getTokenAddress = _chunkABVRVW3Pcjs.getTokenAddress; exports.getTokenDecimals = _chunkABVRVW3Pcjs.getTokenDecimals; exports.getTokenDecimalsByAddress = _chunkABVRVW3Pcjs.getTokenDecimalsByAddress; exports.getTokenIcon = _chunkABVRVW3Pcjs.getTokenIcon; exports.getTokenSymbol = _chunkABVRVW3Pcjs.getTokenSymbol; exports.getUsdcAddress = _chunkABVRVW3Pcjs.getUsdcAddress; exports.getUsdcDecimals = _chunkABVRVW3Pcjs.getUsdcDecimals; exports.isSupportedTokenAddressForChain = _chunkABVRVW3Pcjs.isSupportedTokenAddressForChain;
|
package/dist/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DepositModal
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-75WJQYCX.mjs";
|
|
4
4
|
import "./chunk-FJWLC4AM.mjs";
|
|
5
5
|
import {
|
|
6
6
|
WithdrawModal
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-PURTNYRW.mjs";
|
|
8
|
+
import "./chunk-A33QFRKD.mjs";
|
|
9
9
|
import "./chunk-F7P4MV72.mjs";
|
|
10
10
|
import {
|
|
11
11
|
CHAIN_BY_ID,
|
package/dist/styles.css
CHANGED
|
@@ -4600,7 +4600,7 @@
|
|
|
4600
4600
|
grid-auto-flow: column;
|
|
4601
4601
|
grid-auto-columns: 1fr;
|
|
4602
4602
|
align-items: center;
|
|
4603
|
-
padding:
|
|
4603
|
+
padding: var(--rs-segmented-inset);
|
|
4604
4604
|
background: var(--rs-segmented-track);
|
|
4605
4605
|
border-radius: var(--rs-radius-full);
|
|
4606
4606
|
isolation: isolate;
|
|
@@ -4609,15 +4609,14 @@
|
|
|
4609
4609
|
.rs-segmented-thumb {
|
|
4610
4610
|
position: absolute;
|
|
4611
4611
|
z-index: 0;
|
|
4612
|
-
top:
|
|
4613
|
-
bottom:
|
|
4614
|
-
left:
|
|
4615
|
-
width:
|
|
4612
|
+
top: var(--rs-segmented-inset);
|
|
4613
|
+
bottom: var(--rs-segmented-inset);
|
|
4614
|
+
left: calc(var(--rs-segmented-inset) + var(--rs-segmented-thumb-offset));
|
|
4615
|
+
width: var(--rs-segmented-thumb-width);
|
|
4616
4616
|
border-radius: var(--rs-radius-full);
|
|
4617
4617
|
background: var(--rs-segmented-active-bg);
|
|
4618
4618
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
|
|
4619
|
-
|
|
4620
|
-
transition: transform 180ms ease;
|
|
4619
|
+
transition: left 180ms ease;
|
|
4621
4620
|
pointer-events: none;
|
|
4622
4621
|
}
|
|
4623
4622
|
|
|
@@ -4873,29 +4872,18 @@
|
|
|
4873
4872
|
border-radius: 4px;
|
|
4874
4873
|
}
|
|
4875
4874
|
|
|
4876
|
-
/* Card-network chips:
|
|
4875
|
+
/* Card-network chips: exported Figma tiles are all 38×24. */
|
|
4877
4876
|
.rs-list-row-meta-icons--cards > .rs-card-network {
|
|
4877
|
+
width: 29px;
|
|
4878
4878
|
height: 18px;
|
|
4879
|
-
border-radius:
|
|
4879
|
+
border-radius: 3.25px;
|
|
4880
4880
|
overflow: hidden;
|
|
4881
|
-
background:
|
|
4882
|
-
box-shadow:
|
|
4883
|
-
}
|
|
4884
|
-
|
|
4885
|
-
.rs-list-row-meta-icons--cards > .rs-card-network--amex {
|
|
4886
|
-
width: 22px;
|
|
4887
|
-
}
|
|
4888
|
-
|
|
4889
|
-
.rs-list-row-meta-icons--cards > .rs-card-network--visa {
|
|
4890
|
-
width: 30px;
|
|
4891
|
-
}
|
|
4892
|
-
|
|
4893
|
-
.rs-list-row-meta-icons--cards > .rs-card-network--mastercard {
|
|
4894
|
-
width: 22px;
|
|
4881
|
+
background: transparent;
|
|
4882
|
+
box-shadow: none;
|
|
4895
4883
|
}
|
|
4896
4884
|
|
|
4897
4885
|
.rs-list-row-meta-icons--cards > .rs-card-network + .rs-card-network {
|
|
4898
|
-
margin-left: -
|
|
4886
|
+
margin-left: -7px;
|
|
4899
4887
|
}
|
|
4900
4888
|
|
|
4901
4889
|
.rs-list-row-meta-icons--cards .rs-card-network svg {
|
package/dist/withdraw.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var _chunk543J7MZTcjs = require('./chunk-543J7MZT.cjs');
|
|
4
|
+
require('./chunk-LJJCPDZO.cjs');
|
|
5
5
|
require('./chunk-UEKPBRBY.cjs');
|
|
6
6
|
require('./chunk-ABVRVW3P.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.WithdrawModal =
|
|
9
|
+
exports.WithdrawModal = _chunk543J7MZTcjs.WithdrawModal;
|
package/dist/withdraw.mjs
CHANGED
package/package.json
CHANGED