@ledgerhq/connect-kit 1.0.5 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## 1.0.7 - 2022-12-13
|
11
|
+
### Changed
|
12
|
+
- Close the ConnectWithLedgerLive modal when clicking outside.
|
13
|
+
- Make the cursor a pointer for the "Install" link on the
|
14
|
+
ConnectWithLedgerLive modal.
|
15
|
+
- Fix spacing around the "or" line on the ConnectWithLedgerLive modal
|
16
|
+
|
17
|
+
## 1.0.6 - 2022-12-13
|
18
|
+
### Changed
|
19
|
+
- Redesign the ConnectWithLedgerLive to be visually simpler.
|
20
|
+
- Add back a call to hide the ConnectWithLedgerLive modal to the
|
21
|
+
WalletConnect connect event handler since it is still needed when scanning
|
22
|
+
the QR code.
|
23
|
+
|
10
24
|
## 1.0.5 - 2022-12-12
|
11
25
|
### Changed
|
12
26
|
- Return a valid provider in case the Connect extension is supported but not
|
@@ -1,18 +1,24 @@
|
|
1
|
+
export declare const devices: {
|
2
|
+
notPhone: string;
|
3
|
+
smallPhone: string;
|
4
|
+
};
|
1
5
|
export declare const ModalWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
2
6
|
export declare const ModalContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
3
7
|
export declare const CloseButton: import("styled-components").StyledComponent<"button", any, {}, never>;
|
4
8
|
export declare const ModalHeader: import("styled-components").StyledComponent<"div", any, {}, never>;
|
5
|
-
export declare const ModalSection: import("styled-components").StyledComponent<"div", any, {
|
9
|
+
export declare const ModalSection: import("styled-components").StyledComponent<"div", any, {
|
10
|
+
textAlign?: "center" | "inherit" | undefined;
|
11
|
+
}, never>;
|
6
12
|
export declare const ModalTitle: import("styled-components").StyledComponent<"h2", any, {}, never>;
|
7
13
|
export declare const ModalSubtitle: import("styled-components").StyledComponent<"h3", any, {}, never>;
|
8
|
-
export declare const ModalText: import("styled-components").StyledComponent<"p", any, {
|
14
|
+
export declare const ModalText: import("styled-components").StyledComponent<"p", any, {
|
15
|
+
noMargin?: boolean | undefined;
|
16
|
+
}, never>;
|
9
17
|
export type VariantOptions = {
|
10
18
|
variant?: string;
|
11
19
|
};
|
12
20
|
export declare const ModalButton: import("styled-components").StyledComponent<"button", any, {
|
13
21
|
variant: string;
|
22
|
+
extraMargin?: boolean | undefined;
|
14
23
|
}, never>;
|
15
|
-
export declare const
|
16
|
-
direction: "row" | "column";
|
17
|
-
gap: number;
|
18
|
-
}, never>;
|
24
|
+
export declare const Link: import("styled-components").StyledComponent<"a", any, {}, never>;
|
@@ -1,5 +1,8 @@
|
|
1
1
|
export declare const CustomBackground: import("styled-components").StyledComponent<"div", any, {}, never>;
|
2
|
-
export declare const ContentWrapper: import("styled-components").StyledComponent<"div", any, {
|
2
|
+
export declare const ContentWrapper: import("styled-components").StyledComponent<"div", any, {
|
3
|
+
textAlign?: "center" | "inherit" | undefined;
|
4
|
+
}, never>;
|
3
5
|
export declare const BuyNowButton: import("styled-components").StyledComponent<"button", any, {
|
4
6
|
variant: string;
|
7
|
+
extraMargin?: boolean | undefined;
|
5
8
|
}, never>;
|