@ledgerhq/connect-kit 1.0.11 → 1.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/dist/umd/components/ConnectWithLedgerLiveModal/ConnectWithLedgerLiveModal.d.ts +2 -2
- package/dist/umd/index.js +9 -9
- package/dist/umd/index.js.map +1 -1
- package/package.json +3 -3
- package/dist/umd/components/NeedALedgerSection/NeedALedgerSection.d.ts +0 -4
- package/dist/umd/components/NeedALedgerSection/NeedALedgerSection.styles.d.ts +0 -8
- package/dist/umd/components/NeedALedgerSection/index.d.ts +0 -1
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## 1.0.13 - 2023-03-13
|
11
|
+
|
12
|
+
## 1.0.12 - 2023-03-13
|
13
|
+
### Changed
|
14
|
+
- Remove the "Need a Ledger?" section from the modals.
|
15
|
+
- Replace Connect with Ledger Extension.
|
16
|
+
- Center the modal.
|
17
|
+
|
10
18
|
## 1.0.11 - 2023-02-24
|
11
19
|
### Changed
|
12
20
|
- Enable Connect support for Polygon (chainId 137).
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { ModalProps } from "../Modal/Modal";
|
3
3
|
export type ConnectWithLedgerLiveModalProps = {
|
4
|
-
|
4
|
+
isDesktop?: boolean;
|
5
5
|
uri?: string;
|
6
6
|
} & ModalProps;
|
7
|
-
declare const ConnectWithLedgerLiveModal: ({
|
7
|
+
declare const ConnectWithLedgerLiveModal: ({ isDesktop, uri, onClose, }: ConnectWithLedgerLiveModalProps) => JSX.Element;
|
8
8
|
export default ConnectWithLedgerLiveModal;
|