@rango-dev/widget-embedded 0.23.1-next.0 → 0.23.1-next.2

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 (101) hide show
  1. package/dist/components/Layout/Layout.styles.d.ts +162 -0
  2. package/dist/components/Layout/Layout.styles.d.ts.map +1 -1
  3. package/dist/components/NoResult/NoResult.d.ts.map +1 -1
  4. package/dist/components/NoResult/NoResult.styles.d.ts.map +1 -1
  5. package/dist/components/Quote/Quote.d.ts.map +1 -1
  6. package/dist/components/Quote/Quote.types.d.ts +2 -0
  7. package/dist/components/Quote/Quote.types.d.ts.map +1 -1
  8. package/dist/components/Quote/QuoteCostDetails.d.ts.map +1 -1
  9. package/dist/components/Quote/{QuoteTrigger .d.ts → QuoteTrigger.d.ts} +1 -1
  10. package/dist/components/Quote/QuoteTrigger.d.ts.map +1 -0
  11. package/dist/components/QuoteWarningsAndErrors/HighValueLossWarningModal.d.ts.map +1 -1
  12. package/dist/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.types.d.ts +0 -1
  13. package/dist/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.types.d.ts.map +1 -1
  14. package/dist/components/QuoteWarningsAndErrors/UnknownPriceWarningModal.d.ts.map +1 -1
  15. package/dist/components/Quotes/Quotes.d.ts +4 -0
  16. package/dist/components/Quotes/Quotes.d.ts.map +1 -0
  17. package/dist/components/Quotes/Quotes.styles.d.ts +487 -0
  18. package/dist/components/Quotes/Quotes.styles.d.ts.map +1 -0
  19. package/dist/components/Quotes/Quotes.types.d.ts +9 -0
  20. package/dist/components/Quotes/Quotes.types.d.ts.map +1 -0
  21. package/dist/components/Quotes/SelectStrategy.d.ts +5 -0
  22. package/dist/components/Quotes/SelectStrategy.d.ts.map +1 -0
  23. package/dist/components/Quotes/index.d.ts +2 -0
  24. package/dist/components/Quotes/index.d.ts.map +1 -0
  25. package/dist/constants/index.d.ts +1 -0
  26. package/dist/constants/index.d.ts.map +1 -1
  27. package/dist/constants/quote.d.ts +4 -3
  28. package/dist/constants/quote.d.ts.map +1 -1
  29. package/dist/containers/ExpandedQuotes/ExpandedQuotes.d.ts +5 -0
  30. package/dist/containers/ExpandedQuotes/ExpandedQuotes.d.ts.map +1 -0
  31. package/dist/containers/ExpandedQuotes/ExpandedQuotes.styles.d.ts +325 -0
  32. package/dist/containers/ExpandedQuotes/ExpandedQuotes.styles.d.ts.map +1 -0
  33. package/dist/containers/ExpandedQuotes/ExpandedQuotes.types.d.ts +9 -0
  34. package/dist/containers/ExpandedQuotes/ExpandedQuotes.types.d.ts.map +1 -0
  35. package/dist/containers/ExpandedQuotes/index.d.ts +2 -0
  36. package/dist/containers/ExpandedQuotes/index.d.ts.map +1 -0
  37. package/dist/containers/Inputs/Inputs.d.ts +4 -0
  38. package/dist/containers/Inputs/Inputs.d.ts.map +1 -0
  39. package/dist/containers/Inputs/Inputs.styles.d.ts +325 -0
  40. package/dist/containers/Inputs/Inputs.styles.d.ts.map +1 -0
  41. package/dist/containers/Inputs/Inputs.types.d.ts +7 -0
  42. package/dist/containers/Inputs/Inputs.types.d.ts.map +1 -0
  43. package/dist/containers/Inputs/index.d.ts +2 -0
  44. package/dist/containers/Inputs/index.d.ts.map +1 -0
  45. package/dist/containers/QuoteInfo/QuoteInfo.d.ts.map +1 -1
  46. package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts +1 -0
  47. package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts.map +1 -1
  48. package/dist/hooks/useMobileDetect.d.ts +3 -0
  49. package/dist/hooks/useMobileDetect.d.ts.map +1 -0
  50. package/dist/hooks/useSwapInput.d.ts.map +1 -1
  51. package/dist/index.d.ts +2 -2
  52. package/dist/index.d.ts.map +1 -1
  53. package/dist/index.js +2 -2
  54. package/dist/index.js.map +4 -4
  55. package/dist/pages/ConfirmSwapPage.d.ts.map +1 -1
  56. package/dist/pages/Home.d.ts +1 -0
  57. package/dist/pages/Home.d.ts.map +1 -1
  58. package/dist/pages/Routes.d.ts.map +1 -1
  59. package/dist/types/config.d.ts +5 -0
  60. package/dist/types/config.d.ts.map +1 -1
  61. package/dist/utils/common.d.ts +1 -0
  62. package/dist/utils/common.d.ts.map +1 -1
  63. package/package.json +3 -3
  64. package/src/components/Layout/Layout.styles.ts +9 -7
  65. package/src/components/Layout/Layout.tsx +2 -2
  66. package/src/components/NoResult/NoResult.styles.ts +0 -2
  67. package/src/components/NoResult/NoResult.tsx +1 -0
  68. package/src/components/Quote/Quote.styles.ts +1 -1
  69. package/src/components/Quote/Quote.tsx +4 -2
  70. package/src/components/Quote/Quote.types.ts +2 -0
  71. package/src/components/Quote/QuoteCostDetails.tsx +10 -6
  72. package/src/components/Quote/{QuoteTrigger .tsx → QuoteTrigger.tsx} +3 -16
  73. package/src/components/QuoteWarningsAndErrors/HighValueLossWarningModal.tsx +15 -12
  74. package/src/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.types.ts +0 -1
  75. package/src/components/QuoteWarningsAndErrors/UnknownPriceWarningModal.tsx +16 -13
  76. package/src/components/Quotes/Quotes.styles.ts +18 -0
  77. package/src/components/Quotes/Quotes.tsx +134 -0
  78. package/src/components/Quotes/Quotes.types.ts +9 -0
  79. package/src/components/Quotes/SelectStrategy.tsx +33 -0
  80. package/src/components/Quotes/index.ts +1 -0
  81. package/src/constants/index.ts +1 -0
  82. package/src/constants/quote.ts +22 -7
  83. package/src/containers/ExpandedQuotes/ExpandedQuotes.styles.ts +30 -0
  84. package/src/containers/ExpandedQuotes/ExpandedQuotes.tsx +71 -0
  85. package/src/containers/ExpandedQuotes/ExpandedQuotes.types.ts +9 -0
  86. package/src/containers/ExpandedQuotes/index.ts +1 -0
  87. package/src/containers/Inputs/Inputs.styles.ts +12 -0
  88. package/src/containers/Inputs/Inputs.tsx +165 -0
  89. package/src/containers/Inputs/Inputs.types.ts +7 -0
  90. package/src/containers/Inputs/index.ts +1 -0
  91. package/src/containers/QuoteInfo/QuoteInfo.tsx +2 -0
  92. package/src/containers/QuoteInfo/QuoteInfo.types.ts +1 -0
  93. package/src/hooks/useMobileDetect.ts +21 -0
  94. package/src/hooks/useSwapInput.ts +3 -1
  95. package/src/index.ts +2 -0
  96. package/src/pages/ConfirmSwapPage.tsx +0 -1
  97. package/src/pages/Home.tsx +142 -229
  98. package/src/pages/Routes.tsx +6 -69
  99. package/src/types/config.ts +6 -0
  100. package/src/utils/common.ts +3 -0
  101. package/dist/components/Quote/QuoteTrigger .d.ts.map +0 -1
@@ -0,0 +1,487 @@
1
+ export declare const ErrorsContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
2
+ xs: string;
3
+ sm: string;
4
+ md: string;
5
+ lg: string;
6
+ }, import("@stitches/react/types/css-util").CSS<{
7
+ xs: string;
8
+ sm: string;
9
+ md: string;
10
+ lg: string;
11
+ }, {
12
+ colors: {
13
+ primary: string;
14
+ primary500: string;
15
+ primary600: string;
16
+ secondary: string;
17
+ secondary100: string;
18
+ secondary200: string;
19
+ secondary300: string;
20
+ secondary400: string;
21
+ secondary500: string;
22
+ secondary600: string;
23
+ secondary700: string;
24
+ secondary800: string;
25
+ secondary900: string;
26
+ neutral: string;
27
+ neutral100: string;
28
+ neutral200: string;
29
+ neutral300: string;
30
+ neutral400: string;
31
+ neutral500: string;
32
+ neutral600: string;
33
+ neutral700: string;
34
+ neutral800: string;
35
+ neutral900: string;
36
+ error100: string;
37
+ error300: string;
38
+ error500: string;
39
+ error600: string;
40
+ error700: string;
41
+ warning100: string;
42
+ warning300: string;
43
+ warning500: string;
44
+ warning600: string;
45
+ warning700: string;
46
+ info: string;
47
+ info100: string;
48
+ info300: string;
49
+ info500: string;
50
+ info600: string;
51
+ info700: string;
52
+ success100: string;
53
+ success300: string;
54
+ success500: string;
55
+ success600: string;
56
+ success700: string;
57
+ background: string;
58
+ foreground: string;
59
+ };
60
+ space: {
61
+ 0: string;
62
+ 5: string;
63
+ 10: string;
64
+ 15: string;
65
+ 20: string;
66
+ 25: string;
67
+ 30: string;
68
+ 40: string;
69
+ 46: string;
70
+ 50: string;
71
+ 60: string;
72
+ 70: string;
73
+ 80: string;
74
+ 90: string;
75
+ 100: string;
76
+ 2: string;
77
+ 4: string;
78
+ 6: string;
79
+ 8: string;
80
+ 12: string;
81
+ 16: string;
82
+ 24: string;
83
+ 28: string;
84
+ 32: string;
85
+ };
86
+ radii: {
87
+ xs: string;
88
+ sm: string;
89
+ xm: string;
90
+ md: string;
91
+ xl: string;
92
+ lg: string;
93
+ primary: string;
94
+ secondary: string;
95
+ };
96
+ fontSizes: {
97
+ 10: string;
98
+ 12: string;
99
+ 14: string;
100
+ 16: string;
101
+ 18: string;
102
+ 20: string;
103
+ 22: string;
104
+ 24: string;
105
+ 28: string;
106
+ 32: string;
107
+ 36: string;
108
+ 40: string;
109
+ 48: string;
110
+ };
111
+ fonts: {
112
+ primary: string;
113
+ widget: string;
114
+ };
115
+ fontWeights: {
116
+ regular: number;
117
+ medium: number;
118
+ semiBold: number;
119
+ bold: number;
120
+ };
121
+ lineHeights: {
122
+ 12: string;
123
+ 16: string;
124
+ 20: string;
125
+ 24: string;
126
+ 26: string;
127
+ 28: string;
128
+ 30: string;
129
+ 36: string;
130
+ 40: string;
131
+ 44: string;
132
+ 52: string;
133
+ 64: string;
134
+ };
135
+ letterSpacings: {};
136
+ sizes: {
137
+ 4: string;
138
+ 6: string;
139
+ 8: string;
140
+ 10: string;
141
+ 12: string;
142
+ 16: string;
143
+ 18: string;
144
+ 20: string;
145
+ 24: string;
146
+ 26: string;
147
+ 28: string;
148
+ 30: string;
149
+ 32: string;
150
+ 36: string;
151
+ 40: string;
152
+ 45: string;
153
+ 48: string;
154
+ };
155
+ borderWidths: {};
156
+ borderStyles: {};
157
+ shadows: {
158
+ s: string;
159
+ };
160
+ zIndices: {};
161
+ transitions: {};
162
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
163
+ export declare const StrategyContent: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
164
+ xs: string;
165
+ sm: string;
166
+ md: string;
167
+ lg: string;
168
+ }, import("@stitches/react/types/css-util").CSS<{
169
+ xs: string;
170
+ sm: string;
171
+ md: string;
172
+ lg: string;
173
+ }, {
174
+ colors: {
175
+ primary: string;
176
+ primary500: string;
177
+ primary600: string;
178
+ secondary: string;
179
+ secondary100: string;
180
+ secondary200: string;
181
+ secondary300: string;
182
+ secondary400: string;
183
+ secondary500: string;
184
+ secondary600: string;
185
+ secondary700: string;
186
+ secondary800: string;
187
+ secondary900: string;
188
+ neutral: string;
189
+ neutral100: string;
190
+ neutral200: string;
191
+ neutral300: string;
192
+ neutral400: string;
193
+ neutral500: string;
194
+ neutral600: string;
195
+ neutral700: string;
196
+ neutral800: string;
197
+ neutral900: string;
198
+ error100: string;
199
+ error300: string;
200
+ error500: string;
201
+ error600: string;
202
+ error700: string;
203
+ warning100: string;
204
+ warning300: string;
205
+ warning500: string;
206
+ warning600: string;
207
+ warning700: string;
208
+ info: string;
209
+ info100: string;
210
+ info300: string;
211
+ info500: string;
212
+ info600: string;
213
+ info700: string;
214
+ success100: string;
215
+ success300: string;
216
+ success500: string;
217
+ success600: string;
218
+ success700: string;
219
+ background: string;
220
+ foreground: string;
221
+ };
222
+ space: {
223
+ 0: string;
224
+ 5: string;
225
+ 10: string;
226
+ 15: string;
227
+ 20: string;
228
+ 25: string;
229
+ 30: string;
230
+ 40: string;
231
+ 46: string;
232
+ 50: string;
233
+ 60: string;
234
+ 70: string;
235
+ 80: string;
236
+ 90: string;
237
+ 100: string;
238
+ 2: string;
239
+ 4: string;
240
+ 6: string;
241
+ 8: string;
242
+ 12: string;
243
+ 16: string;
244
+ 24: string;
245
+ 28: string;
246
+ 32: string;
247
+ };
248
+ radii: {
249
+ xs: string;
250
+ sm: string;
251
+ xm: string;
252
+ md: string;
253
+ xl: string;
254
+ lg: string;
255
+ primary: string;
256
+ secondary: string;
257
+ };
258
+ fontSizes: {
259
+ 10: string;
260
+ 12: string;
261
+ 14: string;
262
+ 16: string;
263
+ 18: string;
264
+ 20: string;
265
+ 22: string;
266
+ 24: string;
267
+ 28: string;
268
+ 32: string;
269
+ 36: string;
270
+ 40: string;
271
+ 48: string;
272
+ };
273
+ fonts: {
274
+ primary: string;
275
+ widget: string;
276
+ };
277
+ fontWeights: {
278
+ regular: number;
279
+ medium: number;
280
+ semiBold: number;
281
+ bold: number;
282
+ };
283
+ lineHeights: {
284
+ 12: string;
285
+ 16: string;
286
+ 20: string;
287
+ 24: string;
288
+ 26: string;
289
+ 28: string;
290
+ 30: string;
291
+ 36: string;
292
+ 40: string;
293
+ 44: string;
294
+ 52: string;
295
+ 64: string;
296
+ };
297
+ letterSpacings: {};
298
+ sizes: {
299
+ 4: string;
300
+ 6: string;
301
+ 8: string;
302
+ 10: string;
303
+ 12: string;
304
+ 16: string;
305
+ 18: string;
306
+ 20: string;
307
+ 24: string;
308
+ 26: string;
309
+ 28: string;
310
+ 30: string;
311
+ 32: string;
312
+ 36: string;
313
+ 40: string;
314
+ 45: string;
315
+ 48: string;
316
+ };
317
+ borderWidths: {};
318
+ borderStyles: {};
319
+ shadows: {
320
+ s: string;
321
+ };
322
+ zIndices: {};
323
+ transitions: {};
324
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
325
+ export declare const SelectContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
326
+ xs: string;
327
+ sm: string;
328
+ md: string;
329
+ lg: string;
330
+ }, import("@stitches/react/types/css-util").CSS<{
331
+ xs: string;
332
+ sm: string;
333
+ md: string;
334
+ lg: string;
335
+ }, {
336
+ colors: {
337
+ primary: string;
338
+ primary500: string;
339
+ primary600: string;
340
+ secondary: string;
341
+ secondary100: string;
342
+ secondary200: string;
343
+ secondary300: string;
344
+ secondary400: string;
345
+ secondary500: string;
346
+ secondary600: string;
347
+ secondary700: string;
348
+ secondary800: string;
349
+ secondary900: string;
350
+ neutral: string;
351
+ neutral100: string;
352
+ neutral200: string;
353
+ neutral300: string;
354
+ neutral400: string;
355
+ neutral500: string;
356
+ neutral600: string;
357
+ neutral700: string;
358
+ neutral800: string;
359
+ neutral900: string;
360
+ error100: string;
361
+ error300: string;
362
+ error500: string;
363
+ error600: string;
364
+ error700: string;
365
+ warning100: string;
366
+ warning300: string;
367
+ warning500: string;
368
+ warning600: string;
369
+ warning700: string;
370
+ info: string;
371
+ info100: string;
372
+ info300: string;
373
+ info500: string;
374
+ info600: string;
375
+ info700: string;
376
+ success100: string;
377
+ success300: string;
378
+ success500: string;
379
+ success600: string;
380
+ success700: string;
381
+ background: string;
382
+ foreground: string;
383
+ };
384
+ space: {
385
+ 0: string;
386
+ 5: string;
387
+ 10: string;
388
+ 15: string;
389
+ 20: string;
390
+ 25: string;
391
+ 30: string;
392
+ 40: string;
393
+ 46: string;
394
+ 50: string;
395
+ 60: string;
396
+ 70: string;
397
+ 80: string;
398
+ 90: string;
399
+ 100: string;
400
+ 2: string;
401
+ 4: string;
402
+ 6: string;
403
+ 8: string;
404
+ 12: string;
405
+ 16: string;
406
+ 24: string;
407
+ 28: string;
408
+ 32: string;
409
+ };
410
+ radii: {
411
+ xs: string;
412
+ sm: string;
413
+ xm: string;
414
+ md: string;
415
+ xl: string;
416
+ lg: string;
417
+ primary: string;
418
+ secondary: string;
419
+ };
420
+ fontSizes: {
421
+ 10: string;
422
+ 12: string;
423
+ 14: string;
424
+ 16: string;
425
+ 18: string;
426
+ 20: string;
427
+ 22: string;
428
+ 24: string;
429
+ 28: string;
430
+ 32: string;
431
+ 36: string;
432
+ 40: string;
433
+ 48: string;
434
+ };
435
+ fonts: {
436
+ primary: string;
437
+ widget: string;
438
+ };
439
+ fontWeights: {
440
+ regular: number;
441
+ medium: number;
442
+ semiBold: number;
443
+ bold: number;
444
+ };
445
+ lineHeights: {
446
+ 12: string;
447
+ 16: string;
448
+ 20: string;
449
+ 24: string;
450
+ 26: string;
451
+ 28: string;
452
+ 30: string;
453
+ 36: string;
454
+ 40: string;
455
+ 44: string;
456
+ 52: string;
457
+ 64: string;
458
+ };
459
+ letterSpacings: {};
460
+ sizes: {
461
+ 4: string;
462
+ 6: string;
463
+ 8: string;
464
+ 10: string;
465
+ 12: string;
466
+ 16: string;
467
+ 18: string;
468
+ 20: string;
469
+ 24: string;
470
+ 26: string;
471
+ 28: string;
472
+ 30: string;
473
+ 32: string;
474
+ 36: string;
475
+ 40: string;
476
+ 45: string;
477
+ 48: string;
478
+ };
479
+ borderWidths: {};
480
+ borderStyles: {};
481
+ shadows: {
482
+ s: string;
483
+ };
484
+ zIndices: {};
485
+ transitions: {};
486
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
487
+ //# sourceMappingURL=Quotes.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Quotes.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Quotes/Quotes.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAK1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAI1B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAE1B,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { SelectedQuote } from '../../types';
2
+ export type PropTypes = {
3
+ loading: boolean;
4
+ onClickOnQuote: (quote: SelectedQuote) => void;
5
+ fetch: (shouldChangeSelectedQuote?: boolean) => void;
6
+ showModalFee?: boolean;
7
+ hasSort?: boolean;
8
+ };
9
+ //# sourceMappingURL=Quotes.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Quotes.types.d.ts","sourceRoot":"","sources":["../../../src/components/Quotes/Quotes.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAEjD,MAAM,MAAM,SAAS,GAAG;IACtB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;IAC/C,KAAK,EAAE,CAAC,yBAAyB,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IACrD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare function SelectStrategy(props: {
3
+ container: HTMLElement;
4
+ }): React.JSX.Element;
5
+ //# sourceMappingURL=SelectStrategy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectStrategy.d.ts","sourceRoot":"","sources":["../../../src/components/Quotes/SelectStrategy.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,wBAAgB,cAAc,CAAC,KAAK,EAAE;IAAE,SAAS,EAAE,WAAW,CAAA;CAAE,qBAsB/D"}
@@ -0,0 +1,2 @@
1
+ export { Quotes } from './Quotes';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Quotes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
@@ -7,5 +7,6 @@ export declare const WIDGET_UI_ID: {
7
7
  SWAP_FROM_CHAIN_IMAGE_ID: string;
8
8
  SWAP_TO_CHAIN_IMAGE_ID: string;
9
9
  SWAP_BOX_ID: string;
10
+ EXPANDED_BOX_ID: string;
10
11
  };
11
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,yCAAyC,CAAC;AAC3E,eAAO,MAAM,gBAAgB,+BAA+B,CAAC;AAC7D,eAAO,MAAM,gBAAgB,gCAAgC,CAAC;AAE9D,eAAO,MAAM,YAAY;;;;;;CAGxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,yCAAyC,CAAC;AAC3E,eAAO,MAAM,gBAAgB,+BAA+B,CAAC;AAC7D,eAAO,MAAM,gBAAgB,gCAAgC,CAAC;AAE9D,eAAO,MAAM,YAAY;;;;;;;CAIxB,CAAC"}
@@ -9,9 +9,10 @@ export type FeesGroup = {
9
9
  [key in NameOfFees]?: SwapFee[];
10
10
  };
11
11
  };
12
- export declare const ROUTE_SORTING_STRATEGY: {
13
- [key in PreferenceType]: string;
14
- };
12
+ export declare const ROUTE_STRATEGY: {
13
+ value: PreferenceType;
14
+ label: string;
15
+ }[];
15
16
  export declare const HIGH_PRIORITY_TAGS: TagValue[];
16
17
  export declare const GAS_FEE_MAX = 30;
17
18
  //# sourceMappingURL=quote.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"quote.d.ts","sourceRoot":"","sources":["../../src/constants/quote.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAInE,MAAM,MAAM,UAAU,GAClB,aAAa,GACb,eAAe,GACf,sBAAsB,GACtB,WAAW,GACX,aAAa,CAAC;AAElB,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAMnD,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,OAAO,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;IAC7C,WAAW,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;CAClD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE;KAAG,GAAG,IAAI,cAAc,GAAG,MAAM;CAMrE,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,QAAQ,EAMxC,CAAC;AAEF,eAAO,MAAM,WAAW,KAAK,CAAC"}
1
+ {"version":3,"file":"quote.d.ts","sourceRoot":"","sources":["../../src/constants/quote.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAInE,MAAM,MAAM,UAAU,GAClB,aAAa,GACb,eAAe,GACf,sBAAsB,GACtB,WAAW,GACX,aAAa,CAAC;AAElB,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAMnD,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,OAAO,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;IAC7C,WAAW,EAAE;SAAG,GAAG,IAAI,UAAU,CAAC,CAAC,EAAE,OAAO,EAAE;KAAE,CAAC;CAClD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE;IAAE,KAAK,EAAE,cAAc,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,EAqBpE,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,QAAQ,EAMxC,CAAC;AAEF,eAAO,MAAM,WAAW,KAAK,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { PropTypes } from './ExpandedQuotes.types';
2
+ import React from 'react';
3
+ export declare const TIME_TO_CLOSE_OPEN_EXPANDED = 100;
4
+ export declare function ExpandedQuotes(props: PropTypes): React.JSX.Element;
5
+ //# sourceMappingURL=ExpandedQuotes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExpandedQuotes.d.ts","sourceRoot":"","sources":["../../../src/containers/ExpandedQuotes/ExpandedQuotes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAIxD,OAAO,KAA8B,MAAM,OAAO,CAAC;AAWnD,eAAO,MAAM,2BAA2B,MAAM,CAAC;AAE/C,wBAAgB,cAAc,CAAC,KAAK,EAAE,SAAS,qBAqD9C"}