@block-auth.io/blockauth-sdk-react 0.2.4
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/README.md +93 -0
- package/dist/bundle.es.js +25 -0
- package/dist/bundle.es.js.map +1 -0
- package/dist/bundle.umd.js +11426 -0
- package/dist/bundle.umd.js.map +1 -0
- package/dist/components/FlowBlockAuth.d.ts +31 -0
- package/dist/components/btns/BtnBaseProvider.d.ts +10 -0
- package/dist/components/btns/BtnBlockAuth.d.ts +8 -0
- package/dist/components/btns/BtnGmail.d.ts +19 -0
- package/dist/components/btns/BtnGoogleBase.d.ts +32 -0
- package/dist/components/btns/BtnMetamask.d.ts +23 -0
- package/dist/components/btns/BtnMicrosoft.d.ts +20 -0
- package/dist/components/btns/BtnPhantom.d.ts +23 -0
- package/dist/components/btns/BtnSignin.d.ts +10 -0
- package/dist/components/btns/BtnWalletConnect.d.ts +32 -0
- package/dist/components/contents/ContentSignin.d.ts +5 -0
- package/dist/components/contents/ContentSignup.d.ts +76 -0
- package/dist/components/contents/ContentSignupEditable.d.ts +14 -0
- package/dist/components/dds/ChangeAccountComponent.d.ts +8 -0
- package/dist/components/dds/DropdownProfile.d.ts +26 -0
- package/dist/components/dds/DropdownProfileBtn.d.ts +12 -0
- package/dist/components/dds/DropdownProfileItem.d.ts +12 -0
- package/dist/components/editables/FiltersEditable.d.ts +16 -0
- package/dist/components/editables/ProvidersButtonsDnD.d.ts +6 -0
- package/dist/components/editables/ProvidersButtonsDnDItem.d.ts +12 -0
- package/dist/components/editables/ProvidersButtonsEditable.d.ts +11 -0
- package/dist/components/editables/WrapperEditables.d.ts +14 -0
- package/dist/components/modals/ModalSignin.d.ts +5 -0
- package/dist/components/modals/ModalSignup.d.ts +6 -0
- package/dist/components/sections/FooterSection.d.ts +8 -0
- package/dist/components/sections/LoginSection.d.ts +16 -0
- package/dist/components/sections/ProvidersSection.d.ts +21 -0
- package/dist/components/sections/internals/ProvidersButtons.d.ts +24 -0
- package/dist/components/sections/internals/ProvidersFilters.d.ts +28 -0
- package/dist/components/sections/internals/SelectedButton.d.ts +8 -0
- package/dist/components/txns/TxnsOverview.d.ts +5 -0
- package/dist/components/txns/internals/PermissionsRequiredModal.d.ts +4 -0
- package/dist/components/txns/internals/Txn.d.ts +22 -0
- package/dist/components/txns/internals/TxnError.d.ts +12 -0
- package/dist/components/txns/internals/TxnType.d.ts +8 -0
- package/dist/helpers/helperUI.d.ts +454 -0
- package/dist/hooks/useBlockAuthWs.d.ts +1 -0
- package/dist/hooks/useBlockAuthWsData.d.ts +1 -0
- package/dist/hooks/useRaisedShadow.d.ts +1 -0
- package/dist/index-C2iHITkO.js +131 -0
- package/dist/index-C2iHITkO.js.map +1 -0
- package/dist/index-DVru6tLI.js +300 -0
- package/dist/index-DVru6tLI.js.map +1 -0
- package/dist/main-BYFXzpCj.js +109272 -0
- package/dist/main-BYFXzpCj.js.map +1 -0
- package/dist/main.css +1 -0
- package/dist/main.d.ts +22 -0
- package/dist/output.css +2322 -0
- package/dist/services/BrowserBase.d.ts +41 -0
- package/dist/services/Metamask.d.ts +37 -0
- package/dist/services/Microsoft.d.ts +26 -0
- package/dist/services/Phantom.d.ts +11 -0
- package/dist/services/WalletConnect.d.ts +29 -0
- package/dist/stores/useStoreExtension.d.ts +13 -0
- package/dist/stores/useStoreGoogle.d.ts +1 -0
- package/dist/stores/useStoreMetamask.d.ts +1 -0
- package/dist/stores/useStoreMicrosoft.d.ts +1 -0
- package/dist/stores/useStoreModals.d.ts +12 -0
- package/dist/stores/useStorePhantom.d.ts +1 -0
- package/dist/stores/useStoreUI.d.ts +116 -0
- package/dist/stores/useStoreWS.d.ts +21 -0
- package/dist/stores/useStoreWeb3Providers.d.ts +1 -0
- package/dist/w3m-modal-Df7g4196.js +348 -0
- package/dist/w3m-modal-Df7g4196.js.map +1 -0
- package/package.json +175 -0
- package/public/output.css +2322 -0
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
export function secsToText(secs?: number): string;
|
|
2
|
+
export function getIp(): Promise<any>;
|
|
3
|
+
export function cleanUrl(url: any): any;
|
|
4
|
+
export function isValidImgUrl(url: any): Promise<boolean>;
|
|
5
|
+
export namespace providersStyles {
|
|
6
|
+
namespace blockauth {
|
|
7
|
+
let name: string;
|
|
8
|
+
let value: string;
|
|
9
|
+
let imgSrc: any;
|
|
10
|
+
let imgBgColor: string;
|
|
11
|
+
let loaderColor: string;
|
|
12
|
+
let colorBase: string;
|
|
13
|
+
let borderStyles: string;
|
|
14
|
+
let hoverBorderStyles: string;
|
|
15
|
+
}
|
|
16
|
+
namespace google {
|
|
17
|
+
let name_1: string;
|
|
18
|
+
export { name_1 as name };
|
|
19
|
+
let value_1: string;
|
|
20
|
+
export { value_1 as value };
|
|
21
|
+
let imgSrc_1: any;
|
|
22
|
+
export { imgSrc_1 as imgSrc };
|
|
23
|
+
let imgBgColor_1: string;
|
|
24
|
+
export { imgBgColor_1 as imgBgColor };
|
|
25
|
+
let loaderColor_1: string;
|
|
26
|
+
export { loaderColor_1 as loaderColor };
|
|
27
|
+
let colorBase_1: string;
|
|
28
|
+
export { colorBase_1 as colorBase };
|
|
29
|
+
let borderStyles_1: string;
|
|
30
|
+
export { borderStyles_1 as borderStyles };
|
|
31
|
+
let hoverBorderStyles_1: string;
|
|
32
|
+
export { hoverBorderStyles_1 as hoverBorderStyles };
|
|
33
|
+
}
|
|
34
|
+
namespace metamask {
|
|
35
|
+
let name_2: string;
|
|
36
|
+
export { name_2 as name };
|
|
37
|
+
let value_2: string;
|
|
38
|
+
export { value_2 as value };
|
|
39
|
+
let imgSrc_2: any;
|
|
40
|
+
export { imgSrc_2 as imgSrc };
|
|
41
|
+
let imgBgColor_2: string;
|
|
42
|
+
export { imgBgColor_2 as imgBgColor };
|
|
43
|
+
let loaderColor_2: string;
|
|
44
|
+
export { loaderColor_2 as loaderColor };
|
|
45
|
+
let colorBase_2: string;
|
|
46
|
+
export { colorBase_2 as colorBase };
|
|
47
|
+
let borderStyles_2: string;
|
|
48
|
+
export { borderStyles_2 as borderStyles };
|
|
49
|
+
let hoverBorderStyles_2: string;
|
|
50
|
+
export { hoverBorderStyles_2 as hoverBorderStyles };
|
|
51
|
+
}
|
|
52
|
+
namespace microsoft {
|
|
53
|
+
let name_3: string;
|
|
54
|
+
export { name_3 as name };
|
|
55
|
+
let value_3: string;
|
|
56
|
+
export { value_3 as value };
|
|
57
|
+
let imgSrc_3: any;
|
|
58
|
+
export { imgSrc_3 as imgSrc };
|
|
59
|
+
let imgBgColor_3: string;
|
|
60
|
+
export { imgBgColor_3 as imgBgColor };
|
|
61
|
+
let loaderColor_3: string;
|
|
62
|
+
export { loaderColor_3 as loaderColor };
|
|
63
|
+
let colorBase_3: string;
|
|
64
|
+
export { colorBase_3 as colorBase };
|
|
65
|
+
let borderStyles_3: string;
|
|
66
|
+
export { borderStyles_3 as borderStyles };
|
|
67
|
+
let hoverBorderStyles_3: string;
|
|
68
|
+
export { hoverBorderStyles_3 as hoverBorderStyles };
|
|
69
|
+
}
|
|
70
|
+
namespace phantom {
|
|
71
|
+
let name_4: string;
|
|
72
|
+
export { name_4 as name };
|
|
73
|
+
let value_4: string;
|
|
74
|
+
export { value_4 as value };
|
|
75
|
+
let imgSrc_4: any;
|
|
76
|
+
export { imgSrc_4 as imgSrc };
|
|
77
|
+
let imgBgColor_4: string;
|
|
78
|
+
export { imgBgColor_4 as imgBgColor };
|
|
79
|
+
let loaderColor_4: string;
|
|
80
|
+
export { loaderColor_4 as loaderColor };
|
|
81
|
+
let colorBase_4: string;
|
|
82
|
+
export { colorBase_4 as colorBase };
|
|
83
|
+
let borderStyles_4: string;
|
|
84
|
+
export { borderStyles_4 as borderStyles };
|
|
85
|
+
let hoverBorderStyles_4: string;
|
|
86
|
+
export { hoverBorderStyles_4 as hoverBorderStyles };
|
|
87
|
+
}
|
|
88
|
+
namespace trustWallet {
|
|
89
|
+
let name_5: string;
|
|
90
|
+
export { name_5 as name };
|
|
91
|
+
let value_5: string;
|
|
92
|
+
export { value_5 as value };
|
|
93
|
+
let imgSrc_5: string;
|
|
94
|
+
export { imgSrc_5 as imgSrc };
|
|
95
|
+
let imgBgColor_5: string;
|
|
96
|
+
export { imgBgColor_5 as imgBgColor };
|
|
97
|
+
let loaderColor_5: string;
|
|
98
|
+
export { loaderColor_5 as loaderColor };
|
|
99
|
+
let colorBase_5: string;
|
|
100
|
+
export { colorBase_5 as colorBase };
|
|
101
|
+
let borderStyles_5: string;
|
|
102
|
+
export { borderStyles_5 as borderStyles };
|
|
103
|
+
let hoverBorderStyles_5: string;
|
|
104
|
+
export { hoverBorderStyles_5 as hoverBorderStyles };
|
|
105
|
+
}
|
|
106
|
+
namespace binance {
|
|
107
|
+
let name_6: string;
|
|
108
|
+
export { name_6 as name };
|
|
109
|
+
let value_6: string;
|
|
110
|
+
export { value_6 as value };
|
|
111
|
+
let imgSrc_6: string;
|
|
112
|
+
export { imgSrc_6 as imgSrc };
|
|
113
|
+
let imgBgColor_6: string;
|
|
114
|
+
export { imgBgColor_6 as imgBgColor };
|
|
115
|
+
let loaderColor_6: string;
|
|
116
|
+
export { loaderColor_6 as loaderColor };
|
|
117
|
+
let colorBase_6: string;
|
|
118
|
+
export { colorBase_6 as colorBase };
|
|
119
|
+
let borderStyles_6: string;
|
|
120
|
+
export { borderStyles_6 as borderStyles };
|
|
121
|
+
let hoverBorderStyles_6: string;
|
|
122
|
+
export { hoverBorderStyles_6 as hoverBorderStyles };
|
|
123
|
+
}
|
|
124
|
+
namespace uniswap {
|
|
125
|
+
let name_7: string;
|
|
126
|
+
export { name_7 as name };
|
|
127
|
+
let value_7: string;
|
|
128
|
+
export { value_7 as value };
|
|
129
|
+
let imgSrc_7: string;
|
|
130
|
+
export { imgSrc_7 as imgSrc };
|
|
131
|
+
let imgBgColor_7: string;
|
|
132
|
+
export { imgBgColor_7 as imgBgColor };
|
|
133
|
+
let loaderColor_7: string;
|
|
134
|
+
export { loaderColor_7 as loaderColor };
|
|
135
|
+
let colorBase_7: string;
|
|
136
|
+
export { colorBase_7 as colorBase };
|
|
137
|
+
let borderStyles_7: string;
|
|
138
|
+
export { borderStyles_7 as borderStyles };
|
|
139
|
+
let hoverBorderStyles_7: string;
|
|
140
|
+
export { hoverBorderStyles_7 as hoverBorderStyles };
|
|
141
|
+
}
|
|
142
|
+
namespace bitget {
|
|
143
|
+
let name_8: string;
|
|
144
|
+
export { name_8 as name };
|
|
145
|
+
let value_8: string;
|
|
146
|
+
export { value_8 as value };
|
|
147
|
+
let imgSrc_8: string;
|
|
148
|
+
export { imgSrc_8 as imgSrc };
|
|
149
|
+
let imgBgColor_8: string;
|
|
150
|
+
export { imgBgColor_8 as imgBgColor };
|
|
151
|
+
let loaderColor_8: string;
|
|
152
|
+
export { loaderColor_8 as loaderColor };
|
|
153
|
+
let colorBase_8: string;
|
|
154
|
+
export { colorBase_8 as colorBase };
|
|
155
|
+
let borderStyles_8: string;
|
|
156
|
+
export { borderStyles_8 as borderStyles };
|
|
157
|
+
let hoverBorderStyles_8: string;
|
|
158
|
+
export { hoverBorderStyles_8 as hoverBorderStyles };
|
|
159
|
+
}
|
|
160
|
+
namespace legder {
|
|
161
|
+
let name_9: string;
|
|
162
|
+
export { name_9 as name };
|
|
163
|
+
let value_9: string;
|
|
164
|
+
export { value_9 as value };
|
|
165
|
+
let imgSrc_9: string;
|
|
166
|
+
export { imgSrc_9 as imgSrc };
|
|
167
|
+
let imgBgColor_9: string;
|
|
168
|
+
export { imgBgColor_9 as imgBgColor };
|
|
169
|
+
let loaderColor_9: string;
|
|
170
|
+
export { loaderColor_9 as loaderColor };
|
|
171
|
+
let colorBase_9: string;
|
|
172
|
+
export { colorBase_9 as colorBase };
|
|
173
|
+
let borderStyles_9: string;
|
|
174
|
+
export { borderStyles_9 as borderStyles };
|
|
175
|
+
let hoverBorderStyles_9: string;
|
|
176
|
+
export { hoverBorderStyles_9 as hoverBorderStyles };
|
|
177
|
+
}
|
|
178
|
+
namespace robinhood {
|
|
179
|
+
let name_10: string;
|
|
180
|
+
export { name_10 as name };
|
|
181
|
+
let value_10: string;
|
|
182
|
+
export { value_10 as value };
|
|
183
|
+
let imgSrc_10: string;
|
|
184
|
+
export { imgSrc_10 as imgSrc };
|
|
185
|
+
let imgBgColor_10: string;
|
|
186
|
+
export { imgBgColor_10 as imgBgColor };
|
|
187
|
+
let loaderColor_10: string;
|
|
188
|
+
export { loaderColor_10 as loaderColor };
|
|
189
|
+
let colorBase_10: string;
|
|
190
|
+
export { colorBase_10 as colorBase };
|
|
191
|
+
let borderStyles_10: string;
|
|
192
|
+
export { borderStyles_10 as borderStyles };
|
|
193
|
+
let hoverBorderStyles_10: string;
|
|
194
|
+
export { hoverBorderStyles_10 as hoverBorderStyles };
|
|
195
|
+
}
|
|
196
|
+
namespace blockchaincom {
|
|
197
|
+
let name_11: string;
|
|
198
|
+
export { name_11 as name };
|
|
199
|
+
let value_11: string;
|
|
200
|
+
export { value_11 as value };
|
|
201
|
+
let imgSrc_11: string;
|
|
202
|
+
export { imgSrc_11 as imgSrc };
|
|
203
|
+
let imgBgColor_11: string;
|
|
204
|
+
export { imgBgColor_11 as imgBgColor };
|
|
205
|
+
let loaderColor_11: string;
|
|
206
|
+
export { loaderColor_11 as loaderColor };
|
|
207
|
+
let colorBase_11: string;
|
|
208
|
+
export { colorBase_11 as colorBase };
|
|
209
|
+
let borderStyles_11: string;
|
|
210
|
+
export { borderStyles_11 as borderStyles };
|
|
211
|
+
let hoverBorderStyles_11: string;
|
|
212
|
+
export { hoverBorderStyles_11 as hoverBorderStyles };
|
|
213
|
+
}
|
|
214
|
+
namespace magiceden {
|
|
215
|
+
let name_12: string;
|
|
216
|
+
export { name_12 as name };
|
|
217
|
+
let value_12: string;
|
|
218
|
+
export { value_12 as value };
|
|
219
|
+
let imgSrc_12: string;
|
|
220
|
+
export { imgSrc_12 as imgSrc };
|
|
221
|
+
let imgBgColor_12: string;
|
|
222
|
+
export { imgBgColor_12 as imgBgColor };
|
|
223
|
+
let loaderColor_12: string;
|
|
224
|
+
export { loaderColor_12 as loaderColor };
|
|
225
|
+
let colorBase_12: string;
|
|
226
|
+
export { colorBase_12 as colorBase };
|
|
227
|
+
let borderStyles_12: string;
|
|
228
|
+
export { borderStyles_12 as borderStyles };
|
|
229
|
+
let hoverBorderStyles_12: string;
|
|
230
|
+
export { hoverBorderStyles_12 as hoverBorderStyles };
|
|
231
|
+
}
|
|
232
|
+
namespace kraken {
|
|
233
|
+
let name_13: string;
|
|
234
|
+
export { name_13 as name };
|
|
235
|
+
let value_13: string;
|
|
236
|
+
export { value_13 as value };
|
|
237
|
+
let imgSrc_13: string;
|
|
238
|
+
export { imgSrc_13 as imgSrc };
|
|
239
|
+
let imgBgColor_13: string;
|
|
240
|
+
export { imgBgColor_13 as imgBgColor };
|
|
241
|
+
let loaderColor_13: string;
|
|
242
|
+
export { loaderColor_13 as loaderColor };
|
|
243
|
+
let colorBase_13: string;
|
|
244
|
+
export { colorBase_13 as colorBase };
|
|
245
|
+
let borderStyles_13: string;
|
|
246
|
+
export { borderStyles_13 as borderStyles };
|
|
247
|
+
let hoverBorderStyles_13: string;
|
|
248
|
+
export { hoverBorderStyles_13 as hoverBorderStyles };
|
|
249
|
+
}
|
|
250
|
+
namespace coinbase {
|
|
251
|
+
let name_14: string;
|
|
252
|
+
export { name_14 as name };
|
|
253
|
+
let value_14: string;
|
|
254
|
+
export { value_14 as value };
|
|
255
|
+
let imgSrc_14: string;
|
|
256
|
+
export { imgSrc_14 as imgSrc };
|
|
257
|
+
let imgBgColor_14: string;
|
|
258
|
+
export { imgBgColor_14 as imgBgColor };
|
|
259
|
+
let loaderColor_14: string;
|
|
260
|
+
export { loaderColor_14 as loaderColor };
|
|
261
|
+
let colorBase_14: string;
|
|
262
|
+
export { colorBase_14 as colorBase };
|
|
263
|
+
let borderStyles_14: string;
|
|
264
|
+
export { borderStyles_14 as borderStyles };
|
|
265
|
+
let hoverBorderStyles_14: string;
|
|
266
|
+
export { hoverBorderStyles_14 as hoverBorderStyles };
|
|
267
|
+
}
|
|
268
|
+
namespace enjin {
|
|
269
|
+
let name_15: string;
|
|
270
|
+
export { name_15 as name };
|
|
271
|
+
let value_15: string;
|
|
272
|
+
export { value_15 as value };
|
|
273
|
+
let imgSrc_15: string;
|
|
274
|
+
export { imgSrc_15 as imgSrc };
|
|
275
|
+
let imgBgColor_15: string;
|
|
276
|
+
export { imgBgColor_15 as imgBgColor };
|
|
277
|
+
let loaderColor_15: string;
|
|
278
|
+
export { loaderColor_15 as loaderColor };
|
|
279
|
+
let colorBase_15: string;
|
|
280
|
+
export { colorBase_15 as colorBase };
|
|
281
|
+
let borderStyles_15: string;
|
|
282
|
+
export { borderStyles_15 as borderStyles };
|
|
283
|
+
let hoverBorderStyles_15: string;
|
|
284
|
+
export { hoverBorderStyles_15 as hoverBorderStyles };
|
|
285
|
+
}
|
|
286
|
+
namespace coincircle {
|
|
287
|
+
let name_16: string;
|
|
288
|
+
export { name_16 as name };
|
|
289
|
+
let value_16: string;
|
|
290
|
+
export { value_16 as value };
|
|
291
|
+
let imgSrc_16: string;
|
|
292
|
+
export { imgSrc_16 as imgSrc };
|
|
293
|
+
let imgBgColor_16: string;
|
|
294
|
+
export { imgBgColor_16 as imgBgColor };
|
|
295
|
+
let loaderColor_16: string;
|
|
296
|
+
export { loaderColor_16 as loaderColor };
|
|
297
|
+
let colorBase_16: string;
|
|
298
|
+
export { colorBase_16 as colorBase };
|
|
299
|
+
let borderStyles_16: string;
|
|
300
|
+
export { borderStyles_16 as borderStyles };
|
|
301
|
+
let hoverBorderStyles_16: string;
|
|
302
|
+
export { hoverBorderStyles_16 as hoverBorderStyles };
|
|
303
|
+
}
|
|
304
|
+
namespace crossmint {
|
|
305
|
+
let name_17: string;
|
|
306
|
+
export { name_17 as name };
|
|
307
|
+
let value_17: string;
|
|
308
|
+
export { value_17 as value };
|
|
309
|
+
let imgSrc_17: string;
|
|
310
|
+
export { imgSrc_17 as imgSrc };
|
|
311
|
+
let imgBgColor_17: string;
|
|
312
|
+
export { imgBgColor_17 as imgBgColor };
|
|
313
|
+
let loaderColor_17: string;
|
|
314
|
+
export { loaderColor_17 as loaderColor };
|
|
315
|
+
let colorBase_17: string;
|
|
316
|
+
export { colorBase_17 as colorBase };
|
|
317
|
+
let borderStyles_17: string;
|
|
318
|
+
export { borderStyles_17 as borderStyles };
|
|
319
|
+
let hoverBorderStyles_17: string;
|
|
320
|
+
export { hoverBorderStyles_17 as hoverBorderStyles };
|
|
321
|
+
}
|
|
322
|
+
namespace ronin {
|
|
323
|
+
let name_18: string;
|
|
324
|
+
export { name_18 as name };
|
|
325
|
+
let value_18: string;
|
|
326
|
+
export { value_18 as value };
|
|
327
|
+
let imgSrc_18: string;
|
|
328
|
+
export { imgSrc_18 as imgSrc };
|
|
329
|
+
let imgBgColor_18: string;
|
|
330
|
+
export { imgBgColor_18 as imgBgColor };
|
|
331
|
+
let loaderColor_18: string;
|
|
332
|
+
export { loaderColor_18 as loaderColor };
|
|
333
|
+
let colorBase_18: string;
|
|
334
|
+
export { colorBase_18 as colorBase };
|
|
335
|
+
let borderStyles_18: string;
|
|
336
|
+
export { borderStyles_18 as borderStyles };
|
|
337
|
+
let hoverBorderStyles_18: string;
|
|
338
|
+
export { hoverBorderStyles_18 as hoverBorderStyles };
|
|
339
|
+
}
|
|
340
|
+
namespace thirdweb {
|
|
341
|
+
let name_19: string;
|
|
342
|
+
export { name_19 as name };
|
|
343
|
+
let value_19: string;
|
|
344
|
+
export { value_19 as value };
|
|
345
|
+
let imgSrc_19: string;
|
|
346
|
+
export { imgSrc_19 as imgSrc };
|
|
347
|
+
let imgBgColor_19: string;
|
|
348
|
+
export { imgBgColor_19 as imgBgColor };
|
|
349
|
+
let loaderColor_19: string;
|
|
350
|
+
export { loaderColor_19 as loaderColor };
|
|
351
|
+
let colorBase_19: string;
|
|
352
|
+
export { colorBase_19 as colorBase };
|
|
353
|
+
let borderStyles_19: string;
|
|
354
|
+
export { borderStyles_19 as borderStyles };
|
|
355
|
+
let hoverBorderStyles_19: string;
|
|
356
|
+
export { hoverBorderStyles_19 as hoverBorderStyles };
|
|
357
|
+
}
|
|
358
|
+
namespace wemix {
|
|
359
|
+
let name_20: string;
|
|
360
|
+
export { name_20 as name };
|
|
361
|
+
let value_20: string;
|
|
362
|
+
export { value_20 as value };
|
|
363
|
+
let imgSrc_20: string;
|
|
364
|
+
export { imgSrc_20 as imgSrc };
|
|
365
|
+
let imgBgColor_20: string;
|
|
366
|
+
export { imgBgColor_20 as imgBgColor };
|
|
367
|
+
let loaderColor_20: string;
|
|
368
|
+
export { loaderColor_20 as loaderColor };
|
|
369
|
+
let colorBase_20: string;
|
|
370
|
+
export { colorBase_20 as colorBase };
|
|
371
|
+
let borderStyles_20: string;
|
|
372
|
+
export { borderStyles_20 as borderStyles };
|
|
373
|
+
let hoverBorderStyles_20: string;
|
|
374
|
+
export { hoverBorderStyles_20 as hoverBorderStyles };
|
|
375
|
+
}
|
|
376
|
+
namespace bitbox {
|
|
377
|
+
let name_21: string;
|
|
378
|
+
export { name_21 as name };
|
|
379
|
+
let value_21: string;
|
|
380
|
+
export { value_21 as value };
|
|
381
|
+
let imgSrc_21: string;
|
|
382
|
+
export { imgSrc_21 as imgSrc };
|
|
383
|
+
let imgBgColor_21: string;
|
|
384
|
+
export { imgBgColor_21 as imgBgColor };
|
|
385
|
+
let loaderColor_21: string;
|
|
386
|
+
export { loaderColor_21 as loaderColor };
|
|
387
|
+
let colorBase_21: string;
|
|
388
|
+
export { colorBase_21 as colorBase };
|
|
389
|
+
let borderStyles_21: string;
|
|
390
|
+
export { borderStyles_21 as borderStyles };
|
|
391
|
+
let hoverBorderStyles_21: string;
|
|
392
|
+
export { hoverBorderStyles_21 as hoverBorderStyles };
|
|
393
|
+
}
|
|
394
|
+
namespace moonpay {
|
|
395
|
+
let name_22: string;
|
|
396
|
+
export { name_22 as name };
|
|
397
|
+
let value_22: string;
|
|
398
|
+
export { value_22 as value };
|
|
399
|
+
let imgSrc_22: string;
|
|
400
|
+
export { imgSrc_22 as imgSrc };
|
|
401
|
+
let imgBgColor_22: string;
|
|
402
|
+
export { imgBgColor_22 as imgBgColor };
|
|
403
|
+
let loaderColor_22: string;
|
|
404
|
+
export { loaderColor_22 as loaderColor };
|
|
405
|
+
let colorBase_22: string;
|
|
406
|
+
export { colorBase_22 as colorBase };
|
|
407
|
+
let borderStyles_22: string;
|
|
408
|
+
export { borderStyles_22 as borderStyles };
|
|
409
|
+
let hoverBorderStyles_22: string;
|
|
410
|
+
export { hoverBorderStyles_22 as hoverBorderStyles };
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
export namespace editableTxts {
|
|
414
|
+
namespace edit {
|
|
415
|
+
let es: string;
|
|
416
|
+
let en: string;
|
|
417
|
+
}
|
|
418
|
+
namespace searchEngine {
|
|
419
|
+
let es_1: string;
|
|
420
|
+
export { es_1 as es };
|
|
421
|
+
let en_1: string;
|
|
422
|
+
export { en_1 as en };
|
|
423
|
+
}
|
|
424
|
+
namespace webTypes {
|
|
425
|
+
let es_2: string;
|
|
426
|
+
export { es_2 as es };
|
|
427
|
+
let en_2: string;
|
|
428
|
+
export { en_2 as en };
|
|
429
|
+
}
|
|
430
|
+
namespace columns {
|
|
431
|
+
let es_3: string;
|
|
432
|
+
export { es_3 as es };
|
|
433
|
+
let en_3: string;
|
|
434
|
+
export { en_3 as en };
|
|
435
|
+
}
|
|
436
|
+
namespace order {
|
|
437
|
+
let es_4: string;
|
|
438
|
+
export { es_4 as es };
|
|
439
|
+
let en_4: string;
|
|
440
|
+
export { en_4 as en };
|
|
441
|
+
}
|
|
442
|
+
namespace activate {
|
|
443
|
+
let es_5: string;
|
|
444
|
+
export { es_5 as es };
|
|
445
|
+
let en_5: string;
|
|
446
|
+
export { en_5 as en };
|
|
447
|
+
}
|
|
448
|
+
namespace providerName {
|
|
449
|
+
let es_6: string;
|
|
450
|
+
export { es_6 as es };
|
|
451
|
+
let en_6: string;
|
|
452
|
+
export { en_6 as en };
|
|
453
|
+
}
|
|
454
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function useBlockAuthWs(apiKey?: string, apiSecret?: string, wsUrl?: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function useBlockAuthWsData(onSuccess?: (address?: string) => Promise<void>, onError?: () => Promise<void>, onLogout?: () => Promise<void>): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function useRaisedShadow(value?: number): import("framer-motion").MotionValue<string>;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { g as b } from "./main-BYFXzpCj.js";
|
|
2
|
+
import { h, T, U, z, af, B, D, au, az, aA, F, m, H, G, I, ax, ay, J, K, L, N, P, Q, X, aK, aL, n, Z, aG, _, o, aD, $, a0, a1, a2, ap, aF, aH, aq, aC, a3, ar, aI, aB, a6, as, q, t, u, a8, a7, a9, aa, ao, ab, aE, av, aw, at, ac, ad, aJ, aM, v, ae, ag, ai, w, ah, ak, aj, a4, a5, al, y, am, an, c, j, k, l } from "./main-BYFXzpCj.js";
|
|
3
|
+
const swapInputMaskBottomSvg = b`<svg class="input_mask" width="328" height="100" viewBox="0 0 328 100" fill="none">
|
|
4
|
+
<mask id="path-1-inside-1_18299_4189">
|
|
5
|
+
<path
|
|
6
|
+
class="input_mask__border"
|
|
7
|
+
fill-rule="evenodd"
|
|
8
|
+
clip-rule="evenodd"
|
|
9
|
+
d="M138.008 0H40C21.1438 0 11.7157 0 5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H189.992C189.958 4.89122 189.786 7.76279 188.914 10.1564C187.095 15.1562 183.156 19.0947 178.156 20.9145C175.174 22 171.449 22 164 22C156.551 22 152.826 22 149.844 20.9145C144.844 19.0947 140.905 15.1562 139.086 10.1564C138.214 7.76279 138.042 4.89122 138.008 0Z"
|
|
10
|
+
/>
|
|
11
|
+
</mask>
|
|
12
|
+
<path
|
|
13
|
+
class="input_mask__background"
|
|
14
|
+
fill-rule="evenodd"
|
|
15
|
+
clip-rule="evenodd"
|
|
16
|
+
d="M138.008 0H40C21.1438 0 11.7157 0 5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H189.992C189.958 4.89122 189.786 7.76279 188.914 10.1564C187.095 15.1562 183.156 19.0947 178.156 20.9145C175.174 22 171.449 22 164 22C156.551 22 152.826 22 149.844 20.9145C144.844 19.0947 140.905 15.1562 139.086 10.1564C138.214 7.76279 138.042 4.89122 138.008 0Z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
class="input_mask__border"
|
|
20
|
+
d="M138.008 0L139.008 -0.00694413L139.001 -1H138.008V0ZM322.142 94.1421L322.849 94.8492H322.849L322.142 94.1421ZM322.142 5.85786L322.849 5.15076L322.849 5.15076L322.142 5.85786ZM189.992 0V-1H188.999L188.992 -0.00694413L189.992 0ZM188.914 10.1564L189.854 10.4984V10.4984L188.914 10.1564ZM178.156 20.9145L177.814 19.9748V19.9748L178.156 20.9145ZM149.844 20.9145L150.186 19.9748V19.9748L149.844 20.9145ZM139.086 10.1564L138.146 10.4984V10.4984L139.086 10.1564ZM40 1H138.008V-1H40V1ZM6.56497 6.56497C9.27713 3.85281 12.8524 2.44064 18.1878 1.72332C23.552 1.00212 30.5436 1 40 1V-1C30.6002 -1 23.4497 -1.00212 17.9213 -0.25885C12.3641 0.488292 8.29646 2.00506 5.15076 5.15076L6.56497 6.56497ZM1 40C1 30.5436 1.00212 23.552 1.72332 18.1878C2.44064 12.8524 3.85281 9.27713 6.56497 6.56497L5.15076 5.15076C2.00506 8.29646 0.488292 12.3641 -0.25885 17.9213C-1.00212 23.4497 -1 30.6002 -1 40H1ZM1 60V40H-1V60H1ZM6.56497 93.435C3.85281 90.7229 2.44064 87.1476 1.72332 81.8122C1.00212 76.448 1 69.4564 1 60H-1C-1 69.3998 -1.00212 76.5503 -0.25885 82.0787C0.488292 87.6358 2.00506 91.7035 5.15076 94.8492L6.56497 93.435ZM40 99C30.5436 99 23.552 98.9979 18.1878 98.2767C12.8524 97.5594 9.27713 96.1472 6.56497 93.435L5.15076 94.8492C8.29646 97.9949 12.3641 99.5117 17.9213 100.259C23.4497 101.002 30.6002 101 40 101V99ZM288 99H40V101H288V99ZM321.435 93.435C318.723 96.1472 315.148 97.5594 309.812 98.2767C304.448 98.9979 297.456 99 288 99V101C297.4 101 304.55 101.002 310.079 100.259C315.636 99.5117 319.704 97.9949 322.849 94.8492L321.435 93.435ZM327 60C327 69.4564 326.998 76.448 326.277 81.8122C325.559 87.1476 324.147 90.7229 321.435 93.435L322.849 94.8492C325.995 91.7035 327.512 87.6358 328.259 82.0787C329.002 76.5503 329 69.3998 329 60H327ZM327 40V60H329V40H327ZM321.435 6.56497C324.147 9.27713 325.559 12.8524 326.277 18.1878C326.998 23.552 327 30.5436 327 40H329C329 30.6002 329.002 23.4497 328.259 17.9213C327.512 12.3642 325.995 8.29646 322.849 5.15076L321.435 6.56497ZM288 1C297.456 1 304.448 1.00212 309.812 1.72332C315.148 2.44064 318.723 3.85281 321.435 6.56497L322.849 5.15076C319.704 2.00506 315.636 0.488292 310.079 -0.25885C304.55 -1.00212 297.4 -1 288 -1V1ZM189.992 1H288V-1H189.992V1ZM188.992 -0.00694413C188.958 4.90792 188.778 7.60788 187.975 9.81434L189.854 10.4984C190.793 7.9177 190.958 4.87452 190.992 0.00694413L188.992 -0.00694413ZM187.975 9.81434C186.256 14.5364 182.536 18.2561 177.814 19.9748L178.498 21.8542C183.776 19.9333 187.933 15.7759 189.854 10.4984L187.975 9.81434ZM177.814 19.9748C175.039 20.9848 171.536 21 164 21V23C171.362 23 175.308 23.0152 178.498 21.8542L177.814 19.9748ZM164 21C156.464 21 152.961 20.9848 150.186 19.9748L149.502 21.8542C152.692 23.0152 156.638 23 164 23V21ZM150.186 19.9748C145.464 18.2561 141.744 14.5364 140.025 9.81434L138.146 10.4984C140.067 15.7759 144.224 19.9333 149.502 21.8542L150.186 19.9748ZM140.025 9.81434C139.222 7.60788 139.042 4.90792 139.008 -0.00694413L137.008 0.00694413C137.042 4.87452 137.207 7.9177 138.146 10.4984L140.025 9.81434Z"
|
|
21
|
+
mask="url(#path-1-inside-1_18299_4189)"
|
|
22
|
+
/>
|
|
23
|
+
</svg>`;
|
|
24
|
+
const swapInputMaskTopSvg = b`<svg class="input_mask" width="328" height="100" viewBox="0 0 328 100" fill="none">
|
|
25
|
+
<mask id="path-1-inside-1_18299_4168">
|
|
26
|
+
<path
|
|
27
|
+
class="input_mask__border"
|
|
28
|
+
fill-rule="evenodd"
|
|
29
|
+
clip-rule="evenodd"
|
|
30
|
+
d="M5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H138.008C138.042 95.1088 138.214 92.2372 139.086 89.8436C140.905 84.8438 144.844 80.9053 149.844 79.0855C152.826 78 156.551 78 164 78C171.449 78 175.174 78 178.156 79.0855C183.156 80.9053 187.095 84.8438 188.914 89.8436C189.786 92.2372 189.958 95.1088 189.992 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H40C21.1438 0 11.7157 0 5.85786 5.85786Z"
|
|
31
|
+
/>
|
|
32
|
+
</mask>
|
|
33
|
+
<path
|
|
34
|
+
class="input_mask__background"
|
|
35
|
+
fill-rule="evenodd"
|
|
36
|
+
clip-rule="evenodd"
|
|
37
|
+
d="M5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H138.008C138.042 95.1088 138.214 92.2372 139.086 89.8436C140.905 84.8438 144.844 80.9053 149.844 79.0855C152.826 78 156.551 78 164 78C171.449 78 175.174 78 178.156 79.0855C183.156 80.9053 187.095 84.8438 188.914 89.8436C189.786 92.2372 189.958 95.1088 189.992 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H40C21.1438 0 11.7157 0 5.85786 5.85786Z"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
class="input_mask__border"
|
|
41
|
+
d="M138.008 100V101H139.001L139.008 100.007L138.008 100ZM139.086 89.8436L138.146 89.5016L139.086 89.8436ZM149.844 79.0855L150.186 80.0252L149.844 79.0855ZM178.156 79.0855L177.814 80.0252L178.156 79.0855ZM188.914 89.8436L189.854 89.5016L188.914 89.8436ZM189.992 100L188.992 100.007L188.999 101H189.992V100ZM322.142 94.1421L322.849 94.8492H322.849L322.142 94.1421ZM322.142 5.85786L322.849 5.15076L322.849 5.15076L322.142 5.85786ZM1 40C1 30.5436 1.00212 23.552 1.72332 18.1878C2.44064 12.8524 3.85281 9.27713 6.56497 6.56497L5.15076 5.15076C2.00506 8.29646 0.488292 12.3641 -0.25885 17.9213C-1.00212 23.4497 -1 30.6002 -1 40H1ZM1 60V40H-1V60H1ZM6.56497 93.435C3.85281 90.7229 2.44064 87.1476 1.72332 81.8122C1.00212 76.448 1 69.4564 1 60H-1C-1 69.3998 -1.00212 76.5503 -0.25885 82.0787C0.488292 87.6358 2.00506 91.7035 5.15076 94.8492L6.56497 93.435ZM40 99C30.5436 99 23.552 98.9979 18.1878 98.2767C12.8524 97.5594 9.27713 96.1472 6.56497 93.435L5.15076 94.8492C8.29646 97.9949 12.3641 99.5117 17.9213 100.259C23.4497 101.002 30.6002 101 40 101V99ZM138.008 99H40V101H138.008V99ZM139.008 100.007C139.042 95.0921 139.222 92.3921 140.025 90.1857L138.146 89.5016C137.207 92.0823 137.042 95.1255 137.008 99.9931L139.008 100.007ZM140.025 90.1857C141.744 85.4636 145.464 81.7439 150.186 80.0252L149.502 78.1458C144.224 80.0667 140.067 84.2241 138.146 89.5016L140.025 90.1857ZM150.186 80.0252C152.961 79.0152 156.464 79 164 79V77C156.638 77 152.692 76.9848 149.502 78.1458L150.186 80.0252ZM164 79C171.536 79 175.039 79.0152 177.814 80.0252L178.498 78.1458C175.308 76.9848 171.362 77 164 77V79ZM177.814 80.0252C182.536 81.7439 186.256 85.4636 187.975 90.1857L189.854 89.5016C187.933 84.2241 183.776 80.0667 178.498 78.1458L177.814 80.0252ZM187.975 90.1857C188.778 92.3921 188.958 95.0921 188.992 100.007L190.992 99.9931C190.958 95.1255 190.793 92.0823 189.854 89.5016L187.975 90.1857ZM288 99H189.992V101H288V99ZM321.435 93.435C318.723 96.1472 315.148 97.5594 309.812 98.2767C304.448 98.9979 297.456 99 288 99V101C297.4 101 304.55 101.002 310.079 100.259C315.636 99.5117 319.704 97.9949 322.849 94.8492L321.435 93.435ZM327 60C327 69.4564 326.998 76.448 326.277 81.8122C325.559 87.1476 324.147 90.7229 321.435 93.435L322.849 94.8492C325.995 91.7035 327.512 87.6358 328.259 82.0787C329.002 76.5503 329 69.3998 329 60H327ZM327 40V60H329V40H327ZM321.435 6.56497C324.147 9.27713 325.559 12.8524 326.277 18.1878C326.998 23.552 327 30.5436 327 40H329C329 30.6002 329.002 23.4497 328.259 17.9213C327.512 12.3642 325.995 8.29646 322.849 5.15076L321.435 6.56497ZM288 1C297.456 1 304.448 1.00212 309.812 1.72332C315.148 2.44064 318.723 3.85281 321.435 6.56497L322.849 5.15076C319.704 2.00506 315.636 0.488292 310.079 -0.25885C304.55 -1.00212 297.4 -1 288 -1V1ZM40 1H288V-1H40V1ZM6.56497 6.56497C9.27713 3.85281 12.8524 2.44064 18.1878 1.72332C23.552 1.00212 30.5436 1 40 1V-1C30.6002 -1 23.4497 -1.00212 17.9213 -0.25885C12.3641 0.488292 8.29646 2.00506 5.15076 5.15076L6.56497 6.56497Z"
|
|
42
|
+
mask="url(#path-1-inside-1_18299_4168)"
|
|
43
|
+
/>
|
|
44
|
+
</svg>`;
|
|
45
|
+
export {
|
|
46
|
+
h as MathUtil,
|
|
47
|
+
T as TransactionUtil,
|
|
48
|
+
U as UiHelperUtil,
|
|
49
|
+
z as WuiAccountButton,
|
|
50
|
+
af as WuiAlertBar,
|
|
51
|
+
B as WuiAllWalletsImage,
|
|
52
|
+
D as WuiAvatar,
|
|
53
|
+
au as WuiBalance,
|
|
54
|
+
az as WuiBanner,
|
|
55
|
+
aA as WuiBannerImg,
|
|
56
|
+
F as WuiButton,
|
|
57
|
+
m as WuiCard,
|
|
58
|
+
H as WuiCardSelect,
|
|
59
|
+
G as WuiCardSelectLoader,
|
|
60
|
+
I as WuiChip,
|
|
61
|
+
ax as WuiChipButton,
|
|
62
|
+
ay as WuiCompatibleNetwork,
|
|
63
|
+
J as WuiConnectButton,
|
|
64
|
+
K as WuiCtaButton,
|
|
65
|
+
L as WuiDetailsGroup,
|
|
66
|
+
N as WuiDetailsGroupItem,
|
|
67
|
+
P as WuiDropdownMenu,
|
|
68
|
+
Q as WuiEmailInput,
|
|
69
|
+
X as WuiEnsInput,
|
|
70
|
+
aK as WuiFlex,
|
|
71
|
+
aL as WuiGrid,
|
|
72
|
+
n as WuiIcon,
|
|
73
|
+
Z as WuiIconBox,
|
|
74
|
+
aG as WuiIconButton,
|
|
75
|
+
_ as WuiIconLink,
|
|
76
|
+
o as WuiImage,
|
|
77
|
+
aD as WuiInputAmount,
|
|
78
|
+
$ as WuiInputElement,
|
|
79
|
+
a0 as WuiInputNumeric,
|
|
80
|
+
a1 as WuiInputText,
|
|
81
|
+
a2 as WuiLink,
|
|
82
|
+
ap as WuiListAccordion,
|
|
83
|
+
aF as WuiListAccount,
|
|
84
|
+
aH as WuiListButton,
|
|
85
|
+
aq as WuiListContent,
|
|
86
|
+
aC as WuiListDescription,
|
|
87
|
+
a3 as WuiListItem,
|
|
88
|
+
ar as WuiListNetwork,
|
|
89
|
+
aI as WuiListSocial,
|
|
90
|
+
aB as WuiListToken,
|
|
91
|
+
a6 as WuiListWallet,
|
|
92
|
+
as as WuiListWalletTransaction,
|
|
93
|
+
q as WuiLoadingHexagon,
|
|
94
|
+
t as WuiLoadingSpinner,
|
|
95
|
+
u as WuiLoadingThumbnail,
|
|
96
|
+
a8 as WuiLogo,
|
|
97
|
+
a7 as WuiLogoSelect,
|
|
98
|
+
a9 as WuiNetworkButton,
|
|
99
|
+
aa as WuiNetworkImage,
|
|
100
|
+
ao as WuiNoticeCard,
|
|
101
|
+
ab as WuiOtp,
|
|
102
|
+
aE as WuiPreviewItem,
|
|
103
|
+
av as WuiProfileButton,
|
|
104
|
+
aw as WuiProfileButtonV2,
|
|
105
|
+
at as WuiPromo,
|
|
106
|
+
ac as WuiQrCode,
|
|
107
|
+
ad as WuiSearchBar,
|
|
108
|
+
aJ as WuiSelect,
|
|
109
|
+
aM as WuiSeparator,
|
|
110
|
+
v as WuiShimmer,
|
|
111
|
+
ae as WuiSnackbar,
|
|
112
|
+
ag as WuiTabs,
|
|
113
|
+
ai as WuiTag,
|
|
114
|
+
w as WuiText,
|
|
115
|
+
ah as WuiTokenButton,
|
|
116
|
+
ak as WuiTokenListItem,
|
|
117
|
+
aj as WuiTooltip,
|
|
118
|
+
a4 as WuiTransactionListItem,
|
|
119
|
+
a5 as WuiTransactionListItemLoader,
|
|
120
|
+
al as WuiTransactionVisual,
|
|
121
|
+
y as WuiVisual,
|
|
122
|
+
am as WuiVisualThumbnail,
|
|
123
|
+
an as WuiWalletImage,
|
|
124
|
+
c as customElement,
|
|
125
|
+
j as initializeTheming,
|
|
126
|
+
k as setColorTheme,
|
|
127
|
+
l as setThemeVariables,
|
|
128
|
+
swapInputMaskBottomSvg,
|
|
129
|
+
swapInputMaskTopSvg
|
|
130
|
+
};
|
|
131
|
+
//# sourceMappingURL=index-C2iHITkO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-C2iHITkO.js","sources":["../node_modules/@reown/appkit-ui/dist/esm/src/assets/svg/swap-input-mask-bottom.js","../node_modules/@reown/appkit-ui/dist/esm/src/assets/svg/swap-input-mask-top.js"],"sourcesContent":["import { svg } from 'lit';\nexport const swapInputMaskBottomSvg = svg `<svg class=\"input_mask\" width=\"328\" height=\"100\" viewBox=\"0 0 328 100\" fill=\"none\">\n <mask id=\"path-1-inside-1_18299_4189\">\n <path\n class=\"input_mask__border\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M138.008 0H40C21.1438 0 11.7157 0 5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H189.992C189.958 4.89122 189.786 7.76279 188.914 10.1564C187.095 15.1562 183.156 19.0947 178.156 20.9145C175.174 22 171.449 22 164 22C156.551 22 152.826 22 149.844 20.9145C144.844 19.0947 140.905 15.1562 139.086 10.1564C138.214 7.76279 138.042 4.89122 138.008 0Z\"\n />\n </mask>\n <path\n class=\"input_mask__background\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M138.008 0H40C21.1438 0 11.7157 0 5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H189.992C189.958 4.89122 189.786 7.76279 188.914 10.1564C187.095 15.1562 183.156 19.0947 178.156 20.9145C175.174 22 171.449 22 164 22C156.551 22 152.826 22 149.844 20.9145C144.844 19.0947 140.905 15.1562 139.086 10.1564C138.214 7.76279 138.042 4.89122 138.008 0Z\"\n />\n <path\n class=\"input_mask__border\"\n d=\"M138.008 0L139.008 -0.00694413L139.001 -1H138.008V0ZM322.142 94.1421L322.849 94.8492H322.849L322.142 94.1421ZM322.142 5.85786L322.849 5.15076L322.849 5.15076L322.142 5.85786ZM189.992 0V-1H188.999L188.992 -0.00694413L189.992 0ZM188.914 10.1564L189.854 10.4984V10.4984L188.914 10.1564ZM178.156 20.9145L177.814 19.9748V19.9748L178.156 20.9145ZM149.844 20.9145L150.186 19.9748V19.9748L149.844 20.9145ZM139.086 10.1564L138.146 10.4984V10.4984L139.086 10.1564ZM40 1H138.008V-1H40V1ZM6.56497 6.56497C9.27713 3.85281 12.8524 2.44064 18.1878 1.72332C23.552 1.00212 30.5436 1 40 1V-1C30.6002 -1 23.4497 -1.00212 17.9213 -0.25885C12.3641 0.488292 8.29646 2.00506 5.15076 5.15076L6.56497 6.56497ZM1 40C1 30.5436 1.00212 23.552 1.72332 18.1878C2.44064 12.8524 3.85281 9.27713 6.56497 6.56497L5.15076 5.15076C2.00506 8.29646 0.488292 12.3641 -0.25885 17.9213C-1.00212 23.4497 -1 30.6002 -1 40H1ZM1 60V40H-1V60H1ZM6.56497 93.435C3.85281 90.7229 2.44064 87.1476 1.72332 81.8122C1.00212 76.448 1 69.4564 1 60H-1C-1 69.3998 -1.00212 76.5503 -0.25885 82.0787C0.488292 87.6358 2.00506 91.7035 5.15076 94.8492L6.56497 93.435ZM40 99C30.5436 99 23.552 98.9979 18.1878 98.2767C12.8524 97.5594 9.27713 96.1472 6.56497 93.435L5.15076 94.8492C8.29646 97.9949 12.3641 99.5117 17.9213 100.259C23.4497 101.002 30.6002 101 40 101V99ZM288 99H40V101H288V99ZM321.435 93.435C318.723 96.1472 315.148 97.5594 309.812 98.2767C304.448 98.9979 297.456 99 288 99V101C297.4 101 304.55 101.002 310.079 100.259C315.636 99.5117 319.704 97.9949 322.849 94.8492L321.435 93.435ZM327 60C327 69.4564 326.998 76.448 326.277 81.8122C325.559 87.1476 324.147 90.7229 321.435 93.435L322.849 94.8492C325.995 91.7035 327.512 87.6358 328.259 82.0787C329.002 76.5503 329 69.3998 329 60H327ZM327 40V60H329V40H327ZM321.435 6.56497C324.147 9.27713 325.559 12.8524 326.277 18.1878C326.998 23.552 327 30.5436 327 40H329C329 30.6002 329.002 23.4497 328.259 17.9213C327.512 12.3642 325.995 8.29646 322.849 5.15076L321.435 6.56497ZM288 1C297.456 1 304.448 1.00212 309.812 1.72332C315.148 2.44064 318.723 3.85281 321.435 6.56497L322.849 5.15076C319.704 2.00506 315.636 0.488292 310.079 -0.25885C304.55 -1.00212 297.4 -1 288 -1V1ZM189.992 1H288V-1H189.992V1ZM188.992 -0.00694413C188.958 4.90792 188.778 7.60788 187.975 9.81434L189.854 10.4984C190.793 7.9177 190.958 4.87452 190.992 0.00694413L188.992 -0.00694413ZM187.975 9.81434C186.256 14.5364 182.536 18.2561 177.814 19.9748L178.498 21.8542C183.776 19.9333 187.933 15.7759 189.854 10.4984L187.975 9.81434ZM177.814 19.9748C175.039 20.9848 171.536 21 164 21V23C171.362 23 175.308 23.0152 178.498 21.8542L177.814 19.9748ZM164 21C156.464 21 152.961 20.9848 150.186 19.9748L149.502 21.8542C152.692 23.0152 156.638 23 164 23V21ZM150.186 19.9748C145.464 18.2561 141.744 14.5364 140.025 9.81434L138.146 10.4984C140.067 15.7759 144.224 19.9333 149.502 21.8542L150.186 19.9748ZM140.025 9.81434C139.222 7.60788 139.042 4.90792 139.008 -0.00694413L137.008 0.00694413C137.042 4.87452 137.207 7.9177 138.146 10.4984L140.025 9.81434Z\"\n mask=\"url(#path-1-inside-1_18299_4189)\"\n />\n</svg>`;\n//# sourceMappingURL=swap-input-mask-bottom.js.map","import { svg } from 'lit';\nexport const swapInputMaskTopSvg = svg `<svg class=\"input_mask\" width=\"328\" height=\"100\" viewBox=\"0 0 328 100\" fill=\"none\">\n <mask id=\"path-1-inside-1_18299_4168\">\n <path\n class=\"input_mask__border\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H138.008C138.042 95.1088 138.214 92.2372 139.086 89.8436C140.905 84.8438 144.844 80.9053 149.844 79.0855C152.826 78 156.551 78 164 78C171.449 78 175.174 78 178.156 79.0855C183.156 80.9053 187.095 84.8438 188.914 89.8436C189.786 92.2372 189.958 95.1088 189.992 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H40C21.1438 0 11.7157 0 5.85786 5.85786Z\"\n />\n </mask>\n <path\n class=\"input_mask__background\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M5.85786 5.85786C0 11.7157 0 21.1438 0 40V60C0 78.8562 0 88.2843 5.85786 94.1421C11.7157 100 21.1438 100 40 100H138.008C138.042 95.1088 138.214 92.2372 139.086 89.8436C140.905 84.8438 144.844 80.9053 149.844 79.0855C152.826 78 156.551 78 164 78C171.449 78 175.174 78 178.156 79.0855C183.156 80.9053 187.095 84.8438 188.914 89.8436C189.786 92.2372 189.958 95.1088 189.992 100H288C306.856 100 316.284 100 322.142 94.1421C328 88.2843 328 78.8562 328 60V40C328 21.1438 328 11.7157 322.142 5.85786C316.284 0 306.856 0 288 0H40C21.1438 0 11.7157 0 5.85786 5.85786Z\"\n />\n <path\n class=\"input_mask__border\"\n d=\"M138.008 100V101H139.001L139.008 100.007L138.008 100ZM139.086 89.8436L138.146 89.5016L139.086 89.8436ZM149.844 79.0855L150.186 80.0252L149.844 79.0855ZM178.156 79.0855L177.814 80.0252L178.156 79.0855ZM188.914 89.8436L189.854 89.5016L188.914 89.8436ZM189.992 100L188.992 100.007L188.999 101H189.992V100ZM322.142 94.1421L322.849 94.8492H322.849L322.142 94.1421ZM322.142 5.85786L322.849 5.15076L322.849 5.15076L322.142 5.85786ZM1 40C1 30.5436 1.00212 23.552 1.72332 18.1878C2.44064 12.8524 3.85281 9.27713 6.56497 6.56497L5.15076 5.15076C2.00506 8.29646 0.488292 12.3641 -0.25885 17.9213C-1.00212 23.4497 -1 30.6002 -1 40H1ZM1 60V40H-1V60H1ZM6.56497 93.435C3.85281 90.7229 2.44064 87.1476 1.72332 81.8122C1.00212 76.448 1 69.4564 1 60H-1C-1 69.3998 -1.00212 76.5503 -0.25885 82.0787C0.488292 87.6358 2.00506 91.7035 5.15076 94.8492L6.56497 93.435ZM40 99C30.5436 99 23.552 98.9979 18.1878 98.2767C12.8524 97.5594 9.27713 96.1472 6.56497 93.435L5.15076 94.8492C8.29646 97.9949 12.3641 99.5117 17.9213 100.259C23.4497 101.002 30.6002 101 40 101V99ZM138.008 99H40V101H138.008V99ZM139.008 100.007C139.042 95.0921 139.222 92.3921 140.025 90.1857L138.146 89.5016C137.207 92.0823 137.042 95.1255 137.008 99.9931L139.008 100.007ZM140.025 90.1857C141.744 85.4636 145.464 81.7439 150.186 80.0252L149.502 78.1458C144.224 80.0667 140.067 84.2241 138.146 89.5016L140.025 90.1857ZM150.186 80.0252C152.961 79.0152 156.464 79 164 79V77C156.638 77 152.692 76.9848 149.502 78.1458L150.186 80.0252ZM164 79C171.536 79 175.039 79.0152 177.814 80.0252L178.498 78.1458C175.308 76.9848 171.362 77 164 77V79ZM177.814 80.0252C182.536 81.7439 186.256 85.4636 187.975 90.1857L189.854 89.5016C187.933 84.2241 183.776 80.0667 178.498 78.1458L177.814 80.0252ZM187.975 90.1857C188.778 92.3921 188.958 95.0921 188.992 100.007L190.992 99.9931C190.958 95.1255 190.793 92.0823 189.854 89.5016L187.975 90.1857ZM288 99H189.992V101H288V99ZM321.435 93.435C318.723 96.1472 315.148 97.5594 309.812 98.2767C304.448 98.9979 297.456 99 288 99V101C297.4 101 304.55 101.002 310.079 100.259C315.636 99.5117 319.704 97.9949 322.849 94.8492L321.435 93.435ZM327 60C327 69.4564 326.998 76.448 326.277 81.8122C325.559 87.1476 324.147 90.7229 321.435 93.435L322.849 94.8492C325.995 91.7035 327.512 87.6358 328.259 82.0787C329.002 76.5503 329 69.3998 329 60H327ZM327 40V60H329V40H327ZM321.435 6.56497C324.147 9.27713 325.559 12.8524 326.277 18.1878C326.998 23.552 327 30.5436 327 40H329C329 30.6002 329.002 23.4497 328.259 17.9213C327.512 12.3642 325.995 8.29646 322.849 5.15076L321.435 6.56497ZM288 1C297.456 1 304.448 1.00212 309.812 1.72332C315.148 2.44064 318.723 3.85281 321.435 6.56497L322.849 5.15076C319.704 2.00506 315.636 0.488292 310.079 -0.25885C304.55 -1.00212 297.4 -1 288 -1V1ZM40 1H288V-1H40V1ZM6.56497 6.56497C9.27713 3.85281 12.8524 2.44064 18.1878 1.72332C23.552 1.00212 30.5436 1 40 1V-1C30.6002 -1 23.4497 -1.00212 17.9213 -0.25885C12.3641 0.488292 8.29646 2.00506 5.15076 5.15076L6.56497 6.56497Z\"\n mask=\"url(#path-1-inside-1_18299_4168)\"\n />\n</svg>`;\n//# sourceMappingURL=swap-input-mask-top.js.map"],"names":["svg"],"mappings":";;AACY,MAAC,yBAAyBA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;ACA1B,MAAC,sBAAsBA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;","x_google_ignoreList":[0,1]}
|