@ledgerhq/connect-kit 1.0.11 → 1.0.12
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 +6 -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,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## Unreleased
|
9
9
|
|
10
|
+
## 1.0.12 - 2023-03-13
|
11
|
+
### Changed
|
12
|
+
- Remove the "Need a Ledger?" section from the modals.
|
13
|
+
- Replace Connect with Ledger Extension.
|
14
|
+
- Center the modal.
|
15
|
+
|
10
16
|
## 1.0.11 - 2023-02-24
|
11
17
|
### Changed
|
12
18
|
- 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;
|