jaml-ui 0.25.1 → 0.25.2
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/components/JamlCurator.d.ts +1 -6
- package/dist/hooks/useAnalyzer.d.ts +2 -2
- package/dist/index.js +2066 -2070
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export interface JamlCuratorProps {
|
|
3
|
-
motely: typeof Motely | null;
|
|
4
|
-
motelyWasmUrl: string;
|
|
5
|
-
}
|
|
6
|
-
export declare function JamlCurator({ motely, motelyWasmUrl }: JamlCuratorProps): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export declare function JamlCurator(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Motely } from '
|
|
1
|
+
import { Motely } from '../motelyBoot.js';
|
|
2
2
|
import { AnalyzerAnteView } from '../components/AnalyzerExplorer.js';
|
|
3
3
|
export type AnalyzerStatus = "idle" | "running" | "done" | "error";
|
|
4
4
|
export type MotelyJsRunState = {
|
|
@@ -14,7 +14,7 @@ export interface AnalyzerLive {
|
|
|
14
14
|
deck: string;
|
|
15
15
|
stake: string;
|
|
16
16
|
}
|
|
17
|
-
export declare function useAnalyzer(
|
|
17
|
+
export declare function useAnalyzer(): {
|
|
18
18
|
antes: AnalyzerAnteView[];
|
|
19
19
|
status: AnalyzerStatus;
|
|
20
20
|
error: string | null;
|