jaml-ui 0.25.2 → 0.26.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/dist/chunks/{ui-5cBy3zAm.js → ui-BRMCKSX4.js} +44 -44
- package/dist/chunks/{ui-5cBy3zAm.js.map → ui-BRMCKSX4.js.map} +1 -1
- package/dist/components/JamlIde.d.ts +3 -3
- package/dist/components/JamlIdeToolbar.d.ts +1 -1
- package/dist/components/Jamlyzer.d.ts +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3684 -3548
- package/dist/index.js.map +1 -1
- package/dist/ui.js +2 -2
- package/package.json +1 -1
- package/dist/components/Jimbolate.d.ts +0 -7
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface JamlyzerProps {
|
|
2
|
+
jaml: string;
|
|
3
|
+
onTest: (seed: string) => void;
|
|
4
|
+
result: "idle" | "match" | "nomatch" | "running" | "error";
|
|
5
|
+
error?: string | null;
|
|
6
|
+
}
|
|
7
|
+
export declare function Jamlyzer({ jaml, onTest, result, error }: JamlyzerProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { JamlAnalyzerFullscreen, type JamlAnalyzerFullscreenProps, } from './com
|
|
|
7
7
|
export { ANALYZER_STREAM_META, DEFAULT_ENABLED_STREAMS, type AnalyzerStreamKey, type AnalyzerStreamMeta, } from './hooks/analyzerStreamRegistry.js';
|
|
8
8
|
export { JamlMapPreview, type JamlMapPreviewProps } from './components/JamlMapPreview.js';
|
|
9
9
|
export { JamlIde, type JamlIdeProps, type JamlIdeSearchResult, type JamlVisualFilter, type JamlVisualClause, type JamlZone, } from './components/JamlIde.js';
|
|
10
|
+
export { JamlCurator } from './components/JamlCurator.js';
|
|
10
11
|
export { JamlIdeVisual, type JamlIdeVisualProps, } from './components/JamlIdeVisual.js';
|
|
11
12
|
export { JamlCodeEditor, type JamlCodeEditorProps, } from './components/JamlCodeEditor.js';
|
|
12
13
|
export * from './ui.js';
|