@funkit/connect 3.0.1 → 3.0.3
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 +24 -0
- package/dist/components/Dialog/Dialog.css.d.ts +1 -0
- package/dist/components/Dialog/Dialog.d.ts +2 -1
- package/dist/components/FunButton/FunIconButton.d.ts +1 -0
- package/dist/config/getDefaultConfig.d.ts +428 -3148
- package/dist/consts/customers.d.ts +1 -0
- package/dist/index.css +9 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +80 -40
- package/dist/providers/FunkitCheckoutContext.d.ts +2 -0
- package/dist/utils/flags/config.d.ts +4 -1
- package/dist/utils/flags/index.d.ts +1 -0
- package/dist/wallets/walletConnectors/chunk-25VW5TZP.js +92 -0
- package/dist/wallets/walletConnectors/chunk-4HKPVECK.js +95 -0
- package/dist/wallets/walletConnectors/chunk-4K3EKHXR.js +71 -0
- package/dist/wallets/walletConnectors/chunk-57UUMOOZ.js +95 -0
- package/dist/wallets/walletConnectors/chunk-5MVCKMZT.js +94 -0
- package/dist/wallets/walletConnectors/chunk-5NZLWT3Y.js +73 -0
- package/dist/wallets/walletConnectors/chunk-B5D7DYVV.js +101 -0
- package/dist/wallets/walletConnectors/chunk-HCKLWBE5.js +98 -0
- package/dist/wallets/walletConnectors/chunk-HLH777AC.js +108 -0
- package/dist/wallets/walletConnectors/chunk-HMDUVRZP.js +98 -0
- package/dist/wallets/walletConnectors/chunk-IR3YKU2N.js +103 -0
- package/dist/wallets/walletConnectors/chunk-J2BF4L2V.js +87 -0
- package/dist/wallets/walletConnectors/chunk-KDGMYRMC.js +102 -0
- package/dist/wallets/walletConnectors/chunk-OKUX4BC4.js +66 -0
- package/dist/wallets/walletConnectors/chunk-VU6B3HMD.js +96 -0
- package/dist/wallets/walletConnectors/chunk-WAMHUVNP.js +96 -0
- package/dist/wallets/walletConnectors/chunk-YRK6XWL6.js +149 -0
- package/dist/wallets/walletConnectors/chunk-ZCKNEKQQ.js +110 -0
- package/dist/wallets/walletConnectors/index.js +67 -67
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 3.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bf61cb4: feat(connect): show powered by tagline based on feature flag
|
|
8
|
+
- 9eed208: fix: custom chains do not show up well in chain modal
|
|
9
|
+
- Updated dependencies [1836ec2]
|
|
10
|
+
- @funkit/api-base@1.1.0
|
|
11
|
+
- @funkit/core@2.1.5
|
|
12
|
+
- @funkit/wagmi-tools@3.0.7
|
|
13
|
+
|
|
14
|
+
## 3.0.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 71be090: feat: new flag show_powered_tagline
|
|
19
|
+
- 24eef94: feat: add modalTitleMeta config option to Checkout configuration
|
|
20
|
+
- f0b1a1f: feat: add separate coinbase exchange icon
|
|
21
|
+
- 769a8d1: fix: hanging focus state on disconnect button
|
|
22
|
+
- 3842a42: chore: update wagmi dependencies
|
|
23
|
+
- Updated dependencies [3842a42]
|
|
24
|
+
- @funkit/wagmi-tools@3.0.6
|
|
25
|
+
- @funkit/core@2.1.4
|
|
26
|
+
|
|
3
27
|
## 3.0.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -16,7 +16,7 @@ interface DialogProps {
|
|
|
16
16
|
*/
|
|
17
17
|
export declare function Dialog({ children, onClose, open, titleId, isHidden, isSmartCloseable, }: DialogProps): React.JSX.Element;
|
|
18
18
|
export declare namespace Dialog {
|
|
19
|
-
var Title: ({ title, hasCloseButton: hasCloseButtonProp, isCloseDisabled, onClose, hasBackButton: hasBackButtonProp, isBackDisabled, onBack, backAnimation, skipBackDelay, countdownSeconds, countdownKey, delayCountdownReturnByBuffer, dydxHideBack, }: DialogTitleProps) => React.JSX.Element;
|
|
19
|
+
var Title: ({ title, titleMeta, hasCloseButton: hasCloseButtonProp, isCloseDisabled, onClose, hasBackButton: hasBackButtonProp, isBackDisabled, onBack, backAnimation, skipBackDelay, countdownSeconds, countdownKey, delayCountdownReturnByBuffer, dydxHideBack, }: DialogTitleProps) => React.JSX.Element;
|
|
20
20
|
var Content: ({ children, fullHeight, paddingLeft, paddingBottom, className, withTopDivider, withBottomDivider, id, ...boxProps }: DialogContentProps) => React.JSX.Element;
|
|
21
21
|
var BottomSection: ({ paddingX, ...boxProps }: Omit<BoxProps, "children">) => React.JSX.Element;
|
|
22
22
|
var BottomBar: ({ topSection, actionButtonProps, bottomSection, }: import("../FunBottomBar/FunBottomBar").FunBottomBarProps) => React.JSX.Element;
|
|
@@ -31,6 +31,7 @@ interface DialogContentProps extends BoxProps {
|
|
|
31
31
|
}
|
|
32
32
|
export interface DialogTitleProps {
|
|
33
33
|
title?: string;
|
|
34
|
+
titleMeta?: string;
|
|
34
35
|
hasCloseButton?: boolean;
|
|
35
36
|
isCloseDisabled?: boolean;
|
|
36
37
|
onClose?: (p?: any) => void;
|
|
@@ -4,6 +4,7 @@ export interface FunIconButtonProps {
|
|
|
4
4
|
onClick?: () => void;
|
|
5
5
|
onMouseEnter?: () => void;
|
|
6
6
|
onMouseLeave?: () => void;
|
|
7
|
+
onBlur?: () => void;
|
|
7
8
|
icon: React.ReactNode;
|
|
8
9
|
/** Total height and width of the clickable area (including borders) */
|
|
9
10
|
size?: BoxProps['height'];
|