@funkit/connect 6.14.23-next.1 → 6.14.23-next.2
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 +19 -4
- package/dist/components/AnimatedWidthWrapper/AnimatedWidthWrapper.d.ts +4 -0
- package/dist/components/FunInput/FunInput.d.ts +1 -0
- package/dist/consts/assets.d.ts +1 -0
- package/dist/index.js +1160 -1019
- package/dist/utils/flags/config.d.ts +17 -1
- package/dist/wallets/walletConnectors/index.js +15 -15
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 6.14.23-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @funkit/core@2.3.60-next.2
|
|
9
|
+
- @funkit/wagmi-tools@3.0.83-next.2
|
|
10
|
+
|
|
3
11
|
## 6.14.23-next.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
6
14
|
|
|
7
|
-
-
|
|
15
|
+
- chore: bumping version to test
|
|
16
|
+
- Updated dependencies
|
|
8
17
|
- @funkit/api-base@1.12.15-next.1
|
|
18
|
+
- @funkit/chains@0.4.4-next.1
|
|
9
19
|
- @funkit/core@2.3.60-next.1
|
|
10
20
|
- @funkit/wagmi-tools@3.0.83-next.1
|
|
11
21
|
|
|
@@ -14,16 +24,21 @@
|
|
|
14
24
|
### Patch Changes
|
|
15
25
|
|
|
16
26
|
- 3824315: support solana as target asset
|
|
17
|
-
- chore: no changes, just triggering release
|
|
27
|
+
- ba6634c: chore: no changes, just triggering release
|
|
28
|
+
- 6420fcb: feat(connect): add hyperbeat yeild token icons
|
|
29
|
+
- 54fdecc: feat(connect): only fetch checkout history as needed
|
|
18
30
|
- 002ac44: feat(connect): add behype icon
|
|
31
|
+
- 3250234: only fetch user ip info when logged in
|
|
32
|
+
- af1b322: feat(connect): add fallback for wallet asset logo
|
|
19
33
|
- c76619e: Migrate from Lerna to Turborepo for improved build performance and developer experience. This change removes automatic builds during package installation (`prepare` scripts) and introduces intelligent caching. No changes to public APIs or package functionality.
|
|
20
34
|
- Updated dependencies [3824315]
|
|
21
|
-
- Updated dependencies
|
|
35
|
+
- Updated dependencies [ba6634c]
|
|
36
|
+
- Updated dependencies [af1b322]
|
|
22
37
|
- Updated dependencies [c76619e]
|
|
23
38
|
- @funkit/fun-relay@2.1.10-next.0
|
|
24
39
|
- @funkit/api-base@1.12.15-next.0
|
|
25
|
-
- @funkit/chains@0.4.4-next.0
|
|
26
40
|
- @funkit/core@2.3.60-next.0
|
|
41
|
+
- @funkit/chains@0.4.4-next.0
|
|
27
42
|
- @funkit/utils@1.1.17-next.0
|
|
28
43
|
- @funkit/wagmi-tools@3.0.83-next.0
|
|
29
44
|
|
|
@@ -23,6 +23,7 @@ export interface FunInputProps<T = HTMLInputElement | HTMLTextAreaElement> {
|
|
|
23
23
|
/** Color meant for prefix & suffix elements. Defaults to secondaryText. */
|
|
24
24
|
adornmentColor?: BoxProps['color'];
|
|
25
25
|
textWeight?: BoxProps['fontWeight'];
|
|
26
|
+
ignoreFontSize?: boolean;
|
|
26
27
|
overrideBorderWidth?: BoxProps['borderWidth'];
|
|
27
28
|
overrideBackground?: BoxProps['background'];
|
|
28
29
|
borderRadius?: BoxProps['borderRadius'];
|
package/dist/consts/assets.d.ts
CHANGED