@foblex/flow 19.1.6 → 19.2.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/AI.md +6 -4
- package/README.md +13 -4
- package/fesm2022/foblex-flow.mjs +808 -381
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/index.d.ts +178 -22
- package/package.json +2 -2
- package/schematics/ng-add/index.js +112 -16
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/schema.json +1 -1
package/index.d.ts
CHANGED
|
@@ -210,6 +210,27 @@ interface IFCanvasResolvedConfig {
|
|
|
210
210
|
declare const F_CANVAS_CONFIG: InjectionToken<IFCanvasResolvedConfig>;
|
|
211
211
|
declare function mergeFCanvasConfig(partial: MergeFCanvasConfig | undefined): IFCanvasResolvedConfig;
|
|
212
212
|
|
|
213
|
+
/**
|
|
214
|
+
* Configuration for the dev-mode `FFxxxx` diagnostics. All checks stay enabled by
|
|
215
|
+
* default; use this block to tune or switch individual checks off.
|
|
216
|
+
*/
|
|
217
|
+
interface IFFlowDiagnosticsConfig {
|
|
218
|
+
/**
|
|
219
|
+
* FF1010 threshold: warns when a rendered connectable connector's own box is
|
|
220
|
+
* narrower or shorter than this many pixels — usually a connector whose visual
|
|
221
|
+
* dot is drawn with `::before`/`::after` while the element itself has no size.
|
|
222
|
+
* Set `0` to switch the check off. Default: `1`.
|
|
223
|
+
*/
|
|
224
|
+
minConnectorSize?: number;
|
|
225
|
+
/**
|
|
226
|
+
* FF1011 threshold: warns when a node's rendered box sits more than this many
|
|
227
|
+
* on-screen pixels away from its `fNodePosition` — usually app CSS on the node
|
|
228
|
+
* host (margin, left/top, an extra transform) moved the visuals while the model
|
|
229
|
+
* stayed put, so model-driven features (minimap, fitToScreen, auto-layout)
|
|
230
|
+
* disagree with what the user sees. Set `0` to switch the check off. Default: `2`.
|
|
231
|
+
*/
|
|
232
|
+
maxNodePositionDrift?: number;
|
|
233
|
+
}
|
|
213
234
|
/**
|
|
214
235
|
* Flow-level configuration passed as the first argument to `provideFFlow(...)`.
|
|
215
236
|
*
|
|
@@ -217,6 +238,7 @@ declare function mergeFCanvasConfig(partial: MergeFCanvasConfig | undefined): IF
|
|
|
217
238
|
*/
|
|
218
239
|
interface IFFlowConfig {
|
|
219
240
|
id?: string;
|
|
241
|
+
diagnostics?: IFFlowDiagnosticsConfig;
|
|
220
242
|
}
|
|
221
243
|
declare const F_FLOW_CONFIG: InjectionToken<IFFlowConfig>;
|
|
222
244
|
|
|
@@ -373,8 +395,10 @@ declare class FCanvasComponent extends FCanvasBase implements OnInit, OnDestroy
|
|
|
373
395
|
* @param padding - paddings from the bounds of the canvas
|
|
374
396
|
* @param animated - If true, the fit will be animated; otherwise, it will be instantaneous.
|
|
375
397
|
* @param emitCanvasChange - If false, does not emit `fCanvasChange` for this programmatic move.
|
|
398
|
+
* @param maxScale - Upper bound for the resulting scale, so a small graph is not
|
|
399
|
+
* magnified to fill the viewport. Unlimited when omitted.
|
|
376
400
|
*/
|
|
377
|
-
fitToScreen(padding?: IPoint, animated?: boolean, emitCanvasChange?: boolean): void;
|
|
401
|
+
fitToScreen(padding?: IPoint, animated?: boolean, emitCanvasChange?: boolean, maxScale?: number): void;
|
|
378
402
|
/**
|
|
379
403
|
* Resets the scale and center all nodes and groups on the canvas.
|
|
380
404
|
* This method is used to restore the canvas to its default scale and position,
|
|
@@ -495,8 +519,9 @@ declare class FitToFlowRequest {
|
|
|
495
519
|
readonly toCenter: IPoint;
|
|
496
520
|
readonly animated: boolean;
|
|
497
521
|
readonly emitCanvasChange: boolean;
|
|
522
|
+
readonly maxScale?: number | undefined;
|
|
498
523
|
static readonly fToken: unique symbol;
|
|
499
|
-
constructor(toCenter: IPoint, animated: boolean, emitCanvasChange?: boolean);
|
|
524
|
+
constructor(toCenter: IPoint, animated: boolean, emitCanvasChange?: boolean, maxScale?: number | undefined);
|
|
500
525
|
}
|
|
501
526
|
|
|
502
527
|
/**
|
|
@@ -506,8 +531,8 @@ declare class FitToFlow implements IExecution<FitToFlowRequest, void> {
|
|
|
506
531
|
private readonly _store;
|
|
507
532
|
private get _transform();
|
|
508
533
|
private readonly _mediator;
|
|
509
|
-
handle({ toCenter, animated, emitCanvasChange }: FitToFlowRequest): void;
|
|
510
|
-
fitToParent(rect: IRect, parentRect: IRect, points: IPoint[], toCenter: IPoint): void;
|
|
534
|
+
handle({ toCenter, animated, emitCanvasChange, maxScale }: FitToFlowRequest): void;
|
|
535
|
+
fitToParent(rect: IRect, parentRect: IRect, points: IPoint[], toCenter: IPoint, maxScale?: number): void;
|
|
511
536
|
private _getZeroPositionWithoutScale;
|
|
512
537
|
static ɵfac: i0.ɵɵFactoryDeclaration<FitToFlow, never>;
|
|
513
538
|
static ɵprov: i0.ɵɵInjectableDeclaration<FitToFlow>;
|
|
@@ -667,7 +692,7 @@ declare class UpdateScale implements IExecution<UpdateScaleRequest, void> {
|
|
|
667
692
|
/**
|
|
668
693
|
* This file exports all the canvas-related executions that can be used in the FCanvas feature.
|
|
669
694
|
*/
|
|
670
|
-
declare const F_CANVAS_FEATURES: (typeof
|
|
695
|
+
declare const F_CANVAS_FEATURES: (typeof FitToFlow | typeof AddCanvasToStore | typeof CenterGroupOrNode | typeof InputCanvasPosition | typeof InputCanvasScale | typeof RedrawCanvasWithAnimation | typeof RemoveCanvasFromStore | typeof ResetScale | typeof ResetScaleAndCenter | typeof ScrollCanvas | typeof UpdateScale)[];
|
|
671
696
|
|
|
672
697
|
/** Unit tangent vector. */
|
|
673
698
|
interface ITangent extends IPoint {
|
|
@@ -903,6 +928,18 @@ declare const F_CONNECTION_WAYPOINTS: InjectionToken<FConnectionWaypointsBase>;
|
|
|
903
928
|
declare abstract class FConnectionWaypointsBase {
|
|
904
929
|
readonly hostElement: any;
|
|
905
930
|
readonly candidates: i0.WritableSignal<IPoint[]>;
|
|
931
|
+
/**
|
|
932
|
+
* Handle display positions supplied by the line builder (for example the
|
|
933
|
+
* bend apex of a rounded segment corner). The waypoint model itself is
|
|
934
|
+
* untouched — dragging and events always operate on the real waypoints.
|
|
935
|
+
*/
|
|
936
|
+
readonly handles: i0.WritableSignal<IPoint[]>;
|
|
937
|
+
/**
|
|
938
|
+
* Where the waypoint handles are drawn and hit-tested: the builder-supplied
|
|
939
|
+
* positions when they cover every waypoint, otherwise the waypoints
|
|
940
|
+
* themselves.
|
|
941
|
+
*/
|
|
942
|
+
readonly displayedWaypoints: Signal<IPoint[]>;
|
|
906
943
|
abstract waypoints: ModelSignal<IPoint[]>;
|
|
907
944
|
abstract radius: Signal<number>;
|
|
908
945
|
abstract visibility: Signal<boolean>;
|
|
@@ -1312,6 +1349,14 @@ interface IFConnectionBuilderResponse {
|
|
|
1312
1349
|
secondPoint: IPoint;
|
|
1313
1350
|
points: IPoint[];
|
|
1314
1351
|
candidates: IPoint[];
|
|
1352
|
+
/**
|
|
1353
|
+
* Display positions for the waypoint handles, aligned index-wise with the
|
|
1354
|
+
* request waypoints. A builder provides them when the rendered path does not
|
|
1355
|
+
* pass exactly through a waypoint (for example a rounded segment corner cuts
|
|
1356
|
+
* inside it) so the handle can be drawn on the visible line. When omitted,
|
|
1357
|
+
* handles are drawn at the waypoints themselves.
|
|
1358
|
+
*/
|
|
1359
|
+
waypointHandles?: IPoint[];
|
|
1315
1360
|
}
|
|
1316
1361
|
|
|
1317
1362
|
interface IFConnectionBuilder {
|
|
@@ -1348,11 +1393,59 @@ declare function buildCornerMidPointsAndApplyOffsets(params: {
|
|
|
1348
1393
|
|
|
1349
1394
|
declare class CalculateSegmentLineData implements IFConnectionBuilder {
|
|
1350
1395
|
handle({ source, sourceSide, target, targetSide, waypoints, offset, radius, }: IFConnectionBuilderRequest): IFConnectionBuilderResponse;
|
|
1396
|
+
/**
|
|
1397
|
+
* Display positions for the waypoint handles. A waypoint that is a rounded
|
|
1398
|
+
* corner of the polyline maps to the apex of its bend, so the handle sits on
|
|
1399
|
+
* the rendered path; a waypoint lying mid-segment is already on the line.
|
|
1400
|
+
*/
|
|
1401
|
+
private _calculateWaypointHandles;
|
|
1402
|
+
/**
|
|
1403
|
+
* Routes the connection through intermediate waypoints. Connector sides and
|
|
1404
|
+
* the connector gap apply only at the real endpoints; waypoints are
|
|
1405
|
+
* pass-through anchors, so no connector-like stubs appear around them. Each
|
|
1406
|
+
* chain is an explicit orthogonal route that never doubles back on the
|
|
1407
|
+
* direction it arrived with — a same-line reversal would be collapsed by
|
|
1408
|
+
* polyline normalization and would detach the path from the waypoint.
|
|
1409
|
+
*/
|
|
1410
|
+
private _buildWaypointChains;
|
|
1411
|
+
/**
|
|
1412
|
+
* Connects two points with an axis-aligned route. Candidates are the
|
|
1413
|
+
* straight segment, both L-shapes, and both Z-shapes; the route that keeps
|
|
1414
|
+
* the constraints wins. `leaveDirection` is the motion the path arrived
|
|
1415
|
+
* with (its reversal as a first move is forbidden); `stubDirection` is the
|
|
1416
|
+
* upcoming connector stub motion (arriving against it is forbidden).
|
|
1417
|
+
* A non-dominant-axis arrival is only softly penalized, so waypoints are
|
|
1418
|
+
* entered along the axis they are farther away on.
|
|
1419
|
+
*/
|
|
1420
|
+
private _routeOrthogonal;
|
|
1421
|
+
private _compactRoute;
|
|
1422
|
+
private _scoreRoute;
|
|
1423
|
+
private _segmentDirection;
|
|
1424
|
+
/**
|
|
1425
|
+
* Length of the part of an axis-aligned segment lying inside the half-plane
|
|
1426
|
+
* behind a connector (where the endpoint's node body is).
|
|
1427
|
+
*/
|
|
1428
|
+
private _calculateSegmentLengthInZone;
|
|
1429
|
+
/**
|
|
1430
|
+
* Waypoint-creation candidate for one chain: the midpoint of its longest
|
|
1431
|
+
* straight segment. Corner rounding consumes at most half of each adjacent
|
|
1432
|
+
* segment, so this point always lies on the rendered path — a length-based
|
|
1433
|
+
* chain midpoint can land on a rounded corner and float off the line.
|
|
1434
|
+
*/
|
|
1435
|
+
private _calculateChainCandidate;
|
|
1436
|
+
private _calculateArrivalDirection;
|
|
1351
1437
|
private _getPathPoints;
|
|
1352
1438
|
private _getDirection;
|
|
1353
1439
|
}
|
|
1354
1440
|
|
|
1355
1441
|
declare function createSegmentLinePath(points: IPoint[], borderRadius: number): string;
|
|
1442
|
+
/**
|
|
1443
|
+
* The point of the rendered path closest to corner `b` — the apex of the
|
|
1444
|
+
* rounded bend `getBend` produces for it, or `b` itself when the corner is
|
|
1445
|
+
* rendered sharp. Uses the same bend-size clamping as `getBend`, so the
|
|
1446
|
+
* result always lies on the path.
|
|
1447
|
+
*/
|
|
1448
|
+
declare function calculateCornerApex(a: IPoint, b: IPoint, c: IPoint, size: number): IPoint;
|
|
1356
1449
|
|
|
1357
1450
|
declare class CalculateStraightLineData implements IFConnectionBuilder {
|
|
1358
1451
|
handle(request: IFConnectionBuilderRequest): IFConnectionBuilderResponse;
|
|
@@ -1376,6 +1469,18 @@ declare function calculateCurveCandidates(segments: ICubicSegment[]): IPoint[];
|
|
|
1376
1469
|
|
|
1377
1470
|
declare function calculatePolylineCandidates(polyline: IPoint[]): IPoint[];
|
|
1378
1471
|
|
|
1472
|
+
/**
|
|
1473
|
+
* Control point for a cubic segment end that lies on an intermediate waypoint.
|
|
1474
|
+
* The tangent runs from the previous toward the next neighbor (Catmull-Rom
|
|
1475
|
+
* style), so the two segments meeting at the waypoint share one tangent
|
|
1476
|
+
* direction and the curve passes through it smoothly. Connector sides shape
|
|
1477
|
+
* only the real endpoints of the connection, never the waypoints.
|
|
1478
|
+
*
|
|
1479
|
+
* `distance` is positive for an outgoing control point and negative for an
|
|
1480
|
+
* incoming one.
|
|
1481
|
+
*/
|
|
1482
|
+
declare function calculateSmoothControlPoint(anchor: IPoint, previous: IPoint, next: IPoint, distance: number): IPoint;
|
|
1483
|
+
|
|
1379
1484
|
declare function mergePointChains(chains: IPoint[][]): IPoint[];
|
|
1380
1485
|
|
|
1381
1486
|
declare function normalizePolyline(points: IPoint[], eps?: number): IPoint[];
|
|
@@ -1565,9 +1670,27 @@ declare class FConnectionForCreateComponent extends FConnectionBase implements A
|
|
|
1565
1670
|
static ngAcceptInputType_fBehavior: unknown;
|
|
1566
1671
|
}
|
|
1567
1672
|
|
|
1673
|
+
/**
|
|
1674
|
+
* Emitted by `<f-snap-connection>` when the snapped target changes during a
|
|
1675
|
+
* connection-creation gesture. `targetId` is the connector currently within
|
|
1676
|
+
* `fSnapThreshold`, or `undefined` when the snap is released or the gesture
|
|
1677
|
+
* ends — so both endpoints can be styled while the snap preview is shown.
|
|
1678
|
+
*/
|
|
1679
|
+
declare class FSnapTargetChangeEvent {
|
|
1680
|
+
readonly sourceId: string;
|
|
1681
|
+
readonly targetId: string | undefined;
|
|
1682
|
+
constructor(sourceId: string, targetId: string | undefined);
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1568
1685
|
declare class FSnapConnectionComponent extends FConnectionBase implements AfterViewInit, OnInit, OnChanges, OnDestroy {
|
|
1569
1686
|
fId: i0.WritableSignal<string>;
|
|
1570
1687
|
fSnapThreshold: number;
|
|
1688
|
+
/**
|
|
1689
|
+
* Fires when the snapped target changes during a connection-creation gesture:
|
|
1690
|
+
* with the connector id while one is within `fSnapThreshold`, and with an
|
|
1691
|
+
* `undefined` target when the snap is released or the gesture ends.
|
|
1692
|
+
*/
|
|
1693
|
+
readonly fSnapTargetChange: i0.OutputEmitterRef<FSnapTargetChangeEvent>;
|
|
1571
1694
|
fOutputId: i0.WritableSignal<string>;
|
|
1572
1695
|
fInputId: i0.WritableSignal<string>;
|
|
1573
1696
|
fRadius: number;
|
|
@@ -1583,15 +1706,15 @@ declare class FSnapConnectionComponent extends FConnectionBase implements AfterV
|
|
|
1583
1706
|
ngOnChanges(): void;
|
|
1584
1707
|
ngOnDestroy(): void;
|
|
1585
1708
|
static ɵfac: i0.ɵɵFactoryDeclaration<FSnapConnectionComponent, never>;
|
|
1586
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FSnapConnectionComponent, "f-snap-connection", never, { "fSnapThreshold": { "alias": "fSnapThreshold"; "required": false; }; "fRadius": { "alias": "fRadius"; "required": false; }; "fOffset": { "alias": "fOffset"; "required": false; }; "fBehavior": { "alias": "fBehavior"; "required": false; }; "fType": { "alias": "fType"; "required": false; }; "fInputSide": { "alias": "fInputSide"; "required": false; "isSignal": true; }; "fOutputSide": { "alias": "fOutputSide"; "required": false; "isSignal": true; }; }, {}, never, ["svg[fMarker]", "f-connection-marker-circle, f-connection-marker-arrow", "f-connection-gradient", "[fConnectionContent]"], false, never>;
|
|
1709
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FSnapConnectionComponent, "f-snap-connection", never, { "fSnapThreshold": { "alias": "fSnapThreshold"; "required": false; }; "fRadius": { "alias": "fRadius"; "required": false; }; "fOffset": { "alias": "fOffset"; "required": false; }; "fBehavior": { "alias": "fBehavior"; "required": false; }; "fType": { "alias": "fType"; "required": false; }; "fInputSide": { "alias": "fInputSide"; "required": false; "isSignal": true; }; "fOutputSide": { "alias": "fOutputSide"; "required": false; "isSignal": true; }; }, { "fSnapTargetChange": "fSnapTargetChange"; }, never, ["svg[fMarker]", "f-connection-marker-circle, f-connection-marker-arrow", "f-connection-gradient", "[fConnectionContent]"], false, never>;
|
|
1587
1710
|
static ngAcceptInputType_fSnapThreshold: unknown;
|
|
1588
1711
|
static ngAcceptInputType_fRadius: unknown;
|
|
1589
1712
|
static ngAcceptInputType_fOffset: unknown;
|
|
1590
1713
|
static ngAcceptInputType_fBehavior: unknown;
|
|
1591
1714
|
}
|
|
1592
1715
|
|
|
1593
|
-
declare const F_CONNECTION_PROVIDERS: (typeof
|
|
1594
|
-
declare const F_CONNECTION_IMPORTS_EXPORTS: (typeof FConnectionContent | typeof
|
|
1716
|
+
declare const F_CONNECTION_PROVIDERS: (typeof FConnectionDragHandleStart | typeof FConnectionPath | typeof FConnectionSelection | typeof FConnectionMarker | typeof FConnectionComponent | typeof FConnectionForCreateComponent | typeof FSnapConnectionComponent)[];
|
|
1717
|
+
declare const F_CONNECTION_IMPORTS_EXPORTS: (typeof FConnectionContent | typeof FConnectionMarkerCircle | typeof FConnectionMarkerArrow | typeof FConnectionGradient | typeof FConnectionGradientRenderer | typeof FConnectionWaypoints)[];
|
|
1595
1718
|
|
|
1596
1719
|
declare class AddConnectionForCreateToStoreRequest {
|
|
1597
1720
|
readonly connection: FConnectionForCreateComponent;
|
|
@@ -1965,7 +2088,7 @@ declare abstract class FNodeBase extends MIXIN_BASE implements ISelectable, IHas
|
|
|
1965
2088
|
/** Explicit node size (`fNodeSize` input). When omitted the node is sized by its content. */
|
|
1966
2089
|
abstract size: InputSignal<ISize | undefined>;
|
|
1967
2090
|
_size: ISize | undefined;
|
|
1968
|
-
/** When `true` (`fConnectOnNode` input), dropping a connection anywhere on the node connects to its
|
|
2091
|
+
/** When `true` (`fConnectOnNode` input), dropping a connection anywhere on the node connects to its connectable connector closest to the drop point. */
|
|
1969
2092
|
abstract fConnectOnNode: Signal<boolean>;
|
|
1970
2093
|
/** Extra CSS class(es) applied to this node's representation in the minimap (`fMinimapClass` input). */
|
|
1971
2094
|
abstract fMinimapClass: Signal<string[] | string>;
|
|
@@ -2073,7 +2196,7 @@ declare function findNodeOrGroupContaining(store: FComponentsStore, element: HTM
|
|
|
2073
2196
|
|
|
2074
2197
|
declare function isNode(element: HTMLElement | SVGElement): boolean;
|
|
2075
2198
|
|
|
2076
|
-
declare const F_NODE_PROVIDERS: (typeof
|
|
2199
|
+
declare const F_NODE_PROVIDERS: (typeof FNodeDirective | typeof FGroupDirective | typeof FRotateHandleDirective)[];
|
|
2077
2200
|
|
|
2078
2201
|
declare class FNodeRegistry extends FIdRegistryBase<FNodeBase> {
|
|
2079
2202
|
protected readonly kind = "Node";
|
|
@@ -3287,6 +3410,7 @@ declare class FCreateConnectionSession {
|
|
|
3287
3410
|
private readonly _store;
|
|
3288
3411
|
private _targets;
|
|
3289
3412
|
private _sourceRef;
|
|
3413
|
+
private _snapTargetId;
|
|
3290
3414
|
private get _connection();
|
|
3291
3415
|
private get _snapConnection();
|
|
3292
3416
|
get isActive(): boolean;
|
|
@@ -3302,6 +3426,8 @@ declare class FCreateConnectionSession {
|
|
|
3302
3426
|
begin(source: FSourceConnectorBase, canvasPoint: IPoint): boolean;
|
|
3303
3427
|
/** Redraws the preview and snap lines toward the given canvas-local point. */
|
|
3304
3428
|
update(canvasPoint: IPoint): void;
|
|
3429
|
+
/** One event per acquired/switched/released snap target, not one per pointer move. */
|
|
3430
|
+
private _emitSnapTargetChange;
|
|
3305
3431
|
/**
|
|
3306
3432
|
* Resolves the connectable target at a client-space point using the same priority as
|
|
3307
3433
|
* the drag drop: rect hit, then snap-threshold closest, then `fConnectOnNode` node.
|
|
@@ -3402,6 +3528,11 @@ declare class ReassignConnectionPreparation implements IExecution<ReassignConnec
|
|
|
3402
3528
|
private get _transform();
|
|
3403
3529
|
private get _connections();
|
|
3404
3530
|
handle(request: ReassignConnectionPreparationRequest): void;
|
|
3531
|
+
/**
|
|
3532
|
+
* Connections attached to the same connector have coinciding drag handles, so
|
|
3533
|
+
* a selected connection wins over registration order — grabbing the handle of
|
|
3534
|
+
* the connection the user just selected is what they aimed at (discussion #328).
|
|
3535
|
+
*/
|
|
3405
3536
|
private _findConnectionAt;
|
|
3406
3537
|
private _capturePointerDown;
|
|
3407
3538
|
private _startDrag;
|
|
@@ -3611,7 +3742,7 @@ declare class FConnectionWaypointsChangedEvent {
|
|
|
3611
3742
|
constructor(connectionId: string, waypoints: IPoint[]);
|
|
3612
3743
|
}
|
|
3613
3744
|
|
|
3614
|
-
declare const DRAG_CONNECTIONS_PROVIDERS: (typeof
|
|
3745
|
+
declare const DRAG_CONNECTIONS_PROVIDERS: (typeof FCreateConnectionSession | typeof ReassignConnectionPreparation | typeof ResolveConnectableOutputForOutlet | typeof CreateConnectionFinalize | typeof CreateConnectionCreateDragHandler | typeof CreateConnectionFromConnectorPreparation | typeof CreateConnectionFromOutletPreparation | typeof CreateConnectionFromOutputPreparation | typeof CreateConnectionPreparation | typeof ReassignConnectionFinalize | typeof DragConnectionWaypointFinalize | typeof DragConnectionWaypointPreparation)[];
|
|
3615
3746
|
|
|
3616
3747
|
declare class DropToGroupFinalizeRequest {
|
|
3617
3748
|
readonly event: IPointerEvent;
|
|
@@ -5164,7 +5295,7 @@ declare class FDraggableDataContext {
|
|
|
5164
5295
|
|
|
5165
5296
|
declare function isDragBlocker(element: HTMLElement | SVGElement): boolean;
|
|
5166
5297
|
|
|
5167
|
-
declare const F_DRAGGABLE_PROVIDERS: (typeof _foblex_flow.
|
|
5298
|
+
declare const F_DRAGGABLE_PROVIDERS: (typeof _foblex_flow.FCreateConnectionSession | typeof _foblex_flow.ReassignConnectionPreparation | typeof _foblex_flow.EmitEndDragSequenceEvent | typeof _foblex_flow.EmitStartDragSequenceEvent | typeof _foblex_flow.DragCanvasFinalize | typeof _foblex_flow.DragCanvasPreparation | typeof _foblex_flow.ResolveConnectableOutputForOutlet | typeof _foblex_flow.CreateConnectionFinalize | typeof _foblex_flow.CreateConnectionCreateDragHandler | typeof _foblex_flow.CreateConnectionFromConnectorPreparation | typeof _foblex_flow.CreateConnectionFromOutletPreparation | typeof _foblex_flow.CreateConnectionFromOutputPreparation | typeof _foblex_flow.CreateConnectionPreparation | typeof _foblex_flow.MagneticLinesPreparation | typeof _foblex_flow.MagneticRectsPreparation | typeof _foblex_flow.CreateDragNodeHierarchy | typeof _foblex_flow.ReadNodeBoundsWithPaddings | typeof _foblex_flow.BuildDragNodeConstraints | typeof _foblex_flow.AttachSoftParentConnectionDragHandlersToNode | typeof _foblex_flow.CreateDragNodeHandler | typeof _foblex_flow.AttachTargetConnectionDragHandlersToNode | typeof _foblex_flow.AttachSourceConnectionDragHandlersToNode | typeof _foblex_flow.AttachDragNodeHandlerFromSelection | typeof _foblex_flow.DragNodeFinalize | typeof _foblex_flow.DragNodePreparation | typeof _foblex_flow.DropToGroupFinalize | typeof _foblex_flow.SortDropCandidatesByLayer | typeof _foblex_flow.DragExternalItemCreatePlaceholder | typeof _foblex_flow.DragExternalItemCreatePreview | typeof _foblex_flow.DragExternalItemFinalize | typeof _foblex_flow.DragExternalItemPreparation | typeof _foblex_flow.PreventDefaultIsExternalItem | typeof _foblex_flow.DropToGroupPreparation | typeof _foblex_flow.ReassignConnectionFinalize | typeof _foblex_flow.DragConnectionWaypointFinalize | typeof _foblex_flow.DragConnectionWaypointPreparation | typeof _foblex_flow.PinchToZoomFinalize | typeof _foblex_flow.PinchToZoomPreparation | typeof _foblex_flow.SelectionAreaFinalize | typeof _foblex_flow.SelectionAreaPreparation | typeof _foblex_flow.ApplyChildResizeConstraints | typeof _foblex_flow.ApplyParentResizeConstraints | typeof _foblex_flow.CalculateChangedRectFromDifference | typeof _foblex_flow.CalculateDirectChildrenUnionRect | typeof _foblex_flow.CalculateResizeLimits | typeof _foblex_flow.ResizeNodeFinalize | typeof _foblex_flow.AttachResizeConnectionDragHandlersToNode | typeof _foblex_flow.ResizeNodePreparation | typeof _foblex_flow.RotateNodeFinalize | typeof _foblex_flow.RotateNodePreparation | typeof _foblex_flow.CalculateFlowPointFromMinimapPoint | typeof _foblex_flow.DragMinimapFinalize | typeof _foblex_flow.DragMinimapPreparation | typeof _foblex_flow.EmitSelectionChangeEvent | typeof _foblex_flow.GetNormalizedParentNodeRect | typeof _foblex_flow.IsArrayHasParentNode | typeof _foblex_flow.DetectConnectionsUnderDragNode | typeof _foblex_flow.StopAutoPan | typeof _foblex_flow.ScheduleAutoPanFrame | typeof _foblex_flow.RunAutoPanFrame | typeof _foblex_flow.SelectByPointer)[];
|
|
5168
5299
|
|
|
5169
5300
|
declare enum EFZoomDirection {
|
|
5170
5301
|
ZOOM_IN = 1,
|
|
@@ -5447,7 +5578,7 @@ declare const INSTANCES: {
|
|
|
5447
5578
|
readonly AUTO_PAN: _foblex_flow.FInstanceKey<FAutoPanBase>;
|
|
5448
5579
|
};
|
|
5449
5580
|
|
|
5450
|
-
declare const F_STORAGE_PROVIDERS: (typeof
|
|
5581
|
+
declare const F_STORAGE_PROVIDERS: (typeof FComponentsStore | typeof ListenConnectionsChanges | typeof ListenNodesChanges | typeof ListenTransformChanges | typeof EmitConnectionsChanges | typeof NotifyTransformChanged | typeof RegisterPluginInstance | typeof RemovePluginInstance)[];
|
|
5451
5582
|
|
|
5452
5583
|
/**
|
|
5453
5584
|
* Resolves a source connector id against the unified `connectors` registry first,
|
|
@@ -6282,7 +6413,7 @@ declare class FindConnectableConnectorUsingPriorityAndPositionRequest {
|
|
|
6282
6413
|
/**
|
|
6283
6414
|
* Execution that finds a connectable connector at a given position with priority.
|
|
6284
6415
|
* It checks for connectors at the position, the closest connector if snap connection is enabled,
|
|
6285
|
-
* and the
|
|
6416
|
+
* and the closest connectable connector of the node at that position.
|
|
6286
6417
|
*/
|
|
6287
6418
|
declare class FindConnectableConnectorUsingPriorityAndPosition implements IExecution<FindConnectableConnectorUsingPriorityAndPositionRequest, FConnectorBase | undefined> {
|
|
6288
6419
|
private readonly _mediator;
|
|
@@ -6298,10 +6429,15 @@ declare class FindConnectableConnectorUsingPriorityAndPosition implements IExecu
|
|
|
6298
6429
|
private _calculatePointerInFlow;
|
|
6299
6430
|
private _isSnapConnectionEnabledAndHasClosestConnector;
|
|
6300
6431
|
private _isValidClosestInput;
|
|
6301
|
-
private
|
|
6432
|
+
private _getClosestConnectableConnectorOfNodeAtPosition;
|
|
6302
6433
|
private _getElementsFromPoint;
|
|
6303
6434
|
private _findConnectableNode;
|
|
6304
|
-
|
|
6435
|
+
/**
|
|
6436
|
+
* A node can expose several connectable connectors; picking the one nearest
|
|
6437
|
+
* to the drop point matches what the user aimed at, while registration order
|
|
6438
|
+
* would pick an arbitrary one (see issue #326).
|
|
6439
|
+
*/
|
|
6440
|
+
private _findClosestConnectableConnectorOfNode;
|
|
6305
6441
|
static ɵfac: i0.ɵɵFactoryDeclaration<FindConnectableConnectorUsingPriorityAndPosition, never>;
|
|
6306
6442
|
static ɵprov: i0.ɵɵInjectableDeclaration<FindConnectableConnectorUsingPriorityAndPosition>;
|
|
6307
6443
|
}
|
|
@@ -6439,7 +6575,7 @@ declare class UnmarkConnectableConnectors implements IExecution<UnmarkConnectabl
|
|
|
6439
6575
|
static ɵprov: i0.ɵɵInjectableDeclaration<UnmarkConnectableConnectors>;
|
|
6440
6576
|
}
|
|
6441
6577
|
|
|
6442
|
-
declare const F_CONNECTORS_FEATURES: (typeof
|
|
6578
|
+
declare const F_CONNECTORS_FEATURES: (typeof FindConnectableConnectorUsingPriorityAndPosition | typeof AddConnectorToStore | typeof RemoveConnectorFromStore | typeof CalculateClosestConnector | typeof CalculateSourceConnectorsToConnect | typeof CalculateTargetConnectorsToConnect | typeof GetConnectorRectReference | typeof MarkConnectableConnectors | typeof UnmarkConnectableConnectors)[];
|
|
6443
6579
|
|
|
6444
6580
|
declare class AddDndToStoreRequest {
|
|
6445
6581
|
fComponent: FDraggableBase;
|
|
@@ -6783,6 +6919,7 @@ declare class RunDevDiagnosticsRequest {
|
|
|
6783
6919
|
*/
|
|
6784
6920
|
declare class RunDevDiagnostics implements IExecution<RunDevDiagnosticsRequest, void> {
|
|
6785
6921
|
private readonly _store;
|
|
6922
|
+
private readonly _config;
|
|
6786
6923
|
handle(_: RunDevDiagnosticsRequest): void;
|
|
6787
6924
|
/**
|
|
6788
6925
|
* FF1004 — a registered node/group/connection whose host element is not attached to
|
|
@@ -6801,6 +6938,25 @@ declare class RunDevDiagnostics implements IExecution<RunDevDiagnosticsRequest,
|
|
|
6801
6938
|
* geometry is a 0×0 point: connections attach to the wrong place or nowhere.
|
|
6802
6939
|
*/
|
|
6803
6940
|
private _checkHiddenConnectors;
|
|
6941
|
+
/**
|
|
6942
|
+
* FF1010 — a rendered connector whose own box is zero/near-zero sized. The visual
|
|
6943
|
+
* dot is often drawn with `::before`/`::after`, but hit-testing and connection
|
|
6944
|
+
* geometry use the element's box, so drops land past the connector and fall back
|
|
6945
|
+
* to node-level connect (see issue #326). Threshold comes from
|
|
6946
|
+
* `provideFFlow({ diagnostics: { minConnectorSize } })`; `0` disables the check.
|
|
6947
|
+
*/
|
|
6948
|
+
private _checkZeroSizeConnectors;
|
|
6949
|
+
/**
|
|
6950
|
+
* FF1011 — a node whose rendered box diverges from its model position. The canvas
|
|
6951
|
+
* places the host at `fNodePosition`, so a drift means app CSS on the node host
|
|
6952
|
+
* (margin, left/top, an extra transform) or out-of-band positioning moved the
|
|
6953
|
+
* visuals; model-driven features (minimap, fitToScreen, auto-layout) keep using
|
|
6954
|
+
* the model position and disagree with what the user sees (see issue #331).
|
|
6955
|
+
* Threshold comes from `provideFFlow({ diagnostics: { maxNodePositionDrift } })`;
|
|
6956
|
+
* `0` disables the check.
|
|
6957
|
+
*/
|
|
6958
|
+
private _checkNodePositionDrift;
|
|
6959
|
+
private _allConnectors;
|
|
6804
6960
|
/**
|
|
6805
6961
|
* FF1007 — an `[fNode]`/`[fGroup]` element nested inside another node element: the
|
|
6806
6962
|
* outer node wins the drag and bindings on the inner one never fire. Hierarchy is
|
|
@@ -6824,7 +6980,7 @@ declare class RunDevDiagnostics implements IExecution<RunDevDiagnosticsRequest,
|
|
|
6824
6980
|
* This includes adding, retrieving, and removing the Flow,
|
|
6825
6981
|
* as well as getting the Flow host element and its state.
|
|
6826
6982
|
*/
|
|
6827
|
-
declare const F_FLOW_FEATURES: (typeof RenderLifecycleState | typeof AddFlowToStore | typeof GetFlow | typeof _foblex_flow.CalculateFlowState | typeof _foblex_flow.CalculateNodesState | typeof _foblex_flow.CalculateConnectionsState | typeof RemoveFlowFromStore | typeof
|
|
6983
|
+
declare const F_FLOW_FEATURES: (typeof RenderLifecycleState | typeof RunDevDiagnostics | typeof AddFlowToStore | typeof GetFlow | typeof _foblex_flow.CalculateFlowState | typeof _foblex_flow.CalculateNodesState | typeof _foblex_flow.CalculateConnectionsState | typeof RemoveFlowFromStore | typeof NotifyNodesRendered | typeof NotifyFullRendered | typeof WaitForConnectionsRendered | typeof ResetRenderLifecycle | typeof QueueConnectionRedrawState | typeof QueueConnectionRedraw)[];
|
|
6828
6984
|
|
|
6829
6985
|
declare class AddNodeToStoreRequest {
|
|
6830
6986
|
readonly nodeOrGroup: FNodeBase;
|
|
@@ -7790,7 +7946,7 @@ declare function LogExecutionTime(label?: string): MethodDecorator;
|
|
|
7790
7946
|
* draggable elements, flow, line alignment, nodes, selection, zoom,
|
|
7791
7947
|
* and various utility executions.
|
|
7792
7948
|
*/
|
|
7793
|
-
declare const COMMON_PROVIDERS: (typeof _foblex_flow.ConnectableSidesScheduler | typeof _foblex_flow.
|
|
7949
|
+
declare const COMMON_PROVIDERS: (typeof _foblex_flow.ConnectableSidesScheduler | typeof _foblex_flow.RenderLifecycleState | typeof _foblex_flow.FitToFlow | typeof _foblex_flow.FindConnectableConnectorUsingPriorityAndPosition | typeof _foblex_flow.FCache | typeof _foblex_flow.InvalidateFCacheNode | typeof _foblex_flow.RegisterFCacheNode | typeof _foblex_flow.UnregisterFCacheNode | typeof _foblex_flow.RegisterFCacheConnector | typeof _foblex_flow.UnregisterFCacheConnector | typeof _foblex_flow.GetCachedFCacheRect | typeof _foblex_flow.SetFCacheConnectorRect | typeof _foblex_flow.SetFCacheNodeRect | typeof _foblex_flow.UpdateFCacheRectByElement | typeof GetNormalizedElementRect | typeof _foblex_flow.AddCanvasToStore | typeof _foblex_flow.CenterGroupOrNode | typeof _foblex_flow.InputCanvasPosition | typeof _foblex_flow.InputCanvasScale | typeof _foblex_flow.RedrawCanvasWithAnimation | typeof _foblex_flow.ResetScaleAndCenter | typeof _foblex_flow.ScrollCanvas | typeof _foblex_flow.UpdateScale | typeof _foblex_flow.ConnectionRedrawState | typeof _foblex_flow.ConnectionWorkerState | typeof _foblex_flow.AddConnectionForCreateToStore | typeof _foblex_flow.AddConnectionMarkerToStore | typeof _foblex_flow.AddConnectionToStore | typeof _foblex_flow.AddSnapConnectionToStore | typeof _foblex_flow.CreateConnectionMarkers | typeof _foblex_flow.ApplyConnectionWorkerResult | typeof _foblex_flow.ApplyConnectionRender | typeof _foblex_flow.BuildConnectionLine | typeof _foblex_flow.BuildConnectionWorkerBatch | typeof _foblex_flow.BuildConnectionWorkerPayloadItem | typeof _foblex_flow.CompleteConnectionRedraw | typeof _foblex_flow.DisableConnectionWorker | typeof _foblex_flow.HandleConnectionWorkerMessage | typeof _foblex_flow.IsConnectionRedrawCurrent | typeof _foblex_flow.MarkConnectionConnectorsAsConnected | typeof _foblex_flow.RenderConnection | typeof _foblex_flow.RenderConnectionFromGeometry | typeof _foblex_flow.RenderConnectionWithLine | typeof _foblex_flow.ResolveConnectionEndpointRect | typeof _foblex_flow.ResolveConnectionEndpointRotationContext | typeof _foblex_flow.ResolveConnectionEndpoints | typeof _foblex_flow.ResolveConnectionGeometry | typeof _foblex_flow.ResetConnectionWorkerRuntime | typeof _foblex_flow.RunConnectionRedrawSlice | typeof _foblex_flow.RunConnectionWorker | typeof _foblex_flow.RunConnectionWorkerBatch | typeof _foblex_flow.ShouldUseConnectionWorker | typeof _foblex_flow.StartConnectionRedraw | typeof _foblex_flow.StartConnectionWorkerRedraw | typeof _foblex_flow.RemoveConnectionFromStore | typeof _foblex_flow.RemoveConnectionMarkerFromStore | typeof _foblex_flow.RemoveConnectionWaypoint | typeof _foblex_flow.AddPatternToBackground | typeof _foblex_flow.SetBackgroundTransform | typeof _foblex_flow.AddConnectorToStore | typeof _foblex_flow.RemoveConnectorFromStore | typeof _foblex_flow.CalculateClosestConnector | typeof _foblex_flow.CalculateSourceConnectorsToConnect | typeof _foblex_flow.CalculateTargetConnectorsToConnect | typeof _foblex_flow.GetConnectorRectReference | typeof _foblex_flow.MarkConnectableConnectors | typeof _foblex_flow.UnmarkConnectableConnectors | typeof _foblex_flow.AddDndToStore | typeof _foblex_flow.OnPointerMove | typeof _foblex_flow.AddFlowToStore | typeof _foblex_flow.CalculateFlowState | typeof _foblex_flow.CalculateNodesState | typeof _foblex_flow.RemoveFlowFromStore | typeof _foblex_flow.WaitForConnectionsRendered | typeof _foblex_flow.QueueConnectionRedrawState | typeof _foblex_flow.QueueConnectionRedraw | typeof _foblex_flow.AddNodeToStore | typeof _foblex_flow.CalculateConnectableSideByConnectedPositions | typeof _foblex_flow.CalculateConnectableSideByInternalPosition | typeof _foblex_flow.CalculateInputConnections | typeof _foblex_flow.CalculateConnectorsConnectableSides | typeof _foblex_flow.CalculateNodesBoundingBoxNormalizedPosition | typeof _foblex_flow.CalculateOutputConnections | typeof _foblex_flow.FitToChildNodesAndGroups | typeof _foblex_flow.GetChildNodeIds | typeof _foblex_flow.GetNodePadding | typeof _foblex_flow.GetParentNodes | typeof _foblex_flow.UpdateNodeWhenStateOrSizeChanged | typeof _foblex_flow.RemoveNodeFromStore | typeof _foblex_flow.Select | typeof _foblex_flow.SelectAndUpdateNodeLayer | typeof _foblex_flow.SetZoom | typeof _foblex_flow.MinimapDrawNodes | typeof _foblex_flow.MinimapCalculateViewport | typeof _foblex_flow.MinimapNodeRects | typeof GetDeepChildrenNodesAndGroups | typeof GetNormalizedConnectorRect | typeof GetNormalizedPoint | typeof SortItemsByParent | typeof UpdateItemAndChildrenLayers | typeof MoveFrontElementsBeforeTargetElement)[];
|
|
7794
7950
|
|
|
7795
7951
|
declare function transitionEnd(element: HTMLElement, callback: () => void): void;
|
|
7796
7952
|
|
|
@@ -9180,7 +9336,7 @@ declare class FReflowBaselineTracker {
|
|
|
9180
9336
|
* by `withReflowOnResize(...)` so consumers can `inject(FReflowController)`
|
|
9181
9337
|
* directly from the same component that calls `provideFFlow(...)`.
|
|
9182
9338
|
*/
|
|
9183
|
-
declare const F_REFLOW_PROVIDERS: (typeof
|
|
9339
|
+
declare const F_REFLOW_PROVIDERS: (typeof FReflowIgnoreRegistry | typeof FReflowPlanner | typeof FReflowBaselineTracker | typeof FReflowOrchestrator)[];
|
|
9184
9340
|
|
|
9185
9341
|
/**
|
|
9186
9342
|
* Activates the reflow-on-resize feature inside `provideFFlow(...)`.
|
|
@@ -9947,5 +10103,5 @@ declare class FFlowModule {
|
|
|
9947
10103
|
static ɵinj: i0.ɵɵInjectorDeclaration<FFlowModule>;
|
|
9948
10104
|
}
|
|
9949
10105
|
|
|
9950
|
-
export { AddCanvasToStore, AddCanvasToStoreRequest, AddConnectionForCreateToStore, AddConnectionForCreateToStoreRequest, AddConnectionMarkerToStore, AddConnectionMarkerToStoreRequest, AddConnectionToStore, AddConnectionToStoreRequest, AddConnectorToStore, AddConnectorToStoreRequest, AddDndToStore, AddDndToStoreRequest, AddFlowToStore, AddFlowToStoreRequest, AddNodeToStore, AddNodeToStoreRequest, AddPatternToBackground, AddPatternToBackgroundRequest, AddSnapConnectionToStore, AddSnapConnectionToStoreRequest, ApplyChildResizeConstraints, ApplyChildResizeConstraintsRequest, ApplyConnectionRender, ApplyConnectionRenderRequest, ApplyConnectionWorkerResult, ApplyConnectionWorkerResultRequest, ApplyParentResizeConstraints, ApplyParentResizeConstraintsRequest, AttachDragNodeHandlerFromSelection, AttachDragNodeHandlerFromSelectionRequest, AttachResizeConnectionDragHandlersToNode, AttachResizeConnectionDragHandlersToNodeRequest, AttachSoftParentConnectionDragHandlersToNode, AttachSoftParentConnectionDragHandlersToNodeRequest, AttachSourceConnectionDragHandlersToNode, AttachSourceConnectionDragHandlersToNodeRequest, AttachTargetConnectionDragHandlersToNode, AttachTargetConnectionDragHandlersToNodeRequest, BuildConnectionLine, BuildConnectionLineRequest, BuildConnectionWorkerBatch, BuildConnectionWorkerBatchRequest, BuildConnectionWorkerPayloadItem, BuildConnectionWorkerPayloadItemRequest, BuildDragNodeConstraints, BuildDragNodeConstraintsRequest, CALCULATABLE_SIDES, COMMON_PROVIDERS, CONNECTABLE_SIDE_EPSILON, CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS, CalculateAdaptiveCurveData, CalculateBezierCurveData, CalculateChangedRectFromDifference, CalculateChangedRectFromDifferenceRequest, CalculateClosestConnector, CalculateClosestConnectorRequest, CalculateConnectableSideByConnectedPositions, CalculateConnectableSideByConnectedPositionsRequest, CalculateConnectableSideByInternalPosition, CalculateConnectableSideByInternalPositionRequest, CalculateConnectionsState, CalculateConnectionsStateRequest, CalculateConnectorsConnectableSides, CalculateConnectorsConnectableSidesRequest, CalculateDirectChildrenUnionRect, CalculateDirectChildrenUnionRectRequest, CalculateFlowPointFromMinimapPoint, CalculateFlowPointFromMinimapPointRequest, CalculateFlowState, CalculateFlowStateRequest, CalculateInputConnections, CalculateInputConnectionsRequest, CalculateNodesBoundingBox, CalculateNodesBoundingBoxNormalizedPosition, CalculateNodesBoundingBoxNormalizedPositionRequest, CalculateNodesBoundingBoxRequest, CalculateNodesState, CalculateNodesStateRequest, CalculateOutputConnections, CalculateOutputConnectionsRequest, CalculateResizeLimits, CalculateResizeLimitsRequest, CalculateSegmentLineData, CalculateSelectableItems, CalculateSelectableItemsRequest, CalculateSourceConnectorsToConnect, CalculateSourceConnectorsToConnectRequest, CalculateStraightLineData, CalculateTargetConnectorsToConnect, CalculateTargetConnectorsToConnectRequest, CenterBasedDeltaCalculator, CenterGroupOrNode, CenterGroupOrNodeRequest, CenterOfMassSelectionStrategy, ChainPushCollisionResolver, ClearSelection, ClearSelectionRequest, CompleteConnectionRedraw, CompleteConnectionRedrawRequest, ConnectableSidesScheduler, ConnectedSubgraphScopeFilter, ConnectionBehaviourBuilder, ConnectionBehaviourBuilderRequest, ConnectionContentLayoutEngine, ConnectionLineBuilder, ConnectionLineBuilderRequest, ConnectionRedrawState, ConnectionWorkerState, CreateConnectionCreateDragHandler, CreateConnectionCreateDragHandlerRequest, CreateConnectionFinalize, CreateConnectionFinalizeRequest, CreateConnectionFromConnectorPreparation, CreateConnectionFromConnectorPreparationRequest, CreateConnectionFromOutletPreparation, CreateConnectionFromOutletPreparationRequest, CreateConnectionFromOutputPreparation, CreateConnectionFromOutputPreparationRequest, CreateConnectionHandler, CreateConnectionMarkers, CreateConnectionMarkersRequest, CreateConnectionPreparation, CreateConnectionPreparationRequest, CreateDragNodeHandler, CreateDragNodeHandlerRequest, CreateDragNodeHierarchy, CreateDragNodeHierarchyRequest, DRAG_AND_DROP_COMMON_PROVIDERS, DRAG_AUTO_PAN_PROVIDERS, DRAG_CANVAS_PROVIDERS, DRAG_CONNECTIONS_PROVIDERS, DRAG_DROP_TO_GROUP_PROVIDERS, DRAG_EXTERNAL_ITEM_HANDLER_KIND, DRAG_EXTERNAL_ITEM_HANDLER_TYPE, DRAG_EXTERNAL_ITEM_PROVIDERS, DRAG_MINIMAP_HANDLER_KIND, DRAG_MINIMAP_HANDLER_TYPE, DRAG_MINIMAP_PROVIDERS, DRAG_NODE_HANDLER_KIND, DRAG_NODE_HANDLER_TYPE, DRAG_SELECTION_AREA_PROVIDERS, DRAG_SELECT_BY_POINTER_PROVIDERS, DeltaClamp, Deprecated, DetectConnectionsUnderDragNode, DetectConnectionsUnderDragNodeRequest, DisableConnectionWorker, DisableConnectionWorkerRequest, DownstreamConnectionsSelectionStrategy, DragAndDropBase, DragCanvasFinalize, DragCanvasFinalizeRequest, DragCanvasHandler, DragCanvasPreparation, DragCanvasPreparationRequest, DragConnectionWaypointFinalize, DragConnectionWaypointFinalizeRequest, DragConnectionWaypointHandler, DragConnectionWaypointPreparation, DragConnectionWaypointPreparationRequest, DragExternalItemCreatePlaceholder, DragExternalItemCreatePlaceholderRequest, DragExternalItemCreatePreview, DragExternalItemCreatePreviewRequest, DragExternalItemFinalize, DragExternalItemFinalizeRequest, DragExternalItemHandler, DragExternalItemPreparation, DragExternalItemPreparationRequest, DragHandlerBase, DragHandlerInjector, DragMinimapFinalize, DragMinimapFinalizeRequest, DragMinimapHandler, DragMinimapPreparation, DragMinimapPreparationRequest, DragNodeConnectionBothSidesHandler, DragNodeConnectionHandlerBase, DragNodeConnectionSourceHandler, DragNodeConnectionTargetHandler, DragNodeDeltaConstraints, DragNodeFinalize, DragNodeFinalizeRequest, DragNodeHandler, DragNodeHierarchy, DragNodeItemHandler, DragNodePreparation, DragNodePreparationRequest, DropToGroupFinalize, DropToGroupFinalizeRequest, DropToGroupHandler, DropToGroupPreparation, DropToGroupPreparationRequest, ECanvasRedrawContext, EFCanvasLayer, EFConnectableSide, EFConnectionBehavior, EFConnectionConnectableSide, EFConnectionType, EFFlowFeatureKind, EFLayoutDirection, EFLayoutMode, EFMarkerType, EFReflowAxis, EFReflowCollision, EFReflowDeltaSource, EFReflowMode, EFReflowScope, EFResizeHandleType, EFZoomDirection, EMPTY_REFLOW_PLAN, EdgeBasedDeltaCalculator, EmitConnectionsChanges, EmitConnectionsChangesRequest, EmitEndDragSequenceEvent, EmitEndDragSequenceEventRequest, EmitSelectionChangeEvent, EmitSelectionChangeEventRequest, EmitStartDragSequenceEvent, EmitStartDragSequenceEventRequest, EnsureConnectionWorker, EnsureConnectionWorkerRequest, EventExtensions, ExternalRectConstraint, FA11yAnnouncer, FA11yController, FAutoPan, FAutoPanBase, FBackgroundBase, FBackgroundComponent, FCache, FCacheConnector, FCacheConnectorKeyFactory, FCacheNode, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FChannel, FChannelHub, FCirclePatternComponent, FClickConnectFlow, FComponentsStore, FConnectionBase, FConnectionComponent, FConnectionComponentsParent, FConnectionContent, FConnectionContentBase, FConnectionDragHandleBase, FConnectionDragHandleEnd, FConnectionDragHandleStart, FConnectionForCreateComponent, FConnectionGradient, FConnectionGradientBase, FConnectionGradientRenderer, FConnectionGradientRendererBase, FConnectionMarker, FConnectionMarkerArrow, FConnectionMarkerBase, FConnectionMarkerCircle, FConnectionMarkerRegistry, FConnectionPath, FConnectionPathBase, FConnectionRegistry, FConnectionSelection, FConnectionSelectionBase, FConnectionWaypoints, FConnectionWaypointsBase, FConnectionWaypointsChangedEvent, FConnectorBase, FConnectorDirective, FConnectorRegistry, FControlSchemeController, FCreateConnectionEvent, FCreateConnectionSession, FCreateNodeEvent, FDeleteSelectedEvent, FDragBlockerDirective, FDragExternalItemStartEventData, FDragHandleDirective, FDragHandlerResult, FDragNodeStartEventData, FDragStartedEvent, FDraggableBase, FDraggableDataContext, FDraggableDirective, FDropToGroupEvent, FExternalItem, FExternalItemBase, FExternalItemPlaceholder, FExternalItemPreview, FExternalItemService, FFlowBase, FFlowComponent, FFlowModule, FFlowState, FFlowStateController, FGroupDirective, FIdRegistryBase, FLayoutController, FLayoutEngine, FLineAlignmentComponent, FMagneticLines, FMagneticLinesBase, FMagneticRects, FMagneticRectsBase, FMinimapBase, FMinimapCanvasDirective, FMinimapComponent, FMinimapFlowDirective, FMinimapState, FMinimapViewDirective, FMoveNodesEvent, FNodeBase, FNodeConnectionsIntersectionEvent, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeIntersectedWithConnections, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FNodeRegistry, FReassignConnectionEvent, FRectPatternComponent, FReflowBaselineTracker, FReflowController, FReflowCycleGuard, FReflowIgnore, FReflowIgnoreRegistry, FReflowOrchestrator, FReflowPlanner, FResizeChannel, FResizeHandleDirective, FResizeNodeStartEventData, FRotateHandleDirective, FRotateNodeStartEventData, FSelectionArea, FSelectionAreaBase, FSelectionChangeEvent, FSingleRegistryBase, FSnapConnectionComponent, FSourceConnectorBase, FVirtualFor, FZoomBase, FZoomDirective, F_A11Y_CONFIG, F_AUTO_PAN_PROVIDERS, F_BACKGROUND, F_BACKGROUND_FEATURES, F_BACKGROUND_PATTERN, F_BACKGROUND_PROVIDERS, F_CACHE_FEATURES, F_CACHE_OPTIONS, F_CANVAS, F_CANVAS_CONFIG, F_CANVAS_FEATURES, F_CANVAS_PROVIDERS, F_CONNECTION_BUILDERS, F_CONNECTION_COMPONENTS_PARENT, F_CONNECTION_CONTENT, F_CONNECTION_DRAG_HANDLE_END, F_CONNECTION_DRAG_HANDLE_START, F_CONNECTION_FEATURES, F_CONNECTION_FLOW, F_CONNECTION_GRADIENT, F_CONNECTION_IMPORTS_EXPORTS, F_CONNECTION_MARKER, F_CONNECTION_PATH, F_CONNECTION_PROVIDERS, F_CONNECTION_SELECTION, F_CONNECTION_WAYPOINTS, F_CONNECTOR, F_CONNECTORS_FEATURES, F_CONNECTORS_PROVIDERS, F_CONTROL_SCHEME_CONFIG, F_CSS_CLASS, F_DEFAULT_A11Y_CONFIG, F_DEFAULT_A11Y_KEYS, F_DEFAULT_A11Y_MESSAGES, F_DEFAULT_CONTROL_SCHEME, F_DEFAULT_LAYER_ORDER, F_DRAGGABLE_FEATURES, F_DRAGGABLE_PROVIDERS, F_DRAG_SELECT_CONTROL_SCHEME, F_EXTERNAL_ITEM, F_EXTERNAL_ITEM_PROVIDERS, F_FLOW, F_FLOW_CONFIG, F_FLOW_FEATURES, F_FLOW_PROVIDERS, F_FLOW_STATE_CONFIG, F_LAYOUT, F_LAYOUT_OPTIONS, F_LINE_ALIGNMENT_PROVIDERS, F_MAGNETIC_LINES, F_MAGNETIC_LINES_PROVIDERS, F_MAGNETIC_RECTS, F_MAGNETIC_RECTS_PROVIDERS, F_MINIMAP_BASE, F_MINIMAP_FEATURES, F_MINIMAP_PROVIDERS, F_NODE, F_NODE_FEATURES, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_NODE_PROVIDERS, F_REFLOW_CONFIG, F_REFLOW_PROVIDERS, F_SCROLL_PAN_CONTROL_SCHEME, F_SELECTED_CLASS, F_SELECTION_AREA_PROVIDERS, F_SELECTION_FEATURES, F_STORAGE_PROVIDERS, F_VIRTUAL_FOR_PROVIDERS, F_ZOOM, F_ZOOM_FEATURES, F_ZOOM_PROVIDERS, FindConnectableConnectorUsingPriorityAndPosition, FindConnectableConnectorUsingPriorityAndPositionRequest, FitToChildNodesAndGroups, FitToChildNodesAndGroupsRequest, FitToFlow, FitToFlowRequest, GET_FLOW_STATE_PROVIDERS, GetCachedFCacheRect, GetCachedFCacheRectRequest, GetChildNodeIds, GetChildNodeIdsRequest, GetConnectorRectReference, GetConnectorRectReferenceRequest, GetCurrentSelection, GetCurrentSelectionRequest, GetDeepChildrenNodesAndGroups, GetDeepChildrenNodesAndGroupsRequest, GetFlow, GetFlowRequest, GetNodePadding, GetNodePaddingRequest, GetNormalizedConnectorRect, GetNormalizedConnectorRectRequest, GetNormalizedElementRect, GetNormalizedElementRectRequest, GetNormalizedParentNodeRect, GetNormalizedParentNodeRectRequest, GetNormalizedPoint, GetNormalizedPointRequest, GetParentNodes, GetParentNodesRequest, GlobalScopeFilter, GridSnapper, GroupScopeFilter, HandleConnectionWorkerMessage, HandleConnectionWorkerMessageRequest, IMouseEvent, INSTANCES, IPointerEvent, IPointerUpEvent, ITouchDownEvent, ITouchMoveEvent, InitializeDragSequence, InitializeDragSequenceRequest, InputCanvasPosition, InputCanvasPositionRequest, InputCanvasScale, InputCanvasScaleRequest, InvalidateFCacheNode, InvalidateFCacheNodeRequest, IsArrayHasParentNode, IsArrayHasParentNodeRequest, IsConnectionRedrawCurrent, IsConnectionRedrawCurrentRequest, IsConnectionWorkerEnabled, IsConnectionWorkerEnabledRequest, IsDragStarted, IsDragStartedRequest, ListenConnectionsChanges, ListenConnectionsChangesRequest, ListenNodesChanges, ListenNodesChangesRequest, ListenTransformChanges, ListenTransformChangesRequest, LogExecutionTime, MOUSE_EVENT_IGNORE_TIME, MagneticLineElement, MagneticLineRenderer, MagneticLinesHandler, MagneticLinesPreparation, MagneticLinesPreparationRequest, MagneticRectElement, MagneticRectsHandler, MagneticRectsPreparation, MagneticRectsPreparationRequest, MagneticRectsRenderer, MarkConnectableConnectors, MarkConnectableConnectorsRequest, MarkConnectionConnectorsAsConnected, MarkConnectionConnectorsAsConnectedRequest, MinimapCalculateViewRect, MinimapCalculateViewRectRequest, MinimapCalculateViewport, MinimapCalculateViewportRequest, MinimapDrawNodes, MinimapDrawNodesRequest, MinimapNodeRects, MoveFrontElementsBeforeTargetElement, MoveFrontElementsBeforeTargetElementRequest, NODE_PROVIDERS, NODE_RESIZE_PROVIDERS, NODE_ROTATE_PROVIDERS, NotifyFullRendered, NotifyFullRenderedRequest, NotifyNodesRendered, NotifyNodesRenderedRequest, NotifyTransformChanged, NotifyTransformChangedRequest, OnPointerMove, OnPointerMoveRequest, PINCH_TO_ZOOM_PROVIDERS, PinchToZoomFinalize, PinchToZoomFinalizeRequest, PinchToZoomHandler, PinchToZoomPreparation, PinchToZoomPreparationRequest, Polyline, PolylineContentAlign, PolylineContentPlace, PolylineSampler, PrepareDragSequence, PrepareDragSequenceRequest, PreventDefaultIsExternalItem, PreventDefaultIsExternalItemRequest, QueueConnectionRedraw, QueueConnectionRedrawRequest, QueueConnectionRedrawState, RESIZE_DIRECTIONS, RESIZE_NODE_HANDLER_KIND, RESIZE_NODE_HANDLER_TYPE, ROTATE_NODE_HANDLER_KIND, ROTATE_NODE_HANDLER_TYPE, ReadNodeBoundsWithPaddings, ReadNodeBoundsWithPaddingsRequest, ReadNodeBoundsWithPaddingsResponse, ReassignConnectionFinalize, ReassignConnectionFinalizeRequest, ReassignConnectionHandler, ReassignConnectionPreparation, ReassignConnectionPreparationRequest, ReassignConnectionSourceHandler, ReassignConnectionTargetHandler, RedrawCanvasWithAnimation, RedrawCanvasWithAnimationRequest, RedrawConnections, RedrawConnectionsRequest, RegisterFCacheConnector, RegisterFCacheConnectorRequest, RegisterFCacheNode, RegisterFCacheNodeRequest, RegisterPluginInstance, RegisterPluginInstanceRequest, RemoveCanvasFromStore, RemoveCanvasFromStoreRequest, RemoveConnectionForCreateFromStore, RemoveConnectionForCreateFromStoreRequest, RemoveConnectionFromStore, RemoveConnectionFromStoreRequest, RemoveConnectionMarkerFromStore, RemoveConnectionMarkerFromStoreRequest, RemoveConnectionWaypoint, RemoveConnectionWaypointRequest, RemoveConnectorFromStore, RemoveConnectorFromStoreRequest, RemoveDndFromStore, RemoveDndFromStoreRequest, RemoveFlowFromStore, RemoveFlowFromStoreRequest, RemoveNodeFromStore, RemoveNodeFromStoreRequest, RemovePluginInstance, RemovePluginInstanceRequest, RemoveSnapConnectionFromStore, RemoveSnapConnectionFromStoreRequest, RenderConnection, RenderConnectionFromGeometry, RenderConnectionFromGeometryRequest, RenderConnectionRequest, RenderConnectionWithLine, RenderConnectionWithLineRequest, RenderLifecycleState, ResetConnectionWorkerRuntime, ResetConnectionWorkerRuntimeRequest, ResetRenderLifecycle, ResetRenderLifecycleRequest, ResetScale, ResetScaleAndCenter, ResetScaleAndCenterRequest, ResetScaleRequest, ResetZoom, ResetZoomRequest, ResizeNodeConnectionBothSidesHandler, ResizeNodeConnectionHandlerBase, ResizeNodeConnectionSourceHandler, ResizeNodeConnectionTargetHandler, ResizeNodeFinalize, ResizeNodeFinalizeRequest, ResizeNodeHandler, ResizeNodePreparation, ResizeNodePreparationRequest, ResolveConnectableOutputForOutlet, ResolveConnectableOutputForOutletRequest, ResolveConnectionEndpointRect, ResolveConnectionEndpointRectRequest, ResolveConnectionEndpointRotationContext, ResolveConnectionEndpointRotationContextRequest, ResolveConnectionEndpoints, ResolveConnectionEndpointsRequest, ResolveConnectionGeometry, ResolveConnectionGeometryRequest, RotateNodeFinalize, RotateNodeFinalizeRequest, RotateNodeHandler, RotateNodePreparation, RotateNodePreparationRequest, RunAutoPanFrame, RunAutoPanFrameRequest, RunConnectionRedrawSlice, RunConnectionRedrawSliceRequest, RunConnectionWorker, RunConnectionWorkerBatch, RunConnectionWorkerBatchRequest, RunConnectionWorkerRequest, RunDevDiagnostics, RunDevDiagnosticsRequest, ScheduleAutoPanFrame, ScheduleAutoPanFrameRequest, ScrollCanvas, ScrollCanvasRequest, Select, SelectAll, SelectAllRequest, SelectAndUpdateNodeLayer, SelectAndUpdateNodeLayerRequest, SelectByPointer, SelectByPointerRequest, SelectRequest, SelectionAreaFinalize, SelectionAreaFinalizeRequest, SelectionAreaHandler, SelectionAreaPreparation, SelectionAreaPreparationRequest, SetBackgroundTransform, SetBackgroundTransformRequest, SetFCacheConnectorRect, SetFCacheConnectorRectRequest, SetFCacheNodeRect, SetFCacheNodeRectRequest, SetZoom, SetZoomRequest, ShouldUseConnectionWorker, ShouldUseConnectionWorkerRequest, SortDropCandidatesByLayer, SortDropCandidatesByLayerRequest, SortItemLayers, SortItemLayersRequest, SortItemsByParent, SortItemsByParentRequest, SortNodeLayers, SortNodeLayersRequest, StartConnectionRedraw, StartConnectionRedrawRequest, StartConnectionWorkerRedraw, StartConnectionWorkerRedrawRequest, StopAutoPan, StopAutoPanRequest, StopCollisionResolver, UnmarkConnectableConnectors, UnmarkConnectableConnectorsRequest, UnregisterFCacheConnector, UnregisterFCacheConnectorRequest, UnregisterFCacheNode, UnregisterFCacheNodeRequest, UpdateFCacheRectByElement, UpdateFCacheRectByElementRequest, UpdateItemAndChildrenLayers, UpdateItemAndChildrenLayersRequest, UpdateNodeWhenStateOrSizeChanged, UpdateNodeWhenStateOrSizeChangedRequest, UpdateScale, UpdateScaleRequest, WaitForConnectionsRendered, WaitForConnectionsRenderedRequest, XRangeSelectionStrategy, afterNextPaint, buildConnectionAnchors, buildCornerMidPointsAndApplyOffsets, calculateAutoPanAxisDelta, calculateAutoPanDelta, calculateCenterBetweenPoints, calculateCurveCandidates, calculateDifferenceAfterRotation, calculateMagneticGuides, calculateMagneticRects, calculatePointerInFlow, calculatePolylineCandidates, calculatePositionAfterRotation, castToConnectorType, coerceMarkerType, computeEdgeDeltas, createConnectionDomIdentifier, createConnectionSelectionDomIdentifier, createConnectionWorkerUrl, createGradientDomIdentifier, createGradientDomUrl, createMultiCubicPath, createSVGElement, createSegmentLinePath, cubicBezierAtT, debounceAnimationFrame, debounceMicrotask, debounceTime, defaultEventTrigger, determineSide, expandRectByOverflow, fDiagnosticMessage, fInstanceKey, fProvideCache, fSuppressDevWarnings, fWarnOnce, filterConnectableTargets, findExistingWaypoint, findNodeOrGroupContaining, findSourceConnector, findSpatialNeighbor, findTargetConnector, findWaypointCandidate, fixedCenterBehavior, fixedOutboundBehavior, floatingBehavior, getAllSourceConnectors, getAllTargetConnectors, getExternalItemHost, infinityMinMax, injectFlowState, isCalculateMode, isConnectionWorkerRuntimeSupported, isConnector, isDragBlocker, isDragExternalItemHandler, isDragHandleEnd, isDragHandleStart, isDragMinimapHandler, isDragNodeHandler, isExternalItem, isFDevMode, isMobile, isNode, isNodeOutlet, isNodeOutput, isOnFlowBackground, isOutletConnector, isPointerInsidePoint, isPointerInsideStartOrEndDragHandles, isResizeNodeHandler, isRotateHandle, isRotateNodeHandler, isSourceConnector, isTargetConnector, isValidEventTrigger, mergeA11yConfig, mergeControlSchemeConfig, mergeFCanvasConfig, mergeFlowStateConfig, mergeLayoutNodes, mergePointChains, mergeReflowConfig, middleButtonEventTrigger, mixinChangeSelection, mixinChangeVisibility, normalizeFlowLayoutData, normalizePolyline, notifyOnStart, pickWaypoint, primaryButtonEventTrigger, provideFFlow, provideFLayout, rebaseAutoPanPointerDownPosition, rectFromPoint, requireSourceConnector, requireTargetConnector, resolveAutoPanMode, resolveConnectionWorkerRuntime, resolveLayerOrder, revokeConnectionWorkerUrl, sampleCubicBezierUniform, sampleMultiCubicUniform, stringAttribute, takeOne, transitionEnd, withA11y, withConnectionFlow, withControlScheme, withFCanvas, withFlowState, withReflowOnResize, withinSnapThreshold };
|
|
9951
|
-
export type { AbstractConstructor, Constructor, FA11yDirection, FCacheConnectorKey, FChannelListener, FChannelOperator, FConnectionEndpoint, FConnectorKind, FConnectorType, FEventTrigger, FHasId, FInstanceKey, FMoveNodePosition, FTriggerEvent, ICacheOptions, ICalculateBehaviorRequest, ICanBeSelectedElementAndRect, ICanChangeVisibility, IClosestConnectorRef, IConnectionBuilders, IConnectionEndpointRotationContext, IConnectionEndpoints, IConnectionGeometry, IConnectionRedrawSession, IConnectionWorkerBatch, IConnectionWorkerBatchItem, IConnectionWorkerPayloadItem, IConnectionWorkerRect, IConnectionWorkerResponse, IConnectionWorkerResultItem, IConnectorRectRef, IConstraintEdges, ICreateConnectionDragResult, ICreateConnectionEventData, ICubicSegment, ICurrentSelection, IDeltaClampResult, IDestroyable, IDragExternalItemDragResult, IDragNodeDeltaConstraints, IDragNodeDeltaConstraintsResult, IDragNodeSoftConstraint, IDragSessionContext, IDragSessionFeature, IFA11yConfig, IFA11yKeys, IFA11yMessages, IFA11yNavigable, IFA11yResolvedConfig, IFBackgroundPattern, IFCacheNodeRef, IFCanvasResolvedConfig, IFConnectionBuilder, IFConnectionBuilderRequest, IFConnectionBuilderResponse, IFConnectionFlow, IFControlScheme, IFControlSchemeConfig, IFFlowConfig, IFFlowFeature, IFFlowState, IFFlowStateConfig, IFFlowStateConnection, IFFlowStateConnector, IFFlowStateNode, IFFlowStateOptions, IFFlowStateResolvedConfig, IFLayoutAlgorithmOptions, IFLayoutCalculationOptions, IFLayoutConnection, IFLayoutGraph, IFLayoutNode, IFLayoutNodePosition, IFLayoutOptions, IFLayoutProviderConfig, IFLayoutResult, IFLayoutWritebackPayload, IFReflowCollisionResolver, IFReflowDeltaCalculator, IFReflowOnResizeConfig, IFReflowOnResizeResolvedConfig, IFReflowScopeFilter, IFReflowSelectionStrategy, IFReflowSpacingConfig, IFStateConnection, IFStateData, IFStateGroup, IFStateNode, IFStateSelection, IFStateShape, IFStateTransform, IFlowLayoutNormalizationResult, IHasHostElement, IMagneticAxisGuide, IMagneticGapRect, IMagneticGuidesResult, IMagneticRectsResult, IMinimapViewport, INodeWithRect, IParentConnectionEndpointHandler, IParentConnectionHandlers, IPolylineContent, IReassignConnectionDragResult, IReassignConnectionEventData, IReassignHandler, IReflowCandidate, IReflowConnection, IReflowPlan, IReflowPlannerInput, IReflowRawShift, IReflowResolvedShift, IReflowShift, IResizeConstraint, IResizeEdgeDeltas, IResizeLimit, IResizeLimits, IResizeNodeConnectionEndpointHandler, IResizeNodeConnectionHandlers, IResizeOverflow, ISamplerResult, ISelectable, ITangent, MagneticRectsAlignMode, MagneticRectsAxis, MergeFCanvasConfig, TAutoPanMode, TCalculateMode, TConnectionWorkerPendingRequest, TFLayoutWritebackHandler, TResolveConnectionEndpointRotationContextResponse, WaypointPick };
|
|
10106
|
+
export { AddCanvasToStore, AddCanvasToStoreRequest, AddConnectionForCreateToStore, AddConnectionForCreateToStoreRequest, AddConnectionMarkerToStore, AddConnectionMarkerToStoreRequest, AddConnectionToStore, AddConnectionToStoreRequest, AddConnectorToStore, AddConnectorToStoreRequest, AddDndToStore, AddDndToStoreRequest, AddFlowToStore, AddFlowToStoreRequest, AddNodeToStore, AddNodeToStoreRequest, AddPatternToBackground, AddPatternToBackgroundRequest, AddSnapConnectionToStore, AddSnapConnectionToStoreRequest, ApplyChildResizeConstraints, ApplyChildResizeConstraintsRequest, ApplyConnectionRender, ApplyConnectionRenderRequest, ApplyConnectionWorkerResult, ApplyConnectionWorkerResultRequest, ApplyParentResizeConstraints, ApplyParentResizeConstraintsRequest, AttachDragNodeHandlerFromSelection, AttachDragNodeHandlerFromSelectionRequest, AttachResizeConnectionDragHandlersToNode, AttachResizeConnectionDragHandlersToNodeRequest, AttachSoftParentConnectionDragHandlersToNode, AttachSoftParentConnectionDragHandlersToNodeRequest, AttachSourceConnectionDragHandlersToNode, AttachSourceConnectionDragHandlersToNodeRequest, AttachTargetConnectionDragHandlersToNode, AttachTargetConnectionDragHandlersToNodeRequest, BuildConnectionLine, BuildConnectionLineRequest, BuildConnectionWorkerBatch, BuildConnectionWorkerBatchRequest, BuildConnectionWorkerPayloadItem, BuildConnectionWorkerPayloadItemRequest, BuildDragNodeConstraints, BuildDragNodeConstraintsRequest, CALCULATABLE_SIDES, COMMON_PROVIDERS, CONNECTABLE_SIDE_EPSILON, CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS, CalculateAdaptiveCurveData, CalculateBezierCurveData, CalculateChangedRectFromDifference, CalculateChangedRectFromDifferenceRequest, CalculateClosestConnector, CalculateClosestConnectorRequest, CalculateConnectableSideByConnectedPositions, CalculateConnectableSideByConnectedPositionsRequest, CalculateConnectableSideByInternalPosition, CalculateConnectableSideByInternalPositionRequest, CalculateConnectionsState, CalculateConnectionsStateRequest, CalculateConnectorsConnectableSides, CalculateConnectorsConnectableSidesRequest, CalculateDirectChildrenUnionRect, CalculateDirectChildrenUnionRectRequest, CalculateFlowPointFromMinimapPoint, CalculateFlowPointFromMinimapPointRequest, CalculateFlowState, CalculateFlowStateRequest, CalculateInputConnections, CalculateInputConnectionsRequest, CalculateNodesBoundingBox, CalculateNodesBoundingBoxNormalizedPosition, CalculateNodesBoundingBoxNormalizedPositionRequest, CalculateNodesBoundingBoxRequest, CalculateNodesState, CalculateNodesStateRequest, CalculateOutputConnections, CalculateOutputConnectionsRequest, CalculateResizeLimits, CalculateResizeLimitsRequest, CalculateSegmentLineData, CalculateSelectableItems, CalculateSelectableItemsRequest, CalculateSourceConnectorsToConnect, CalculateSourceConnectorsToConnectRequest, CalculateStraightLineData, CalculateTargetConnectorsToConnect, CalculateTargetConnectorsToConnectRequest, CenterBasedDeltaCalculator, CenterGroupOrNode, CenterGroupOrNodeRequest, CenterOfMassSelectionStrategy, ChainPushCollisionResolver, ClearSelection, ClearSelectionRequest, CompleteConnectionRedraw, CompleteConnectionRedrawRequest, ConnectableSidesScheduler, ConnectedSubgraphScopeFilter, ConnectionBehaviourBuilder, ConnectionBehaviourBuilderRequest, ConnectionContentLayoutEngine, ConnectionLineBuilder, ConnectionLineBuilderRequest, ConnectionRedrawState, ConnectionWorkerState, CreateConnectionCreateDragHandler, CreateConnectionCreateDragHandlerRequest, CreateConnectionFinalize, CreateConnectionFinalizeRequest, CreateConnectionFromConnectorPreparation, CreateConnectionFromConnectorPreparationRequest, CreateConnectionFromOutletPreparation, CreateConnectionFromOutletPreparationRequest, CreateConnectionFromOutputPreparation, CreateConnectionFromOutputPreparationRequest, CreateConnectionHandler, CreateConnectionMarkers, CreateConnectionMarkersRequest, CreateConnectionPreparation, CreateConnectionPreparationRequest, CreateDragNodeHandler, CreateDragNodeHandlerRequest, CreateDragNodeHierarchy, CreateDragNodeHierarchyRequest, DRAG_AND_DROP_COMMON_PROVIDERS, DRAG_AUTO_PAN_PROVIDERS, DRAG_CANVAS_PROVIDERS, DRAG_CONNECTIONS_PROVIDERS, DRAG_DROP_TO_GROUP_PROVIDERS, DRAG_EXTERNAL_ITEM_HANDLER_KIND, DRAG_EXTERNAL_ITEM_HANDLER_TYPE, DRAG_EXTERNAL_ITEM_PROVIDERS, DRAG_MINIMAP_HANDLER_KIND, DRAG_MINIMAP_HANDLER_TYPE, DRAG_MINIMAP_PROVIDERS, DRAG_NODE_HANDLER_KIND, DRAG_NODE_HANDLER_TYPE, DRAG_SELECTION_AREA_PROVIDERS, DRAG_SELECT_BY_POINTER_PROVIDERS, DeltaClamp, Deprecated, DetectConnectionsUnderDragNode, DetectConnectionsUnderDragNodeRequest, DisableConnectionWorker, DisableConnectionWorkerRequest, DownstreamConnectionsSelectionStrategy, DragAndDropBase, DragCanvasFinalize, DragCanvasFinalizeRequest, DragCanvasHandler, DragCanvasPreparation, DragCanvasPreparationRequest, DragConnectionWaypointFinalize, DragConnectionWaypointFinalizeRequest, DragConnectionWaypointHandler, DragConnectionWaypointPreparation, DragConnectionWaypointPreparationRequest, DragExternalItemCreatePlaceholder, DragExternalItemCreatePlaceholderRequest, DragExternalItemCreatePreview, DragExternalItemCreatePreviewRequest, DragExternalItemFinalize, DragExternalItemFinalizeRequest, DragExternalItemHandler, DragExternalItemPreparation, DragExternalItemPreparationRequest, DragHandlerBase, DragHandlerInjector, DragMinimapFinalize, DragMinimapFinalizeRequest, DragMinimapHandler, DragMinimapPreparation, DragMinimapPreparationRequest, DragNodeConnectionBothSidesHandler, DragNodeConnectionHandlerBase, DragNodeConnectionSourceHandler, DragNodeConnectionTargetHandler, DragNodeDeltaConstraints, DragNodeFinalize, DragNodeFinalizeRequest, DragNodeHandler, DragNodeHierarchy, DragNodeItemHandler, DragNodePreparation, DragNodePreparationRequest, DropToGroupFinalize, DropToGroupFinalizeRequest, DropToGroupHandler, DropToGroupPreparation, DropToGroupPreparationRequest, ECanvasRedrawContext, EFCanvasLayer, EFConnectableSide, EFConnectionBehavior, EFConnectionConnectableSide, EFConnectionType, EFFlowFeatureKind, EFLayoutDirection, EFLayoutMode, EFMarkerType, EFReflowAxis, EFReflowCollision, EFReflowDeltaSource, EFReflowMode, EFReflowScope, EFResizeHandleType, EFZoomDirection, EMPTY_REFLOW_PLAN, EdgeBasedDeltaCalculator, EmitConnectionsChanges, EmitConnectionsChangesRequest, EmitEndDragSequenceEvent, EmitEndDragSequenceEventRequest, EmitSelectionChangeEvent, EmitSelectionChangeEventRequest, EmitStartDragSequenceEvent, EmitStartDragSequenceEventRequest, EnsureConnectionWorker, EnsureConnectionWorkerRequest, EventExtensions, ExternalRectConstraint, FA11yAnnouncer, FA11yController, FAutoPan, FAutoPanBase, FBackgroundBase, FBackgroundComponent, FCache, FCacheConnector, FCacheConnectorKeyFactory, FCacheNode, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FChannel, FChannelHub, FCirclePatternComponent, FClickConnectFlow, FComponentsStore, FConnectionBase, FConnectionComponent, FConnectionComponentsParent, FConnectionContent, FConnectionContentBase, FConnectionDragHandleBase, FConnectionDragHandleEnd, FConnectionDragHandleStart, FConnectionForCreateComponent, FConnectionGradient, FConnectionGradientBase, FConnectionGradientRenderer, FConnectionGradientRendererBase, FConnectionMarker, FConnectionMarkerArrow, FConnectionMarkerBase, FConnectionMarkerCircle, FConnectionMarkerRegistry, FConnectionPath, FConnectionPathBase, FConnectionRegistry, FConnectionSelection, FConnectionSelectionBase, FConnectionWaypoints, FConnectionWaypointsBase, FConnectionWaypointsChangedEvent, FConnectorBase, FConnectorDirective, FConnectorRegistry, FControlSchemeController, FCreateConnectionEvent, FCreateConnectionSession, FCreateNodeEvent, FDeleteSelectedEvent, FDragBlockerDirective, FDragExternalItemStartEventData, FDragHandleDirective, FDragHandlerResult, FDragNodeStartEventData, FDragStartedEvent, FDraggableBase, FDraggableDataContext, FDraggableDirective, FDropToGroupEvent, FExternalItem, FExternalItemBase, FExternalItemPlaceholder, FExternalItemPreview, FExternalItemService, FFlowBase, FFlowComponent, FFlowModule, FFlowState, FFlowStateController, FGroupDirective, FIdRegistryBase, FLayoutController, FLayoutEngine, FLineAlignmentComponent, FMagneticLines, FMagneticLinesBase, FMagneticRects, FMagneticRectsBase, FMinimapBase, FMinimapCanvasDirective, FMinimapComponent, FMinimapFlowDirective, FMinimapState, FMinimapViewDirective, FMoveNodesEvent, FNodeBase, FNodeConnectionsIntersectionEvent, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeIntersectedWithConnections, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FNodeRegistry, FReassignConnectionEvent, FRectPatternComponent, FReflowBaselineTracker, FReflowController, FReflowCycleGuard, FReflowIgnore, FReflowIgnoreRegistry, FReflowOrchestrator, FReflowPlanner, FResizeChannel, FResizeHandleDirective, FResizeNodeStartEventData, FRotateHandleDirective, FRotateNodeStartEventData, FSelectionArea, FSelectionAreaBase, FSelectionChangeEvent, FSingleRegistryBase, FSnapConnectionComponent, FSnapTargetChangeEvent, FSourceConnectorBase, FVirtualFor, FZoomBase, FZoomDirective, F_A11Y_CONFIG, F_AUTO_PAN_PROVIDERS, F_BACKGROUND, F_BACKGROUND_FEATURES, F_BACKGROUND_PATTERN, F_BACKGROUND_PROVIDERS, F_CACHE_FEATURES, F_CACHE_OPTIONS, F_CANVAS, F_CANVAS_CONFIG, F_CANVAS_FEATURES, F_CANVAS_PROVIDERS, F_CONNECTION_BUILDERS, F_CONNECTION_COMPONENTS_PARENT, F_CONNECTION_CONTENT, F_CONNECTION_DRAG_HANDLE_END, F_CONNECTION_DRAG_HANDLE_START, F_CONNECTION_FEATURES, F_CONNECTION_FLOW, F_CONNECTION_GRADIENT, F_CONNECTION_IMPORTS_EXPORTS, F_CONNECTION_MARKER, F_CONNECTION_PATH, F_CONNECTION_PROVIDERS, F_CONNECTION_SELECTION, F_CONNECTION_WAYPOINTS, F_CONNECTOR, F_CONNECTORS_FEATURES, F_CONNECTORS_PROVIDERS, F_CONTROL_SCHEME_CONFIG, F_CSS_CLASS, F_DEFAULT_A11Y_CONFIG, F_DEFAULT_A11Y_KEYS, F_DEFAULT_A11Y_MESSAGES, F_DEFAULT_CONTROL_SCHEME, F_DEFAULT_LAYER_ORDER, F_DRAGGABLE_FEATURES, F_DRAGGABLE_PROVIDERS, F_DRAG_SELECT_CONTROL_SCHEME, F_EXTERNAL_ITEM, F_EXTERNAL_ITEM_PROVIDERS, F_FLOW, F_FLOW_CONFIG, F_FLOW_FEATURES, F_FLOW_PROVIDERS, F_FLOW_STATE_CONFIG, F_LAYOUT, F_LAYOUT_OPTIONS, F_LINE_ALIGNMENT_PROVIDERS, F_MAGNETIC_LINES, F_MAGNETIC_LINES_PROVIDERS, F_MAGNETIC_RECTS, F_MAGNETIC_RECTS_PROVIDERS, F_MINIMAP_BASE, F_MINIMAP_FEATURES, F_MINIMAP_PROVIDERS, F_NODE, F_NODE_FEATURES, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_NODE_PROVIDERS, F_REFLOW_CONFIG, F_REFLOW_PROVIDERS, F_SCROLL_PAN_CONTROL_SCHEME, F_SELECTED_CLASS, F_SELECTION_AREA_PROVIDERS, F_SELECTION_FEATURES, F_STORAGE_PROVIDERS, F_VIRTUAL_FOR_PROVIDERS, F_ZOOM, F_ZOOM_FEATURES, F_ZOOM_PROVIDERS, FindConnectableConnectorUsingPriorityAndPosition, FindConnectableConnectorUsingPriorityAndPositionRequest, FitToChildNodesAndGroups, FitToChildNodesAndGroupsRequest, FitToFlow, FitToFlowRequest, GET_FLOW_STATE_PROVIDERS, GetCachedFCacheRect, GetCachedFCacheRectRequest, GetChildNodeIds, GetChildNodeIdsRequest, GetConnectorRectReference, GetConnectorRectReferenceRequest, GetCurrentSelection, GetCurrentSelectionRequest, GetDeepChildrenNodesAndGroups, GetDeepChildrenNodesAndGroupsRequest, GetFlow, GetFlowRequest, GetNodePadding, GetNodePaddingRequest, GetNormalizedConnectorRect, GetNormalizedConnectorRectRequest, GetNormalizedElementRect, GetNormalizedElementRectRequest, GetNormalizedParentNodeRect, GetNormalizedParentNodeRectRequest, GetNormalizedPoint, GetNormalizedPointRequest, GetParentNodes, GetParentNodesRequest, GlobalScopeFilter, GridSnapper, GroupScopeFilter, HandleConnectionWorkerMessage, HandleConnectionWorkerMessageRequest, IMouseEvent, INSTANCES, IPointerEvent, IPointerUpEvent, ITouchDownEvent, ITouchMoveEvent, InitializeDragSequence, InitializeDragSequenceRequest, InputCanvasPosition, InputCanvasPositionRequest, InputCanvasScale, InputCanvasScaleRequest, InvalidateFCacheNode, InvalidateFCacheNodeRequest, IsArrayHasParentNode, IsArrayHasParentNodeRequest, IsConnectionRedrawCurrent, IsConnectionRedrawCurrentRequest, IsConnectionWorkerEnabled, IsConnectionWorkerEnabledRequest, IsDragStarted, IsDragStartedRequest, ListenConnectionsChanges, ListenConnectionsChangesRequest, ListenNodesChanges, ListenNodesChangesRequest, ListenTransformChanges, ListenTransformChangesRequest, LogExecutionTime, MOUSE_EVENT_IGNORE_TIME, MagneticLineElement, MagneticLineRenderer, MagneticLinesHandler, MagneticLinesPreparation, MagneticLinesPreparationRequest, MagneticRectElement, MagneticRectsHandler, MagneticRectsPreparation, MagneticRectsPreparationRequest, MagneticRectsRenderer, MarkConnectableConnectors, MarkConnectableConnectorsRequest, MarkConnectionConnectorsAsConnected, MarkConnectionConnectorsAsConnectedRequest, MinimapCalculateViewRect, MinimapCalculateViewRectRequest, MinimapCalculateViewport, MinimapCalculateViewportRequest, MinimapDrawNodes, MinimapDrawNodesRequest, MinimapNodeRects, MoveFrontElementsBeforeTargetElement, MoveFrontElementsBeforeTargetElementRequest, NODE_PROVIDERS, NODE_RESIZE_PROVIDERS, NODE_ROTATE_PROVIDERS, NotifyFullRendered, NotifyFullRenderedRequest, NotifyNodesRendered, NotifyNodesRenderedRequest, NotifyTransformChanged, NotifyTransformChangedRequest, OnPointerMove, OnPointerMoveRequest, PINCH_TO_ZOOM_PROVIDERS, PinchToZoomFinalize, PinchToZoomFinalizeRequest, PinchToZoomHandler, PinchToZoomPreparation, PinchToZoomPreparationRequest, Polyline, PolylineContentAlign, PolylineContentPlace, PolylineSampler, PrepareDragSequence, PrepareDragSequenceRequest, PreventDefaultIsExternalItem, PreventDefaultIsExternalItemRequest, QueueConnectionRedraw, QueueConnectionRedrawRequest, QueueConnectionRedrawState, RESIZE_DIRECTIONS, RESIZE_NODE_HANDLER_KIND, RESIZE_NODE_HANDLER_TYPE, ROTATE_NODE_HANDLER_KIND, ROTATE_NODE_HANDLER_TYPE, ReadNodeBoundsWithPaddings, ReadNodeBoundsWithPaddingsRequest, ReadNodeBoundsWithPaddingsResponse, ReassignConnectionFinalize, ReassignConnectionFinalizeRequest, ReassignConnectionHandler, ReassignConnectionPreparation, ReassignConnectionPreparationRequest, ReassignConnectionSourceHandler, ReassignConnectionTargetHandler, RedrawCanvasWithAnimation, RedrawCanvasWithAnimationRequest, RedrawConnections, RedrawConnectionsRequest, RegisterFCacheConnector, RegisterFCacheConnectorRequest, RegisterFCacheNode, RegisterFCacheNodeRequest, RegisterPluginInstance, RegisterPluginInstanceRequest, RemoveCanvasFromStore, RemoveCanvasFromStoreRequest, RemoveConnectionForCreateFromStore, RemoveConnectionForCreateFromStoreRequest, RemoveConnectionFromStore, RemoveConnectionFromStoreRequest, RemoveConnectionMarkerFromStore, RemoveConnectionMarkerFromStoreRequest, RemoveConnectionWaypoint, RemoveConnectionWaypointRequest, RemoveConnectorFromStore, RemoveConnectorFromStoreRequest, RemoveDndFromStore, RemoveDndFromStoreRequest, RemoveFlowFromStore, RemoveFlowFromStoreRequest, RemoveNodeFromStore, RemoveNodeFromStoreRequest, RemovePluginInstance, RemovePluginInstanceRequest, RemoveSnapConnectionFromStore, RemoveSnapConnectionFromStoreRequest, RenderConnection, RenderConnectionFromGeometry, RenderConnectionFromGeometryRequest, RenderConnectionRequest, RenderConnectionWithLine, RenderConnectionWithLineRequest, RenderLifecycleState, ResetConnectionWorkerRuntime, ResetConnectionWorkerRuntimeRequest, ResetRenderLifecycle, ResetRenderLifecycleRequest, ResetScale, ResetScaleAndCenter, ResetScaleAndCenterRequest, ResetScaleRequest, ResetZoom, ResetZoomRequest, ResizeNodeConnectionBothSidesHandler, ResizeNodeConnectionHandlerBase, ResizeNodeConnectionSourceHandler, ResizeNodeConnectionTargetHandler, ResizeNodeFinalize, ResizeNodeFinalizeRequest, ResizeNodeHandler, ResizeNodePreparation, ResizeNodePreparationRequest, ResolveConnectableOutputForOutlet, ResolveConnectableOutputForOutletRequest, ResolveConnectionEndpointRect, ResolveConnectionEndpointRectRequest, ResolveConnectionEndpointRotationContext, ResolveConnectionEndpointRotationContextRequest, ResolveConnectionEndpoints, ResolveConnectionEndpointsRequest, ResolveConnectionGeometry, ResolveConnectionGeometryRequest, RotateNodeFinalize, RotateNodeFinalizeRequest, RotateNodeHandler, RotateNodePreparation, RotateNodePreparationRequest, RunAutoPanFrame, RunAutoPanFrameRequest, RunConnectionRedrawSlice, RunConnectionRedrawSliceRequest, RunConnectionWorker, RunConnectionWorkerBatch, RunConnectionWorkerBatchRequest, RunConnectionWorkerRequest, RunDevDiagnostics, RunDevDiagnosticsRequest, ScheduleAutoPanFrame, ScheduleAutoPanFrameRequest, ScrollCanvas, ScrollCanvasRequest, Select, SelectAll, SelectAllRequest, SelectAndUpdateNodeLayer, SelectAndUpdateNodeLayerRequest, SelectByPointer, SelectByPointerRequest, SelectRequest, SelectionAreaFinalize, SelectionAreaFinalizeRequest, SelectionAreaHandler, SelectionAreaPreparation, SelectionAreaPreparationRequest, SetBackgroundTransform, SetBackgroundTransformRequest, SetFCacheConnectorRect, SetFCacheConnectorRectRequest, SetFCacheNodeRect, SetFCacheNodeRectRequest, SetZoom, SetZoomRequest, ShouldUseConnectionWorker, ShouldUseConnectionWorkerRequest, SortDropCandidatesByLayer, SortDropCandidatesByLayerRequest, SortItemLayers, SortItemLayersRequest, SortItemsByParent, SortItemsByParentRequest, SortNodeLayers, SortNodeLayersRequest, StartConnectionRedraw, StartConnectionRedrawRequest, StartConnectionWorkerRedraw, StartConnectionWorkerRedrawRequest, StopAutoPan, StopAutoPanRequest, StopCollisionResolver, UnmarkConnectableConnectors, UnmarkConnectableConnectorsRequest, UnregisterFCacheConnector, UnregisterFCacheConnectorRequest, UnregisterFCacheNode, UnregisterFCacheNodeRequest, UpdateFCacheRectByElement, UpdateFCacheRectByElementRequest, UpdateItemAndChildrenLayers, UpdateItemAndChildrenLayersRequest, UpdateNodeWhenStateOrSizeChanged, UpdateNodeWhenStateOrSizeChangedRequest, UpdateScale, UpdateScaleRequest, WaitForConnectionsRendered, WaitForConnectionsRenderedRequest, XRangeSelectionStrategy, afterNextPaint, buildConnectionAnchors, buildCornerMidPointsAndApplyOffsets, calculateAutoPanAxisDelta, calculateAutoPanDelta, calculateCenterBetweenPoints, calculateCornerApex, calculateCurveCandidates, calculateDifferenceAfterRotation, calculateMagneticGuides, calculateMagneticRects, calculatePointerInFlow, calculatePolylineCandidates, calculatePositionAfterRotation, calculateSmoothControlPoint, castToConnectorType, coerceMarkerType, computeEdgeDeltas, createConnectionDomIdentifier, createConnectionSelectionDomIdentifier, createConnectionWorkerUrl, createGradientDomIdentifier, createGradientDomUrl, createMultiCubicPath, createSVGElement, createSegmentLinePath, cubicBezierAtT, debounceAnimationFrame, debounceMicrotask, debounceTime, defaultEventTrigger, determineSide, expandRectByOverflow, fDiagnosticMessage, fInstanceKey, fProvideCache, fSuppressDevWarnings, fWarnOnce, filterConnectableTargets, findExistingWaypoint, findNodeOrGroupContaining, findSourceConnector, findSpatialNeighbor, findTargetConnector, findWaypointCandidate, fixedCenterBehavior, fixedOutboundBehavior, floatingBehavior, getAllSourceConnectors, getAllTargetConnectors, getExternalItemHost, infinityMinMax, injectFlowState, isCalculateMode, isConnectionWorkerRuntimeSupported, isConnector, isDragBlocker, isDragExternalItemHandler, isDragHandleEnd, isDragHandleStart, isDragMinimapHandler, isDragNodeHandler, isExternalItem, isFDevMode, isMobile, isNode, isNodeOutlet, isNodeOutput, isOnFlowBackground, isOutletConnector, isPointerInsidePoint, isPointerInsideStartOrEndDragHandles, isResizeNodeHandler, isRotateHandle, isRotateNodeHandler, isSourceConnector, isTargetConnector, isValidEventTrigger, mergeA11yConfig, mergeControlSchemeConfig, mergeFCanvasConfig, mergeFlowStateConfig, mergeLayoutNodes, mergePointChains, mergeReflowConfig, middleButtonEventTrigger, mixinChangeSelection, mixinChangeVisibility, normalizeFlowLayoutData, normalizePolyline, notifyOnStart, pickWaypoint, primaryButtonEventTrigger, provideFFlow, provideFLayout, rebaseAutoPanPointerDownPosition, rectFromPoint, requireSourceConnector, requireTargetConnector, resolveAutoPanMode, resolveConnectionWorkerRuntime, resolveLayerOrder, revokeConnectionWorkerUrl, sampleCubicBezierUniform, sampleMultiCubicUniform, stringAttribute, takeOne, transitionEnd, withA11y, withConnectionFlow, withControlScheme, withFCanvas, withFlowState, withReflowOnResize, withinSnapThreshold };
|
|
10107
|
+
export type { AbstractConstructor, Constructor, FA11yDirection, FCacheConnectorKey, FChannelListener, FChannelOperator, FConnectionEndpoint, FConnectorKind, FConnectorType, FEventTrigger, FHasId, FInstanceKey, FMoveNodePosition, FTriggerEvent, ICacheOptions, ICalculateBehaviorRequest, ICanBeSelectedElementAndRect, ICanChangeVisibility, IClosestConnectorRef, IConnectionBuilders, IConnectionEndpointRotationContext, IConnectionEndpoints, IConnectionGeometry, IConnectionRedrawSession, IConnectionWorkerBatch, IConnectionWorkerBatchItem, IConnectionWorkerPayloadItem, IConnectionWorkerRect, IConnectionWorkerResponse, IConnectionWorkerResultItem, IConnectorRectRef, IConstraintEdges, ICreateConnectionDragResult, ICreateConnectionEventData, ICubicSegment, ICurrentSelection, IDeltaClampResult, IDestroyable, IDragExternalItemDragResult, IDragNodeDeltaConstraints, IDragNodeDeltaConstraintsResult, IDragNodeSoftConstraint, IDragSessionContext, IDragSessionFeature, IFA11yConfig, IFA11yKeys, IFA11yMessages, IFA11yNavigable, IFA11yResolvedConfig, IFBackgroundPattern, IFCacheNodeRef, IFCanvasResolvedConfig, IFConnectionBuilder, IFConnectionBuilderRequest, IFConnectionBuilderResponse, IFConnectionFlow, IFControlScheme, IFControlSchemeConfig, IFFlowConfig, IFFlowDiagnosticsConfig, IFFlowFeature, IFFlowState, IFFlowStateConfig, IFFlowStateConnection, IFFlowStateConnector, IFFlowStateNode, IFFlowStateOptions, IFFlowStateResolvedConfig, IFLayoutAlgorithmOptions, IFLayoutCalculationOptions, IFLayoutConnection, IFLayoutGraph, IFLayoutNode, IFLayoutNodePosition, IFLayoutOptions, IFLayoutProviderConfig, IFLayoutResult, IFLayoutWritebackPayload, IFReflowCollisionResolver, IFReflowDeltaCalculator, IFReflowOnResizeConfig, IFReflowOnResizeResolvedConfig, IFReflowScopeFilter, IFReflowSelectionStrategy, IFReflowSpacingConfig, IFStateConnection, IFStateData, IFStateGroup, IFStateNode, IFStateSelection, IFStateShape, IFStateTransform, IFlowLayoutNormalizationResult, IHasHostElement, IMagneticAxisGuide, IMagneticGapRect, IMagneticGuidesResult, IMagneticRectsResult, IMinimapViewport, INodeWithRect, IParentConnectionEndpointHandler, IParentConnectionHandlers, IPolylineContent, IReassignConnectionDragResult, IReassignConnectionEventData, IReassignHandler, IReflowCandidate, IReflowConnection, IReflowPlan, IReflowPlannerInput, IReflowRawShift, IReflowResolvedShift, IReflowShift, IResizeConstraint, IResizeEdgeDeltas, IResizeLimit, IResizeLimits, IResizeNodeConnectionEndpointHandler, IResizeNodeConnectionHandlers, IResizeOverflow, ISamplerResult, ISelectable, ITangent, MagneticRectsAlignMode, MagneticRectsAxis, MergeFCanvasConfig, TAutoPanMode, TCalculateMode, TConnectionWorkerPendingRequest, TFLayoutWritebackHandler, TResolveConnectionEndpointRotationContextResponse, WaypointPick };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foblex/flow",
|
|
3
|
-
"version": "19.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "19.2.0",
|
|
4
|
+
"description": "The most adopted node editor library for Angular. Angular-native, for production workflow builders, AI pipelines, and interactive diagram editors.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"author": "Siarhei Huzarevich",
|