@funkit/connect 1.2.3 → 1.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.
Files changed (57) hide show
  1. package/CHANGELOG.md +11 -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 +1264 -1250
  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 +69 -69
  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,64 @@
1
1
  "use client";
2
+ import {
3
+ walletConnectWallet
4
+ } from "./chunk-ASPRR7T3.js";
2
5
  import {
3
6
  xdefiWallet
4
7
  } from "./chunk-JNZ3EYC7.js";
5
8
  import {
6
- ledgerWallet
7
- } from "./chunk-Y6VY6E3L.js";
9
+ zerionWallet
10
+ } from "./chunk-G4DNQN67.js";
8
11
  import {
9
- roninWallet
10
- } from "./chunk-NK3DYIAB.js";
12
+ talismanWallet
13
+ } from "./chunk-R2GYJ376.js";
11
14
  import {
12
- tokenPocketWallet
13
- } from "./chunk-MOAWRDEM.js";
15
+ subWallet
16
+ } from "./chunk-WS4EM7AZ.js";
14
17
  import {
15
- trustWallet
16
- } from "./chunk-MFS6NY6T.js";
18
+ tahoWallet
19
+ } from "./chunk-PILSRRPJ.js";
17
20
  import {
18
- uniswapWallet
19
- } from "./chunk-XRSY4JVH.js";
21
+ tokenPocketWallet
22
+ } from "./chunk-UWU574XS.js";
20
23
  import {
21
24
  tokenaryWallet
22
25
  } from "./chunk-MD5OPFAT.js";
23
26
  import {
24
- walletConnectWallet
25
- } from "./chunk-ASPRR7T3.js";
27
+ uniswapWallet
28
+ } from "./chunk-XRSY4JVH.js";
29
+ import {
30
+ trustWallet
31
+ } from "./chunk-BMHNXJZK.js";
26
32
  import {
27
33
  zealWallet
28
34
  } from "./chunk-Z5QFIFDP.js";
29
35
  import {
30
- zerionWallet
31
- } from "./chunk-OPO2D6GL.js";
32
- import {
33
- oneInchWallet
34
- } from "./chunk-LCPIZUR3.js";
36
+ phantomWallet
37
+ } from "./chunk-4PTY6XNU.js";
35
38
  import {
36
39
  rabbyWallet
37
40
  } from "./chunk-5SIHQ5GA.js";
38
41
  import {
39
42
  ramperWallet
40
43
  } from "./chunk-XEZPRJPV.js";
44
+ import {
45
+ rainbowWallet
46
+ } from "./chunk-EXN2ODSI.js";
41
47
  import {
42
48
  safeWallet
43
49
  } from "./chunk-D3DCQ72J.js";
44
50
  import {
45
- safepalWallet
46
- } from "./chunk-XB2GFXBL.js";
51
+ roninWallet
52
+ } from "./chunk-CNTLU4ZV.js";
47
53
  import {
48
54
  safeheronWallet
49
55
  } from "./chunk-FQDX6QIP.js";
50
56
  import {
51
- subWallet
52
- } from "./chunk-5L2OLU3J.js";
53
- import {
54
- tahoWallet
55
- } from "./chunk-PILSRRPJ.js";
57
+ safepalWallet
58
+ } from "./chunk-PQSJXOGA.js";
56
59
  import {
57
- talismanWallet
58
- } from "./chunk-R2GYJ376.js";
60
+ kresusWallet
61
+ } from "./chunk-X6T3CICZ.js";
59
62
  import {
60
63
  mewWallet
61
64
  } from "./chunk-ZCSUP7CX.js";
@@ -64,31 +67,31 @@ import {
64
67
  } from "./chunk-WKHTUEF5.js";
65
68
  import {
66
69
  okxWallet
67
- } from "./chunk-XUXFYTCV.js";
68
- import {
69
- metaMaskWallet
70
- } from "./chunk-3F5GNHAG.js";
70
+ } from "./chunk-5ZGE5SN5.js";
71
71
  import {
72
72
  omniWallet
73
73
  } from "./chunk-SVN7OEQR.js";
74
74
  import {
75
- oneKeyWallet
76
- } from "./chunk-QS2J6MWB.js";
75
+ metaMaskWallet
76
+ } from "./chunk-TUK3HNKY.js";
77
77
  import {
78
- phantomWallet
79
- } from "./chunk-4PTY6XNU.js";
78
+ oneInchWallet
79
+ } from "./chunk-LCPIZUR3.js";
80
80
  import {
81
- rainbowWallet
82
- } from "./chunk-WH7S23VZ.js";
81
+ oneKeyWallet
82
+ } from "./chunk-QS2J6MWB.js";
83
83
  import {
84
- coreWallet
85
- } from "./chunk-OMKARG6Y.js";
84
+ enkryptWallet
85
+ } from "./chunk-SJWHYD45.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";
@@ -96,59 +99,56 @@ import {
96
99
  injectedWallet
97
100
  } from "./chunk-GUJHPWTU.js";
98
101
  import {
99
- gateWallet
100
- } from "./chunk-S2IWMXKX.js";
101
- import {
102
- kresusWallet
103
- } from "./chunk-X6T3CICZ.js";
102
+ ledgerWallet
103
+ } from "./chunk-Y6VY6E3L.js";
104
104
  import {
105
- clvWallet
106
- } from "./chunk-2DWBVWFI.js";
105
+ bybitWallet
106
+ } from "./chunk-ZBQT5PV6.js";
107
107
  import {
108
108
  coinbaseWallet
109
109
  } from "./chunk-O77H3VWW.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-R5GNFRXW.js";
112
+ } from "./chunk-3QXMJHL4.js";
113
113
  import {
114
- dawnWallet
115
- } from "./chunk-QUFNIKMV.js";
114
+ bitverseWallet
115
+ } from "./chunk-NL4I7WOT.js";
116
+ import {
117
+ coreWallet
118
+ } from "./chunk-32O7HVBJ.js";
116
119
  import {
117
120
  desigWallet
118
121
  } from "./chunk-P4C7ZHIS.js";
119
122
  import {
120
- enkryptWallet
121
- } from "./chunk-SJWHYD45.js";
123
+ dawnWallet
124
+ } from "./chunk-QUFNIKMV.js";
122
125
  import {
123
126
  foxWallet
124
- } from "./chunk-M4SPCKW4.js";
125
- import {
126
- frameWallet
127
- } from "./chunk-HXGBE5AH.js";
127
+ } from "./chunk-TKXMLZXG.js";
128
128
  import {
129
129
  argentWallet
130
130
  } from "./chunk-NZ5G23JP.js";
131
- import {
132
- bifrostWallet
133
- } from "./chunk-PJRUHFBT.js";
134
131
  import {
135
132
  bitgetWallet
136
- } from "./chunk-3R3RNCGE.js";
133
+ } from "./chunk-OUQ3ZF2W.js";
134
+ import {
135
+ bloomWallet
136
+ } from "./chunk-NTGZF5BY.js";
137
137
  import {
138
138
  bitskiWallet
139
139
  } from "./chunk-IMZRCMZR.js";
140
140
  import {
141
- bitverseWallet
142
- } from "./chunk-NL4I7WOT.js";
143
- import {
144
- bloomWallet
145
- } from "./chunk-NTGZF5BY.js";
141
+ bifrostWallet
142
+ } from "./chunk-AFONKDII.js";
146
143
  import "./chunk-ZOLACFTK.js";
147
144
  import {
148
- bybitWallet
149
- } from "./chunk-BCXBFAL4.js";
150
- import "./chunk-F3VCNZXS.js";
145
+ braveWallet
146
+ } from "./chunk-KJWMF6GZ.js";
147
+ import {
148
+ clvWallet
149
+ } from "./chunk-ND5YG63V.js";
151
150
  import "./chunk-ZDU3JFGR.js";
151
+ import "./chunk-F3VCNZXS.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.4",
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",