@ledgerhq/connect-kit 1.1.10 → 1.1.12
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -0
- package/dist/umd/index.d.ts +1 -1
- package/dist/umd/index.js +44 -817
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -2
- package/dist/umd/hooks/useAnalytics.d.ts +0 -11
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.1.12 - 2024-02-01
|
11
|
+
Export SupportedProviderImplementations
|
12
|
+
|
13
|
+
## 1.1.11 - 2024-01-31
|
14
|
+
Remove analytics
|
15
|
+
|
10
16
|
## 1.1.10 - 2024-01-24
|
11
17
|
Fix connect-kit dependencies
|
12
18
|
Update connect-kit README
|
package/dist/umd/index.d.ts
CHANGED
@@ -71,4 +71,4 @@ declare function checkSupport(options: CheckSupportOptions): CheckSupportResult;
|
|
71
71
|
|
72
72
|
declare const enableDebugLogs: () => void;
|
73
73
|
|
74
|
-
export { EthereumProvider, SupportedProviders, checkSupport, enableDebugLogs, getProvider };
|
74
|
+
export { EthereumProvider, SupportedProviderImplementations, SupportedProviders, checkSupport, enableDebugLogs, getProvider };
|