@funkit/connect 3.4.2 → 3.4.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 (28) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/hooks/useWalletAssets.d.ts +3 -0
  3. package/dist/index.d.ts +2 -0
  4. package/dist/index.js +739 -692
  5. package/dist/modals/CheckoutModal/LoadingAccount.d.ts +1 -1
  6. package/dist/modals/CheckoutModal/TransferToken.d.ts +1 -1
  7. package/dist/providers/GeneralWalletProvider.d.ts +1 -0
  8. package/dist/utils/assets.d.ts +1 -0
  9. package/dist/wallets/walletConnectors/index.js +53 -53
  10. package/package.json +4 -4
  11. package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +0 -92
  12. package/dist/wallets/walletConnectors/chunk-4HKPVECK.js +0 -95
  13. package/dist/wallets/walletConnectors/chunk-4K3EKHXR.js +0 -71
  14. package/dist/wallets/walletConnectors/chunk-57UUMOOZ.js +0 -95
  15. package/dist/wallets/walletConnectors/chunk-5MVCKMZT.js +0 -94
  16. package/dist/wallets/walletConnectors/chunk-5NZLWT3Y.js +0 -73
  17. package/dist/wallets/walletConnectors/chunk-B5D7DYVV.js +0 -101
  18. package/dist/wallets/walletConnectors/chunk-HCKLWBE5.js +0 -98
  19. package/dist/wallets/walletConnectors/chunk-HLH777AC.js +0 -108
  20. package/dist/wallets/walletConnectors/chunk-HMDUVRZP.js +0 -98
  21. package/dist/wallets/walletConnectors/chunk-IR3YKU2N.js +0 -103
  22. package/dist/wallets/walletConnectors/chunk-J2BF4L2V.js +0 -87
  23. package/dist/wallets/walletConnectors/chunk-KDGMYRMC.js +0 -102
  24. package/dist/wallets/walletConnectors/chunk-OKUX4BC4.js +0 -66
  25. package/dist/wallets/walletConnectors/chunk-VU6B3HMD.js +0 -96
  26. package/dist/wallets/walletConnectors/chunk-WAMHUVNP.js +0 -96
  27. package/dist/wallets/walletConnectors/chunk-YRK6XWL6.js +0 -149
  28. package/dist/wallets/walletConnectors/chunk-ZCKNEKQQ.js +0 -110
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 3.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a47f50d: feat(connect): hide low balance assets on homepage
8
+ - 65e7b2a: feat(connect): expose useFunkitUserInfo hook
9
+ - 9f5c50e: fix(connect): fix customer callbacks
10
+
11
+ ## 3.4.3
12
+
13
+ ### Patch Changes
14
+
15
+ - 3f47f1d: feat(connect): disable amount input/options while quoting
16
+ - 2819f86: fix: always wait for account balance loaded
17
+ - c15a773: fix(connect): do not run risk assessment without walletAddress
18
+ - cc71e58: tooling: fix fingerprinting at build time
19
+ - 769bbf5: feat: direct deposit help guide linkout
20
+ - b66eb91: feat(connect): expose useConnectonStatus hook
21
+ - f6a1693: feat: support new emailConfirmationApprovalRequired mesh status
22
+ - Updated dependencies [f6a1693]
23
+ - @funkit/api-base@1.3.1
24
+ - @funkit/core@2.2.3
25
+ - @funkit/wagmi-tools@3.0.14
26
+
3
27
  ## 3.4.2
4
28
 
5
29
  ### Patch Changes
@@ -1,5 +1,8 @@
1
1
  import { KnownAssetBalanceInfo } from '../providers/GeneralWalletProvider';
2
2
  export type WalletAssets = Record<string, KnownAssetBalanceInfo>;
3
+ /**
4
+ * Returns wallet assets that are above the {@link ASSETS_LOW_VALUE_THRESHOLD} threshold with their total USD value.
5
+ */
3
6
  export declare const useWalletAssets: ({ enableRefetchInterval, refetchOnMount, }: {
4
7
  enableRefetchInterval?: boolean | undefined;
5
8
  refetchOnMount?: boolean | undefined;
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export { FunkitSocialLoginMethod, NATIVE_TOKEN } from './consts/funkit';
8
8
  export { cssObjectFromTheme } from './css/cssObjectFromTheme';
9
9
  export { cssStringFromTheme } from './css/cssStringFromTheme';
10
10
  export { PaymentMethod } from './domains/paymentMethods';
11
+ export { useConnectionStatus } from './hooks/useConnectionStatus';
11
12
  export type { Locale } from './locales/';
12
13
  export type { DisclaimerComponent } from './providers/AppContext';
13
14
  export type { AuthenticationConfig, AuthenticationStatus, } from './providers/AuthenticationContext';
@@ -20,6 +21,7 @@ export type { FunkitConnectChain as Chain } from './providers/FunkitConnectChain
20
21
  export type { Theme } from './providers/FunkitProvider';
21
22
  export { FunkitProvider } from './providers/FunkitProvider';
22
23
  export { useActiveTheme } from './providers/FunkitThemeProvider';
24
+ export { useFunkitUserInfo } from './providers/GeneralWalletProvider';
23
25
  export { useAccountModal, useChainModal, useConnectModal, } from './providers/ModalContext';
24
26
  export { darkTheme } from './themes/darkTheme';
25
27
  export { lightTheme } from './themes/lightTheme';