@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 +16 -0
- package/dist/components/CopyAddress/OldCopyAddressButton.d.ts +5 -0
- package/dist/components/FunTransactionSummary/PaymentMethodSummary.d.ts +1 -1
- package/dist/index.js +901 -841
- package/dist/providers/GeneralWalletProvider.d.ts +8 -8
- package/dist/wallets/walletConnectors/index.js +68 -68
- package/package.json +4 -4
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
|
|
@@ -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 {
|
|
5
|
+
import type { FunkitTextCustomizationsConfig, FunkitUiCustomRecipientConfig, FunkitUiCustomizationsConfig } from '../../providers/FunkitConfigContext';
|
|
6
6
|
interface PaymentMethodSummaryProps {
|
|
7
7
|
paymentMethodInfo: PaymentMethodInfo;
|
|
8
8
|
walletAddress: string | undefined;
|