@almadar/ui 2.43.0 → 2.45.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/avl/index.cjs +1613 -1317
- package/dist/avl/index.d.cts +4 -0
- package/dist/avl/index.js +594 -298
- package/dist/components/index.cjs +402 -115
- package/dist/components/index.js +402 -115
- package/dist/components/organisms/avl/FlowCanvas.d.ts +4 -0
- package/dist/components/organisms/debug/WalkMinimap.d.ts +17 -0
- package/dist/providers/index.cjs +165 -164
- package/dist/providers/index.js +41 -40
- package/dist/runtime/EntitySchemaContext.d.ts +5 -0
- package/dist/runtime/index.cjs +402 -115
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/index.js +402 -116
- package/package.json +1 -1
|
@@ -28,6 +28,10 @@ export interface FlowCanvasProps {
|
|
|
28
28
|
}) => void;
|
|
29
29
|
onLevelChange?: (level: ViewLevel, orbital?: string) => void;
|
|
30
30
|
initialOrbital?: string;
|
|
31
|
+
/** Start at Level 2 (expanded) when initialOrbital is set. Default: 'overview'. */
|
|
32
|
+
initialLevel?: ViewLevel;
|
|
33
|
+
/** Pre-select a node on mount (opens OrbInspector). */
|
|
34
|
+
initialSelectedNode?: PreviewNodeData;
|
|
31
35
|
/** Enable editing in the inspector. When true, fields become inputs. */
|
|
32
36
|
editable?: boolean;
|
|
33
37
|
/** Called when the user edits the schema via the inspector. */
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* WalkMinimap
|
|
3
|
+
*
|
|
4
|
+
* Visual minimap for orbital-verify state walks.
|
|
5
|
+
* Shows trait overview pills, state graph for active trait,
|
|
6
|
+
* and coverage progress. Replaces the text-based walk step indicator.
|
|
7
|
+
*
|
|
8
|
+
* Data comes from window.__orbitalWalkStep, window.__orbitalWalkTraits,
|
|
9
|
+
* and window.__orbitalCoveredEdges (broadcast by phase4-browser.ts).
|
|
10
|
+
*
|
|
11
|
+
* @packageDocumentation
|
|
12
|
+
*/
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
export declare function WalkMinimap(): React.ReactElement | null;
|
|
15
|
+
export declare namespace WalkMinimap {
|
|
16
|
+
var displayName: string;
|
|
17
|
+
}
|