@funkit/connect 1.2.3 → 1.2.5

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 (57) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/{chunk-UDJBGTFV.js → chunk-FRT63PFR.js} +5 -3
  3. package/dist/{chunk-FECCKVZV.js → chunk-I24HX4XM.js} +27 -0
  4. package/dist/{chunk-RRG76BJM.js → chunk-ICLRFHOV.js} +5 -3
  5. package/dist/components/Box/Box.d.ts +38 -38
  6. package/dist/components/Dialog/DialogContent.d.ts +1 -2
  7. package/dist/components/FunKeyValue/FunKeyValue.d.ts +3 -1
  8. package/dist/components/FunkitProvider/FunkitConfigContext.d.ts +3 -1
  9. package/dist/components/FunkitProvider/FunkitProvider.d.ts +2 -0
  10. package/dist/components/FunkitProvider/FunkitThemeProvider.d.ts +168 -8
  11. package/dist/css/sprinkles.css.d.ts +122 -42
  12. package/dist/index.css +929 -839
  13. package/dist/index.js +1268 -1253
  14. package/dist/themes/baseTheme.d.ts +3 -1
  15. package/dist/themes/baseTheme.js +1 -1
  16. package/dist/themes/darkTheme.d.ts +42 -2
  17. package/dist/themes/darkTheme.js +2 -2
  18. package/dist/themes/lightTheme.d.ts +42 -2
  19. package/dist/themes/lightTheme.js +2 -2
  20. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  25. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/index.js +65 -65
  30. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  38. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  39. package/package.json +3 -3
  40. package/dist/wallets/walletConnectors/chunk-2DWBVWFI.js +0 -87
  41. package/dist/wallets/walletConnectors/chunk-3F5GNHAG.js +0 -182
  42. package/dist/wallets/walletConnectors/chunk-3R3RNCGE.js +0 -100
  43. package/dist/wallets/walletConnectors/chunk-5L2OLU3J.js +0 -102
  44. package/dist/wallets/walletConnectors/chunk-BCXBFAL4.js +0 -98
  45. package/dist/wallets/walletConnectors/chunk-M4SPCKW4.js +0 -66
  46. package/dist/wallets/walletConnectors/chunk-MFS6NY6T.js +0 -105
  47. package/dist/wallets/walletConnectors/chunk-MOAWRDEM.js +0 -95
  48. package/dist/wallets/walletConnectors/chunk-NK3DYIAB.js +0 -92
  49. package/dist/wallets/walletConnectors/chunk-OMKARG6Y.js +0 -94
  50. package/dist/wallets/walletConnectors/chunk-OPO2D6GL.js +0 -102
  51. package/dist/wallets/walletConnectors/chunk-OXWTS7HX.js +0 -98
  52. package/dist/wallets/walletConnectors/chunk-PJRUHFBT.js +0 -71
  53. package/dist/wallets/walletConnectors/chunk-R5GNFRXW.js +0 -96
  54. package/dist/wallets/walletConnectors/chunk-S2IWMXKX.js +0 -94
  55. package/dist/wallets/walletConnectors/chunk-WH7S23VZ.js +0 -73
  56. package/dist/wallets/walletConnectors/chunk-XB2GFXBL.js +0 -107
  57. package/dist/wallets/walletConnectors/chunk-XUXFYTCV.js +0 -96
@@ -7,14 +7,16 @@ declare const fontStacks: {
7
7
  type FontStack = keyof typeof fontStacks;
8
8
  type RadiusScale = 'large' | 'medium' | 'small' | 'none';
9
9
  type Blurs = 'large' | 'small' | 'none';
10
+ type FontSizeType = 'regular' | 'small';
10
11
  interface BaseThemeOptions {
11
12
  customFontWeights?: Partial<ThemeVars['fontWeight']>;
12
13
  customFontFamily?: string;
14
+ fontSizing?: FontSizeType;
13
15
  borderRadius?: RadiusScale;
14
16
  fontStack?: FontStack;
15
17
  overlayBlur?: Blurs;
16
18
  }
17
- export declare const baseTheme: ({ borderRadius, fontStack, customFontFamily, customFontWeights, overlayBlur, }: BaseThemeOptions) => Pick<ThemeVars, 'radii' | 'fonts' | 'fontWeight' | 'blurs'>;
19
+ export declare const baseTheme: ({ borderRadius, fontStack, fontSizing, customFontFamily, customFontWeights, overlayBlur, }: BaseThemeOptions) => Pick<ThemeVars, 'radii' | 'fonts' | 'fontWeight' | 'fontSize' | 'blurs'>;
18
20
  export interface AccentColor {
19
21
  accentColor: string;
20
22
  accentColorForeground: string;
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  baseTheme
4
- } from "../chunk-FECCKVZV.js";
4
+ } from "../chunk-I24HX4XM.js";
5
5
  export {
6
6
  baseTheme
7
7
  };
@@ -29,6 +29,10 @@ export declare const darkTheme: {
29
29
  profileActionHover: string;
30
30
  profileForeground: string;
31
31
  selectedOptionBorder: string;
32
+ paymentOptionBorderBase: string;
33
+ paymentOptionBorderHover: string;
34
+ paymentOptionBorderActive: string;
35
+ paymentOptionBorderActiveHover: string;
32
36
  standby: string;
33
37
  solidLine: string;
34
38
  leftTranslucentLine: string;
@@ -49,8 +53,6 @@ export declare const darkTheme: {
49
53
  inputFieldDisabled: string;
50
54
  optionBackground: string;
51
55
  optionBackgroundSecondary: string;
52
- strokePrimary: string;
53
- strokeSecondary: string;
54
56
  buttonPrimary: string;
55
57
  buttonProcessing: string;
56
58
  buttonDisabled: string;
@@ -72,6 +74,44 @@ export declare const darkTheme: {
72
74
  walletLogo: string;
73
75
  };
74
76
  moonpayTheme: string;
77
+ fontSize: {
78
+ '10': {
79
+ fontSize: string;
80
+ lineHeight: string;
81
+ };
82
+ '12': {
83
+ fontSize: string;
84
+ lineHeight: string;
85
+ };
86
+ '13': {
87
+ fontSize: string;
88
+ lineHeight: string;
89
+ };
90
+ '14': {
91
+ fontSize: string;
92
+ lineHeight: string;
93
+ };
94
+ '16': {
95
+ fontSize: string;
96
+ lineHeight: string;
97
+ };
98
+ '18': {
99
+ fontSize: string;
100
+ lineHeight: string;
101
+ };
102
+ '20': {
103
+ fontSize: string;
104
+ lineHeight: string;
105
+ };
106
+ '23': {
107
+ fontSize: string;
108
+ lineHeight: string;
109
+ };
110
+ '57': {
111
+ fontSize: string;
112
+ lineHeight: string;
113
+ };
114
+ };
75
115
  fontWeight: {
76
116
  regular: string;
77
117
  medium: string;
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-RRG76BJM.js";
5
- import "../chunk-FECCKVZV.js";
4
+ } from "../chunk-ICLRFHOV.js";
5
+ import "../chunk-I24HX4XM.js";
6
6
  export {
7
7
  darkTheme
8
8
  };
@@ -29,6 +29,10 @@ export declare const lightTheme: {
29
29
  profileActionHover: string;
30
30
  profileForeground: string;
31
31
  selectedOptionBorder: string;
32
+ paymentOptionBorderBase: string;
33
+ paymentOptionBorderHover: string;
34
+ paymentOptionBorderActive: string;
35
+ paymentOptionBorderActiveHover: string;
32
36
  standby: string;
33
37
  solidLine: string;
34
38
  leftTranslucentLine: string;
@@ -49,8 +53,6 @@ export declare const lightTheme: {
49
53
  inputFieldDisabled: string;
50
54
  optionBackground: string;
51
55
  optionBackgroundSecondary: string;
52
- strokePrimary: string;
53
- strokeSecondary: string;
54
56
  buttonPrimary: string;
55
57
  buttonProcessing: string;
56
58
  buttonDisabled: string;
@@ -72,6 +74,44 @@ export declare const lightTheme: {
72
74
  walletLogo: string;
73
75
  };
74
76
  moonpayTheme: string;
77
+ fontSize: {
78
+ '10': {
79
+ fontSize: string;
80
+ lineHeight: string;
81
+ };
82
+ '12': {
83
+ fontSize: string;
84
+ lineHeight: string;
85
+ };
86
+ '13': {
87
+ fontSize: string;
88
+ lineHeight: string;
89
+ };
90
+ '14': {
91
+ fontSize: string;
92
+ lineHeight: string;
93
+ };
94
+ '16': {
95
+ fontSize: string;
96
+ lineHeight: string;
97
+ };
98
+ '18': {
99
+ fontSize: string;
100
+ lineHeight: string;
101
+ };
102
+ '20': {
103
+ fontSize: string;
104
+ lineHeight: string;
105
+ };
106
+ '23': {
107
+ fontSize: string;
108
+ lineHeight: string;
109
+ };
110
+ '57': {
111
+ fontSize: string;
112
+ lineHeight: string;
113
+ };
114
+ };
75
115
  fontWeight: {
76
116
  regular: string;
77
117
  medium: string;
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-UDJBGTFV.js";
5
- import "../chunk-FECCKVZV.js";
4
+ } from "../chunk-FRT63PFR.js";
5
+ import "../chunk-I24HX4XM.js";
6
6
  export {
7
7
  lightTheme
8
8
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-PJRUHFBT.js";
4
+ } from "../chunk-AFONKDII.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  bifrostWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  bitgetWallet
4
- } from "../chunk-3R3RNCGE.js";
4
+ } from "../chunk-OUQ3ZF2W.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  bitgetWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bybitWallet
4
- } from "../chunk-BCXBFAL4.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-ZBQT5PV6.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  bybitWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-2DWBVWFI.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-ND5YG63V.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  clvWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coin98Wallet
4
- } from "../chunk-R5GNFRXW.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-3QXMJHL4.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  coin98Wallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-OMKARG6Y.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-32O7HVBJ.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  coreWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-M4SPCKW4.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-TKXMLZXG.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  foxWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-OXWTS7HX.js";
4
+ } from "../chunk-LOEDYNWO.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  frontierWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-S2IWMXKX.js";
4
+ } from "../chunk-QGQISKXF.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  gateWallet
10
10
  };
@@ -1,61 +1,67 @@
1
1
  "use client";
2
2
  import {
3
- xdefiWallet
4
- } from "./chunk-JNZ3EYC7.js";
3
+ walletConnectWallet
4
+ } from "./chunk-ASPRR7T3.js";
5
5
  import {
6
- ledgerWallet
7
- } from "./chunk-Y6VY6E3L.js";
6
+ zealWallet
7
+ } from "./chunk-Z5QFIFDP.js";
8
8
  import {
9
- roninWallet
10
- } from "./chunk-NK3DYIAB.js";
9
+ zerionWallet
10
+ } from "./chunk-G4DNQN67.js";
11
11
  import {
12
- tokenPocketWallet
13
- } from "./chunk-MOAWRDEM.js";
12
+ oneInchWallet
13
+ } from "./chunk-LCPIZUR3.js";
14
14
  import {
15
- trustWallet
16
- } from "./chunk-MFS6NY6T.js";
15
+ tahoWallet
16
+ } from "./chunk-PILSRRPJ.js";
17
17
  import {
18
- uniswapWallet
19
- } from "./chunk-XRSY4JVH.js";
18
+ talismanWallet
19
+ } from "./chunk-R2GYJ376.js";
20
20
  import {
21
21
  tokenaryWallet
22
22
  } from "./chunk-MD5OPFAT.js";
23
23
  import {
24
- walletConnectWallet
25
- } from "./chunk-ASPRR7T3.js";
24
+ tokenPocketWallet
25
+ } from "./chunk-UWU574XS.js";
26
26
  import {
27
- zealWallet
28
- } from "./chunk-Z5QFIFDP.js";
27
+ trustWallet
28
+ } from "./chunk-BMHNXJZK.js";
29
29
  import {
30
- zerionWallet
31
- } from "./chunk-OPO2D6GL.js";
30
+ uniswapWallet
31
+ } from "./chunk-XRSY4JVH.js";
32
32
  import {
33
- oneInchWallet
34
- } from "./chunk-LCPIZUR3.js";
33
+ xdefiWallet
34
+ } from "./chunk-JNZ3EYC7.js";
35
35
  import {
36
- rabbyWallet
37
- } from "./chunk-5SIHQ5GA.js";
36
+ rainbowWallet
37
+ } from "./chunk-EXN2ODSI.js";
38
38
  import {
39
39
  ramperWallet
40
40
  } from "./chunk-XEZPRJPV.js";
41
+ import {
42
+ roninWallet
43
+ } from "./chunk-CNTLU4ZV.js";
41
44
  import {
42
45
  safeWallet
43
46
  } from "./chunk-D3DCQ72J.js";
44
47
  import {
45
- safepalWallet
46
- } from "./chunk-XB2GFXBL.js";
48
+ oneKeyWallet
49
+ } from "./chunk-QS2J6MWB.js";
47
50
  import {
48
51
  safeheronWallet
49
52
  } from "./chunk-FQDX6QIP.js";
53
+ import {
54
+ safepalWallet
55
+ } from "./chunk-PQSJXOGA.js";
50
56
  import {
51
57
  subWallet
52
- } from "./chunk-5L2OLU3J.js";
58
+ } from "./chunk-WS4EM7AZ.js";
53
59
  import {
54
- tahoWallet
55
- } from "./chunk-PILSRRPJ.js";
60
+ ledgerWallet
61
+ } from "./chunk-Y6VY6E3L.js";
56
62
  import {
57
- talismanWallet
58
- } from "./chunk-R2GYJ376.js";
63
+ metaMaskWallet
64
+ } from "./chunk-TUK3HNKY.js";
59
65
  import {
60
66
  mewWallet
61
67
  } from "./chunk-ZCSUP7CX.js";
@@ -64,55 +70,55 @@ import {
64
70
  } from "./chunk-WKHTUEF5.js";
65
71
  import {
66
72
  okxWallet
67
- } from "./chunk-XUXFYTCV.js";
68
- import {
69
- metaMaskWallet
70
- } from "./chunk-3F5GNHAG.js";
73
+ } from "./chunk-5ZGE5SN5.js";
71
74
  import {
72
75
  omniWallet
73
76
  } from "./chunk-SVN7OEQR.js";
74
- import {
75
- oneKeyWallet
76
- } from "./chunk-QS2J6MWB.js";
77
77
  import {
78
78
  phantomWallet
79
79
  } from "./chunk-4PTY6XNU.js";
80
80
  import {
81
- rainbowWallet
82
- } from "./chunk-WH7S23VZ.js";
81
+ rabbyWallet
82
+ } from "./chunk-5SIHQ5GA.js";
83
83
  import {
84
- coreWallet
85
- } from "./chunk-OMKARG6Y.js";
84
+ foxWallet
85
+ } from "./chunk-TKXMLZXG.js";
86
86
  import {
87
- braveWallet
88
- } from "./chunk-KJWMF6GZ.js";
87
+ frameWallet
88
+ } from "./chunk-HXGBE5AH.js";
89
89
  import {
90
90
  frontierWallet
91
- } from "./chunk-OXWTS7HX.js";
91
+ } from "./chunk-LOEDYNWO.js";
92
+ import {
93
+ gateWallet
94
+ } from "./chunk-QGQISKXF.js";
92
95
  import {
93
96
  imTokenWallet
94
97
  } from "./chunk-5MVV7OVS.js";
95
98
  import {
96
99
  injectedWallet
97
100
  } from "./chunk-GUJHPWTU.js";
98
- import {
99
- gateWallet
100
- } from "./chunk-S2IWMXKX.js";
101
101
  import {
102
102
  kresusWallet
103
103
  } from "./chunk-X6T3CICZ.js";
104
104
  import {
105
- clvWallet
106
- } from "./chunk-2DWBVWFI.js";
105
+ bybitWallet
106
+ } from "./chunk-ZBQT5PV6.js";
107
107
  import {
108
- coinbaseWallet
109
- } from "./chunk-O77H3VWW.js";
108
+ clvWallet
109
+ } from "./chunk-ND5YG63V.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-R5GNFRXW.js";
112
+ } from "./chunk-3QXMJHL4.js";
113
+ import {
114
+ coreWallet
115
+ } from "./chunk-32O7HVBJ.js";
113
116
  import {
114
117
  dawnWallet
115
118
  } from "./chunk-QUFNIKMV.js";
119
+ import {
120
+ coinbaseWallet
121
+ } from "./chunk-O77H3VWW.js";
116
122
  import {
117
123
  desigWallet
118
124
  } from "./chunk-P4C7ZHIS.js";
@@ -120,20 +126,11 @@ import {
120
126
  enkryptWallet
121
127
  } from "./chunk-SJWHYD45.js";
122
128
  import {
123
- foxWallet
124
- } from "./chunk-M4SPCKW4.js";
125
- import {
126
- frameWallet
127
- } from "./chunk-HXGBE5AH.js";
129
+ bifrostWallet
130
+ } from "./chunk-AFONKDII.js";
128
131
  import {
129
132
  argentWallet
130
133
  } from "./chunk-NZ5G23JP.js";
131
- import {
132
- bifrostWallet
133
- } from "./chunk-PJRUHFBT.js";
134
- import {
135
- bitgetWallet
136
- } from "./chunk-3R3RNCGE.js";
137
134
  import {
138
135
  bitskiWallet
139
136
  } from "./chunk-IMZRCMZR.js";
@@ -143,12 +140,15 @@ import {
143
140
  import {
144
141
  bloomWallet
145
142
  } from "./chunk-NTGZF5BY.js";
143
+ import {
144
+ bitgetWallet
145
+ } from "./chunk-OUQ3ZF2W.js";
146
146
  import "./chunk-ZOLACFTK.js";
147
+ import "./chunk-ZDU3JFGR.js";
147
148
  import {
148
- bybitWallet
149
- } from "./chunk-BCXBFAL4.js";
149
+ braveWallet
150
+ } from "./chunk-KJWMF6GZ.js";
150
151
  import "./chunk-F3VCNZXS.js";
151
- import "./chunk-ZDU3JFGR.js";
152
152
  export {
153
153
  argentWallet,
154
154
  bifrostWallet,
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-3F5GNHAG.js";
4
+ } from "../chunk-TUK3HNKY.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  metaMaskWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-XUXFYTCV.js";
4
+ } from "../chunk-5ZGE5SN5.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  okxWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-WH7S23VZ.js";
4
+ } from "../chunk-EXN2ODSI.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  rainbowWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-NK3DYIAB.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-CNTLU4ZV.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  roninWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  safepalWallet
4
- } from "../chunk-XB2GFXBL.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-PQSJXOGA.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  safepalWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  subWallet
4
- } from "../chunk-5L2OLU3J.js";
5
- import "../chunk-F3VCNZXS.js";
4
+ } from "../chunk-WS4EM7AZ.js";
6
5
  import "../chunk-ZDU3JFGR.js";
6
+ import "../chunk-F3VCNZXS.js";
7
7
  export {
8
8
  subWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-MOAWRDEM.js";
4
+ } from "../chunk-UWU574XS.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  tokenPocketWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-MFS6NY6T.js";
4
+ } from "../chunk-BMHNXJZK.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  trustWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-OPO2D6GL.js";
4
+ } from "../chunk-G4DNQN67.js";
5
5
  import "../chunk-ZOLACFTK.js";
6
- import "../chunk-F3VCNZXS.js";
7
6
  import "../chunk-ZDU3JFGR.js";
7
+ import "../chunk-F3VCNZXS.js";
8
8
  export {
9
9
  zerionWallet
10
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -76,8 +76,8 @@
76
76
  "ua-parser-js": "^1.0.37",
77
77
  "uuid": "^9.0.1",
78
78
  "@funkit/api-base": "0.0.3",
79
- "@funkit/core": "1.0.16",
80
- "@funkit/wagmi-tools": "2.0.1"
79
+ "@funkit/wagmi-tools": "2.0.1",
80
+ "@funkit/core": "1.0.16"
81
81
  },
82
82
  "repository": {
83
83
  "type": "git",