@ledgerhq/connect-kit 1.0.5 → 1.0.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.
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## 1.0.6 - 2022-12-13
|
11
|
+
### Changed
|
12
|
+
- Redesign the ConnectWithLedgerLive to be visually simpler.
|
13
|
+
- Add back a call to hide the ConnectWithLedgerLive modal to the
|
14
|
+
WalletConnect connect event handler since it is still needed when scanning
|
15
|
+
the QR code.
|
16
|
+
|
10
17
|
## 1.0.5 - 2022-12-12
|
11
18
|
### Changed
|
12
19
|
- 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>;
|