@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.
- package/CHANGELOG.md +11 -0
- package/dist/{chunk-UDJBGTFV.js → chunk-FRT63PFR.js} +5 -3
- package/dist/{chunk-FECCKVZV.js → chunk-I24HX4XM.js} +27 -0
- package/dist/{chunk-RRG76BJM.js → chunk-ICLRFHOV.js} +5 -3
- package/dist/components/Box/Box.d.ts +38 -38
- package/dist/components/Dialog/DialogContent.d.ts +1 -2
- package/dist/components/FunKeyValue/FunKeyValue.d.ts +3 -1
- package/dist/components/FunkitProvider/FunkitConfigContext.d.ts +3 -1
- package/dist/components/FunkitProvider/FunkitProvider.d.ts +2 -0
- package/dist/components/FunkitProvider/FunkitThemeProvider.d.ts +168 -8
- package/dist/css/sprinkles.css.d.ts +122 -42
- package/dist/index.css +929 -839
- package/dist/index.js +1264 -1250
- package/dist/themes/baseTheme.d.ts +3 -1
- package/dist/themes/baseTheme.js +1 -1
- package/dist/themes/darkTheme.d.ts +42 -2
- package/dist/themes/darkTheme.js +2 -2
- package/dist/themes/lightTheme.d.ts +42 -2
- package/dist/themes/lightTheme.js +2 -2
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +69 -69
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +3 -3
- package/dist/wallets/walletConnectors/chunk-2DWBVWFI.js +0 -87
- package/dist/wallets/walletConnectors/chunk-3F5GNHAG.js +0 -182
- package/dist/wallets/walletConnectors/chunk-3R3RNCGE.js +0 -100
- package/dist/wallets/walletConnectors/chunk-5L2OLU3J.js +0 -102
- package/dist/wallets/walletConnectors/chunk-BCXBFAL4.js +0 -98
- package/dist/wallets/walletConnectors/chunk-M4SPCKW4.js +0 -66
- package/dist/wallets/walletConnectors/chunk-MFS6NY6T.js +0 -105
- package/dist/wallets/walletConnectors/chunk-MOAWRDEM.js +0 -95
- package/dist/wallets/walletConnectors/chunk-NK3DYIAB.js +0 -92
- package/dist/wallets/walletConnectors/chunk-OMKARG6Y.js +0 -94
- package/dist/wallets/walletConnectors/chunk-OPO2D6GL.js +0 -102
- package/dist/wallets/walletConnectors/chunk-OXWTS7HX.js +0 -98
- package/dist/wallets/walletConnectors/chunk-PJRUHFBT.js +0 -71
- package/dist/wallets/walletConnectors/chunk-R5GNFRXW.js +0 -96
- package/dist/wallets/walletConnectors/chunk-S2IWMXKX.js +0 -94
- package/dist/wallets/walletConnectors/chunk-WH7S23VZ.js +0 -73
- package/dist/wallets/walletConnectors/chunk-XB2GFXBL.js +0 -107
- 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;
|
package/dist/themes/baseTheme.js
CHANGED
|
@@ -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;
|
package/dist/themes/darkTheme.js
CHANGED
|
@@ -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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bifrostWallet
|
|
4
|
-
} from "../chunk-
|
|
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-
|
|
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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
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-
|
|
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
|
-
|
|
7
|
-
} from "./chunk-
|
|
9
|
+
zerionWallet
|
|
10
|
+
} from "./chunk-G4DNQN67.js";
|
|
8
11
|
import {
|
|
9
|
-
|
|
10
|
-
} from "./chunk-
|
|
12
|
+
talismanWallet
|
|
13
|
+
} from "./chunk-R2GYJ376.js";
|
|
11
14
|
import {
|
|
12
|
-
|
|
13
|
-
} from "./chunk-
|
|
15
|
+
subWallet
|
|
16
|
+
} from "./chunk-WS4EM7AZ.js";
|
|
14
17
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
18
|
+
tahoWallet
|
|
19
|
+
} from "./chunk-PILSRRPJ.js";
|
|
17
20
|
import {
|
|
18
|
-
|
|
19
|
-
} from "./chunk-
|
|
21
|
+
tokenPocketWallet
|
|
22
|
+
} from "./chunk-UWU574XS.js";
|
|
20
23
|
import {
|
|
21
24
|
tokenaryWallet
|
|
22
25
|
} from "./chunk-MD5OPFAT.js";
|
|
23
26
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
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
|
-
|
|
31
|
-
} from "./chunk-
|
|
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
|
-
|
|
46
|
-
} from "./chunk-
|
|
51
|
+
roninWallet
|
|
52
|
+
} from "./chunk-CNTLU4ZV.js";
|
|
47
53
|
import {
|
|
48
54
|
safeheronWallet
|
|
49
55
|
} from "./chunk-FQDX6QIP.js";
|
|
50
56
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
53
|
-
import {
|
|
54
|
-
tahoWallet
|
|
55
|
-
} from "./chunk-PILSRRPJ.js";
|
|
57
|
+
safepalWallet
|
|
58
|
+
} from "./chunk-PQSJXOGA.js";
|
|
56
59
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
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-
|
|
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
|
-
|
|
76
|
-
} from "./chunk-
|
|
75
|
+
metaMaskWallet
|
|
76
|
+
} from "./chunk-TUK3HNKY.js";
|
|
77
77
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
78
|
+
oneInchWallet
|
|
79
|
+
} from "./chunk-LCPIZUR3.js";
|
|
80
80
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-QS2J6MWB.js";
|
|
83
83
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
84
|
+
enkryptWallet
|
|
85
|
+
} from "./chunk-SJWHYD45.js";
|
|
86
86
|
import {
|
|
87
|
-
|
|
88
|
-
} from "./chunk-
|
|
87
|
+
frameWallet
|
|
88
|
+
} from "./chunk-HXGBE5AH.js";
|
|
89
89
|
import {
|
|
90
90
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
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
|
-
|
|
100
|
-
} from "./chunk-
|
|
101
|
-
import {
|
|
102
|
-
kresusWallet
|
|
103
|
-
} from "./chunk-X6T3CICZ.js";
|
|
102
|
+
ledgerWallet
|
|
103
|
+
} from "./chunk-Y6VY6E3L.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
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-
|
|
112
|
+
} from "./chunk-3QXMJHL4.js";
|
|
113
113
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
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
|
-
|
|
121
|
-
} from "./chunk-
|
|
123
|
+
dawnWallet
|
|
124
|
+
} from "./chunk-QUFNIKMV.js";
|
|
122
125
|
import {
|
|
123
126
|
foxWallet
|
|
124
|
-
} from "./chunk-
|
|
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-
|
|
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
|
-
|
|
142
|
-
} from "./chunk-
|
|
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
|
-
|
|
149
|
-
} from "./chunk-
|
|
150
|
-
import
|
|
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-
|
|
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-
|
|
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-
|
|
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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
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-
|
|
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-
|
|
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
|
+
"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/
|
|
80
|
-
"@funkit/
|
|
79
|
+
"@funkit/wagmi-tools": "2.0.1",
|
|
80
|
+
"@funkit/core": "1.0.16"
|
|
81
81
|
},
|
|
82
82
|
"repository": {
|
|
83
83
|
"type": "git",
|