@funkit/connect 4.1.5 → 4.1.7

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,5 +1,21 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 4.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 58b3c8a: fix: remove incorrect payment method fallback for dYdX
8
+ - ee9706c: feat(connect): use OldCopyAddressButton on places with old design
9
+ - 138165c: feat(connect): always show 'you will pay'
10
+ - a20f753: feat(connect): preserve asset selection
11
+
12
+ ## 4.1.6
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [1ba647b]
17
+ - @funkit/wagmi-tools@3.0.26
18
+
3
19
  ## 4.1.5
4
20
 
5
21
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ /** Use this button only in the old design components, for the future we should use `CopyAddressButton` which has a new design */
3
+ export declare function OldCopyAddressButton({ address, }: {
4
+ address: string;
5
+ }): React.JSX.Element;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
3
3
  import { type PaymentMethodInfo } from '../../domains/paymentMethods';
4
4
  import type { FunkitActiveCheckoutItem } from '../../providers/FunkitCheckoutContext';
5
- import { type FunkitTextCustomizationsConfig, type FunkitUiCustomRecipientConfig, type FunkitUiCustomizationsConfig } from '../../providers/FunkitConfigContext';
5
+ import type { FunkitTextCustomizationsConfig, FunkitUiCustomRecipientConfig, FunkitUiCustomizationsConfig } from '../../providers/FunkitConfigContext';
6
6
  interface PaymentMethodSummaryProps {
7
7
  paymentMethodInfo: PaymentMethodInfo;
8
8
  walletAddress: string | undefined;