climb-onyx-gui 0.12.17 → 0.12.18
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/dist/climb-onyx-gui.js +14803 -14757
- package/dist/components/ErrorModal.d.ts +12 -0
- package/dist/components/ExportModal.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface ErrorModalContentsProps {
|
|
2
|
+
error: Error | null;
|
|
3
|
+
}
|
|
4
|
+
interface ErrorModalProps extends ErrorModalContentsProps {
|
|
5
|
+
show: boolean;
|
|
6
|
+
onHide: () => void;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
declare function ErrorModalContents(props: ErrorModalContentsProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare function ErrorModal(props: ErrorModalProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default ErrorModal;
|
|
12
|
+
export { ErrorModalContents };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExportHandlerProps } from '../interfaces';
|
|
2
2
|
|
|
3
|
-
interface ExportModalProps
|
|
3
|
+
interface ExportModalProps {
|
|
4
4
|
show: boolean;
|
|
5
5
|
onHide: () => void;
|
|
6
6
|
defaultFileNamePrefix: string;
|