@funkit/connect 6.0.7 → 6.2.0

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 (27) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/dist/components/FunPayments/FunPaymentMethods.d.ts +3 -0
  3. package/dist/components/Icons/PayPalIcon.d.ts +5 -0
  4. package/dist/index.js +1512 -1422
  5. package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +3 -0
  6. package/dist/providers/FunkitConfigContext.d.ts +5 -0
  7. package/dist/utils/flags/config.d.ts +2 -27
  8. package/dist/wallets/walletConnectors/chunk-2GJQ4XZQ.js +87 -0
  9. package/dist/wallets/walletConnectors/chunk-3CICVJUN.js +70 -0
  10. package/dist/wallets/walletConnectors/chunk-5W7VDOCL.js +99 -0
  11. package/dist/wallets/walletConnectors/chunk-AFXHGWBH.js +94 -0
  12. package/dist/wallets/walletConnectors/chunk-CJGUM55H.js +92 -0
  13. package/dist/wallets/walletConnectors/chunk-CNPKISHN.js +66 -0
  14. package/dist/wallets/walletConnectors/chunk-EC6CHBSZ.js +110 -0
  15. package/dist/wallets/walletConnectors/chunk-J3LI3FYZ.js +93 -0
  16. package/dist/wallets/walletConnectors/chunk-JCHN6A47.js +95 -0
  17. package/dist/wallets/walletConnectors/chunk-KIDC67XJ.js +96 -0
  18. package/dist/wallets/walletConnectors/chunk-LNEC5RNX.js +98 -0
  19. package/dist/wallets/walletConnectors/chunk-Q3H3TRBS.js +100 -0
  20. package/dist/wallets/walletConnectors/chunk-QLVVUKYB.js +92 -0
  21. package/dist/wallets/walletConnectors/chunk-RKPCWHXL.js +106 -0
  22. package/dist/wallets/walletConnectors/chunk-UIASLGLV.js +69 -0
  23. package/dist/wallets/walletConnectors/chunk-UYGJO62F.js +218 -0
  24. package/dist/wallets/walletConnectors/chunk-VWCLFMWJ.js +96 -0
  25. package/dist/wallets/walletConnectors/chunk-ZSI5N4VV.js +103 -0
  26. package/dist/wallets/walletConnectors/index.js +48 -48
  27. package/package.json +19 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 6.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e897b5a: Enable meld and fiat payment methods for all hyperbeat users
8
+
9
+ ### Patch Changes
10
+
11
+ - e9fefa3: Enable TypeScript declaration maps for improved development experience
12
+
13
+ Adds declarationMap: true to tsconfig.json files across packages to generate declaration map files, which provide better IDE support for go-to-definition and debugging in TypeScript projects that consume these packages.
14
+
15
+ - dbdd08d: updated storybook and improved performance
16
+ - 71908e3: show estTotalUsd in confirmation screen
17
+ - 9f1ffd4: add paypal option
18
+ - c4215cd: fix(connect): fix scrolling ability calculation in Withdrawal modal
19
+ - Updated dependencies [e9fefa3]
20
+ - @funkit/api-base@1.9.16
21
+ - @funkit/core@2.3.40
22
+ - @funkit/wagmi-tools@3.0.62
23
+
24
+ ## 6.1.0
25
+
26
+ ### Minor Changes
27
+
28
+ - 0804213: Add configurable transaction digest display for fee breakdown summary with chain-dependent formatting
29
+
30
+ ### Patch Changes
31
+
32
+ - f25fb68: feat(connect): transaction flow updates
33
+ - 2a960b7: do not fetch userip if apikey is not available
34
+
3
35
  ## 6.0.7
4
36
 
5
37
  ### Patch Changes
@@ -25,4 +25,7 @@ export declare function AddPaymentMethodItem({ paymentMethod, isClickable, isAct
25
25
  paymentMethod: PaymentMethod;
26
26
  dynamicLimit?: string;
27
27
  }): React.JSX.Element | null | undefined;
28
+ export declare function PayPalPaymentMethodItem({ isActive, isClickable, onClick, isLoading, }: BasePaymentMethodItemProps & {
29
+ isLoading: boolean;
30
+ }): React.JSX.Element;
28
31
  export {};
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare function PayPalIcon({ size, fill, }: {
3
+ size?: number;
4
+ fill?: string;
5
+ }): React.JSX.Element;