@ledgerhq/connect-kit 1.0.6 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 1.0.8 - 2022-12-21
11
+ ### Changed
12
+ - Expose WalletConnect's connector property as optional in the
13
+ EthereumProvider type for integration into web3-onboard.
14
+
15
+ ## 1.0.7 - 2022-12-13
16
+ ### Changed
17
+ - Close the ConnectWithLedgerLive modal when clicking outside.
18
+ - Make the cursor a pointer for the "Install" link on the
19
+ ConnectWithLedgerLive modal.
20
+ - Fix spacing around the "or" line on the ConnectWithLedgerLive modal
21
+
10
22
  ## 1.0.6 - 2022-12-13
11
23
  ### Changed
12
24
  - Redesign the ConnectWithLedgerLive to be visually simpler.
@@ -4,6 +4,7 @@ type EthereumRequestPayload = {
4
4
  };
5
5
  interface EthereumProvider {
6
6
  providers?: EthereumProvider[];
7
+ connector?: unknown;
7
8
  request<T = unknown>(args: EthereumRequestPayload): Promise<T>;
8
9
  disconnect?: {
9
10
  (): Promise<void>;