climb-onyx-gui 0.12.17 → 0.12.19
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 +14839 -14789
- package/dist/components/ErrorModal.d.ts +13 -0
- package/dist/components/ExportModal.d.ts +2 -2
- package/dist/utils/errorMessages.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface ErrorModalContentsProps {
|
|
2
|
+
error: Error | null;
|
|
3
|
+
message?: string;
|
|
4
|
+
}
|
|
5
|
+
interface ErrorModalProps extends ErrorModalContentsProps {
|
|
6
|
+
show: boolean;
|
|
7
|
+
onHide: () => void;
|
|
8
|
+
title: string;
|
|
9
|
+
}
|
|
10
|
+
declare function ErrorModalContents(props: ErrorModalContentsProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare function ErrorModal(props: ErrorModalProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default ErrorModal;
|
|
13
|
+
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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const s3BucketsMessage = "If you haven't already, please make sure you have clicked the 'Get Started With S3 Buckets' button under the 'S3 Buckets' tab on BRYN.";
|