@aloudata/ink-flow 1.0.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/README.md +5 -0
- package/dist/base.css +6 -0
- package/dist/components/A11yDescriptions/index.d.ts +8 -0
- package/dist/components/A11yDescriptions/index.d.ts.map +1 -0
- package/dist/components/BatchProvider/index.d.ts +17 -0
- package/dist/components/BatchProvider/index.d.ts.map +1 -0
- package/dist/components/BatchProvider/types.d.ts +7 -0
- package/dist/components/BatchProvider/types.d.ts.map +1 -0
- package/dist/components/BatchProvider/useQueue.d.ts +11 -0
- package/dist/components/BatchProvider/useQueue.d.ts.map +1 -0
- package/dist/components/EdgeWrapper/EdgeUpdateAnchors.d.ts +17 -0
- package/dist/components/EdgeWrapper/EdgeUpdateAnchors.d.ts.map +1 -0
- package/dist/components/EdgeWrapper/index.d.ts +3 -0
- package/dist/components/EdgeWrapper/index.d.ts.map +1 -0
- package/dist/components/EdgeWrapper/utils.d.ts +11 -0
- package/dist/components/EdgeWrapper/utils.d.ts.map +1 -0
- package/dist/components/Edges/BaseEdge.d.ts +3 -0
- package/dist/components/Edges/BaseEdge.d.ts.map +1 -0
- package/dist/components/Edges/BezierEdge.d.ts +5 -0
- package/dist/components/Edges/BezierEdge.d.ts.map +1 -0
- package/dist/components/Edges/EdgeAnchor.d.ts +14 -0
- package/dist/components/Edges/EdgeAnchor.d.ts.map +1 -0
- package/dist/components/Edges/EdgeText.d.ts +8 -0
- package/dist/components/Edges/EdgeText.d.ts.map +1 -0
- package/dist/components/Edges/SimpleBezierEdge.d.ts +21 -0
- package/dist/components/Edges/SimpleBezierEdge.d.ts.map +1 -0
- package/dist/components/Edges/SmoothStepEdge.d.ts +5 -0
- package/dist/components/Edges/SmoothStepEdge.d.ts.map +1 -0
- package/dist/components/Edges/StepEdge.d.ts +5 -0
- package/dist/components/Edges/StepEdge.d.ts.map +1 -0
- package/dist/components/Edges/StraightEdge.d.ts +5 -0
- package/dist/components/Edges/StraightEdge.d.ts.map +1 -0
- package/dist/components/Edges/index.d.ts +6 -0
- package/dist/components/Edges/index.d.ts.map +1 -0
- package/dist/components/Handle/index.d.ts +9 -0
- package/dist/components/Handle/index.d.ts.map +1 -0
- package/dist/components/InkFlowProvider/index.d.ts +14 -0
- package/dist/components/InkFlowProvider/index.d.ts.map +1 -0
- package/dist/components/NodeWrapper/index.d.ts +3 -0
- package/dist/components/NodeWrapper/index.d.ts.map +1 -0
- package/dist/components/NodeWrapper/useNodeObserver.d.ts +14 -0
- package/dist/components/NodeWrapper/useNodeObserver.d.ts.map +1 -0
- package/dist/components/NodeWrapper/utils.d.ts +9 -0
- package/dist/components/NodeWrapper/utils.d.ts.map +1 -0
- package/dist/components/Nodes/DefaultNode.d.ts +3 -0
- package/dist/components/Nodes/DefaultNode.d.ts.map +1 -0
- package/dist/components/Nodes/GroupNode.d.ts +2 -0
- package/dist/components/Nodes/GroupNode.d.ts.map +1 -0
- package/dist/components/Nodes/InputNode.d.ts +4 -0
- package/dist/components/Nodes/InputNode.d.ts.map +1 -0
- package/dist/components/Nodes/OutputNode.d.ts +3 -0
- package/dist/components/Nodes/OutputNode.d.ts.map +1 -0
- package/dist/components/Nodes/utils.d.ts +13 -0
- package/dist/components/Nodes/utils.d.ts.map +1 -0
- package/dist/components/Panel/index.d.ts +11 -0
- package/dist/components/Panel/index.d.ts.map +1 -0
- package/dist/components/StoreUpdater/index.d.ts +9 -0
- package/dist/components/StoreUpdater/index.d.ts.map +1 -0
- package/dist/components/UserSelection/index.d.ts +2 -0
- package/dist/components/UserSelection/index.d.ts.map +1 -0
- package/dist/constants/errorMessages.d.ts +22 -0
- package/dist/constants/errorMessages.d.ts.map +1 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/index.d.ts.map +1 -0
- package/dist/container/EdgeRenderer/MarkerDefinitions.d.ts +10 -0
- package/dist/container/EdgeRenderer/MarkerDefinitions.d.ts.map +1 -0
- package/dist/container/EdgeRenderer/MarkerSymbols.d.ts +9 -0
- package/dist/container/EdgeRenderer/MarkerSymbols.d.ts.map +1 -0
- package/dist/container/EdgeRenderer/index.d.ts +13 -0
- package/dist/container/EdgeRenderer/index.d.ts.map +1 -0
- package/dist/container/FlowRenderer/index.d.ts +14 -0
- package/dist/container/FlowRenderer/index.d.ts.map +1 -0
- package/dist/container/GraphView/index.d.ts +11 -0
- package/dist/container/GraphView/index.d.ts.map +1 -0
- package/dist/container/InkFlow/Wrapper.d.ts +13 -0
- package/dist/container/InkFlow/Wrapper.d.ts.map +1 -0
- package/dist/container/InkFlow/index.d.ts +4 -0
- package/dist/container/InkFlow/index.d.ts.map +1 -0
- package/dist/container/InkFlow/init-values.d.ts +4 -0
- package/dist/container/InkFlow/init-values.d.ts.map +1 -0
- package/dist/container/NodeRenderer/index.d.ts +10 -0
- package/dist/container/NodeRenderer/index.d.ts.map +1 -0
- package/dist/container/NodeRenderer/useResizeObserver.d.ts +2 -0
- package/dist/container/NodeRenderer/useResizeObserver.d.ts.map +1 -0
- package/dist/container/Pane/index.d.ts +12 -0
- package/dist/container/Pane/index.d.ts.map +1 -0
- package/dist/container/Viewport/index.d.ts +7 -0
- package/dist/container/Viewport/index.d.ts.map +1 -0
- package/dist/container/ZoomPane/index.d.ts +7 -0
- package/dist/container/ZoomPane/index.d.ts.map +1 -0
- package/dist/contexts/NodeIdContext.d.ts +6 -0
- package/dist/contexts/NodeIdContext.d.ts.map +1 -0
- package/dist/contexts/StoreContext.d.ts +4 -0
- package/dist/contexts/StoreContext.d.ts.map +1 -0
- package/dist/hooks/index.d.ts +5 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/useDrag.d.ts +12 -0
- package/dist/hooks/useDrag.d.ts.map +1 -0
- package/dist/hooks/useEdgesState.d.ts +4 -0
- package/dist/hooks/useEdgesState.d.ts.map +1 -0
- package/dist/hooks/useGlobalKeyHandler.d.ts +11 -0
- package/dist/hooks/useGlobalKeyHandler.d.ts.map +1 -0
- package/dist/hooks/useInkFlow.d.ts +10 -0
- package/dist/hooks/useInkFlow.d.ts.map +1 -0
- package/dist/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/dist/hooks/useIsomorphicLayoutEffect.d.ts.map +1 -0
- package/dist/hooks/useKeyPress.d.ts +15 -0
- package/dist/hooks/useKeyPress.d.ts.map +1 -0
- package/dist/hooks/useMoveSelectedNodes.d.ts +12 -0
- package/dist/hooks/useMoveSelectedNodes.d.ts.map +1 -0
- package/dist/hooks/useNodesState.d.ts +4 -0
- package/dist/hooks/useNodesState.d.ts.map +1 -0
- package/dist/hooks/useResizeHandler.d.ts +8 -0
- package/dist/hooks/useResizeHandler.d.ts.map +1 -0
- package/dist/hooks/useStore.d.ts +21 -0
- package/dist/hooks/useStore.d.ts.map +1 -0
- package/dist/hooks/useViewportHelper.d.ts +10 -0
- package/dist/hooks/useViewportHelper.d.ts.map +1 -0
- package/dist/hooks/useVisibleEdgeIds.d.ts +9 -0
- package/dist/hooks/useVisibleEdgeIds.d.ts.map +1 -0
- package/dist/hooks/useVisibleNodeIds.d.ts +9 -0
- package/dist/hooks/useVisibleNodeIds.d.ts.map +1 -0
- package/dist/index.cjs.js +17 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +17 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/plugins/Controls/ControlButton.d.ts +3 -0
- package/dist/plugins/Controls/ControlButton.d.ts.map +1 -0
- package/dist/plugins/Controls/Controls.d.ts +8 -0
- package/dist/plugins/Controls/Controls.d.ts.map +1 -0
- package/dist/plugins/Controls/Icons/FitView.d.ts +2 -0
- package/dist/plugins/Controls/Icons/FitView.d.ts.map +1 -0
- package/dist/plugins/Controls/Icons/Lock.d.ts +2 -0
- package/dist/plugins/Controls/Icons/Lock.d.ts.map +1 -0
- package/dist/plugins/Controls/Icons/Minus.d.ts +2 -0
- package/dist/plugins/Controls/Icons/Minus.d.ts.map +1 -0
- package/dist/plugins/Controls/Icons/Plus.d.ts +2 -0
- package/dist/plugins/Controls/Icons/Plus.d.ts.map +1 -0
- package/dist/plugins/Controls/Icons/Unlock.d.ts +2 -0
- package/dist/plugins/Controls/Icons/Unlock.d.ts.map +1 -0
- package/dist/plugins/Controls/index.d.ts +4 -0
- package/dist/plugins/Controls/index.d.ts.map +1 -0
- package/dist/plugins/Controls/types.d.ts +35 -0
- package/dist/plugins/Controls/types.d.ts.map +1 -0
- package/dist/plugins/index.d.ts +2 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/store/index.d.ts +12 -0
- package/dist/store/index.d.ts.map +1 -0
- package/dist/store/initialState.d.ts +12 -0
- package/dist/store/initialState.d.ts.map +1 -0
- package/dist/style.css +817 -0
- package/dist/styles/utils.d.ts +3 -0
- package/dist/styles/utils.d.ts.map +1 -0
- package/dist/types/edges.d.ts +114 -0
- package/dist/types/edges.d.ts.map +1 -0
- package/dist/types/general.d.ts +123 -0
- package/dist/types/general.d.ts.map +1 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/instance.d.ts +149 -0
- package/dist/types/instance.d.ts.map +1 -0
- package/dist/types/nodes.d.ts +40 -0
- package/dist/types/nodes.d.ts.map +1 -0
- package/dist/types/props.d.ts +151 -0
- package/dist/types/props.d.ts.map +1 -0
- package/dist/types/store.d.ts +105 -0
- package/dist/types/store.d.ts.map +1 -0
- package/dist/types/system/changes.d.ts +51 -0
- package/dist/types/system/changes.d.ts.map +1 -0
- package/dist/types/system/edges.d.ts +83 -0
- package/dist/types/system/edges.d.ts.map +1 -0
- package/dist/types/system/general.d.ts +119 -0
- package/dist/types/system/general.d.ts.map +1 -0
- package/dist/types/system/handles.d.ts +51 -0
- package/dist/types/system/handles.d.ts.map +1 -0
- package/dist/types/system/index.d.ts +8 -0
- package/dist/types/system/index.d.ts.map +1 -0
- package/dist/types/system/nodes.d.ts +126 -0
- package/dist/types/system/nodes.d.ts.map +1 -0
- package/dist/types/system/panzoom.d.ts +49 -0
- package/dist/types/system/panzoom.d.ts.map +1 -0
- package/dist/types/system/utils.d.ts +25 -0
- package/dist/types/system/utils.d.ts.map +1 -0
- package/dist/types/utils/types.d.ts +8 -0
- package/dist/types/utils/types.d.ts.map +1 -0
- package/dist/utils/bezier-edge.d.ts +59 -0
- package/dist/utils/bezier-edge.d.ts.map +1 -0
- package/dist/utils/changes.d.ts +16 -0
- package/dist/utils/changes.d.ts.map +1 -0
- package/dist/utils/dom.d.ts +20 -0
- package/dist/utils/dom.d.ts.map +1 -0
- package/dist/utils/edges/bezier-edge.d.ts +59 -0
- package/dist/utils/edges/bezier-edge.d.ts.map +1 -0
- package/dist/utils/edges/general.d.ts +46 -0
- package/dist/utils/edges/general.d.ts.map +1 -0
- package/dist/utils/edges/index.d.ts +6 -0
- package/dist/utils/edges/index.d.ts.map +1 -0
- package/dist/utils/edges/positions.d.ts +12 -0
- package/dist/utils/edges/positions.d.ts.map +1 -0
- package/dist/utils/edges/smoothstep-edge.d.ts +43 -0
- package/dist/utils/edges/smoothstep-edge.d.ts.map +1 -0
- package/dist/utils/edges/straight-edge.d.ts +28 -0
- package/dist/utils/edges/straight-edge.d.ts.map +1 -0
- package/dist/utils/edges.d.ts +26 -0
- package/dist/utils/edges.d.ts.map +1 -0
- package/dist/utils/general.d.ts +61 -0
- package/dist/utils/general.d.ts.map +1 -0
- package/dist/utils/graph.d.ts +113 -0
- package/dist/utils/graph.d.ts.map +1 -0
- package/dist/utils/marker.d.ts +9 -0
- package/dist/utils/marker.d.ts.map +1 -0
- package/dist/utils/positions.d.ts +12 -0
- package/dist/utils/positions.d.ts.map +1 -0
- package/dist/utils/smoothstep-edge.d.ts +43 -0
- package/dist/utils/smoothstep-edge.d.ts.map +1 -0
- package/dist/utils/store.d.ts +30 -0
- package/dist/utils/store.d.ts.map +1 -0
- package/dist/utils/straight-edge.d.ts +34 -0
- package/dist/utils/straight-edge.d.ts.map +1 -0
- package/dist/utils/xydrag/XYDrag.d.ts +52 -0
- package/dist/utils/xydrag/XYDrag.d.ts.map +1 -0
- package/dist/utils/xydrag/index.d.ts +2 -0
- package/dist/utils/xydrag/index.d.ts.map +1 -0
- package/dist/utils/xydrag/utils.d.ts +10 -0
- package/dist/utils/xydrag/utils.d.ts.map +1 -0
- package/dist/utils/xyhandle/XYHandle.d.ts +49 -0
- package/dist/utils/xyhandle/XYHandle.d.ts.map +1 -0
- package/dist/utils/xyhandle/index.d.ts +2 -0
- package/dist/utils/xyhandle/index.d.ts.map +1 -0
- package/dist/utils/xyhandle/utils.d.ts +14 -0
- package/dist/utils/xyhandle/utils.d.ts.map +1 -0
- package/dist/utils/xypanzoom/XYPanZoom.d.ts +12 -0
- package/dist/utils/xypanzoom/XYPanZoom.d.ts.map +1 -0
- package/dist/utils/xypanzoom/eventhandler.d.ts +46 -0
- package/dist/utils/xypanzoom/eventhandler.d.ts.map +1 -0
- package/dist/utils/xypanzoom/filter.d.ts +14 -0
- package/dist/utils/xypanzoom/filter.d.ts.map +1 -0
- package/dist/utils/xypanzoom/index.d.ts +2 -0
- package/dist/utils/xypanzoom/index.d.ts.map +1 -0
- package/dist/utils/xypanzoom/utils.d.ts +10 -0
- package/dist/utils/xypanzoom/utils.d.ts.map +1 -0
- package/package.json +48 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { Edge, Node, OnNodesChange, OnEdgesChange, InternalNode, FitViewOptions, IsValidConnection, OnSelectionChangeFunc, UnselectNodesAndEdgesParams, DefaultEdgeOptions, OnDelete, OnEdgesDelete, OnNodesDelete, OnBeforeDelete } from '.';
|
|
2
|
+
import { ConnectingHandle, ConnectionLookup, ConnectionMode, ConnectionStatus, CoordinateExtent, EdgeChange, EdgeLookup, InternalNodeUpdate, NodeChange, NodeLookup, NodeOrigin, OnConnect, OnConnectEnd, OnConnectStart, OnError, OnMove, OnMoveEnd, OnMoveStart, OnSelectionDrag, OnViewportChange, PanBy, PanZoomInstance, SelectionRect, SnapGrid, Transform, UpdateConnection, UpdateNodePositions, XYPosition } from './system';
|
|
3
|
+
export type InkFlowStore<NodeType extends Node = Node, EdgeType extends Edge = Edge> = {
|
|
4
|
+
rfId: string;
|
|
5
|
+
width: number;
|
|
6
|
+
height: number;
|
|
7
|
+
transform: Transform;
|
|
8
|
+
nodes: NodeType[];
|
|
9
|
+
nodeLookup: NodeLookup<InternalNode<NodeType>>;
|
|
10
|
+
parentLookup: Map<string, InternalNode<NodeType>[]>;
|
|
11
|
+
edges: Edge[];
|
|
12
|
+
edgeLookup: EdgeLookup<EdgeType>;
|
|
13
|
+
connectionLookup: ConnectionLookup;
|
|
14
|
+
onNodesChange: OnNodesChange<NodeType> | null;
|
|
15
|
+
onEdgesChange: OnEdgesChange<EdgeType> | null;
|
|
16
|
+
hasDefaultNodes: boolean;
|
|
17
|
+
hasDefaultEdges: boolean;
|
|
18
|
+
domNode: HTMLDivElement | null;
|
|
19
|
+
paneDragging: boolean;
|
|
20
|
+
noPanClassName: string;
|
|
21
|
+
panZoom: PanZoomInstance | null;
|
|
22
|
+
minZoom: number;
|
|
23
|
+
maxZoom: number;
|
|
24
|
+
translateExtent: CoordinateExtent;
|
|
25
|
+
nodeExtent: CoordinateExtent;
|
|
26
|
+
nodeOrigin: NodeOrigin;
|
|
27
|
+
nodeDragThreshold: number;
|
|
28
|
+
nodesSelectionActive: boolean;
|
|
29
|
+
userSelectionActive: boolean;
|
|
30
|
+
userSelectionRect: SelectionRect | null;
|
|
31
|
+
connectionPosition: XYPosition;
|
|
32
|
+
connectionStatus: ConnectionStatus | null;
|
|
33
|
+
connectionMode: ConnectionMode;
|
|
34
|
+
snapToGrid: boolean;
|
|
35
|
+
snapGrid: SnapGrid;
|
|
36
|
+
nodesDraggable: boolean;
|
|
37
|
+
nodesConnectable: boolean;
|
|
38
|
+
nodesFocusable: boolean;
|
|
39
|
+
edgesFocusable: boolean;
|
|
40
|
+
edgesUpdatable: boolean;
|
|
41
|
+
elementsSelectable: boolean;
|
|
42
|
+
elevateNodesOnSelect: boolean;
|
|
43
|
+
elevateEdgesOnSelect: boolean;
|
|
44
|
+
selectNodesOnDrag: boolean;
|
|
45
|
+
multiSelectionActive: boolean;
|
|
46
|
+
connectionStartHandle: ConnectingHandle | null;
|
|
47
|
+
connectionEndHandle: ConnectingHandle | null;
|
|
48
|
+
connectionClickStartHandle: ConnectingHandle | null;
|
|
49
|
+
onSelectionDragStart?: OnSelectionDrag;
|
|
50
|
+
onSelectionDrag?: OnSelectionDrag;
|
|
51
|
+
onSelectionDragStop?: OnSelectionDrag;
|
|
52
|
+
onMoveStart?: OnMoveStart;
|
|
53
|
+
onMove?: OnMove;
|
|
54
|
+
onMoveEnd?: OnMoveEnd;
|
|
55
|
+
onConnect?: OnConnect;
|
|
56
|
+
onConnectStart?: OnConnectStart;
|
|
57
|
+
onConnectEnd?: OnConnectEnd;
|
|
58
|
+
onClickConnectStart?: OnConnectStart;
|
|
59
|
+
onClickConnectEnd?: OnConnectEnd;
|
|
60
|
+
connectOnClick: boolean;
|
|
61
|
+
defaultEdgeOptions?: DefaultEdgeOptions;
|
|
62
|
+
fitViewOnInit: boolean;
|
|
63
|
+
fitViewDone: boolean;
|
|
64
|
+
fitViewOnInitOptions: FitViewOptions | undefined;
|
|
65
|
+
onNodesDelete?: OnNodesDelete<NodeType>;
|
|
66
|
+
onEdgesDelete?: OnEdgesDelete<EdgeType>;
|
|
67
|
+
onDelete?: OnDelete;
|
|
68
|
+
onError?: OnError;
|
|
69
|
+
onViewportChangeStart?: OnViewportChange;
|
|
70
|
+
onViewportChange?: OnViewportChange;
|
|
71
|
+
onViewportChangeEnd?: OnViewportChange;
|
|
72
|
+
onBeforeDelete?: OnBeforeDelete<NodeType, EdgeType>;
|
|
73
|
+
onSelectionChangeHandlers: OnSelectionChangeFunc[];
|
|
74
|
+
ariaLiveMessage: string;
|
|
75
|
+
autoPanOnConnect: boolean;
|
|
76
|
+
autoPanOnNodeDrag: boolean;
|
|
77
|
+
connectionRadius: number;
|
|
78
|
+
isValidConnection?: IsValidConnection<EdgeType>;
|
|
79
|
+
lib: string;
|
|
80
|
+
debug: boolean;
|
|
81
|
+
};
|
|
82
|
+
export type InkFlowActions<NodeType extends Node, EdgeType extends Edge> = {
|
|
83
|
+
setNodes: (nodes: NodeType[]) => void;
|
|
84
|
+
setEdges: (edges: EdgeType[]) => void;
|
|
85
|
+
setDefaultNodesAndEdges: (nodes?: NodeType[], edges?: EdgeType[]) => void;
|
|
86
|
+
updateNodeInternals: (updates: Map<string, InternalNodeUpdate>) => void;
|
|
87
|
+
updateNodePositions: UpdateNodePositions;
|
|
88
|
+
resetSelectedElements: () => void;
|
|
89
|
+
unselectNodesAndEdges: (params?: UnselectNodesAndEdgesParams) => void;
|
|
90
|
+
addSelectedNodes: (nodeIds: string[]) => void;
|
|
91
|
+
addSelectedEdges: (edgeIds: string[]) => void;
|
|
92
|
+
setMinZoom: (minZoom: number) => void;
|
|
93
|
+
setMaxZoom: (maxZoom: number) => void;
|
|
94
|
+
setTranslateExtent: (translateExtent: CoordinateExtent) => void;
|
|
95
|
+
setNodeExtent: (nodeExtent: CoordinateExtent) => void;
|
|
96
|
+
cancelConnection: () => void;
|
|
97
|
+
updateConnection: UpdateConnection;
|
|
98
|
+
reset: () => void;
|
|
99
|
+
triggerNodeChanges: (changes: NodeChange<NodeType>[]) => void;
|
|
100
|
+
triggerEdgeChanges: (changes: EdgeChange<EdgeType>[]) => void;
|
|
101
|
+
panBy: PanBy;
|
|
102
|
+
fitView: (options?: FitViewOptions) => boolean;
|
|
103
|
+
};
|
|
104
|
+
export type InkFlowState<NodeType extends Node = Node, EdgeType extends Edge = Edge> = InkFlowStore<NodeType, EdgeType> & InkFlowActions<NodeType, EdgeType>;
|
|
105
|
+
//# sourceMappingURL=store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/types/store.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { XYPosition, Dimensions, NodeBase, EdgeBase } from '.';
|
|
2
|
+
export type NodeDimensionChange = {
|
|
3
|
+
id: string;
|
|
4
|
+
type: 'dimensions';
|
|
5
|
+
dimensions?: Dimensions;
|
|
6
|
+
resizing?: boolean;
|
|
7
|
+
setAttributes?: boolean;
|
|
8
|
+
};
|
|
9
|
+
export type NodePositionChange = {
|
|
10
|
+
id: string;
|
|
11
|
+
type: 'position';
|
|
12
|
+
position?: XYPosition;
|
|
13
|
+
positionAbsolute?: XYPosition;
|
|
14
|
+
dragging?: boolean;
|
|
15
|
+
};
|
|
16
|
+
export type NodeSelectionChange = {
|
|
17
|
+
id: string;
|
|
18
|
+
type: 'select';
|
|
19
|
+
selected: boolean;
|
|
20
|
+
};
|
|
21
|
+
export type NodeRemoveChange = {
|
|
22
|
+
id: string;
|
|
23
|
+
type: 'remove';
|
|
24
|
+
};
|
|
25
|
+
export type NodeAddChange<NodeType extends NodeBase = NodeBase> = {
|
|
26
|
+
item: NodeType;
|
|
27
|
+
type: 'add';
|
|
28
|
+
};
|
|
29
|
+
export type NodeReplaceChange<NodeType extends NodeBase = NodeBase> = {
|
|
30
|
+
id: string;
|
|
31
|
+
item: NodeType;
|
|
32
|
+
type: 'replace';
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Union type of all possible node changes.
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type NodeChange<NodeType extends NodeBase = NodeBase> = NodeDimensionChange | NodePositionChange | NodeSelectionChange | NodeRemoveChange | NodeAddChange<NodeType> | NodeReplaceChange<NodeType>;
|
|
39
|
+
export type EdgeSelectionChange = NodeSelectionChange;
|
|
40
|
+
export type EdgeRemoveChange = NodeRemoveChange;
|
|
41
|
+
export type EdgeAddChange<EdgeType extends EdgeBase = EdgeBase> = {
|
|
42
|
+
item: EdgeType;
|
|
43
|
+
type: 'add';
|
|
44
|
+
};
|
|
45
|
+
export type EdgeReplaceChange<EdgeType extends EdgeBase = EdgeBase> = {
|
|
46
|
+
id: string;
|
|
47
|
+
item: EdgeType;
|
|
48
|
+
type: 'replace';
|
|
49
|
+
};
|
|
50
|
+
export type EdgeChange<EdgeType extends EdgeBase = EdgeBase> = EdgeSelectionChange | EdgeRemoveChange | EdgeAddChange<EdgeType> | EdgeReplaceChange<EdgeType>;
|
|
51
|
+
//# sourceMappingURL=changes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"changes.d.ts","sourceRoot":"","sources":["../../../src/types/system/changes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAC;AAEpE,MAAM,MAAM,mBAAmB,GAAG;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,YAAY,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,gBAAgB,CAAC,EAAE,UAAU,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,QAAQ,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,QAAQ,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,aAAa,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IAAI;IAChE,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,KAAK,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,iBAAiB,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IAAI;IACpE,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,SAAS,CAAC;CACjB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,UAAU,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IACvD,mBAAmB,GACnB,kBAAkB,GAClB,mBAAmB,GACnB,gBAAgB,GAChB,aAAa,CAAC,QAAQ,CAAC,GACvB,iBAAiB,CAAC,QAAQ,CAAC,CAAC;AAEhC,MAAM,MAAM,mBAAmB,GAAG,mBAAmB,CAAC;AACtD,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,CAAC;AAChD,MAAM,MAAM,aAAa,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IAAI;IAChE,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,KAAK,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,iBAAiB,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IAAI;IACpE,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,SAAS,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IACvD,mBAAmB,GACnB,gBAAgB,GAChB,aAAa,CAAC,QAAQ,CAAC,GACvB,iBAAiB,CAAC,QAAQ,CAAC,CAAC"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { Position } from './utils';
|
|
2
|
+
export type EdgeBase<EdgeData extends Record<string, unknown> = Record<string, unknown>, EdgeType extends string | undefined = string | undefined> = {
|
|
3
|
+
/** Unique id of an edge */
|
|
4
|
+
id: string;
|
|
5
|
+
/** Type of an edge defined in edgeTypes */
|
|
6
|
+
type?: EdgeType;
|
|
7
|
+
/** Id of source node */
|
|
8
|
+
source: string;
|
|
9
|
+
/** Id of target node */
|
|
10
|
+
target: string;
|
|
11
|
+
/** Id of source handle
|
|
12
|
+
* only needed if there are multiple handles per node
|
|
13
|
+
*/
|
|
14
|
+
sourceHandle?: string | null;
|
|
15
|
+
/** Id of target handle
|
|
16
|
+
* only needed if there are multiple handles per node
|
|
17
|
+
*/
|
|
18
|
+
targetHandle?: string | null;
|
|
19
|
+
animated?: boolean;
|
|
20
|
+
hidden?: boolean;
|
|
21
|
+
deletable?: boolean;
|
|
22
|
+
selectable?: boolean;
|
|
23
|
+
/** Arbitrary data passed to an edge */
|
|
24
|
+
data?: EdgeData;
|
|
25
|
+
selected?: boolean;
|
|
26
|
+
/** Set the marker on the beginning of an edge
|
|
27
|
+
* @example 'arrow', 'arrowclosed' or custom marker
|
|
28
|
+
*/
|
|
29
|
+
markerStart?: EdgeMarkerType;
|
|
30
|
+
/** Set the marker on the end of an edge
|
|
31
|
+
* @example 'arrow', 'arrowclosed' or custom marker
|
|
32
|
+
*/
|
|
33
|
+
markerEnd?: EdgeMarkerType;
|
|
34
|
+
zIndex?: number;
|
|
35
|
+
ariaLabel?: string;
|
|
36
|
+
/** Padding around the edge where interaction is still possible */
|
|
37
|
+
interactionWidth?: number;
|
|
38
|
+
};
|
|
39
|
+
export type SmoothStepPathOptions = {
|
|
40
|
+
offset?: number;
|
|
41
|
+
borderRadius?: number;
|
|
42
|
+
};
|
|
43
|
+
export type StepPathOptions = {
|
|
44
|
+
offset?: number;
|
|
45
|
+
};
|
|
46
|
+
export type BezierPathOptions = {
|
|
47
|
+
curvature?: number;
|
|
48
|
+
};
|
|
49
|
+
export type DefaultEdgeOptionsBase<EdgeType extends EdgeBase> = Omit<EdgeType, 'id' | 'source' | 'target' | 'sourceHandle' | 'targetHandle' | 'selected'>;
|
|
50
|
+
export declare enum ConnectionLineType {
|
|
51
|
+
Bezier = "default",
|
|
52
|
+
Straight = "straight",
|
|
53
|
+
Step = "step",
|
|
54
|
+
SmoothStep = "smoothstep",
|
|
55
|
+
SimpleBezier = "simplebezier"
|
|
56
|
+
}
|
|
57
|
+
export type EdgeMarker = {
|
|
58
|
+
type: MarkerType;
|
|
59
|
+
color?: string;
|
|
60
|
+
width?: number;
|
|
61
|
+
height?: number;
|
|
62
|
+
markerUnits?: string;
|
|
63
|
+
orient?: string;
|
|
64
|
+
strokeWidth?: number;
|
|
65
|
+
};
|
|
66
|
+
export type EdgeMarkerType = string | EdgeMarker;
|
|
67
|
+
export declare enum MarkerType {
|
|
68
|
+
Arrow = "arrow",
|
|
69
|
+
ArrowClosed = "arrowclosed"
|
|
70
|
+
}
|
|
71
|
+
export type MarkerProps = EdgeMarker & {
|
|
72
|
+
id: string;
|
|
73
|
+
};
|
|
74
|
+
export type EdgePosition = {
|
|
75
|
+
sourceX: number;
|
|
76
|
+
sourceY: number;
|
|
77
|
+
targetX: number;
|
|
78
|
+
targetY: number;
|
|
79
|
+
sourcePosition: Position;
|
|
80
|
+
targetPosition: Position;
|
|
81
|
+
};
|
|
82
|
+
export type EdgeLookup<EdgeType extends EdgeBase = EdgeBase> = Map<string, EdgeType>;
|
|
83
|
+
//# sourceMappingURL=edges.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"edges.d.ts","sourceRoot":"","sources":["../../../src/types/system/edges.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEnC,MAAM,MAAM,QAAQ,CAClB,QAAQ,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAClE,QAAQ,SAAS,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,IACtD;IACF,2BAA2B;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,2CAA2C;IAC3C,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,wBAAwB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,wBAAwB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,uCAAuC;IACvC,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,cAAc,CAAC;IAC7B;;OAEG;IACH,SAAS,CAAC,EAAE,cAAc,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kEAAkE;IAClE,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,sBAAsB,CAAC,QAAQ,SAAS,QAAQ,IAAI,IAAI,CAClE,QAAQ,EACR,IAAI,GAAG,QAAQ,GAAG,QAAQ,GAAG,cAAc,GAAG,cAAc,GAAG,UAAU,CAC1E,CAAC;AAEF,oBAAY,kBAAkB;IAC5B,MAAM,YAAY;IAClB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,UAAU,eAAe;IACzB,YAAY,iBAAiB;CAC9B;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,UAAU,CAAC;AAEjD,oBAAY,UAAU;IACpB,KAAK,UAAU;IACf,WAAW,gBAAgB;CAC5B;AAED,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG;IACrC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,QAAQ,CAAC;IACzB,cAAc,EAAE,QAAQ,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,QAAQ,SAAS,QAAQ,GAAG,QAAQ,IAAI,GAAG,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import type { D3DragEvent, Selection as D3Selection, SubjectPosition, ZoomBehavior } from 'd3';
|
|
2
|
+
import type { XYPosition, Rect } from './utils';
|
|
3
|
+
import type { InternalNodeBase, NodeBase, NodeDragItem, NodeOrigin } from './nodes';
|
|
4
|
+
import type { ConnectingHandle, HandleType } from './handles';
|
|
5
|
+
import { PanZoomInstance } from './panzoom';
|
|
6
|
+
import { EdgeBase } from '.';
|
|
7
|
+
export type Project = (position: XYPosition) => XYPosition;
|
|
8
|
+
export type OnMove = (event: MouseEvent | TouchEvent | null, viewport: Viewport) => void;
|
|
9
|
+
export type OnMoveStart = OnMove;
|
|
10
|
+
export type OnMoveEnd = OnMove;
|
|
11
|
+
export type ZoomInOut = (options?: ViewportHelperFunctionOptions) => void;
|
|
12
|
+
export type ZoomTo = (zoomLevel: number, options?: ViewportHelperFunctionOptions) => void;
|
|
13
|
+
export type GetZoom = () => number;
|
|
14
|
+
export type GetViewport = () => Viewport;
|
|
15
|
+
export type SetViewport = (viewport: Viewport, options?: ViewportHelperFunctionOptions) => void;
|
|
16
|
+
export type SetCenter = (x: number, y: number, options?: SetCenterOptions) => void;
|
|
17
|
+
export type FitBounds = (bounds: Rect, options?: FitBoundsOptions) => void;
|
|
18
|
+
export type Connection = {
|
|
19
|
+
source: string;
|
|
20
|
+
target: string;
|
|
21
|
+
sourceHandle: string | null;
|
|
22
|
+
targetHandle: string | null;
|
|
23
|
+
};
|
|
24
|
+
export type HandleConnection = Connection & {
|
|
25
|
+
edgeId: string;
|
|
26
|
+
};
|
|
27
|
+
export type ConnectionStatus = 'valid' | 'invalid';
|
|
28
|
+
export declare enum ConnectionMode {
|
|
29
|
+
Strict = "strict",
|
|
30
|
+
Loose = "loose"
|
|
31
|
+
}
|
|
32
|
+
export type OnConnectStartParams = {
|
|
33
|
+
nodeId: string | null;
|
|
34
|
+
handleId: string | null;
|
|
35
|
+
handleType: HandleType | null;
|
|
36
|
+
};
|
|
37
|
+
export type OnConnectStart = (event: MouseEvent | TouchEvent, params: OnConnectStartParams) => void;
|
|
38
|
+
export type OnConnect = (connection: Connection) => void;
|
|
39
|
+
export type OnConnectEnd = (event: MouseEvent | TouchEvent) => void;
|
|
40
|
+
export type IsValidConnection = (edge: EdgeBase | Connection) => boolean;
|
|
41
|
+
export type FitViewParamsBase<NodeType extends NodeBase> = {
|
|
42
|
+
nodeLookup: Map<string, InternalNodeBase<NodeType>>;
|
|
43
|
+
width: number;
|
|
44
|
+
height: number;
|
|
45
|
+
panZoom: PanZoomInstance;
|
|
46
|
+
minZoom: number;
|
|
47
|
+
maxZoom: number;
|
|
48
|
+
nodeOrigin?: NodeOrigin;
|
|
49
|
+
};
|
|
50
|
+
export type FitViewOptionsBase<NodeType extends NodeBase = NodeBase> = {
|
|
51
|
+
padding?: number;
|
|
52
|
+
includeHiddenNodes?: boolean;
|
|
53
|
+
minZoom?: number;
|
|
54
|
+
maxZoom?: number;
|
|
55
|
+
duration?: number;
|
|
56
|
+
nodes?: (NodeType | {
|
|
57
|
+
id: string;
|
|
58
|
+
})[];
|
|
59
|
+
};
|
|
60
|
+
export type Viewport = {
|
|
61
|
+
x: number;
|
|
62
|
+
y: number;
|
|
63
|
+
zoom: number;
|
|
64
|
+
};
|
|
65
|
+
export type KeyCode = string | Array<string>;
|
|
66
|
+
export type SnapGrid = [number, number];
|
|
67
|
+
export declare enum PanOnScrollMode {
|
|
68
|
+
Free = "free",
|
|
69
|
+
Vertical = "vertical",
|
|
70
|
+
Horizontal = "horizontal"
|
|
71
|
+
}
|
|
72
|
+
export type ViewportHelperFunctionOptions = {
|
|
73
|
+
duration?: number;
|
|
74
|
+
};
|
|
75
|
+
export type SetCenterOptions = ViewportHelperFunctionOptions & {
|
|
76
|
+
zoom?: number;
|
|
77
|
+
};
|
|
78
|
+
export type FitBoundsOptions = ViewportHelperFunctionOptions & {
|
|
79
|
+
padding?: number;
|
|
80
|
+
};
|
|
81
|
+
export type OnViewportChange = (viewport: Viewport) => void;
|
|
82
|
+
export type D3ZoomInstance = ZoomBehavior<Element, unknown>;
|
|
83
|
+
export type D3SelectionInstance = D3Selection<Element, unknown, null, undefined>;
|
|
84
|
+
export type D3ZoomHandler = (this: Element, event: any, d: unknown) => void;
|
|
85
|
+
export type UpdateNodeInternals = (nodeId: string | string[]) => void;
|
|
86
|
+
export type PanelPosition = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
87
|
+
export type ProOptions = {
|
|
88
|
+
account?: string;
|
|
89
|
+
hideAttribution: boolean;
|
|
90
|
+
};
|
|
91
|
+
export type UseDragEvent = D3DragEvent<HTMLDivElement, null, SubjectPosition>;
|
|
92
|
+
export declare enum SelectionMode {
|
|
93
|
+
Partial = "partial",
|
|
94
|
+
Full = "full"
|
|
95
|
+
}
|
|
96
|
+
export type SelectionRect = Rect & {
|
|
97
|
+
startX: number;
|
|
98
|
+
startY: number;
|
|
99
|
+
};
|
|
100
|
+
export type OnError = (id: string, message: string) => void;
|
|
101
|
+
export type UpdateNodePositions = (dragItems: Map<string, NodeDragItem | InternalNodeBase>, dragging?: boolean) => void;
|
|
102
|
+
export type PanBy = (delta: XYPosition) => boolean;
|
|
103
|
+
export type UpdateConnection = (params: {
|
|
104
|
+
connectionPosition: XYPosition | null;
|
|
105
|
+
connectionStatus: ConnectionStatus | null;
|
|
106
|
+
connectionStartHandle: ConnectingHandle | null;
|
|
107
|
+
connectionEndHandle: ConnectingHandle | null;
|
|
108
|
+
}) => void;
|
|
109
|
+
export type ColorModeClass = 'light' | 'dark';
|
|
110
|
+
export type ColorMode = ColorModeClass | 'system';
|
|
111
|
+
export type ConnectionLookup = Map<string, Map<string, HandleConnection>>;
|
|
112
|
+
export type OnBeforeDeleteBase<NodeType extends NodeBase = NodeBase, EdgeType extends EdgeBase = EdgeBase> = ({ nodes, edges, }: {
|
|
113
|
+
nodes: NodeType[];
|
|
114
|
+
edges: EdgeType[];
|
|
115
|
+
}) => Promise<boolean | {
|
|
116
|
+
nodes: NodeType[];
|
|
117
|
+
edges: EdgeType[];
|
|
118
|
+
}>;
|
|
119
|
+
//# sourceMappingURL=general.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"general.d.ts","sourceRoot":"","sources":["../../../src/types/system/general.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { Position, OnConnect, IsValidConnection } from '.';
|
|
2
|
+
export type HandleType = 'source' | 'target';
|
|
3
|
+
export type HandleElement = {
|
|
4
|
+
id?: string | null;
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
position: Position;
|
|
10
|
+
type?: HandleType;
|
|
11
|
+
};
|
|
12
|
+
export type ConnectingHandle = {
|
|
13
|
+
nodeId: string;
|
|
14
|
+
type: HandleType;
|
|
15
|
+
handleId?: string | null;
|
|
16
|
+
};
|
|
17
|
+
export type ConnectionHandle = {
|
|
18
|
+
id: string | null;
|
|
19
|
+
type: HandleType;
|
|
20
|
+
nodeId: string;
|
|
21
|
+
x: number;
|
|
22
|
+
y: number;
|
|
23
|
+
};
|
|
24
|
+
export type HandleProps = {
|
|
25
|
+
/** Type of the handle
|
|
26
|
+
* @example HandleType.Source, HandleType.Target
|
|
27
|
+
*/
|
|
28
|
+
type: HandleType;
|
|
29
|
+
/** Position of the handle
|
|
30
|
+
* @example Position.TopLeft, Position.TopRight,
|
|
31
|
+
* Position.BottomLeft, Position.BottomRight
|
|
32
|
+
*/
|
|
33
|
+
position: Position;
|
|
34
|
+
/** Should you be able to connect to/from this handle */
|
|
35
|
+
isConnectable?: boolean;
|
|
36
|
+
/** Should you be able to connect from this handle */
|
|
37
|
+
isConnectableStart?: boolean;
|
|
38
|
+
/** Should you be able to connect to this handle */
|
|
39
|
+
isConnectableEnd?: boolean;
|
|
40
|
+
/** Callback called when connection is made */
|
|
41
|
+
onConnect?: OnConnect;
|
|
42
|
+
/** Callback if connection is valid
|
|
43
|
+
* @remarks connection becomes an edge if isValidConnection returns true
|
|
44
|
+
*/
|
|
45
|
+
isValidConnection?: IsValidConnection;
|
|
46
|
+
/** Id of the handle
|
|
47
|
+
* @remarks optional if there is only one handle of this type
|
|
48
|
+
*/
|
|
49
|
+
id?: string;
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=handles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"handles.d.ts","sourceRoot":"","sources":["../../../src/types/system/handles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,GAAG,CAAC;AAEhE,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE7C,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB,IAAI,EAAE,UAAU,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC;IACjB;;;OAGG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB,wDAAwD;IACxD,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,qDAAqD;IACrD,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,mDAAmD;IACnD,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,8CAA8C;IAC9C,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB;;OAEG;IACH,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACb,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/system/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import type { XYPosition, Position, CoordinateExtent, HandleElement } from '.';
|
|
2
|
+
import { Optional } from '../utils/types';
|
|
3
|
+
/**
|
|
4
|
+
* Framework independent node data structure.
|
|
5
|
+
*
|
|
6
|
+
* @typeParam NodeData - type of the node data
|
|
7
|
+
* @typeParam NodeType - type of the node
|
|
8
|
+
*/
|
|
9
|
+
export type NodeBase<NodeData extends Record<string, unknown> = Record<string, unknown>, NodeType extends string = string> = {
|
|
10
|
+
/** Unique id of a node */
|
|
11
|
+
id: string;
|
|
12
|
+
/** Position of a node on the pane
|
|
13
|
+
* @example { x: 0, y: 0 }
|
|
14
|
+
*/
|
|
15
|
+
position: XYPosition;
|
|
16
|
+
/** Arbitrary data passed to a node */
|
|
17
|
+
data: NodeData;
|
|
18
|
+
/** Type of node defined in nodeTypes */
|
|
19
|
+
type?: NodeType;
|
|
20
|
+
/** Only relevant for default, source, target nodeType. controls source position
|
|
21
|
+
* @example 'right', 'left', 'top', 'bottom'
|
|
22
|
+
*/
|
|
23
|
+
sourcePosition?: Position;
|
|
24
|
+
/** Only relevant for default, source, target nodeType. controls target position
|
|
25
|
+
* @example 'right', 'left', 'top', 'bottom'
|
|
26
|
+
*/
|
|
27
|
+
targetPosition?: Position;
|
|
28
|
+
hidden?: boolean;
|
|
29
|
+
selected?: boolean;
|
|
30
|
+
/** True, if node is being dragged */
|
|
31
|
+
dragging?: boolean;
|
|
32
|
+
draggable?: boolean;
|
|
33
|
+
selectable?: boolean;
|
|
34
|
+
connectable?: boolean;
|
|
35
|
+
deletable?: boolean;
|
|
36
|
+
dragHandle?: string;
|
|
37
|
+
width?: number;
|
|
38
|
+
height?: number;
|
|
39
|
+
initialWidth?: number;
|
|
40
|
+
initialHeight?: number;
|
|
41
|
+
/** Parent node id, used for creating sub-flows */
|
|
42
|
+
parentId?: string;
|
|
43
|
+
zIndex?: number;
|
|
44
|
+
/** Boundary a node can be moved in
|
|
45
|
+
* @example 'parent' or [[0, 0], [100, 100]]
|
|
46
|
+
*/
|
|
47
|
+
extent?: 'parent' | CoordinateExtent;
|
|
48
|
+
expandParent?: boolean;
|
|
49
|
+
ariaLabel?: string;
|
|
50
|
+
/** Origin of the node relative to it's position
|
|
51
|
+
* @example
|
|
52
|
+
* [0.5, 0.5] // centers the node
|
|
53
|
+
* [0, 0] // top left
|
|
54
|
+
* [1, 1] // bottom right
|
|
55
|
+
*/
|
|
56
|
+
origin?: NodeOrigin;
|
|
57
|
+
handles?: NodeHandle[];
|
|
58
|
+
measured?: {
|
|
59
|
+
width?: number;
|
|
60
|
+
height?: number;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export type InternalNodeBase<NodeType extends NodeBase = NodeBase> = NodeType & {
|
|
64
|
+
measured: {
|
|
65
|
+
width?: number;
|
|
66
|
+
height?: number;
|
|
67
|
+
};
|
|
68
|
+
internals: {
|
|
69
|
+
positionAbsolute: XYPosition;
|
|
70
|
+
z: number;
|
|
71
|
+
/** Holds a reference to the original node object provided by the user.
|
|
72
|
+
* Used as an optimization to avoid certain operations. */
|
|
73
|
+
userNode: NodeType;
|
|
74
|
+
handleBounds?: NodeHandleBounds;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* The node data structure that gets used for the nodes prop.
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export type NodeProps<NodeType extends NodeBase> = Pick<NodeType, 'id' | 'data' | 'width' | 'height' | 'sourcePosition' | 'targetPosition' | 'selected' | 'dragHandle'> & Required<Pick<NodeType, 'type' | 'dragging' | 'zIndex'>> & {
|
|
83
|
+
/** whether a node is connectable or not */
|
|
84
|
+
isConnectable: boolean;
|
|
85
|
+
/** position absolute x value */
|
|
86
|
+
positionAbsoluteX: number;
|
|
87
|
+
/** position absolute x value */
|
|
88
|
+
positionAbsoluteY: number;
|
|
89
|
+
};
|
|
90
|
+
export type NodeHandleBounds = {
|
|
91
|
+
source: HandleElement[] | null;
|
|
92
|
+
target: HandleElement[] | null;
|
|
93
|
+
};
|
|
94
|
+
export type InternalNodeUpdate = {
|
|
95
|
+
id: string;
|
|
96
|
+
nodeElement: HTMLDivElement;
|
|
97
|
+
force?: boolean;
|
|
98
|
+
};
|
|
99
|
+
export type NodeBounds = XYPosition & {
|
|
100
|
+
width: number | null;
|
|
101
|
+
height: number | null;
|
|
102
|
+
};
|
|
103
|
+
export type NodeDragItem = {
|
|
104
|
+
id: string;
|
|
105
|
+
position: XYPosition;
|
|
106
|
+
distance: XYPosition;
|
|
107
|
+
measured: {
|
|
108
|
+
width: number;
|
|
109
|
+
height: number;
|
|
110
|
+
};
|
|
111
|
+
internals: {
|
|
112
|
+
positionAbsolute: XYPosition;
|
|
113
|
+
};
|
|
114
|
+
extent?: 'parent' | CoordinateExtent;
|
|
115
|
+
parentId?: string;
|
|
116
|
+
dragging?: boolean;
|
|
117
|
+
origin?: NodeOrigin;
|
|
118
|
+
expandParent?: boolean;
|
|
119
|
+
};
|
|
120
|
+
export type NodeOrigin = [number, number];
|
|
121
|
+
export type OnSelectionDrag = (event: MouseEvent, nodes: NodeBase[]) => void;
|
|
122
|
+
export type NodeHandle = Optional<HandleElement, 'width' | 'height'>;
|
|
123
|
+
export type Align = 'center' | 'start' | 'end';
|
|
124
|
+
export type NodeLookup<NodeType extends InternalNodeBase = InternalNodeBase> = Map<string, NodeType>;
|
|
125
|
+
export type ParentLookup<NodeType extends InternalNodeBase = InternalNodeBase> = Map<string, NodeType[]>;
|
|
126
|
+
//# sourceMappingURL=nodes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nodes.d.ts","sourceRoot":"","sources":["../../../src/types/system/nodes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { ZoomTransform } from 'd3-zoom';
|
|
2
|
+
import { PanOnScrollMode, type CoordinateExtent, type Transform, type Viewport } from './';
|
|
3
|
+
export type OnDraggingChange = (dragging: boolean) => void;
|
|
4
|
+
export type OnTransformChange = (transform: Transform) => void;
|
|
5
|
+
export type PanZoomParams = {
|
|
6
|
+
domNode: Element;
|
|
7
|
+
minZoom: number;
|
|
8
|
+
maxZoom: number;
|
|
9
|
+
viewport: Viewport;
|
|
10
|
+
translateExtent: CoordinateExtent;
|
|
11
|
+
onTransformChange: OnTransformChange;
|
|
12
|
+
onDraggingChange: OnDraggingChange;
|
|
13
|
+
onPanZoomStart?: OnPanZoom;
|
|
14
|
+
onPanZoom?: OnPanZoom;
|
|
15
|
+
onPanZoomEnd?: OnPanZoom;
|
|
16
|
+
};
|
|
17
|
+
export type PanZoomTransformOptions = {
|
|
18
|
+
duration?: number;
|
|
19
|
+
};
|
|
20
|
+
export type OnPanZoom = (event: MouseEvent | TouchEvent | null, viewport: Viewport) => void;
|
|
21
|
+
export type PanZoomUpdateOptions = {
|
|
22
|
+
noWheelClassName: string;
|
|
23
|
+
noPanClassName: string;
|
|
24
|
+
onPaneContextMenu?: (event: MouseEvent) => void;
|
|
25
|
+
preventScrolling: boolean;
|
|
26
|
+
panOnScroll: boolean;
|
|
27
|
+
panOnDrag: boolean | number[];
|
|
28
|
+
panOnScrollMode: PanOnScrollMode;
|
|
29
|
+
panOnScrollSpeed: number;
|
|
30
|
+
userSelectionActive: boolean;
|
|
31
|
+
zoomOnPinch: boolean;
|
|
32
|
+
zoomOnScroll: boolean;
|
|
33
|
+
zoomOnDoubleClick: boolean;
|
|
34
|
+
zoomActivationKeyPressed: boolean;
|
|
35
|
+
lib: string;
|
|
36
|
+
};
|
|
37
|
+
export type PanZoomInstance = {
|
|
38
|
+
update: (params: PanZoomUpdateOptions) => void;
|
|
39
|
+
destroy: () => void;
|
|
40
|
+
getViewport: () => Viewport;
|
|
41
|
+
setViewport: (viewport: Viewport, options?: PanZoomTransformOptions) => ZoomTransform | undefined;
|
|
42
|
+
setViewportConstrained: (viewport: Viewport, extent: CoordinateExtent, translateExtent: CoordinateExtent) => ZoomTransform | undefined;
|
|
43
|
+
setScaleExtent: (scaleExtent: [number, number]) => void;
|
|
44
|
+
setTranslateExtent: (translateExtent: CoordinateExtent) => void;
|
|
45
|
+
scaleTo: (scale: number, options?: PanZoomTransformOptions) => void;
|
|
46
|
+
scaleBy: (factor: number, options?: PanZoomTransformOptions) => void;
|
|
47
|
+
syncViewport: (viewport: Viewport) => void;
|
|
48
|
+
};
|
|
49
|
+
//# sourceMappingURL=panzoom.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"panzoom.d.ts","sourceRoot":"","sources":["../../../src/types/system/panzoom.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C,OAAO,EAAE,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,SAAS,EAAE,KAAK,QAAQ,EAAE,MAAM,IAAI,CAAC;AAE3F,MAAM,MAAM,gBAAgB,GAAG,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;AAC3D,MAAM,MAAM,iBAAiB,GAAG,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,CAAC;AAE/D,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,QAAQ,CAAC;IACnB,eAAe,EAAE,gBAAgB,CAAC;IAClC,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,YAAY,CAAC,EAAE,SAAS,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,UAAU,GAAG,UAAU,GAAG,IAAI,EAAE,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;AAE5F,MAAM,MAAM,oBAAoB,GAAG;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IAChD,gBAAgB,EAAE,OAAO,CAAC;IAC1B,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,OAAO,GAAG,MAAM,EAAE,CAAC;IAC9B,eAAe,EAAE,eAAe,CAAC;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,WAAW,EAAE,OAAO,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;IACtB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,wBAAwB,EAAE,OAAO,CAAC;IAClC,GAAG,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,CAAC,MAAM,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAC/C,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,WAAW,EAAE,MAAM,QAAQ,CAAC;IAC5B,WAAW,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,uBAAuB,KAAK,aAAa,GAAG,SAAS,CAAC;IAClG,sBAAsB,EAAE,CACtB,QAAQ,EAAE,QAAQ,EAClB,MAAM,EAAE,gBAAgB,EACxB,eAAe,EAAE,gBAAgB,KAC9B,aAAa,GAAG,SAAS,CAAC;IAC/B,cAAc,EAAE,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,IAAI,CAAC;IACxD,kBAAkB,EAAE,CAAC,eAAe,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAChE,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,uBAAuB,KAAK,IAAI,CAAC;IACpE,OAAO,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,uBAAuB,KAAK,IAAI,CAAC;IACrE,YAAY,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;CAC5C,CAAC"}
|