@rango-dev/widget-embedded 0.17.1-next.32 → 0.17.1-next.34

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 (105) hide show
  1. package/dist/components/BlockchainsSection/BlockchainsSection.d.ts.map +1 -1
  2. package/dist/components/BlockchainsSection/BlockchainsSection.styles.d.ts +1 -1
  3. package/dist/components/BlockchainsSection/BlockchainsSection.styles.d.ts.map +1 -1
  4. package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts +315 -0
  5. package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts.map +1 -1
  6. package/dist/components/Layout/Layout.styles.d.ts.map +1 -1
  7. package/dist/components/LoadingSwapDetails/LoadingSwapDetails.d.ts.map +1 -1
  8. package/dist/components/LoadingSwapDetails/LoadingSwapDetails.styles.d.ts.map +1 -1
  9. package/dist/components/Quote/Quote.d.ts.map +1 -1
  10. package/dist/components/Quote/Quote.styles.d.ts +158 -0
  11. package/dist/components/Quote/Quote.styles.d.ts.map +1 -1
  12. package/dist/components/Quote/index.d.ts +0 -1
  13. package/dist/components/Quote/index.d.ts.map +1 -1
  14. package/dist/components/QuoteSkeleton/QuoteSkeleton.d.ts.map +1 -0
  15. package/dist/components/{Quote → QuoteSkeleton}/QuoteSkeleton.styles.d.ts +314 -0
  16. package/dist/components/QuoteSkeleton/QuoteSkeleton.styles.d.ts.map +1 -0
  17. package/dist/components/QuoteSkeleton/QuoteSkeleton.types.d.ts.map +1 -0
  18. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.d.ts +4 -0
  19. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.d.ts.map +1 -0
  20. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.styles.d.ts +1571 -0
  21. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.styles.d.ts.map +1 -0
  22. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.types.d.ts +6 -0
  23. package/dist/components/QuoteSkeleton/QuoteSummarySkeleton.types.d.ts.map +1 -0
  24. package/dist/components/QuoteSkeleton/StepSkeleton.d.ts +4 -0
  25. package/dist/components/QuoteSkeleton/StepSkeleton.d.ts.map +1 -0
  26. package/dist/components/QuoteSkeleton/StepSkeleton.styles.d.ts +786 -0
  27. package/dist/components/QuoteSkeleton/StepSkeleton.styles.d.ts.map +1 -0
  28. package/dist/components/QuoteSkeleton/StepSkeleton.types.d.ts +4 -0
  29. package/dist/components/QuoteSkeleton/StepSkeleton.types.d.ts.map +1 -0
  30. package/dist/components/QuoteSkeleton/index.d.ts +4 -0
  31. package/dist/components/QuoteSkeleton/index.d.ts.map +1 -0
  32. package/dist/components/Slippage/Slippage.d.ts.map +1 -1
  33. package/dist/components/Slippage/Slippage.styles.d.ts +158 -0
  34. package/dist/components/Slippage/Slippage.styles.d.ts.map +1 -1
  35. package/dist/components/SwapDetails/SwapDetails.Placeholder.d.ts.map +1 -1
  36. package/dist/components/SwapDetails/SwapDetails.styles.d.ts.map +1 -1
  37. package/dist/components/TokenList/TokenList.d.ts.map +1 -1
  38. package/dist/components/TokenList/TokenList.styles.d.ts +158 -1
  39. package/dist/components/TokenList/TokenList.styles.d.ts.map +1 -1
  40. package/dist/components/TokenList/TokenList.types.d.ts +1 -0
  41. package/dist/components/TokenList/TokenList.types.d.ts.map +1 -1
  42. package/dist/containers/QuoteInfo/QuoteInfo.d.ts.map +1 -1
  43. package/dist/index.js +1 -1
  44. package/dist/index.js.map +4 -4
  45. package/dist/pages/Home.d.ts.map +1 -1
  46. package/dist/pages/SelectSwapItemsPage.d.ts.map +1 -1
  47. package/dist/pages/SettingsPage.d.ts.map +1 -1
  48. package/dist/pages/WalletsPage.d.ts.map +1 -1
  49. package/dist/store/slices/config.d.ts.map +1 -1
  50. package/dist/store/slices/data.d.ts +2 -2
  51. package/dist/store/slices/data.d.ts.map +1 -1
  52. package/dist/types/config.d.ts +3 -3
  53. package/dist/types/config.d.ts.map +1 -1
  54. package/dist/utils/wallets.d.ts +2 -1
  55. package/dist/utils/wallets.d.ts.map +1 -1
  56. package/package.json +2 -2
  57. package/src/components/BlockchainsSection/BlockchainsSection.styles.ts +1 -1
  58. package/src/components/BlockchainsSection/BlockchainsSection.tsx +19 -10
  59. package/src/components/ConfirmWalletsModal/ConfirmWallets.styles.ts +20 -7
  60. package/src/components/ConfirmWalletsModal/WalletList.tsx +3 -3
  61. package/src/components/Layout/Layout.styles.ts +2 -0
  62. package/src/components/LoadingSwapDetails/LoadingSwapDetails.styles.ts +2 -1
  63. package/src/components/LoadingSwapDetails/LoadingSwapDetails.tsx +25 -40
  64. package/src/components/Quote/Quote.styles.ts +9 -2
  65. package/src/components/Quote/Quote.tsx +3 -5
  66. package/src/components/Quote/index.ts +0 -1
  67. package/src/components/QuoteSkeleton/QuoteSkeleton.styles.ts +42 -0
  68. package/src/components/QuoteSkeleton/QuoteSkeleton.tsx +30 -0
  69. package/src/components/QuoteSkeleton/QuoteSummarySkeleton.styles.ts +57 -0
  70. package/src/components/QuoteSkeleton/QuoteSummarySkeleton.tsx +76 -0
  71. package/src/components/QuoteSkeleton/QuoteSummarySkeleton.types.ts +6 -0
  72. package/src/components/QuoteSkeleton/StepSkeleton.styles.ts +33 -0
  73. package/src/components/QuoteSkeleton/StepSkeleton.tsx +44 -0
  74. package/src/components/QuoteSkeleton/StepSkeleton.types.ts +1 -0
  75. package/src/components/QuoteSkeleton/index.ts +3 -0
  76. package/src/components/Slippage/Slippage.styles.ts +15 -5
  77. package/src/components/Slippage/Slippage.tsx +8 -5
  78. package/src/components/SwapDetails/SwapDetails.Placeholder.tsx +0 -1
  79. package/src/components/SwapDetails/SwapDetails.styles.ts +0 -1
  80. package/src/components/TokenList/TokenList.styles.ts +17 -2
  81. package/src/components/TokenList/TokenList.tsx +7 -3
  82. package/src/components/TokenList/TokenList.types.ts +1 -0
  83. package/src/containers/QuoteInfo/QuoteInfo.tsx +2 -1
  84. package/src/pages/Home.tsx +5 -1
  85. package/src/pages/SelectSwapItemsPage.tsx +8 -4
  86. package/src/pages/SettingsPage.tsx +4 -3
  87. package/src/pages/WalletsPage.tsx +5 -4
  88. package/src/store/slices/config.ts +1 -0
  89. package/src/store/slices/data.ts +10 -6
  90. package/src/types/config.ts +3 -3
  91. package/src/utils/wallets.ts +60 -23
  92. package/dist/components/LoadingSwapDetails/LoadingSwapDetailStep.d.ts +0 -4
  93. package/dist/components/LoadingSwapDetails/LoadingSwapDetailStep.d.ts.map +0 -1
  94. package/dist/components/LoadingSwapDetails/LoadingSwapDetails.types.d.ts +0 -4
  95. package/dist/components/LoadingSwapDetails/LoadingSwapDetails.types.d.ts.map +0 -1
  96. package/dist/components/Quote/QuoteSkeleton.d.ts.map +0 -1
  97. package/dist/components/Quote/QuoteSkeleton.styles.d.ts.map +0 -1
  98. package/dist/components/Quote/QuoteSkeleton.types.d.ts.map +0 -1
  99. package/src/components/LoadingSwapDetails/LoadingSwapDetailStep.tsx +0 -48
  100. package/src/components/LoadingSwapDetails/LoadingSwapDetails.types.ts +0 -3
  101. package/src/components/Quote/QuoteSkeleton.styles.ts +0 -110
  102. package/src/components/Quote/QuoteSkeleton.tsx +0 -108
  103. /package/dist/components/{Quote → QuoteSkeleton}/QuoteSkeleton.d.ts +0 -0
  104. /package/dist/components/{Quote → QuoteSkeleton}/QuoteSkeleton.types.d.ts +0 -0
  105. /package/src/components/{Quote → QuoteSkeleton}/QuoteSkeleton.types.ts +0 -0
@@ -157,6 +157,320 @@ export declare const Container: import("@stitches/react/types/styled-component")
157
157
  zIndices: {};
158
158
  transitions: {};
159
159
  }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
160
+ export declare const Chains: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
161
+ sm: string;
162
+ md: string;
163
+ lg: string;
164
+ }, import("@stitches/react/types/css-util").CSS<{
165
+ sm: string;
166
+ md: string;
167
+ lg: string;
168
+ }, {
169
+ colors: {
170
+ primary: string;
171
+ primary500: string;
172
+ primary600: string;
173
+ secondary: string;
174
+ secondary100: string;
175
+ secondary200: string;
176
+ secondary300: string;
177
+ secondary400: string;
178
+ secondary500: string;
179
+ secondary600: string;
180
+ secondary700: string;
181
+ secondary800: string;
182
+ secondary900: string;
183
+ neutral: string;
184
+ neutral100: string;
185
+ neutral200: string;
186
+ neutral300: string;
187
+ neutral400: string;
188
+ neutral500: string;
189
+ neutral600: string;
190
+ neutral700: string;
191
+ neutral800: string;
192
+ neutral900: string;
193
+ error100: string;
194
+ error300: string;
195
+ error500: string;
196
+ error600: string;
197
+ error700: string;
198
+ warning100: string;
199
+ warning300: string;
200
+ warning500: string;
201
+ warning600: string;
202
+ warning700: string;
203
+ info: string;
204
+ info100: string;
205
+ info300: string;
206
+ info500: string;
207
+ info600: string;
208
+ info700: string;
209
+ success100: string;
210
+ success300: string;
211
+ success500: string;
212
+ success600: string;
213
+ success700: string;
214
+ background: string;
215
+ foreground: string;
216
+ };
217
+ space: {
218
+ 0: string;
219
+ 5: string;
220
+ 10: string;
221
+ 15: string;
222
+ 20: string;
223
+ 25: string;
224
+ 30: string;
225
+ 40: string;
226
+ 46: string;
227
+ 50: string;
228
+ 60: string;
229
+ 70: string;
230
+ 80: string;
231
+ 90: string;
232
+ 100: string;
233
+ 2: string;
234
+ 4: string;
235
+ 6: string;
236
+ 8: string;
237
+ 12: string;
238
+ 16: string;
239
+ 24: string;
240
+ 28: string;
241
+ 32: string;
242
+ };
243
+ radii: {
244
+ xs: string;
245
+ sm: string;
246
+ xm: string;
247
+ md: string;
248
+ xl: string;
249
+ lg: string;
250
+ primary: string;
251
+ secondary: string;
252
+ };
253
+ fontSizes: {
254
+ 10: string;
255
+ 12: string;
256
+ 14: string;
257
+ 16: string;
258
+ 18: string;
259
+ 20: string;
260
+ 22: string;
261
+ 24: string;
262
+ 28: string;
263
+ 32: string;
264
+ 36: string;
265
+ 40: string;
266
+ 48: string;
267
+ };
268
+ fonts: {
269
+ primary: string;
270
+ widget: string;
271
+ };
272
+ fontWeights: {
273
+ regular: number;
274
+ medium: number;
275
+ semiBold: number;
276
+ bold: number;
277
+ };
278
+ lineHeights: {
279
+ 12: string;
280
+ 16: string;
281
+ 20: string;
282
+ 24: string;
283
+ 26: string;
284
+ 28: string;
285
+ 30: string;
286
+ 36: string;
287
+ 40: string;
288
+ 44: string;
289
+ 52: string;
290
+ 64: string;
291
+ };
292
+ letterSpacings: {};
293
+ sizes: {
294
+ 4: string;
295
+ 6: string;
296
+ 8: string;
297
+ 12: string;
298
+ 16: string;
299
+ 18: string;
300
+ 20: string;
301
+ 24: string;
302
+ 28: string;
303
+ 32: string;
304
+ 36: string;
305
+ 40: string;
306
+ 45: string;
307
+ 48: string;
308
+ };
309
+ borderWidths: {};
310
+ borderStyles: {};
311
+ shadows: {
312
+ s: string;
313
+ };
314
+ zIndices: {};
315
+ transitions: {};
316
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
317
+ export declare const Steps: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
318
+ sm: string;
319
+ md: string;
320
+ lg: string;
321
+ }, import("@stitches/react/types/css-util").CSS<{
322
+ sm: string;
323
+ md: string;
324
+ lg: string;
325
+ }, {
326
+ colors: {
327
+ primary: string;
328
+ primary500: string;
329
+ primary600: string;
330
+ secondary: string;
331
+ secondary100: string;
332
+ secondary200: string;
333
+ secondary300: string;
334
+ secondary400: string;
335
+ secondary500: string;
336
+ secondary600: string;
337
+ secondary700: string;
338
+ secondary800: string;
339
+ secondary900: string;
340
+ neutral: string;
341
+ neutral100: string;
342
+ neutral200: string;
343
+ neutral300: string;
344
+ neutral400: string;
345
+ neutral500: string;
346
+ neutral600: string;
347
+ neutral700: string;
348
+ neutral800: string;
349
+ neutral900: string;
350
+ error100: string;
351
+ error300: string;
352
+ error500: string;
353
+ error600: string;
354
+ error700: string;
355
+ warning100: string;
356
+ warning300: string;
357
+ warning500: string;
358
+ warning600: string;
359
+ warning700: string;
360
+ info: string;
361
+ info100: string;
362
+ info300: string;
363
+ info500: string;
364
+ info600: string;
365
+ info700: string;
366
+ success100: string;
367
+ success300: string;
368
+ success500: string;
369
+ success600: string;
370
+ success700: string;
371
+ background: string;
372
+ foreground: string;
373
+ };
374
+ space: {
375
+ 0: string;
376
+ 5: string;
377
+ 10: string;
378
+ 15: string;
379
+ 20: string;
380
+ 25: string;
381
+ 30: string;
382
+ 40: string;
383
+ 46: string;
384
+ 50: string;
385
+ 60: string;
386
+ 70: string;
387
+ 80: string;
388
+ 90: string;
389
+ 100: string;
390
+ 2: string;
391
+ 4: string;
392
+ 6: string;
393
+ 8: string;
394
+ 12: string;
395
+ 16: string;
396
+ 24: string;
397
+ 28: string;
398
+ 32: string;
399
+ };
400
+ radii: {
401
+ xs: string;
402
+ sm: string;
403
+ xm: string;
404
+ md: string;
405
+ xl: string;
406
+ lg: string;
407
+ primary: string;
408
+ secondary: string;
409
+ };
410
+ fontSizes: {
411
+ 10: string;
412
+ 12: string;
413
+ 14: string;
414
+ 16: string;
415
+ 18: string;
416
+ 20: string;
417
+ 22: string;
418
+ 24: string;
419
+ 28: string;
420
+ 32: string;
421
+ 36: string;
422
+ 40: string;
423
+ 48: string;
424
+ };
425
+ fonts: {
426
+ primary: string;
427
+ widget: string;
428
+ };
429
+ fontWeights: {
430
+ regular: number;
431
+ medium: number;
432
+ semiBold: number;
433
+ bold: number;
434
+ };
435
+ lineHeights: {
436
+ 12: string;
437
+ 16: string;
438
+ 20: string;
439
+ 24: string;
440
+ 26: string;
441
+ 28: string;
442
+ 30: string;
443
+ 36: string;
444
+ 40: string;
445
+ 44: string;
446
+ 52: string;
447
+ 64: string;
448
+ };
449
+ letterSpacings: {};
450
+ sizes: {
451
+ 4: string;
452
+ 6: string;
453
+ 8: string;
454
+ 12: string;
455
+ 16: string;
456
+ 18: string;
457
+ 20: string;
458
+ 24: string;
459
+ 28: string;
460
+ 32: string;
461
+ 36: string;
462
+ 40: string;
463
+ 45: string;
464
+ 48: string;
465
+ };
466
+ borderWidths: {};
467
+ borderStyles: {};
468
+ shadows: {
469
+ s: string;
470
+ };
471
+ zIndices: {};
472
+ transitions: {};
473
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
160
474
  export declare const StepSeparator: import("@stitches/react/types/styled-component").StyledComponent<"div", {
161
475
  hideSeparator?: boolean | "true" | undefined;
162
476
  }, {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuoteSkeleton.styles.d.ts","sourceRoot":"","sources":["../../../src/components/QuoteSkeleton/QuoteSkeleton.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAgBpB,CAAC;AAEH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAEjB,CAAC;AAEH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAEhB,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAaxB,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuoteSkeleton.types.d.ts","sourceRoot":"","sources":["../../../src/components/QuoteSkeleton/QuoteSkeleton.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,OAAO,GAAG,WAAW,GAAG,cAAc,CAAC;IAC7C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,GAAG,CAAC,EAAE,OAAO,CAAC;CACf,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { PropTypes } from './QuoteSummarySkeleton.types';
2
+ import React from 'react';
3
+ export declare function QuoteSummarySkeleton(props: PropTypes): React.JSX.Element;
4
+ //# sourceMappingURL=QuoteSummarySkeleton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuoteSummarySkeleton.d.ts","sourceRoot":"","sources":["../../../src/components/QuoteSkeleton/QuoteSummarySkeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAG9D,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,SAAS,qBAyDpD"}