@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.
Files changed (34) hide show
  1. package/CHANGELOG.md +25 -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/wallets/walletConnectors/chunk-25VW5TZP.js +92 -0
  14. package/dist/wallets/walletConnectors/chunk-3NC26XLM.js +92 -0
  15. package/dist/wallets/walletConnectors/chunk-3U3BMEH5.js +94 -0
  16. package/dist/wallets/walletConnectors/chunk-4UM4GTKZ.js +103 -0
  17. package/dist/wallets/walletConnectors/chunk-545L7Y4M.js +69 -0
  18. package/dist/wallets/walletConnectors/chunk-6LPM6LUQ.js +110 -0
  19. package/dist/wallets/walletConnectors/chunk-7GSNBOD3.js +99 -0
  20. package/dist/wallets/walletConnectors/chunk-ETTNDQQG.js +100 -0
  21. package/dist/wallets/walletConnectors/chunk-FRGSRLTS.js +93 -0
  22. package/dist/wallets/walletConnectors/chunk-HKV7EMYZ.js +96 -0
  23. package/dist/wallets/walletConnectors/chunk-IPOC2VJX.js +106 -0
  24. package/dist/wallets/walletConnectors/chunk-JXP2QPW7.js +95 -0
  25. package/dist/wallets/walletConnectors/chunk-KFFJPS5R.js +96 -0
  26. package/dist/wallets/walletConnectors/chunk-LEXSM5KI.js +87 -0
  27. package/dist/wallets/walletConnectors/chunk-MOOBCMMB.js +70 -0
  28. package/dist/wallets/walletConnectors/chunk-N2NIIUW6.js +146 -0
  29. package/dist/wallets/walletConnectors/chunk-W5O4YSZN.js +98 -0
  30. package/dist/wallets/walletConnectors/chunk-XYBEMO3C.js +66 -0
  31. package/dist/wallets/walletConnectors/index.js +59 -59
  32. package/package.json +6 -6
  33. package/dist/components/CopyAddress/CopyDisplayedAddress.d.ts +0 -5
  34. 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,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;