@funkit/connect 4.1.3 → 4.1.5
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 +25 -0
- package/dist/components/CopyAddress/CopyIconButton.d.ts +5 -0
- package/dist/components/FunNotificationBanner/FunNotificationBanner.css.d.ts +3 -0
- package/dist/components/FunNotificationBanner/FunNotificationBanner.d.ts +13 -0
- package/dist/components/FunNotificationBanner/FunNotificationBannerIcon.css.d.ts +1 -0
- package/dist/components/FunNotificationBanner/FunNotificationBannerIcon.d.ts +7 -0
- package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.css.d.ts +1 -0
- package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.d.ts +11 -0
- package/dist/components/Icons/CopyDoubleRoundedSquareIcon.d.ts +3 -1
- package/dist/index.js +953 -852
- package/dist/modals/CheckoutModal/MeshVerification.d.ts +4 -0
- package/dist/providers/FunkitMeshProvider.d.ts +1 -1
- package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +92 -0
- package/dist/wallets/walletConnectors/chunk-3NC26XLM.js +92 -0
- package/dist/wallets/walletConnectors/chunk-3U3BMEH5.js +94 -0
- package/dist/wallets/walletConnectors/chunk-4UM4GTKZ.js +103 -0
- package/dist/wallets/walletConnectors/chunk-545L7Y4M.js +69 -0
- package/dist/wallets/walletConnectors/chunk-6LPM6LUQ.js +110 -0
- package/dist/wallets/walletConnectors/chunk-7GSNBOD3.js +99 -0
- package/dist/wallets/walletConnectors/chunk-ETTNDQQG.js +100 -0
- package/dist/wallets/walletConnectors/chunk-FRGSRLTS.js +93 -0
- package/dist/wallets/walletConnectors/chunk-HKV7EMYZ.js +96 -0
- package/dist/wallets/walletConnectors/chunk-IPOC2VJX.js +106 -0
- package/dist/wallets/walletConnectors/chunk-JXP2QPW7.js +95 -0
- package/dist/wallets/walletConnectors/chunk-KFFJPS5R.js +96 -0
- package/dist/wallets/walletConnectors/chunk-LEXSM5KI.js +87 -0
- package/dist/wallets/walletConnectors/chunk-MOOBCMMB.js +70 -0
- package/dist/wallets/walletConnectors/chunk-N2NIIUW6.js +146 -0
- package/dist/wallets/walletConnectors/chunk-W5O4YSZN.js +98 -0
- package/dist/wallets/walletConnectors/chunk-XYBEMO3C.js +66 -0
- package/dist/wallets/walletConnectors/index.js +59 -59
- package/package.json +6 -6
- package/dist/components/CopyAddress/CopyDisplayedAddress.d.ts +0 -5
- package/dist/components/CopyAddress/LabelledCopyAddressButton.d.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 4.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8215264: fix: improve 2FA input reset handling
|
|
8
|
+
- e6730e5: feat: improve 2FA flows in checkout verification
|
|
9
|
+
- de0dfda: feat(connect): apply onClose callback to FunCheckoutHistoryModal
|
|
10
|
+
- b52b733: feat(connect): redesign copy address button & copy address field
|
|
11
|
+
- Updated dependencies [e6730e5]
|
|
12
|
+
- Updated dependencies [1d20ace]
|
|
13
|
+
- @funkit/api-base@1.5.3
|
|
14
|
+
- @funkit/wagmi-tools@3.0.25
|
|
15
|
+
- @funkit/chains@0.1.2
|
|
16
|
+
- @funkit/core@2.3.4
|
|
17
|
+
|
|
18
|
+
## 4.1.4
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [0f74a0c]
|
|
23
|
+
- @funkit/utils@1.0.5
|
|
24
|
+
- @funkit/api-base@1.5.2
|
|
25
|
+
- @funkit/core@2.3.3
|
|
26
|
+
- @funkit/wagmi-tools@3.0.24
|
|
27
|
+
|
|
3
28
|
## 4.1.3
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React, { type ReactNode } from 'react';
|
|
2
|
+
import { type FunNotificationBannerIconProps } from './FunNotificationBannerIcon';
|
|
3
|
+
interface FunNotificationBannerProps extends FunNotificationBannerIconProps {
|
|
4
|
+
icon: ReactNode;
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
/** Additional text-like content clarifying the description */
|
|
8
|
+
additionalDescription: ReactNode;
|
|
9
|
+
children?: ReactNode;
|
|
10
|
+
onClose?: () => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const FunNotificationBanner: ({ iconUrl, status, fallbackIconUrl, description, additionalDescription, title, children, onClose, }: FunNotificationBannerProps) => React.JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const statusIcon: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface FunNotificationBannerIconProps {
|
|
3
|
+
iconUrl: string;
|
|
4
|
+
fallbackIconUrl?: string;
|
|
5
|
+
status?: 'success' | 'error' | 'processing' | 'pending';
|
|
6
|
+
}
|
|
7
|
+
export declare const FunNotificationBannerIcon: ({ status, iconUrl, fallbackIconUrl, }: FunNotificationBannerIconProps) => React.JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const wrapperStyles: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface FunNotificationBannerSummaryProps {
|
|
3
|
+
data: {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string | string[];
|
|
6
|
+
externalUrl?: string;
|
|
7
|
+
renderLinkOnlyOnIcon?: boolean;
|
|
8
|
+
}[];
|
|
9
|
+
}
|
|
10
|
+
export declare const FunNotificationBannerSummary: ({ data, }: FunNotificationBannerSummaryProps) => React.JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -2,4 +2,6 @@ import React from 'react';
|
|
|
2
2
|
/**
|
|
3
3
|
* Copy icon that looks like 2 rounded squares on top of each other
|
|
4
4
|
*/
|
|
5
|
-
export declare const CopyDoubleRoundedSquareIcon: (
|
|
5
|
+
export declare const CopyDoubleRoundedSquareIcon: ({ size, }: {
|
|
6
|
+
size?: number;
|
|
7
|
+
}) => React.JSX.Element;
|