@funkit/connect 4.1.4 → 4.1.6

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 (35) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/components/CopyAddress/CopyIconButton.d.ts +5 -0
  3. package/dist/components/FunNotificationBanner/FunNotificationBanner.css.d.ts +3 -0
  4. package/dist/components/FunNotificationBanner/FunNotificationBanner.d.ts +13 -0
  5. package/dist/components/FunNotificationBanner/FunNotificationBannerIcon.css.d.ts +1 -0
  6. package/dist/components/FunNotificationBanner/FunNotificationBannerIcon.d.ts +7 -0
  7. package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.css.d.ts +1 -0
  8. package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.d.ts +11 -0
  9. package/dist/components/Icons/CopyDoubleRoundedSquareIcon.d.ts +3 -1
  10. package/dist/index.js +953 -852
  11. package/dist/modals/CheckoutModal/MeshVerification.d.ts +4 -0
  12. package/dist/providers/FunkitMeshProvider.d.ts +1 -1
  13. package/dist/providers/GeneralWalletProvider.d.ts +8 -8
  14. package/dist/wallets/walletConnectors/index.js +60 -60
  15. package/package.json +5 -5
  16. package/dist/components/CopyAddress/CopyDisplayedAddress.d.ts +0 -5
  17. package/dist/components/CopyAddress/LabelledCopyAddressButton.d.ts +0 -6
  18. package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +0 -92
  19. package/dist/wallets/walletConnectors/chunk-3NC26XLM.js +0 -92
  20. package/dist/wallets/walletConnectors/chunk-3U3BMEH5.js +0 -94
  21. package/dist/wallets/walletConnectors/chunk-4UM4GTKZ.js +0 -103
  22. package/dist/wallets/walletConnectors/chunk-545L7Y4M.js +0 -69
  23. package/dist/wallets/walletConnectors/chunk-6LPM6LUQ.js +0 -110
  24. package/dist/wallets/walletConnectors/chunk-7GSNBOD3.js +0 -99
  25. package/dist/wallets/walletConnectors/chunk-ETTNDQQG.js +0 -100
  26. package/dist/wallets/walletConnectors/chunk-FRGSRLTS.js +0 -93
  27. package/dist/wallets/walletConnectors/chunk-HKV7EMYZ.js +0 -96
  28. package/dist/wallets/walletConnectors/chunk-IPOC2VJX.js +0 -106
  29. package/dist/wallets/walletConnectors/chunk-JXP2QPW7.js +0 -95
  30. package/dist/wallets/walletConnectors/chunk-KFFJPS5R.js +0 -96
  31. package/dist/wallets/walletConnectors/chunk-LEXSM5KI.js +0 -87
  32. package/dist/wallets/walletConnectors/chunk-MOOBCMMB.js +0 -70
  33. package/dist/wallets/walletConnectors/chunk-N2NIIUW6.js +0 -146
  34. package/dist/wallets/walletConnectors/chunk-W5O4YSZN.js +0 -98
  35. package/dist/wallets/walletConnectors/chunk-XYBEMO3C.js +0 -66
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 4.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1ba647b]
8
+ - @funkit/wagmi-tools@3.0.26
9
+
10
+ ## 4.1.5
11
+
12
+ ### Patch Changes
13
+
14
+ - 8215264: fix: improve 2FA input reset handling
15
+ - e6730e5: feat: improve 2FA flows in checkout verification
16
+ - de0dfda: feat(connect): apply onClose callback to FunCheckoutHistoryModal
17
+ - b52b733: feat(connect): redesign copy address button & copy address field
18
+ - Updated dependencies [e6730e5]
19
+ - Updated dependencies [1d20ace]
20
+ - @funkit/api-base@1.5.3
21
+ - @funkit/wagmi-tools@3.0.25
22
+ - @funkit/chains@0.1.2
23
+ - @funkit/core@2.3.4
24
+
3
25
  ## 4.1.4
4
26
 
5
27
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const CopyIconButton: ({ isAddressCopied, onCopyAddress, }: {
3
+ isAddressCopied: boolean;
4
+ onCopyAddress: () => void;
5
+ }) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const notificationBannerStyle: string;
2
+ export declare const showMoreButtonStyle: string;
3
+ export declare const additionalDescriptionTextStyle: string;
@@ -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: () => React.JSX.Element;
5
+ export declare const CopyDoubleRoundedSquareIcon: ({ size, }: {
6
+ size?: number;
7
+ }) => React.JSX.Element;