climb-onyx-gui 0.14.0-dev.10 → 0.14.0-dev.11
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 +1 -1
- package/dist/interfaces.d.ts +2 -2
- package/package.json +1 -1
package/dist/climb-onyx-gui.js
CHANGED
|
@@ -24260,7 +24260,7 @@ function uz({
|
|
|
24260
24260
|
e,
|
|
24261
24261
|
":",
|
|
24262
24262
|
" ",
|
|
24263
|
-
t ? /* @__PURE__ */ Te("
|
|
24263
|
+
t ? /* @__PURE__ */ Te("span", { className: "onyx-text-pink font-monospace", children: t }) : /* @__PURE__ */ Te("span", { className: "text-light", children: "None" })
|
|
24264
24264
|
] });
|
|
24265
24265
|
}
|
|
24266
24266
|
function cz(e) {
|
package/dist/interfaces.d.ts
CHANGED
|
@@ -38,8 +38,8 @@ export interface ExportHandlerProps {
|
|
|
38
38
|
statusToken: {
|
|
39
39
|
status: ExportStatus;
|
|
40
40
|
};
|
|
41
|
-
setExportStatus: (
|
|
42
|
-
setExportProgress: (
|
|
41
|
+
setExportStatus: (status: ExportStatus) => void;
|
|
42
|
+
setExportProgress: (progress: number) => void;
|
|
43
43
|
setExportProgressMessage: (message: string) => void;
|
|
44
44
|
setExportError: (error: Error) => void;
|
|
45
45
|
}
|