@xyflow/vue 2.0.0-next.3 → 2.0.0-next.4
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/index.d.mts +265 -4
- package/dist/index.d.ts +265 -4
- package/dist/index.js +132 -37
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +130 -38
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -3
package/dist/index.d.mts
CHANGED
|
@@ -271,12 +271,14 @@ declare enum ErrorCode {
|
|
|
271
271
|
NODE_MISSING_PARENT = "NODE_MISSING_PARENT",
|
|
272
272
|
NODE_TYPE_MISSING = "NODE_TYPE_MISSING",
|
|
273
273
|
NODE_EXTENT_INVALID = "NODE_EXTENT_INVALID",
|
|
274
|
+
NODE_DUPLICATE_ID = "NODE_DUPLICATE_ID",
|
|
274
275
|
EDGE_INVALID = "EDGE_INVALID",
|
|
275
276
|
EDGE_NOT_FOUND = "EDGE_NOT_FOUND",
|
|
276
277
|
EDGE_SOURCE_MISSING = "EDGE_SOURCE_MISSING",
|
|
277
278
|
EDGE_TARGET_MISSING = "EDGE_TARGET_MISSING",
|
|
278
279
|
EDGE_TYPE_MISSING = "EDGE_TYPE_MISSING",
|
|
279
280
|
EDGE_SOURCE_TARGET_MISSING = "EDGE_SOURCE_TARGET_MISSING",
|
|
281
|
+
EDGE_DUPLICATE_ID = "EDGE_DUPLICATE_ID",
|
|
280
282
|
USE_VUE_FLOW_OUTSIDE_PROVIDER = "USE_VUE_FLOW_OUTSIDE_PROVIDER"
|
|
281
283
|
}
|
|
282
284
|
declare const messages: {
|
|
@@ -287,11 +289,13 @@ declare const messages: {
|
|
|
287
289
|
readonly NODE_MISSING_PARENT: (id: string, parentId: string) => string;
|
|
288
290
|
readonly NODE_TYPE_MISSING: (type: string) => string;
|
|
289
291
|
readonly NODE_EXTENT_INVALID: (id: string) => string;
|
|
292
|
+
readonly NODE_DUPLICATE_ID: (id: string) => string;
|
|
290
293
|
readonly EDGE_INVALID: (id: string) => string;
|
|
291
294
|
readonly EDGE_SOURCE_MISSING: (id: string, source: string) => string;
|
|
292
295
|
readonly EDGE_TARGET_MISSING: (id: string, target: string) => string;
|
|
293
296
|
readonly EDGE_TYPE_MISSING: (type: string) => string;
|
|
294
297
|
readonly EDGE_SOURCE_TARGET_MISSING: (id: string, source: string, target: string) => string;
|
|
298
|
+
readonly EDGE_DUPLICATE_ID: (id: string) => string;
|
|
295
299
|
readonly EDGE_NOT_FOUND: (id: string) => string;
|
|
296
300
|
readonly USE_VUE_FLOW_OUTSIDE_PROVIDER: () => string;
|
|
297
301
|
};
|
|
@@ -1655,7 +1659,8 @@ type ElementChange = NodeChange | EdgeChange;
|
|
|
1655
1659
|
//#endregion
|
|
1656
1660
|
//#region src/types/panel.d.ts
|
|
1657
1661
|
interface PanelProps {
|
|
1658
|
-
position
|
|
1662
|
+
/** the position of the panel; defaults to `top-left` (mirrors xyflow/react) */
|
|
1663
|
+
position?: PanelPosition;
|
|
1659
1664
|
/** accessible label for the panel container, applied as `aria-label` (used by `<Controls>`) */
|
|
1660
1665
|
label?: string | null;
|
|
1661
1666
|
}
|
|
@@ -2036,7 +2041,9 @@ type __VLS_WithSlots$2<T, S> = T & {
|
|
|
2036
2041
|
//#endregion
|
|
2037
2042
|
//#region src/components/Panel/Panel.vue.d.ts
|
|
2038
2043
|
declare const _default$12: typeof __VLS_export$2;
|
|
2039
|
-
declare const __VLS_export$2: __VLS_WithSlots$1<import("vue").DefineComponent<PanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PanelProps> & Readonly<{}>, {
|
|
2044
|
+
declare const __VLS_export$2: __VLS_WithSlots$1<import("vue").DefineComponent<PanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PanelProps> & Readonly<{}>, {
|
|
2045
|
+
position: import("@xyflow/system").PanelPosition;
|
|
2046
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
2040
2047
|
default?: (props: {}) => any;
|
|
2041
2048
|
}>;
|
|
2042
2049
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
@@ -2157,7 +2164,7 @@ declare const __VLS_export$1: <NodeType extends Node = Node, EdgeType extends Ed
|
|
|
2157
2164
|
expose: (exposed: import("vue").ShallowUnwrapRef<VueFlowInstance<NodeType, EdgeType>>) => void;
|
|
2158
2165
|
attrs: any;
|
|
2159
2166
|
slots: FlowSlots<NodeType, EdgeType>;
|
|
2160
|
-
emit: (((evt: "error", error: VueFlowError<ErrorCode, [] | [id?: string | undefined] | [id: string | null] | [id: string, parentId: string] | [type: string] | [id: string] | [id: string] | [id: string, source: string] | [id: string, target: string] | [type: string] | [id: string, source: string, target: string] | [id: string]>) => void) & ((evt: "nodesChange", changes: NodeChange<NodeType>[]) => void) & ((evt: "edgesChange", changes: EdgeChange<EdgeType>[]) => void) & ((evt: "nodeDoubleClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseEnter", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseMove", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseLeave", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeContextMenu", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeDragStart", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodeDrag", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodeDragStop", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodesInitialized", nodes: NodeType[]) => void) & ((evt: "updateNodeInternals") => void) & ((evt: "miniMapNodeClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeDoubleClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseEnter", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseMove", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseLeave", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "connect", connectionEvent: import("@xyflow/system").Connection) => void) & ((evt: "connectStart", connectionEvent: {
|
|
2167
|
+
emit: (((evt: "error", error: VueFlowError<ErrorCode, [] | [id?: string | undefined] | [id: string | null] | [id: string, parentId: string] | [type: string] | [id: string] | [id: string] | [id: string] | [id: string, source: string] | [id: string, target: string] | [type: string] | [id: string, source: string, target: string] | [id: string] | [id: string]>) => void) & ((evt: "nodesChange", changes: NodeChange<NodeType>[]) => void) & ((evt: "edgesChange", changes: EdgeChange<EdgeType>[]) => void) & ((evt: "nodeDoubleClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseEnter", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseMove", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeMouseLeave", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeContextMenu", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "nodeDragStart", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodeDrag", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodeDragStop", nodeDragEvent: NodeDragEvent<NodeType>) => void) & ((evt: "nodesInitialized", nodes: NodeType[]) => void) & ((evt: "updateNodeInternals") => void) & ((evt: "miniMapNodeClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeDoubleClick", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseEnter", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseMove", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "miniMapNodeMouseLeave", nodeMouseEvent: NodeMouseEvent<NodeType>) => void) & ((evt: "connect", connectionEvent: import("@xyflow/system").Connection) => void) & ((evt: "connectStart", connectionEvent: {
|
|
2161
2168
|
event?: MouseEvent;
|
|
2162
2169
|
} & OnConnectStartParams) => void) & ((evt: "connectEnd", connectionEvent: ConnectEndEvent<NodeType>) => void) & ((evt: "clickConnectStart", connectionEvent: {
|
|
2163
2170
|
event?: MouseEvent;
|
|
@@ -2199,9 +2206,263 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
2199
2206
|
declare const VueFlow: InjectionKey<VueFlowInstance>;
|
|
2200
2207
|
declare const NodeId: InjectionKey<string>;
|
|
2201
2208
|
//#endregion
|
|
2209
|
+
//#region src/props-objects.gen.d.ts
|
|
2210
|
+
declare function nodeProps<NodeType extends Node = Node>(): {
|
|
2211
|
+
data: {
|
|
2212
|
+
type: import("vue").PropType<NodeType["data"]>;
|
|
2213
|
+
required: true;
|
|
2214
|
+
};
|
|
2215
|
+
deletable: {
|
|
2216
|
+
type: import("vue").PropType<boolean>;
|
|
2217
|
+
required: true;
|
|
2218
|
+
};
|
|
2219
|
+
dragHandle: {
|
|
2220
|
+
type: import("vue").PropType<NodeType["dragHandle"] | undefined>;
|
|
2221
|
+
required: false;
|
|
2222
|
+
};
|
|
2223
|
+
draggable: {
|
|
2224
|
+
type: import("vue").PropType<boolean>;
|
|
2225
|
+
required: true;
|
|
2226
|
+
};
|
|
2227
|
+
dragging: {
|
|
2228
|
+
type: import("vue").PropType<boolean>;
|
|
2229
|
+
required: true;
|
|
2230
|
+
};
|
|
2231
|
+
height: {
|
|
2232
|
+
type: import("vue").PropType<NodeType["height"] | undefined>;
|
|
2233
|
+
required: false;
|
|
2234
|
+
};
|
|
2235
|
+
id: {
|
|
2236
|
+
type: import("vue").PropType<string>;
|
|
2237
|
+
required: true;
|
|
2238
|
+
};
|
|
2239
|
+
isConnectable: {
|
|
2240
|
+
type: import("vue").PropType<boolean>;
|
|
2241
|
+
required: true;
|
|
2242
|
+
};
|
|
2243
|
+
parentId: {
|
|
2244
|
+
type: import("vue").PropType<NodeType["parentId"] | undefined>;
|
|
2245
|
+
required: false;
|
|
2246
|
+
};
|
|
2247
|
+
positionAbsoluteX: {
|
|
2248
|
+
type: import("vue").PropType<number>;
|
|
2249
|
+
required: true;
|
|
2250
|
+
};
|
|
2251
|
+
positionAbsoluteY: {
|
|
2252
|
+
type: import("vue").PropType<number>;
|
|
2253
|
+
required: true;
|
|
2254
|
+
};
|
|
2255
|
+
selectable: {
|
|
2256
|
+
type: import("vue").PropType<boolean>;
|
|
2257
|
+
required: true;
|
|
2258
|
+
};
|
|
2259
|
+
selected: {
|
|
2260
|
+
type: import("vue").PropType<boolean>;
|
|
2261
|
+
required: true;
|
|
2262
|
+
};
|
|
2263
|
+
sourcePosition: {
|
|
2264
|
+
type: import("vue").PropType<NodeType["sourcePosition"] | undefined>;
|
|
2265
|
+
required: false;
|
|
2266
|
+
};
|
|
2267
|
+
targetPosition: {
|
|
2268
|
+
type: import("vue").PropType<NodeType["targetPosition"] | undefined>;
|
|
2269
|
+
required: false;
|
|
2270
|
+
};
|
|
2271
|
+
type: {
|
|
2272
|
+
type: import("vue").PropType<NodeType["type"]>;
|
|
2273
|
+
required: true;
|
|
2274
|
+
};
|
|
2275
|
+
width: {
|
|
2276
|
+
type: import("vue").PropType<NodeType["width"] | undefined>;
|
|
2277
|
+
required: false;
|
|
2278
|
+
};
|
|
2279
|
+
zIndex: {
|
|
2280
|
+
type: import("vue").PropType<number>;
|
|
2281
|
+
required: true;
|
|
2282
|
+
};
|
|
2283
|
+
};
|
|
2284
|
+
declare function edgeProps<EdgeType extends Edge = Edge>(): {
|
|
2285
|
+
animated: {
|
|
2286
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2287
|
+
required: false;
|
|
2288
|
+
};
|
|
2289
|
+
curvature: {
|
|
2290
|
+
type: import("vue").PropType<number | undefined>;
|
|
2291
|
+
required: false;
|
|
2292
|
+
};
|
|
2293
|
+
data: {
|
|
2294
|
+
type: import("vue").PropType<EdgeType["data"] | undefined>;
|
|
2295
|
+
required: false;
|
|
2296
|
+
};
|
|
2297
|
+
deletable: {
|
|
2298
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2299
|
+
required: false;
|
|
2300
|
+
};
|
|
2301
|
+
id: {
|
|
2302
|
+
type: import("vue").PropType<string>;
|
|
2303
|
+
required: true;
|
|
2304
|
+
};
|
|
2305
|
+
interactionWidth: {
|
|
2306
|
+
type: import("vue").PropType<number | undefined>;
|
|
2307
|
+
required: false;
|
|
2308
|
+
};
|
|
2309
|
+
label: {
|
|
2310
|
+
type: import("vue").PropType<string | object | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2311
|
+
[key: string]: any;
|
|
2312
|
+
}> | import("vue").Component<EdgeTextProps> | undefined>;
|
|
2313
|
+
required: false;
|
|
2314
|
+
};
|
|
2315
|
+
labelBgBorderRadius: {
|
|
2316
|
+
type: import("vue").PropType<number | undefined>;
|
|
2317
|
+
required: false;
|
|
2318
|
+
};
|
|
2319
|
+
labelBgPadding: {
|
|
2320
|
+
type: import("vue").PropType<[number, number] | undefined>;
|
|
2321
|
+
required: false;
|
|
2322
|
+
};
|
|
2323
|
+
labelBgStyle: {
|
|
2324
|
+
type: import("vue").PropType<import("vue").CSSProperties | undefined>;
|
|
2325
|
+
required: false;
|
|
2326
|
+
};
|
|
2327
|
+
labelShowBg: {
|
|
2328
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2329
|
+
required: false;
|
|
2330
|
+
};
|
|
2331
|
+
labelStyle: {
|
|
2332
|
+
type: import("vue").PropType<import("vue").CSSProperties | undefined>;
|
|
2333
|
+
required: false;
|
|
2334
|
+
};
|
|
2335
|
+
markerEnd: {
|
|
2336
|
+
type: import("vue").PropType<string | undefined>;
|
|
2337
|
+
required: false;
|
|
2338
|
+
};
|
|
2339
|
+
markerStart: {
|
|
2340
|
+
type: import("vue").PropType<string | undefined>;
|
|
2341
|
+
required: false;
|
|
2342
|
+
};
|
|
2343
|
+
reconnectable: {
|
|
2344
|
+
type: import("vue").PropType<EdgeReconnectable | undefined>;
|
|
2345
|
+
required: false;
|
|
2346
|
+
};
|
|
2347
|
+
selectable: {
|
|
2348
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2349
|
+
required: false;
|
|
2350
|
+
};
|
|
2351
|
+
selected: {
|
|
2352
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
2353
|
+
required: false;
|
|
2354
|
+
};
|
|
2355
|
+
source: {
|
|
2356
|
+
type: import("vue").PropType<string>;
|
|
2357
|
+
required: true;
|
|
2358
|
+
};
|
|
2359
|
+
sourceHandleId: {
|
|
2360
|
+
type: import("vue").PropType<string | null | undefined>;
|
|
2361
|
+
required: false;
|
|
2362
|
+
};
|
|
2363
|
+
sourcePosition: {
|
|
2364
|
+
type: import("vue").PropType<import("@xyflow/system").Position>;
|
|
2365
|
+
required: true;
|
|
2366
|
+
};
|
|
2367
|
+
sourceX: {
|
|
2368
|
+
type: import("vue").PropType<number>;
|
|
2369
|
+
required: true;
|
|
2370
|
+
};
|
|
2371
|
+
sourceY: {
|
|
2372
|
+
type: import("vue").PropType<number>;
|
|
2373
|
+
required: true;
|
|
2374
|
+
};
|
|
2375
|
+
style: {
|
|
2376
|
+
type: import("vue").PropType<import("vue").CSSProperties | undefined>;
|
|
2377
|
+
required: false;
|
|
2378
|
+
};
|
|
2379
|
+
target: {
|
|
2380
|
+
type: import("vue").PropType<string>;
|
|
2381
|
+
required: true;
|
|
2382
|
+
};
|
|
2383
|
+
targetHandleId: {
|
|
2384
|
+
type: import("vue").PropType<string | null | undefined>;
|
|
2385
|
+
required: false;
|
|
2386
|
+
};
|
|
2387
|
+
targetPosition: {
|
|
2388
|
+
type: import("vue").PropType<import("@xyflow/system").Position>;
|
|
2389
|
+
required: true;
|
|
2390
|
+
};
|
|
2391
|
+
targetX: {
|
|
2392
|
+
type: import("vue").PropType<number>;
|
|
2393
|
+
required: true;
|
|
2394
|
+
};
|
|
2395
|
+
targetY: {
|
|
2396
|
+
type: import("vue").PropType<number>;
|
|
2397
|
+
required: true;
|
|
2398
|
+
};
|
|
2399
|
+
type: {
|
|
2400
|
+
type: import("vue").PropType<EdgeType["type"] | undefined>;
|
|
2401
|
+
required: false;
|
|
2402
|
+
};
|
|
2403
|
+
};
|
|
2404
|
+
declare function connectionLineProps<NodeType extends Node = Node>(): {
|
|
2405
|
+
connectionStatus: {
|
|
2406
|
+
type: import("vue").PropType<ConnectionStatus | null>;
|
|
2407
|
+
required: true;
|
|
2408
|
+
};
|
|
2409
|
+
fromHandle: {
|
|
2410
|
+
type: import("vue").PropType<HandleElement | null>;
|
|
2411
|
+
required: true;
|
|
2412
|
+
};
|
|
2413
|
+
fromNode: {
|
|
2414
|
+
type: import("vue").PropType<InternalNode<NodeType>>;
|
|
2415
|
+
required: true;
|
|
2416
|
+
};
|
|
2417
|
+
fromPosition: {
|
|
2418
|
+
type: import("vue").PropType<import("@xyflow/system").Position>;
|
|
2419
|
+
required: true;
|
|
2420
|
+
};
|
|
2421
|
+
fromX: {
|
|
2422
|
+
type: import("vue").PropType<number>;
|
|
2423
|
+
required: true;
|
|
2424
|
+
};
|
|
2425
|
+
fromY: {
|
|
2426
|
+
type: import("vue").PropType<number>;
|
|
2427
|
+
required: true;
|
|
2428
|
+
};
|
|
2429
|
+
markerEnd: {
|
|
2430
|
+
type: import("vue").PropType<string | undefined>;
|
|
2431
|
+
required: false;
|
|
2432
|
+
};
|
|
2433
|
+
markerStart: {
|
|
2434
|
+
type: import("vue").PropType<string | undefined>;
|
|
2435
|
+
required: false;
|
|
2436
|
+
};
|
|
2437
|
+
pointer: {
|
|
2438
|
+
type: import("vue").PropType<import("@xyflow/system").XYPosition>;
|
|
2439
|
+
required: true;
|
|
2440
|
+
};
|
|
2441
|
+
toHandle: {
|
|
2442
|
+
type: import("vue").PropType<HandleElement | null>;
|
|
2443
|
+
required: true;
|
|
2444
|
+
};
|
|
2445
|
+
toNode: {
|
|
2446
|
+
type: import("vue").PropType<InternalNode<NodeType> | null>;
|
|
2447
|
+
required: true;
|
|
2448
|
+
};
|
|
2449
|
+
toPosition: {
|
|
2450
|
+
type: import("vue").PropType<import("@xyflow/system").Position>;
|
|
2451
|
+
required: true;
|
|
2452
|
+
};
|
|
2453
|
+
toX: {
|
|
2454
|
+
type: import("vue").PropType<number>;
|
|
2455
|
+
required: true;
|
|
2456
|
+
};
|
|
2457
|
+
toY: {
|
|
2458
|
+
type: import("vue").PropType<number>;
|
|
2459
|
+
required: true;
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2462
|
+
//#endregion
|
|
2202
2463
|
//#region src/utils/defaultNodesEdges.d.ts
|
|
2203
2464
|
declare const defaultNodeTypes: DefaultNodeTypes;
|
|
2204
2465
|
declare const defaultEdgeTypes: DefaultEdgeTypes;
|
|
2205
2466
|
//#endregion
|
|
2206
|
-
export { Actions, AddEdges, AddNodes, type Align, type AriaLabelConfig, _default as Background, BackgroundProps, BackgroundVariant, _default$1 as BaseEdge, BaseEdgeProps, BezierEdge, BezierEdgeProps, BezierEdgeType, BezierPathOptions, BuiltInNode, CSSVars, ClassValue, type ColorMode, ComputedGetters, ConnectEndEvent, ConnectingHandle, type Connection, ConnectionInProgress, ConnectionLineOptions, ConnectionLineProps, ConnectionLineType, ConnectionLookup, ConnectionMode, ConnectionState, ConnectionStatus, Connector, _default$2 as ControlButton, ControlEmits, type ControlLinePosition, type ControlPosition, ControlProps, _default$3 as Controls, type CoordinateExtent, CustomThemeVars, DefaultEdge, DefaultEdgeOptions, DefaultEdgeTypes, DefaultNodeTypes, DeleteElements, type Dimensions, Edge, EdgeAddChange, EdgeChange, EdgeComponent, EdgeEventsHandler, EdgeEventsOn, EdgeLabelOptions, _default$4 as EdgeLabelRenderer, EdgeLookup, EdgeMarker, EdgeMarkerType, EdgeMouseEvent, EdgePositions, EdgeProps, EdgeReconnectEndEvent, EdgeReconnectEvent, EdgeReconnectStartEvent, EdgeReconnectable, type EdgeRemoveChange, type EdgeSelectionChange, EdgeSlots, _default$5 as EdgeText, EdgeTextProps, EdgeTypesObject, ElementChange, ErrorCode, type FinalConnectionState, FitBounds, FitBoundsOptions, FitView, type FitViewOptions, FlowEmits, FlowEvents, FlowExportObject, FlowHooks, FlowHooksEmit, FlowHooksOn, FlowOptions, FlowProps, FlowSlots, GetEdge, GetInternalNode, GetIntersectingNodes, GetNode, type GetViewport, Getters, _default$6 as Handle, HandleConnectable, HandleConnectableFunc, HandleElement, HandleProps, type HandleType, InternalNode, IsNodeIntersecting, IsValidParams, MarkerProps, MarkerType, _default$7 as MiniMap, MiniMapEmits, _default$8 as MiniMapNode, MiniMapNodeEmits, MiniMapNodeFunc, MiniMapNodeProps, MiniMapProps, MiniMapSlots, MouseTouchEvent, NoConnection, Node, NodeAddChange, NodeChange, NodeComponent, type NodeConnection, type NodeDimensionChange, NodeDragEvent, NodeDragItem, NodeEventsHandler, NodeEventsOn, NodeHandleBounds, NodeId as NodeIdInjection, NodeLookup, NodeMouseEvent, NodeOrigin, type NodePositionChange, NodeProps, type NodeRemoveChange, _default$9 as NodeResizeControl, _default$10 as NodeResizer, NodeResizerEmits, NodeResizerProps, type NodeSelectionChange, NodeSlots, _default$11 as NodeToolbar, NodeToolbarProps, NodeTypesObject, OnBeforeDelete, OnConnectStartParams, OnResize, OnResizeEnd, OnResizeStart, type Padding, type PaddingUnit, type PaddingWithUnit, PanOnScrollMode, _default$12 as Panel, PanelProps, Position, type Project, ReconnectEdge, type Rect, RemoveEdges, RemoveNodes, ResizeControlLineProps, ResizeControlProps, ResizeControlVariant, type ResizeDragEvent, type ResizeParams, type ResizeParamsWithDirection, Result, SelectionChangeEvent, SelectionMode, type SelectionRect, type SetCenter, type SetCenterOptions, SetEdges, SetNodes, SetState, SetStateOptions, type SetViewport, ShapeRendering, type ShouldResize, SimpleBezierEdge, SimpleBezierEdgeProps, Slots, SmoothStepEdge, SmoothStepEdgeProps, SmoothStepEdgeType, SmoothStepPathOptions, type SnapGrid, State, StepEdge, StepEdgeProps, StraightEdge, StraightEdgeProps, Styles, ThemeVars, UpdateEdge, UpdateEdgeData, UpdateNode, UpdateNodeData, UpdateNodeDimensions, UpdateNodeDimensionsParams, UpdateNodeInternals, UpdateNodePosition, ValidConnectionFunc, type Viewport, ViewportFunctions, type ViewportHelperFunctionOptions, _default$13 as VueFlow, VueFlowError, VueFlow as VueFlowInjection, VueFlowInstance, _default$14 as VueFlowProvider, VueFlowState, VueFlowStoreHandle, type XYPosition, type ZIndexMode, type ZoomInOut, type ZoomTo, applyChanges, applyEdgeChanges, applyNodeChanges, clamp, connectionExists, defaultEdgeTypes, defaultNodeTypes, getBezierEdgeCenter, getBezierPath, getBoundsOfBoxes, getBoundsOfRects, getConnectedEdges, getConnectionStatus, getIncomers, getMarkerId, getNodesBounds, getNodesInside, getOutgoers, getSimpleBezierPath, getSmoothStepPath, getStraightPath, getViewportForBounds, isEdge, isEdgeBase, isErrorOfType, isInternalNode, isInternalNodeBase, isMacOs, isNode, isNodeBase, pointToRendererPoint, rendererPointToPoint, storeToRefs, useConnection, useEdge, useEdgesData, useHandle, useInternalNode, useKeyPress, useNode, useNodeConnections, useNodeId, useNodesData, useNodesInitialized, useStore, useVueFlow };
|
|
2467
|
+
export { Actions, AddEdges, AddNodes, type Align, type AriaLabelConfig, _default as Background, BackgroundProps, BackgroundVariant, _default$1 as BaseEdge, BaseEdgeProps, BezierEdge, BezierEdgeProps, BezierEdgeType, BezierPathOptions, BuiltInNode, CSSVars, ClassValue, type ColorMode, ComputedGetters, ConnectEndEvent, ConnectingHandle, type Connection, ConnectionInProgress, ConnectionLineOptions, ConnectionLineProps, ConnectionLineType, ConnectionLookup, ConnectionMode, ConnectionState, ConnectionStatus, Connector, _default$2 as ControlButton, ControlEmits, type ControlLinePosition, type ControlPosition, ControlProps, _default$3 as Controls, type CoordinateExtent, CustomThemeVars, DefaultEdge, DefaultEdgeOptions, DefaultEdgeTypes, DefaultNodeTypes, DeleteElements, type Dimensions, Edge, EdgeAddChange, EdgeChange, EdgeComponent, EdgeEventsHandler, EdgeEventsOn, EdgeLabelOptions, _default$4 as EdgeLabelRenderer, EdgeLookup, EdgeMarker, EdgeMarkerType, EdgeMouseEvent, EdgePositions, EdgeProps, EdgeReconnectEndEvent, EdgeReconnectEvent, EdgeReconnectStartEvent, EdgeReconnectable, type EdgeRemoveChange, type EdgeSelectionChange, EdgeSlots, _default$5 as EdgeText, EdgeTextProps, EdgeTypesObject, ElementChange, ErrorCode, type FinalConnectionState, FitBounds, FitBoundsOptions, FitView, type FitViewOptions, FlowEmits, FlowEvents, FlowExportObject, FlowHooks, FlowHooksEmit, FlowHooksOn, FlowOptions, FlowProps, FlowSlots, GetEdge, GetInternalNode, GetIntersectingNodes, GetNode, type GetViewport, Getters, _default$6 as Handle, HandleConnectable, HandleConnectableFunc, HandleElement, HandleProps, type HandleType, InternalNode, IsNodeIntersecting, IsValidParams, MarkerProps, MarkerType, _default$7 as MiniMap, MiniMapEmits, _default$8 as MiniMapNode, MiniMapNodeEmits, MiniMapNodeFunc, MiniMapNodeProps, MiniMapProps, MiniMapSlots, MouseTouchEvent, NoConnection, Node, NodeAddChange, NodeChange, NodeComponent, type NodeConnection, type NodeDimensionChange, NodeDragEvent, NodeDragItem, NodeEventsHandler, NodeEventsOn, NodeHandleBounds, NodeId as NodeIdInjection, NodeLookup, NodeMouseEvent, NodeOrigin, type NodePositionChange, NodeProps, type NodeRemoveChange, _default$9 as NodeResizeControl, _default$10 as NodeResizer, NodeResizerEmits, NodeResizerProps, type NodeSelectionChange, NodeSlots, _default$11 as NodeToolbar, NodeToolbarProps, NodeTypesObject, OnBeforeDelete, OnConnectStartParams, OnResize, OnResizeEnd, OnResizeStart, type Padding, type PaddingUnit, type PaddingWithUnit, PanOnScrollMode, _default$12 as Panel, PanelProps, Position, type Project, ReconnectEdge, type Rect, RemoveEdges, RemoveNodes, ResizeControlLineProps, ResizeControlProps, ResizeControlVariant, type ResizeDragEvent, type ResizeParams, type ResizeParamsWithDirection, Result, SelectionChangeEvent, SelectionMode, type SelectionRect, type SetCenter, type SetCenterOptions, SetEdges, SetNodes, SetState, SetStateOptions, type SetViewport, ShapeRendering, type ShouldResize, SimpleBezierEdge, SimpleBezierEdgeProps, Slots, SmoothStepEdge, SmoothStepEdgeProps, SmoothStepEdgeType, SmoothStepPathOptions, type SnapGrid, State, StepEdge, StepEdgeProps, StraightEdge, StraightEdgeProps, Styles, ThemeVars, UpdateEdge, UpdateEdgeData, UpdateNode, UpdateNodeData, UpdateNodeDimensions, UpdateNodeDimensionsParams, UpdateNodeInternals, UpdateNodePosition, ValidConnectionFunc, type Viewport, ViewportFunctions, type ViewportHelperFunctionOptions, _default$13 as VueFlow, VueFlowError, VueFlow as VueFlowInjection, VueFlowInstance, _default$14 as VueFlowProvider, VueFlowState, VueFlowStoreHandle, type XYPosition, type ZIndexMode, type ZoomInOut, type ZoomTo, applyChanges, applyEdgeChanges, applyNodeChanges, clamp, connectionExists, connectionLineProps, defaultEdgeTypes, defaultNodeTypes, edgeProps, getBezierEdgeCenter, getBezierPath, getBoundsOfBoxes, getBoundsOfRects, getConnectedEdges, getConnectionStatus, getIncomers, getMarkerId, getNodesBounds, getNodesInside, getOutgoers, getSimpleBezierPath, getSmoothStepPath, getStraightPath, getViewportForBounds, isEdge, isEdgeBase, isErrorOfType, isInternalNode, isInternalNodeBase, isMacOs, isNode, isNodeBase, nodeProps, pointToRendererPoint, rendererPointToPoint, storeToRefs, useConnection, useEdge, useEdgesData, useHandle, useInternalNode, useKeyPress, useNode, useNodeConnections, useNodeId, useNodesData, useNodesInitialized, useStore, useVueFlow };
|
|
2207
2468
|
//# sourceMappingURL=index.d.mts.map
|