@ledgerhq/connect-kit 1.0.15 → 1.1.0-beta.0
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 +1 -2
- package/dist/umd/components/ExtensionUnavailableModal/ExtensionUnavailableModal.d.ts +1 -2
- package/dist/umd/components/Modal/Modal.d.ts +1 -1
- package/dist/umd/components/PlatformNotSupportedModal/PlatformNotSupportedModal.d.ts +1 -2
- package/dist/umd/index.js +5 -5
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -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.1.0-beta.0 - 2023-06-16
|
11
|
+
|
12
|
+
## 1.0.16 - 2023-04-04
|
13
|
+
### Changed
|
14
|
+
- Add campaign params to App Store link.
|
15
|
+
|
10
16
|
## 1.0.15 - 2023-03-16
|
11
17
|
### Changed
|
12
18
|
- Use App Store link in the Extension install button.
|
@@ -1,8 +1,7 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { ModalProps } from "../Modal/Modal";
|
3
2
|
export type ConnectWithLedgerLiveModalProps = {
|
4
3
|
isDesktop?: boolean;
|
5
4
|
uri?: string;
|
6
5
|
} & ModalProps;
|
7
|
-
declare const ConnectWithLedgerLiveModal: ({ isDesktop, uri, onClose, }: ConnectWithLedgerLiveModalProps) => JSX.Element;
|
6
|
+
declare const ConnectWithLedgerLiveModal: ({ isDesktop, uri, onClose, }: ConnectWithLedgerLiveModalProps) => import("react/jsx-runtime").JSX.Element;
|
8
7
|
export default ConnectWithLedgerLiveModal;
|
@@ -1,5 +1,4 @@
|
|
1
|
-
/// <reference types="react" />
|
2
1
|
import { ModalProps } from "../Modal/Modal";
|
3
2
|
export type ExtensionUnavailableModalProps = ModalProps;
|
4
|
-
declare const ExtensionUnavailableModal: ({ onClose, }: ExtensionUnavailableModalProps) => JSX.Element;
|
3
|
+
declare const ExtensionUnavailableModal: ({ onClose, }: ExtensionUnavailableModalProps) => import("react/jsx-runtime").JSX.Element;
|
5
4
|
export default ExtensionUnavailableModal;
|
@@ -5,5 +5,5 @@ export interface ModalProps {
|
|
5
5
|
onClose?: () => void;
|
6
6
|
children?: ReactElement | null;
|
7
7
|
}
|
8
|
-
export declare const Modal: ({ onClose, children }: ModalProps) => JSX.Element | null;
|
8
|
+
export declare const Modal: ({ onClose, children }: ModalProps) => import("react/jsx-runtime").JSX.Element | null;
|
9
9
|
export default Modal;
|