@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
package/dist/avl/index.d.cts
CHANGED
|
@@ -1036,6 +1036,10 @@ interface FlowCanvasProps {
|
|
|
1036
1036
|
}) => void;
|
|
1037
1037
|
onLevelChange?: (level: ViewLevel, orbital?: string) => void;
|
|
1038
1038
|
initialOrbital?: string;
|
|
1039
|
+
/** Start at Level 2 (expanded) when initialOrbital is set. Default: 'overview'. */
|
|
1040
|
+
initialLevel?: ViewLevel;
|
|
1041
|
+
/** Pre-select a node on mount (opens OrbInspector). */
|
|
1042
|
+
initialSelectedNode?: PreviewNodeData;
|
|
1039
1043
|
/** Enable editing in the inspector. When true, fields become inputs. */
|
|
1040
1044
|
editable?: boolean;
|
|
1041
1045
|
/** Called when the user edits the schema via the inspector. */
|