@rango-dev/widget-embedded 0.14.1-next.1 → 0.14.1-next.10
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/Widget.d.ts.map +1 -1
- package/dist/components/BlockchainList/BlockchainList.styles.d.ts +8 -0
- package/dist/components/BlockchainList/BlockchainList.styles.d.ts.map +1 -1
- package/dist/components/BlockchainsSection/BlockchainsSection.styles.d.ts +4 -0
- package/dist/components/BlockchainsSection/BlockchainsSection.styles.d.ts.map +1 -1
- package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts +60 -0
- package/dist/components/ConfirmWalletsModal/ConfirmWallets.styles.d.ts.map +1 -1
- package/dist/components/ConfirmWalletsModal/WalletList.styles.d.ts +12 -0
- package/dist/components/ConfirmWalletsModal/WalletList.styles.d.ts.map +1 -1
- package/dist/components/HeaderButtons/HeaderButtons.styles.d.ts +16 -0
- package/dist/components/HeaderButtons/HeaderButtons.styles.d.ts.map +1 -1
- package/dist/components/Layout/Layout.styles.d.ts +12 -0
- package/dist/components/Layout/Layout.styles.d.ts.map +1 -1
- package/dist/components/LoadingLiquiditySourceList/LoadingLiquiditySourceList.styles.d.ts +4 -0
- package/dist/components/LoadingLiquiditySourceList/LoadingLiquiditySourceList.styles.d.ts.map +1 -1
- package/dist/components/LoadingSwapDetails/LoadingSwapDetails.styles.d.ts +12 -0
- package/dist/components/LoadingSwapDetails/LoadingSwapDetails.styles.d.ts.map +1 -1
- package/dist/components/NoRoutes/NoRoutes.styles.d.ts +12 -0
- package/dist/components/NoRoutes/NoRoutes.styles.d.ts.map +1 -1
- package/dist/components/NotificationContent/NotificationContent.styles.d.ts +16 -0
- package/dist/components/NotificationContent/NotificationContent.styles.d.ts.map +1 -1
- package/dist/components/RouteErrors/RouteErrors.styles.d.ts +16 -0
- package/dist/components/RouteErrors/RouteErrors.styles.d.ts.map +1 -1
- package/dist/components/SearchInput/SearchInput.styles.d.ts +4 -0
- package/dist/components/SearchInput/SearchInput.styles.d.ts.map +1 -1
- package/dist/components/SettingsContainer/SettingsContainer.style.d.ts +16 -0
- package/dist/components/SettingsContainer/SettingsContainer.style.d.ts.map +1 -1
- package/dist/components/Slippage/Slippage.styles.d.ts +16 -0
- package/dist/components/Slippage/Slippage.styles.d.ts.map +1 -1
- package/dist/components/SwapDetails/SwapDetails.styles.d.ts +24 -0
- package/dist/components/SwapDetails/SwapDetails.styles.d.ts.map +1 -1
- package/dist/components/SwapDetailsAlerts/SwapDetailsAlerts.styles.d.ts +4 -0
- package/dist/components/SwapDetailsAlerts/SwapDetailsAlerts.styles.d.ts.map +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.styles.d.ts +4 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.styles.d.ts.map +1 -1
- package/dist/components/SwapsGroup/SwapsGroup.styles.d.ts +16 -0
- package/dist/components/SwapsGroup/SwapsGroup.styles.d.ts.map +1 -1
- package/dist/components/TokenList/TokenList.styles.d.ts +40 -0
- package/dist/components/TokenList/TokenList.styles.d.ts.map +1 -1
- package/dist/components/WalletModal/WalletModalContent.styles.d.ts +16 -0
- package/dist/components/WalletModal/WalletModalContent.styles.d.ts.map +1 -1
- package/dist/constants/fonts.d.ts +2 -0
- package/dist/constants/fonts.d.ts.map +1 -0
- package/dist/{constants.d.ts → constants/index.d.ts} +1 -1
- package/dist/constants/index.d.ts.map +1 -0
- package/dist/hooks/useTheme.d.ts +2 -2
- package/dist/hooks/useTheme.d.ts.map +1 -1
- package/dist/index.d.ts +9 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +4 -4
- package/dist/store/bestRoute.d.ts.map +1 -1
- package/dist/types/config.d.ts +5 -10
- package/dist/types/config.d.ts.map +1 -1
- package/dist/utils/colors.d.ts +11 -0
- package/dist/utils/colors.d.ts.map +1 -0
- package/dist/utils/common.d.ts +0 -4
- package/dist/utils/common.d.ts.map +1 -1
- package/dist/utils/configs.d.ts +2 -0
- package/dist/utils/configs.d.ts.map +1 -1
- package/dist/utils/hash.d.ts +2 -0
- package/dist/utils/hash.d.ts.map +1 -0
- package/dist/utils/meta.d.ts +3 -1
- package/dist/utils/meta.d.ts.map +1 -1
- package/dist/utils/routing.d.ts +8 -1
- package/dist/utils/routing.d.ts.map +1 -1
- package/dist/utils/ui.d.ts +13 -0
- package/dist/utils/ui.d.ts.map +1 -0
- package/package.json +5 -5
- package/src/Widget.tsx +5 -2
- package/src/components/BlockchainsSection/BlockchainsSection.tsx +2 -2
- package/src/components/TokenList/TokenList.tsx +1 -1
- package/src/constants/fonts.ts +1 -0
- package/src/hooks/useTheme.ts +44 -26
- package/src/index.ts +33 -26
- package/src/store/bestRoute.ts +12 -38
- package/src/types/config.ts +5 -10
- package/src/utils/colors.ts +93 -0
- package/src/utils/common.ts +0 -49
- package/src/utils/configs.ts +3 -0
- package/src/utils/hash.ts +27 -0
- package/src/utils/meta.ts +11 -1
- package/src/utils/routing.ts +58 -0
- package/src/utils/ui.ts +79 -0
- package/dist/constants.d.ts.map +0 -1
- /package/src/{constants.ts → constants/index.ts} +0 -0
package/dist/Widget.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Widget.d.ts","sourceRoot":"","sources":["../src/Widget.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAG/C,OAAO,KAAmD,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Widget.d.ts","sourceRoot":"","sources":["../src/Widget.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAG/C,OAAO,KAAmD,MAAM,OAAO,CAAC;AAgCxE,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,CAAC,EAAE,YAAY,CAAC;CACvB,CAAC;AAEF,wBAAgB,IAAI,CAAC,KAAK,EAAE,iBAAiB,CAAC,WAAW,CAAC,qBA4CzD;AAED,wBAAgB,MAAM,CAAC,KAAK,EAAE,iBAAiB,CAAC,WAAW,CAAC,qBAsB3D"}
|
|
@@ -8,8 +8,10 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
8
8
|
lg: string;
|
|
9
9
|
}, {
|
|
10
10
|
colors: {
|
|
11
|
+
primary: string;
|
|
11
12
|
primary500: string;
|
|
12
13
|
primary600: string;
|
|
14
|
+
secondary: string;
|
|
13
15
|
secondary100: string;
|
|
14
16
|
secondary200: string;
|
|
15
17
|
secondary300: string;
|
|
@@ -19,6 +21,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
19
21
|
secondary700: string;
|
|
20
22
|
secondary800: string;
|
|
21
23
|
secondary900: string;
|
|
24
|
+
neutral: string;
|
|
22
25
|
neutral100: string;
|
|
23
26
|
neutral200: string;
|
|
24
27
|
neutral300: string;
|
|
@@ -38,6 +41,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
38
41
|
warning500: string;
|
|
39
42
|
warning600: string;
|
|
40
43
|
warning700: string;
|
|
44
|
+
info: string;
|
|
41
45
|
info100: string;
|
|
42
46
|
info300: string;
|
|
43
47
|
info500: string;
|
|
@@ -161,8 +165,10 @@ export declare const List: import("@stitches/react/types/styled-component").Styl
|
|
|
161
165
|
lg: string;
|
|
162
166
|
}, {
|
|
163
167
|
colors: {
|
|
168
|
+
primary: string;
|
|
164
169
|
primary500: string;
|
|
165
170
|
primary600: string;
|
|
171
|
+
secondary: string;
|
|
166
172
|
secondary100: string;
|
|
167
173
|
secondary200: string;
|
|
168
174
|
secondary300: string;
|
|
@@ -172,6 +178,7 @@ export declare const List: import("@stitches/react/types/styled-component").Styl
|
|
|
172
178
|
secondary700: string;
|
|
173
179
|
secondary800: string;
|
|
174
180
|
secondary900: string;
|
|
181
|
+
neutral: string;
|
|
175
182
|
neutral100: string;
|
|
176
183
|
neutral200: string;
|
|
177
184
|
neutral300: string;
|
|
@@ -191,6 +198,7 @@ export declare const List: import("@stitches/react/types/styled-component").Styl
|
|
|
191
198
|
warning500: string;
|
|
192
199
|
warning600: string;
|
|
193
200
|
warning700: string;
|
|
201
|
+
info: string;
|
|
194
202
|
info100: string;
|
|
195
203
|
info300: string;
|
|
196
204
|
info500: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockchainList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainList/BlockchainList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"BlockchainList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainList/BlockchainList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIpB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAUf,CAAC"}
|
|
@@ -8,8 +8,10 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
8
8
|
lg: string;
|
|
9
9
|
}, {
|
|
10
10
|
colors: {
|
|
11
|
+
primary: string;
|
|
11
12
|
primary500: string;
|
|
12
13
|
primary600: string;
|
|
14
|
+
secondary: string;
|
|
13
15
|
secondary100: string;
|
|
14
16
|
secondary200: string;
|
|
15
17
|
secondary300: string;
|
|
@@ -19,6 +21,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
19
21
|
secondary700: string;
|
|
20
22
|
secondary800: string;
|
|
21
23
|
secondary900: string;
|
|
24
|
+
neutral: string;
|
|
22
25
|
neutral100: string;
|
|
23
26
|
neutral200: string;
|
|
24
27
|
neutral300: string;
|
|
@@ -38,6 +41,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
|
|
|
38
41
|
warning500: string;
|
|
39
42
|
warning600: string;
|
|
40
43
|
warning700: string;
|
|
44
|
+
info: string;
|
|
41
45
|
info100: string;
|
|
42
46
|
info300: string;
|
|
43
47
|
info500: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockchainsSection.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainsSection/BlockchainsSection.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"BlockchainsSection.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainsSection/BlockchainsSection.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIpB,CAAC"}
|
|
@@ -13,8 +13,10 @@ export declare const Title: import("@stitches/react/types/styled-component").Sty
|
|
|
13
13
|
lg: string;
|
|
14
14
|
}, {
|
|
15
15
|
colors: {
|
|
16
|
+
primary: string;
|
|
16
17
|
primary500: string;
|
|
17
18
|
primary600: string;
|
|
19
|
+
secondary: string;
|
|
18
20
|
secondary100: string;
|
|
19
21
|
secondary200: string;
|
|
20
22
|
secondary300: string;
|
|
@@ -24,6 +26,7 @@ export declare const Title: import("@stitches/react/types/styled-component").Sty
|
|
|
24
26
|
secondary700: string;
|
|
25
27
|
secondary800: string;
|
|
26
28
|
secondary900: string;
|
|
29
|
+
neutral: string;
|
|
27
30
|
neutral100: string;
|
|
28
31
|
neutral200: string;
|
|
29
32
|
neutral300: string;
|
|
@@ -43,6 +46,7 @@ export declare const Title: import("@stitches/react/types/styled-component").Sty
|
|
|
43
46
|
warning500: string;
|
|
44
47
|
warning600: string;
|
|
45
48
|
warning700: string;
|
|
49
|
+
info: string;
|
|
46
50
|
info100: string;
|
|
47
51
|
info300: string;
|
|
48
52
|
info500: string;
|
|
@@ -166,8 +170,10 @@ export declare const ListContainer: import("@stitches/react/types/styled-compone
|
|
|
166
170
|
lg: string;
|
|
167
171
|
}, {
|
|
168
172
|
colors: {
|
|
173
|
+
primary: string;
|
|
169
174
|
primary500: string;
|
|
170
175
|
primary600: string;
|
|
176
|
+
secondary: string;
|
|
171
177
|
secondary100: string;
|
|
172
178
|
secondary200: string;
|
|
173
179
|
secondary300: string;
|
|
@@ -177,6 +183,7 @@ export declare const ListContainer: import("@stitches/react/types/styled-compone
|
|
|
177
183
|
secondary700: string;
|
|
178
184
|
secondary800: string;
|
|
179
185
|
secondary900: string;
|
|
186
|
+
neutral: string;
|
|
180
187
|
neutral100: string;
|
|
181
188
|
neutral200: string;
|
|
182
189
|
neutral300: string;
|
|
@@ -196,6 +203,7 @@ export declare const ListContainer: import("@stitches/react/types/styled-compone
|
|
|
196
203
|
warning500: string;
|
|
197
204
|
warning600: string;
|
|
198
205
|
warning700: string;
|
|
206
|
+
info: string;
|
|
199
207
|
info100: string;
|
|
200
208
|
info300: string;
|
|
201
209
|
info500: string;
|
|
@@ -321,8 +329,10 @@ export declare const WalletButton: import("@stitches/react/types/styled-componen
|
|
|
321
329
|
lg: string;
|
|
322
330
|
}, {
|
|
323
331
|
colors: {
|
|
332
|
+
primary: string;
|
|
324
333
|
primary500: string;
|
|
325
334
|
primary600: string;
|
|
335
|
+
secondary: string;
|
|
326
336
|
secondary100: string;
|
|
327
337
|
secondary200: string;
|
|
328
338
|
secondary300: string;
|
|
@@ -332,6 +342,7 @@ export declare const WalletButton: import("@stitches/react/types/styled-componen
|
|
|
332
342
|
secondary700: string;
|
|
333
343
|
secondary800: string;
|
|
334
344
|
secondary900: string;
|
|
345
|
+
neutral: string;
|
|
335
346
|
neutral100: string;
|
|
336
347
|
neutral200: string;
|
|
337
348
|
neutral300: string;
|
|
@@ -351,6 +362,7 @@ export declare const WalletButton: import("@stitches/react/types/styled-componen
|
|
|
351
362
|
warning500: string;
|
|
352
363
|
warning600: string;
|
|
353
364
|
warning700: string;
|
|
365
|
+
info: string;
|
|
354
366
|
info100: string;
|
|
355
367
|
info300: string;
|
|
356
368
|
info500: string;
|
|
@@ -474,8 +486,10 @@ export declare const Trigger: import("@stitches/react/types/styled-component").S
|
|
|
474
486
|
lg: string;
|
|
475
487
|
}, {
|
|
476
488
|
colors: {
|
|
489
|
+
primary: string;
|
|
477
490
|
primary500: string;
|
|
478
491
|
primary600: string;
|
|
492
|
+
secondary: string;
|
|
479
493
|
secondary100: string;
|
|
480
494
|
secondary200: string;
|
|
481
495
|
secondary300: string;
|
|
@@ -485,6 +499,7 @@ export declare const Trigger: import("@stitches/react/types/styled-component").S
|
|
|
485
499
|
secondary700: string;
|
|
486
500
|
secondary800: string;
|
|
487
501
|
secondary900: string;
|
|
502
|
+
neutral: string;
|
|
488
503
|
neutral100: string;
|
|
489
504
|
neutral200: string;
|
|
490
505
|
neutral300: string;
|
|
@@ -504,6 +519,7 @@ export declare const Trigger: import("@stitches/react/types/styled-component").S
|
|
|
504
519
|
warning500: string;
|
|
505
520
|
warning600: string;
|
|
506
521
|
warning700: string;
|
|
522
|
+
info: string;
|
|
507
523
|
info100: string;
|
|
508
524
|
info300: string;
|
|
509
525
|
info500: string;
|
|
@@ -627,8 +643,10 @@ export declare const ShowMoreHeader: import("@stitches/react/types/styled-compon
|
|
|
627
643
|
lg: string;
|
|
628
644
|
}, {
|
|
629
645
|
colors: {
|
|
646
|
+
primary: string;
|
|
630
647
|
primary500: string;
|
|
631
648
|
primary600: string;
|
|
649
|
+
secondary: string;
|
|
632
650
|
secondary100: string;
|
|
633
651
|
secondary200: string;
|
|
634
652
|
secondary300: string;
|
|
@@ -638,6 +656,7 @@ export declare const ShowMoreHeader: import("@stitches/react/types/styled-compon
|
|
|
638
656
|
secondary700: string;
|
|
639
657
|
secondary800: string;
|
|
640
658
|
secondary900: string;
|
|
659
|
+
neutral: string;
|
|
641
660
|
neutral100: string;
|
|
642
661
|
neutral200: string;
|
|
643
662
|
neutral300: string;
|
|
@@ -657,6 +676,7 @@ export declare const ShowMoreHeader: import("@stitches/react/types/styled-compon
|
|
|
657
676
|
warning500: string;
|
|
658
677
|
warning600: string;
|
|
659
678
|
warning700: string;
|
|
679
|
+
info: string;
|
|
660
680
|
info100: string;
|
|
661
681
|
info300: string;
|
|
662
682
|
info500: string;
|
|
@@ -782,8 +802,10 @@ export declare const NavigateBack: import("@stitches/react/types/styled-componen
|
|
|
782
802
|
lg: string;
|
|
783
803
|
}, {
|
|
784
804
|
colors: {
|
|
805
|
+
primary: string;
|
|
785
806
|
primary500: string;
|
|
786
807
|
primary600: string;
|
|
808
|
+
secondary: string;
|
|
787
809
|
secondary100: string;
|
|
788
810
|
secondary200: string;
|
|
789
811
|
secondary300: string;
|
|
@@ -793,6 +815,7 @@ export declare const NavigateBack: import("@stitches/react/types/styled-componen
|
|
|
793
815
|
secondary700: string;
|
|
794
816
|
secondary800: string;
|
|
795
817
|
secondary900: string;
|
|
818
|
+
neutral: string;
|
|
796
819
|
neutral100: string;
|
|
797
820
|
neutral200: string;
|
|
798
821
|
neutral300: string;
|
|
@@ -812,6 +835,7 @@ export declare const NavigateBack: import("@stitches/react/types/styled-componen
|
|
|
812
835
|
warning500: string;
|
|
813
836
|
warning600: string;
|
|
814
837
|
warning700: string;
|
|
838
|
+
info: string;
|
|
815
839
|
info100: string;
|
|
816
840
|
info300: string;
|
|
817
841
|
info500: string;
|
|
@@ -935,8 +959,10 @@ export declare const WalletsContainer: import("@stitches/react/types/styled-comp
|
|
|
935
959
|
lg: string;
|
|
936
960
|
}, {
|
|
937
961
|
colors: {
|
|
962
|
+
primary: string;
|
|
938
963
|
primary500: string;
|
|
939
964
|
primary600: string;
|
|
965
|
+
secondary: string;
|
|
940
966
|
secondary100: string;
|
|
941
967
|
secondary200: string;
|
|
942
968
|
secondary300: string;
|
|
@@ -946,6 +972,7 @@ export declare const WalletsContainer: import("@stitches/react/types/styled-comp
|
|
|
946
972
|
secondary700: string;
|
|
947
973
|
secondary800: string;
|
|
948
974
|
secondary900: string;
|
|
975
|
+
neutral: string;
|
|
949
976
|
neutral100: string;
|
|
950
977
|
neutral200: string;
|
|
951
978
|
neutral300: string;
|
|
@@ -965,6 +992,7 @@ export declare const WalletsContainer: import("@stitches/react/types/styled-comp
|
|
|
965
992
|
warning500: string;
|
|
966
993
|
warning600: string;
|
|
967
994
|
warning700: string;
|
|
995
|
+
info: string;
|
|
968
996
|
info100: string;
|
|
969
997
|
info300: string;
|
|
970
998
|
info500: string;
|
|
@@ -1090,8 +1118,10 @@ export declare const CollapsibleRoot: import("@stitches/react/types/styled-compo
|
|
|
1090
1118
|
lg: string;
|
|
1091
1119
|
}, {
|
|
1092
1120
|
colors: {
|
|
1121
|
+
primary: string;
|
|
1093
1122
|
primary500: string;
|
|
1094
1123
|
primary600: string;
|
|
1124
|
+
secondary: string;
|
|
1095
1125
|
secondary100: string;
|
|
1096
1126
|
secondary200: string;
|
|
1097
1127
|
secondary300: string;
|
|
@@ -1101,6 +1131,7 @@ export declare const CollapsibleRoot: import("@stitches/react/types/styled-compo
|
|
|
1101
1131
|
secondary700: string;
|
|
1102
1132
|
secondary800: string;
|
|
1103
1133
|
secondary900: string;
|
|
1134
|
+
neutral: string;
|
|
1104
1135
|
neutral100: string;
|
|
1105
1136
|
neutral200: string;
|
|
1106
1137
|
neutral300: string;
|
|
@@ -1120,6 +1151,7 @@ export declare const CollapsibleRoot: import("@stitches/react/types/styled-compo
|
|
|
1120
1151
|
warning500: string;
|
|
1121
1152
|
warning600: string;
|
|
1122
1153
|
warning700: string;
|
|
1154
|
+
info: string;
|
|
1123
1155
|
info100: string;
|
|
1124
1156
|
info300: string;
|
|
1125
1157
|
info500: string;
|
|
@@ -1522,8 +1554,10 @@ export declare const CustomDestinationButton: import("@stitches/react/types/styl
|
|
|
1522
1554
|
lg: string;
|
|
1523
1555
|
}, {
|
|
1524
1556
|
colors: {
|
|
1557
|
+
primary: string;
|
|
1525
1558
|
primary500: string;
|
|
1526
1559
|
primary600: string;
|
|
1560
|
+
secondary: string;
|
|
1527
1561
|
secondary100: string;
|
|
1528
1562
|
secondary200: string;
|
|
1529
1563
|
secondary300: string;
|
|
@@ -1533,6 +1567,7 @@ export declare const CustomDestinationButton: import("@stitches/react/types/styl
|
|
|
1533
1567
|
secondary700: string;
|
|
1534
1568
|
secondary800: string;
|
|
1535
1569
|
secondary900: string;
|
|
1570
|
+
neutral: string;
|
|
1536
1571
|
neutral100: string;
|
|
1537
1572
|
neutral200: string;
|
|
1538
1573
|
neutral300: string;
|
|
@@ -1552,6 +1587,7 @@ export declare const CustomDestinationButton: import("@stitches/react/types/styl
|
|
|
1552
1587
|
warning500: string;
|
|
1553
1588
|
warning600: string;
|
|
1554
1589
|
warning700: string;
|
|
1590
|
+
info: string;
|
|
1555
1591
|
info100: string;
|
|
1556
1592
|
info300: string;
|
|
1557
1593
|
info500: string;
|
|
@@ -1675,8 +1711,10 @@ export declare const CustomDestination: import("@stitches/react/types/styled-com
|
|
|
1675
1711
|
lg: string;
|
|
1676
1712
|
}, {
|
|
1677
1713
|
colors: {
|
|
1714
|
+
primary: string;
|
|
1678
1715
|
primary500: string;
|
|
1679
1716
|
primary600: string;
|
|
1717
|
+
secondary: string;
|
|
1680
1718
|
secondary100: string;
|
|
1681
1719
|
secondary200: string;
|
|
1682
1720
|
secondary300: string;
|
|
@@ -1686,6 +1724,7 @@ export declare const CustomDestination: import("@stitches/react/types/styled-com
|
|
|
1686
1724
|
secondary700: string;
|
|
1687
1725
|
secondary800: string;
|
|
1688
1726
|
secondary900: string;
|
|
1727
|
+
neutral: string;
|
|
1689
1728
|
neutral100: string;
|
|
1690
1729
|
neutral200: string;
|
|
1691
1730
|
neutral300: string;
|
|
@@ -1705,6 +1744,7 @@ export declare const CustomDestination: import("@stitches/react/types/styled-com
|
|
|
1705
1744
|
warning500: string;
|
|
1706
1745
|
warning600: string;
|
|
1707
1746
|
warning700: string;
|
|
1747
|
+
info: string;
|
|
1708
1748
|
info100: string;
|
|
1709
1749
|
info300: string;
|
|
1710
1750
|
info500: string;
|
|
@@ -1830,8 +1870,10 @@ export declare const ExpandedIcon: import("@stitches/react/types/styled-componen
|
|
|
1830
1870
|
lg: string;
|
|
1831
1871
|
}, {
|
|
1832
1872
|
colors: {
|
|
1873
|
+
primary: string;
|
|
1833
1874
|
primary500: string;
|
|
1834
1875
|
primary600: string;
|
|
1876
|
+
secondary: string;
|
|
1835
1877
|
secondary100: string;
|
|
1836
1878
|
secondary200: string;
|
|
1837
1879
|
secondary300: string;
|
|
@@ -1841,6 +1883,7 @@ export declare const ExpandedIcon: import("@stitches/react/types/styled-componen
|
|
|
1841
1883
|
secondary700: string;
|
|
1842
1884
|
secondary800: string;
|
|
1843
1885
|
secondary900: string;
|
|
1886
|
+
neutral: string;
|
|
1844
1887
|
neutral100: string;
|
|
1845
1888
|
neutral200: string;
|
|
1846
1889
|
neutral300: string;
|
|
@@ -1860,6 +1903,7 @@ export declare const ExpandedIcon: import("@stitches/react/types/styled-componen
|
|
|
1860
1903
|
warning500: string;
|
|
1861
1904
|
warning600: string;
|
|
1862
1905
|
warning700: string;
|
|
1906
|
+
info: string;
|
|
1863
1907
|
info100: string;
|
|
1864
1908
|
info300: string;
|
|
1865
1909
|
info500: string;
|
|
@@ -1983,8 +2027,10 @@ export declare const ConfirmButton: import("@stitches/react/types/styled-compone
|
|
|
1983
2027
|
lg: string;
|
|
1984
2028
|
}, {
|
|
1985
2029
|
colors: {
|
|
2030
|
+
primary: string;
|
|
1986
2031
|
primary500: string;
|
|
1987
2032
|
primary600: string;
|
|
2033
|
+
secondary: string;
|
|
1988
2034
|
secondary100: string;
|
|
1989
2035
|
secondary200: string;
|
|
1990
2036
|
secondary300: string;
|
|
@@ -1994,6 +2040,7 @@ export declare const ConfirmButton: import("@stitches/react/types/styled-compone
|
|
|
1994
2040
|
secondary700: string;
|
|
1995
2041
|
secondary800: string;
|
|
1996
2042
|
secondary900: string;
|
|
2043
|
+
neutral: string;
|
|
1997
2044
|
neutral100: string;
|
|
1998
2045
|
neutral200: string;
|
|
1999
2046
|
neutral300: string;
|
|
@@ -2013,6 +2060,7 @@ export declare const ConfirmButton: import("@stitches/react/types/styled-compone
|
|
|
2013
2060
|
warning500: string;
|
|
2014
2061
|
warning600: string;
|
|
2015
2062
|
warning700: string;
|
|
2063
|
+
info: string;
|
|
2016
2064
|
info100: string;
|
|
2017
2065
|
info300: string;
|
|
2018
2066
|
info500: string;
|
|
@@ -2145,8 +2193,10 @@ export declare const StyledTextField: import("@stitches/react/types/styled-compo
|
|
|
2145
2193
|
lg: string;
|
|
2146
2194
|
}, {
|
|
2147
2195
|
colors: {
|
|
2196
|
+
primary: string;
|
|
2148
2197
|
primary500: string;
|
|
2149
2198
|
primary600: string;
|
|
2199
|
+
secondary: string;
|
|
2150
2200
|
secondary100: string;
|
|
2151
2201
|
secondary200: string;
|
|
2152
2202
|
secondary300: string;
|
|
@@ -2156,6 +2206,7 @@ export declare const StyledTextField: import("@stitches/react/types/styled-compo
|
|
|
2156
2206
|
secondary700: string;
|
|
2157
2207
|
secondary800: string;
|
|
2158
2208
|
secondary900: string;
|
|
2209
|
+
neutral: string;
|
|
2159
2210
|
neutral100: string;
|
|
2160
2211
|
neutral200: string;
|
|
2161
2212
|
neutral300: string;
|
|
@@ -2175,6 +2226,7 @@ export declare const StyledTextField: import("@stitches/react/types/styled-compo
|
|
|
2175
2226
|
warning500: string;
|
|
2176
2227
|
warning600: string;
|
|
2177
2228
|
warning700: string;
|
|
2229
|
+
info: string;
|
|
2178
2230
|
info100: string;
|
|
2179
2231
|
info300: string;
|
|
2180
2232
|
info500: string;
|
|
@@ -2300,8 +2352,10 @@ export declare const CollapsibleContent: import("@stitches/react/types/styled-co
|
|
|
2300
2352
|
lg: string;
|
|
2301
2353
|
}, {
|
|
2302
2354
|
colors: {
|
|
2355
|
+
primary: string;
|
|
2303
2356
|
primary500: string;
|
|
2304
2357
|
primary600: string;
|
|
2358
|
+
secondary: string;
|
|
2305
2359
|
secondary100: string;
|
|
2306
2360
|
secondary200: string;
|
|
2307
2361
|
secondary300: string;
|
|
@@ -2311,6 +2365,7 @@ export declare const CollapsibleContent: import("@stitches/react/types/styled-co
|
|
|
2311
2365
|
secondary700: string;
|
|
2312
2366
|
secondary800: string;
|
|
2313
2367
|
secondary900: string;
|
|
2368
|
+
neutral: string;
|
|
2314
2369
|
neutral100: string;
|
|
2315
2370
|
neutral200: string;
|
|
2316
2371
|
neutral300: string;
|
|
@@ -2330,6 +2385,7 @@ export declare const CollapsibleContent: import("@stitches/react/types/styled-co
|
|
|
2330
2385
|
warning500: string;
|
|
2331
2386
|
warning600: string;
|
|
2332
2387
|
warning700: string;
|
|
2388
|
+
info: string;
|
|
2333
2389
|
info100: string;
|
|
2334
2390
|
info300: string;
|
|
2335
2391
|
info500: string;
|
|
@@ -2453,8 +2509,10 @@ export declare const Wallets: import("@stitches/react/types/styled-component").S
|
|
|
2453
2509
|
lg: string;
|
|
2454
2510
|
}, {
|
|
2455
2511
|
colors: {
|
|
2512
|
+
primary: string;
|
|
2456
2513
|
primary500: string;
|
|
2457
2514
|
primary600: string;
|
|
2515
|
+
secondary: string;
|
|
2458
2516
|
secondary100: string;
|
|
2459
2517
|
secondary200: string;
|
|
2460
2518
|
secondary300: string;
|
|
@@ -2464,6 +2522,7 @@ export declare const Wallets: import("@stitches/react/types/styled-component").S
|
|
|
2464
2522
|
secondary700: string;
|
|
2465
2523
|
secondary800: string;
|
|
2466
2524
|
secondary900: string;
|
|
2525
|
+
neutral: string;
|
|
2467
2526
|
neutral100: string;
|
|
2468
2527
|
neutral200: string;
|
|
2469
2528
|
neutral300: string;
|
|
@@ -2483,6 +2542,7 @@ export declare const Wallets: import("@stitches/react/types/styled-component").S
|
|
|
2483
2542
|
warning500: string;
|
|
2484
2543
|
warning600: string;
|
|
2485
2544
|
warning700: string;
|
|
2545
|
+
info: string;
|
|
2486
2546
|
info100: string;
|
|
2487
2547
|
info300: string;
|
|
2488
2548
|
info500: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfirmWallets.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ConfirmWalletsModal/ConfirmWallets.styles.ts"],"names":[],"mappings":";;;AAAA,OAAO,KAAK,WAAW,MAAM,6BAA6B,CAAC;AAU3D,eAAO,MAAM,8BAA8B,MAAM,CAAC;AAoBlD,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"ConfirmWallets.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ConfirmWalletsModal/ConfirmWallets.styles.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,8 +8,10 @@ export declare const LogoContainer: import("@stitches/react/types/styled-compone
|
|
|
8
8
|
lg: string;
|
|
9
9
|
}, {
|
|
10
10
|
colors: {
|
|
11
|
+
primary: string;
|
|
11
12
|
primary500: string;
|
|
12
13
|
primary600: string;
|
|
14
|
+
secondary: string;
|
|
13
15
|
secondary100: string;
|
|
14
16
|
secondary200: string;
|
|
15
17
|
secondary300: string;
|
|
@@ -19,6 +21,7 @@ export declare const LogoContainer: import("@stitches/react/types/styled-compone
|
|
|
19
21
|
secondary700: string;
|
|
20
22
|
secondary800: string;
|
|
21
23
|
secondary900: string;
|
|
24
|
+
neutral: string;
|
|
22
25
|
neutral100: string;
|
|
23
26
|
neutral200: string;
|
|
24
27
|
neutral300: string;
|
|
@@ -38,6 +41,7 @@ export declare const LogoContainer: import("@stitches/react/types/styled-compone
|
|
|
38
41
|
warning500: string;
|
|
39
42
|
warning600: string;
|
|
40
43
|
warning700: string;
|
|
44
|
+
info: string;
|
|
41
45
|
info100: string;
|
|
42
46
|
info300: string;
|
|
43
47
|
info500: string;
|
|
@@ -161,8 +165,10 @@ export declare const Spinner: import("@stitches/react/types/styled-component").S
|
|
|
161
165
|
lg: string;
|
|
162
166
|
}, {
|
|
163
167
|
colors: {
|
|
168
|
+
primary: string;
|
|
164
169
|
primary500: string;
|
|
165
170
|
primary600: string;
|
|
171
|
+
secondary: string;
|
|
166
172
|
secondary100: string;
|
|
167
173
|
secondary200: string;
|
|
168
174
|
secondary300: string;
|
|
@@ -172,6 +178,7 @@ export declare const Spinner: import("@stitches/react/types/styled-component").S
|
|
|
172
178
|
secondary700: string;
|
|
173
179
|
secondary800: string;
|
|
174
180
|
secondary900: string;
|
|
181
|
+
neutral: string;
|
|
175
182
|
neutral100: string;
|
|
176
183
|
neutral200: string;
|
|
177
184
|
neutral300: string;
|
|
@@ -191,6 +198,7 @@ export declare const Spinner: import("@stitches/react/types/styled-component").S
|
|
|
191
198
|
warning500: string;
|
|
192
199
|
warning600: string;
|
|
193
200
|
warning700: string;
|
|
201
|
+
info: string;
|
|
194
202
|
info100: string;
|
|
195
203
|
info300: string;
|
|
196
204
|
info500: string;
|
|
@@ -314,8 +322,10 @@ export declare const WalletImageContainer: import("@stitches/react/types/styled-
|
|
|
314
322
|
lg: string;
|
|
315
323
|
}, {
|
|
316
324
|
colors: {
|
|
325
|
+
primary: string;
|
|
317
326
|
primary500: string;
|
|
318
327
|
primary600: string;
|
|
328
|
+
secondary: string;
|
|
319
329
|
secondary100: string;
|
|
320
330
|
secondary200: string;
|
|
321
331
|
secondary300: string;
|
|
@@ -325,6 +335,7 @@ export declare const WalletImageContainer: import("@stitches/react/types/styled-
|
|
|
325
335
|
secondary700: string;
|
|
326
336
|
secondary800: string;
|
|
327
337
|
secondary900: string;
|
|
338
|
+
neutral: string;
|
|
328
339
|
neutral100: string;
|
|
329
340
|
neutral200: string;
|
|
330
341
|
neutral300: string;
|
|
@@ -344,6 +355,7 @@ export declare const WalletImageContainer: import("@stitches/react/types/styled-
|
|
|
344
355
|
warning500: string;
|
|
345
356
|
warning600: string;
|
|
346
357
|
warning700: string;
|
|
358
|
+
info: string;
|
|
347
359
|
info100: string;
|
|
348
360
|
info300: string;
|
|
349
361
|
info500: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WalletList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ConfirmWalletsModal/WalletList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"WalletList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ConfirmWalletsModal/WalletList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAExB,CAAC;AAWH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAYlB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAI/B,CAAC"}
|