@funkit/connect 5.5.16 → 5.5.18

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.
@@ -122,6 +122,10 @@ export declare const useActiveTheme: () => {
122
122
  fiatAccountGradientFrom: string;
123
123
  fiatAccountGradientTo: string;
124
124
  };
125
+ dimensions: {
126
+ modalBottomBarButtonHeight: string;
127
+ modalTopBarHeight: string;
128
+ };
125
129
  fonts: {
126
130
  body: string;
127
131
  };
@@ -131,6 +135,7 @@ export declare const useActiveTheme: () => {
131
135
  semibold: string;
132
136
  bold: string;
133
137
  heavy: string;
138
+ modalTopbarTitle: string;
134
139
  };
135
140
  fontSize: {
136
141
  '10': {
@@ -173,6 +178,18 @@ export declare const useActiveTheme: () => {
173
178
  fontSize: string;
174
179
  lineHeight: string;
175
180
  };
181
+ modalTopbarSubtitle: {
182
+ fontSize: string;
183
+ lineHeight: string;
184
+ };
185
+ modalTopbarTitle: {
186
+ fontSize: string;
187
+ lineHeight: string;
188
+ };
189
+ modalBottomBarButtonText: {
190
+ fontSize: string;
191
+ lineHeight: string;
192
+ };
176
193
  };
177
194
  radii: {
178
195
  actionButton: string;
@@ -202,6 +219,12 @@ export declare const useActiveTheme: () => {
202
219
  qrCode: string;
203
220
  buttonFocusedShadow: string;
204
221
  };
222
+ spacing: {
223
+ modalBaseHorizontalPadding: string;
224
+ modalBottomHorizontalPadding: string;
225
+ modalPaddingBottom: string;
226
+ modalTopBarVerticalTextSpacing: string;
227
+ };
205
228
  blurs: {
206
229
  modalOverlay: string;
207
230
  };
@@ -311,6 +334,10 @@ export declare const useActiveTheme: () => {
311
334
  fiatAccountGradientFrom: string;
312
335
  fiatAccountGradientTo: string;
313
336
  };
337
+ dimensions: {
338
+ modalBottomBarButtonHeight: string;
339
+ modalTopBarHeight: string;
340
+ };
314
341
  fonts: {
315
342
  body: string;
316
343
  };
@@ -320,6 +347,7 @@ export declare const useActiveTheme: () => {
320
347
  semibold: string;
321
348
  bold: string;
322
349
  heavy: string;
350
+ modalTopbarTitle: string;
323
351
  };
324
352
  fontSize: {
325
353
  '10': {
@@ -362,6 +390,18 @@ export declare const useActiveTheme: () => {
362
390
  fontSize: string;
363
391
  lineHeight: string;
364
392
  };
393
+ modalTopbarSubtitle: {
394
+ fontSize: string;
395
+ lineHeight: string;
396
+ };
397
+ modalTopbarTitle: {
398
+ fontSize: string;
399
+ lineHeight: string;
400
+ };
401
+ modalBottomBarButtonText: {
402
+ fontSize: string;
403
+ lineHeight: string;
404
+ };
365
405
  };
366
406
  radii: {
367
407
  actionButton: string;
@@ -391,6 +431,12 @@ export declare const useActiveTheme: () => {
391
431
  qrCode: string;
392
432
  buttonFocusedShadow: string;
393
433
  };
434
+ spacing: {
435
+ modalBaseHorizontalPadding: string;
436
+ modalBottomHorizontalPadding: string;
437
+ modalPaddingBottom: string;
438
+ modalTopBarVerticalTextSpacing: string;
439
+ };
394
440
  blurs: {
395
441
  modalOverlay: string;
396
442
  };
@@ -498,6 +544,10 @@ export declare const useActiveTheme: () => {
498
544
  fiatAccountGradientFrom: string;
499
545
  fiatAccountGradientTo: string;
500
546
  };
547
+ dimensions: {
548
+ modalBottomBarButtonHeight: string;
549
+ modalTopBarHeight: string;
550
+ };
501
551
  fonts: {
502
552
  body: string;
503
553
  };
@@ -507,6 +557,7 @@ export declare const useActiveTheme: () => {
507
557
  semibold: string;
508
558
  bold: string;
509
559
  heavy: string;
560
+ modalTopbarTitle: string;
510
561
  };
511
562
  fontSize: {
512
563
  '10': {
@@ -549,6 +600,18 @@ export declare const useActiveTheme: () => {
549
600
  fontSize: string;
550
601
  lineHeight: string;
551
602
  };
603
+ modalTopbarSubtitle: {
604
+ fontSize: string;
605
+ lineHeight: string;
606
+ };
607
+ modalTopbarTitle: {
608
+ fontSize: string;
609
+ lineHeight: string;
610
+ };
611
+ modalBottomBarButtonText: {
612
+ fontSize: string;
613
+ lineHeight: string;
614
+ };
552
615
  };
553
616
  radii: {
554
617
  actionButton: string;
@@ -578,6 +641,12 @@ export declare const useActiveTheme: () => {
578
641
  qrCode: string;
579
642
  buttonFocusedShadow: string;
580
643
  };
644
+ spacing: {
645
+ modalBaseHorizontalPadding: string;
646
+ modalBottomHorizontalPadding: string;
647
+ modalPaddingBottom: string;
648
+ modalTopBarVerticalTextSpacing: string;
649
+ };
581
650
  blurs: {
582
651
  modalOverlay: string;
583
652
  };
@@ -15,12 +15,14 @@ interface BaseThemeOptions {
15
15
  customFontFamily?: string;
16
16
  customFontSizings?: Partial<ThemeVars['fontSize']>;
17
17
  customBorderRadiuses?: Partial<ThemeVars['radii']>;
18
+ customDimensions?: Partial<ThemeVars['dimensions']>;
19
+ customSpacings?: Partial<ThemeVars['spacing']>;
18
20
  fontSizing?: FontSizeType;
19
21
  borderRadius?: RadiusScale;
20
22
  fontStack?: FontStack;
21
23
  overlayBlur?: Blurs;
22
24
  }
23
- export declare const baseTheme: ({ borderRadius, fontStack, fontSizing, customFontFamily, customFontWeights, customFontSizings, customBorderRadiuses, overlayBlur, }: BaseThemeOptions) => Pick<ThemeVars, "radii" | "fonts" | "fontWeight" | "fontSize" | "blurs">;
25
+ export declare const baseTheme: ({ borderRadius, fontStack, fontSizing, customFontFamily, customFontWeights, customFontSizings, customBorderRadiuses, customDimensions, customSpacings, overlayBlur, }: BaseThemeOptions) => Pick<ThemeVars, "radii" | "dimensions" | "fonts" | "fontWeight" | "fontSize" | "blurs" | "spacing">;
24
26
  export interface AccentColor {
25
27
  accentColor: string;
26
28
  accentColorForeground: string;
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  baseTheme,
4
4
  systemFontStack
5
- } from "../chunk-R2UFCJL7.js";
5
+ } from "../chunk-5XBODEZO.js";
6
6
  export {
7
7
  baseTheme,
8
8
  systemFontStack
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-DMCSGHKQ.js";
5
- import "../chunk-R2UFCJL7.js";
4
+ } from "../chunk-VBAZNW44.js";
5
+ import "../chunk-5XBODEZO.js";
6
6
  export {
7
7
  darkTheme
8
8
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-UQVBCTN3.js";
5
- import "../chunk-R2UFCJL7.js";
4
+ } from "../chunk-H5N35KZJ.js";
5
+ import "../chunk-5XBODEZO.js";
6
6
  export {
7
7
  lightTheme
8
8
  };
@@ -74,6 +74,10 @@ export declare const flagConfig: {
74
74
  }[];
75
75
  }[];
76
76
  };
77
+ withdrawal_chains_and_assets: {
78
+ type: "string";
79
+ default_value: string;
80
+ };
77
81
  enable_token_transfer_universal_deposit_address: {
78
82
  type: "boolean";
79
83
  default_value: true;
@@ -1,40 +1,37 @@
1
1
  "use client";
2
+ import {
3
+ uniswapWallet
4
+ } from "./chunk-LH7BMNFZ.js";
2
5
  import {
3
6
  xdefiWallet
4
7
  } from "./chunk-NO7XMBB5.js";
5
- import {
6
- zealWallet
7
- } from "./chunk-JROWU5BP.js";
8
8
  import {
9
9
  zerionWallet
10
10
  } from "./chunk-ETTNDQQG.js";
11
11
  import {
12
- subWallet
13
- } from "./chunk-4UM4GTKZ.js";
14
- import {
15
- tahoWallet
16
- } from "./chunk-6P2EMPZI.js";
12
+ safepalWallet
13
+ } from "./chunk-6LPM6LUQ.js";
17
14
  import {
18
15
  talismanWallet
19
16
  } from "./chunk-ABFSXBE6.js";
17
+ import {
18
+ tahoWallet
19
+ } from "./chunk-6P2EMPZI.js";
20
20
  import {
21
21
  tokenPocketWallet
22
22
  } from "./chunk-FRGSRLTS.js";
23
- import {
24
- tokenaryWallet
25
- } from "./chunk-SLOIIJGP.js";
26
23
  import {
27
24
  trustWallet
28
25
  } from "./chunk-IPOC2VJX.js";
29
26
  import {
30
- uniswapWallet
31
- } from "./chunk-LH7BMNFZ.js";
27
+ tokenaryWallet
28
+ } from "./chunk-SLOIIJGP.js";
32
29
  import {
33
30
  walletConnectWallet
34
31
  } from "./chunk-NP5QGWNL.js";
35
32
  import {
36
- phantomWallet
37
- } from "./chunk-ZSVTX6EK.js";
33
+ zealWallet
34
+ } from "./chunk-JROWU5BP.js";
38
35
  import {
39
36
  rabbyWallet
40
37
  } from "./chunk-BVX4XGNP.js";
@@ -42,35 +39,35 @@ import {
42
39
  rainbowWallet
43
40
  } from "./chunk-MOOBCMMB.js";
44
41
  import {
45
- ramperWallet
46
- } from "./chunk-PIUNLQJG.js";
42
+ oneKeyWallet
43
+ } from "./chunk-4AD7VI2P.js";
47
44
  import {
48
45
  roninWallet
49
46
  } from "./chunk-25VW5TZP.js";
50
47
  import {
51
- safeWallet
52
- } from "./chunk-BQQQL6UD.js";
48
+ ramperWallet
49
+ } from "./chunk-PIUNLQJG.js";
53
50
  import {
54
51
  safeheronWallet
55
52
  } from "./chunk-R6RWZRFF.js";
56
53
  import {
57
- safepalWallet
58
- } from "./chunk-6LPM6LUQ.js";
54
+ safeWallet
55
+ } from "./chunk-BQQQL6UD.js";
59
56
  import {
60
- ledgerWallet
61
- } from "./chunk-BRBKM4PW.js";
57
+ subWallet
58
+ } from "./chunk-4UM4GTKZ.js";
62
59
  import {
63
60
  metaMaskWallet
64
61
  } from "./chunk-N2NIIUW6.js";
65
62
  import {
66
63
  mewWallet
67
64
  } from "./chunk-V57WLZEE.js";
65
+ import {
66
+ kresusWallet
67
+ } from "./chunk-MJXPRJZT.js";
68
68
  import {
69
69
  okxWallet
70
70
  } from "./chunk-3U3BMEH5.js";
71
- import {
72
- oktoWallet
73
- } from "./chunk-ADIXAKUL.js";
74
71
  import {
75
72
  oneInchWallet
76
73
  } from "./chunk-OESTDX6I.js";
@@ -78,20 +75,23 @@ import {
78
75
  omniWallet
79
76
  } from "./chunk-7CUY5G6R.js";
80
77
  import {
81
- oneKeyWallet
82
- } from "./chunk-4AD7VI2P.js";
78
+ oktoWallet
79
+ } from "./chunk-ADIXAKUL.js";
83
80
  import {
84
- foxWallet
85
- } from "./chunk-XYBEMO3C.js";
81
+ phantomWallet
82
+ } from "./chunk-ZSVTX6EK.js";
86
83
  import {
87
84
  frameWallet
88
85
  } from "./chunk-ZMYVTWDF.js";
89
- import {
90
- frontierWallet
91
- } from "./chunk-HKV7EMYZ.js";
92
86
  import {
93
87
  gateWallet
94
88
  } from "./chunk-3NC26XLM.js";
89
+ import {
90
+ coin98Wallet
91
+ } from "./chunk-KFFJPS5R.js";
92
+ import {
93
+ frontierWallet
94
+ } from "./chunk-HKV7EMYZ.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
@@ -99,29 +99,29 @@ import {
99
99
  injectedWallet
100
100
  } from "./chunk-VCVVV2K7.js";
101
101
  import {
102
- kresusWallet
103
- } from "./chunk-MJXPRJZT.js";
104
- import {
105
- braveWallet
106
- } from "./chunk-PB254NQ4.js";
102
+ ledgerWallet
103
+ } from "./chunk-BRBKM4PW.js";
107
104
  import {
108
105
  clvWallet
109
106
  } from "./chunk-LEXSM5KI.js";
110
107
  import {
111
- coinbaseWallet
112
- } from "./chunk-H4IRCEZN.js";
113
- import {
114
- coin98Wallet
115
- } from "./chunk-KFFJPS5R.js";
108
+ bybitWallet
109
+ } from "./chunk-W5O4YSZN.js";
116
110
  import {
117
111
  coreWallet
118
112
  } from "./chunk-JXP2QPW7.js";
113
+ import {
114
+ coinbaseWallet
115
+ } from "./chunk-H4IRCEZN.js";
119
116
  import {
120
117
  dawnWallet
121
118
  } from "./chunk-LN7OD5EC.js";
122
119
  import {
123
120
  desigWallet
124
121
  } from "./chunk-CTU6JCOK.js";
122
+ import {
123
+ foxWallet
124
+ } from "./chunk-XYBEMO3C.js";
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-SJTXS4ZW.js";
@@ -129,23 +129,23 @@ import {
129
129
  argentWallet
130
130
  } from "./chunk-WSQ2YJO2.js";
131
131
  import {
132
- bifrostWallet
133
- } from "./chunk-545L7Y4M.js";
132
+ bitskiWallet
133
+ } from "./chunk-P74YPRF6.js";
134
+ import {
135
+ bloomWallet
136
+ } from "./chunk-S27IADFU.js";
137
+ import {
138
+ braveWallet
139
+ } from "./chunk-PB254NQ4.js";
134
140
  import {
135
141
  bitgetWallet
136
142
  } from "./chunk-7GSNBOD3.js";
137
- import {
138
- bitskiWallet
139
- } from "./chunk-P74YPRF6.js";
140
143
  import {
141
144
  bitverseWallet
142
145
  } from "./chunk-3HZRRP4Y.js";
143
146
  import {
144
- bloomWallet
145
- } from "./chunk-S27IADFU.js";
146
- import {
147
- bybitWallet
148
- } from "./chunk-W5O4YSZN.js";
147
+ bifrostWallet
148
+ } from "./chunk-545L7Y4M.js";
149
149
  import "./chunk-WRA2DVJ7.js";
150
150
  import "./chunk-23WIEY36.js";
151
151
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "5.5.16",
3
+ "version": "5.5.18",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -44,7 +44,7 @@
44
44
  "wagmi": "2.x"
45
45
  },
46
46
  "devDependencies": {
47
- "@aws-sdk/client-cloudfront": "3.645.0",
47
+ "@aws-sdk/client-cloudfront": "3.858.0",
48
48
  "@aws-sdk/client-s3": "3.840.0",
49
49
  "@chromatic-com/storybook": "^4.0.1",
50
50
  "@meshconnect/node-api": "2.0.14",
@@ -88,12 +88,12 @@
88
88
  "ua-parser-js": "^1.0.37",
89
89
  "use-debounce": "^10.0.5",
90
90
  "uuid": "^9.0.1",
91
- "@funkit/chains": "0.3.3",
92
91
  "@funkit/api-base": "1.9.8",
93
- "@funkit/core": "2.3.30",
92
+ "@funkit/core": "2.3.31",
94
93
  "@funkit/utils": "1.1.6",
95
- "@funkit/fun-relay": "0.1.10",
96
- "@funkit/wagmi-tools": "3.0.52"
94
+ "@funkit/wagmi-tools": "3.0.53",
95
+ "@funkit/fun-relay": "0.1.11",
96
+ "@funkit/chains": "0.3.4"
97
97
  },
98
98
  "repository": {
99
99
  "type": "git",