@funkit/connect 6.14.23-next.0 → 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 CHANGED
@@ -1,20 +1,44 @@
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
+
11
+ ## 6.14.23-next.1
12
+
13
+ ### Patch Changes
14
+
15
+ - chore: bumping version to test
16
+ - Updated dependencies
17
+ - @funkit/api-base@1.12.15-next.1
18
+ - @funkit/chains@0.4.4-next.1
19
+ - @funkit/core@2.3.60-next.1
20
+ - @funkit/wagmi-tools@3.0.83-next.1
21
+
3
22
  ## 6.14.23-next.0
4
23
 
5
24
  ### Patch Changes
6
25
 
7
26
  - 3824315: support solana as target asset
8
- - 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
9
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
10
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.
11
34
  - Updated dependencies [3824315]
12
- - Updated dependencies
35
+ - Updated dependencies [ba6634c]
36
+ - Updated dependencies [af1b322]
13
37
  - Updated dependencies [c76619e]
14
38
  - @funkit/fun-relay@2.1.10-next.0
15
39
  - @funkit/api-base@1.12.15-next.0
16
- - @funkit/chains@0.4.4-next.0
17
40
  - @funkit/core@2.3.60-next.0
41
+ - @funkit/chains@0.4.4-next.0
18
42
  - @funkit/utils@1.1.17-next.0
19
43
  - @funkit/wagmi-tools@3.0.83-next.0
20
44
 
@@ -0,0 +1,4 @@
1
+ import React, { type ReactNode } from 'react';
2
+ export declare function AnimatedWidthWrapper({ children }: {
3
+ children: ReactNode;
4
+ }): React.JSX.Element;
@@ -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'];
@@ -1,2 +1,3 @@
1
1
  export declare const ASSET_LOGO_SRCS: Record<string, string>;
2
2
  export declare const FALLBACK_ASSET = "https://sdk-cdn.fun.xyz/images/dollar_circle.png";
3
+ export declare function getAssetLogoSrc(symbol: string): string;