@ledgerhq/connect-kit 1.0.11 → 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
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
- withQrCode?: boolean;
4
+ isDesktop?: boolean;
5
5
  uri?: string;
6
6
  } & ModalProps;
7
- declare const ConnectWithLedgerLiveModal: ({ withQrCode, uri, onClose, }: ConnectWithLedgerLiveModalProps) => JSX.Element;
7
+ declare const ConnectWithLedgerLiveModal: ({ isDesktop, uri, onClose, }: ConnectWithLedgerLiveModalProps) => JSX.Element;
8
8
  export default ConnectWithLedgerLiveModal;