@foblex/flow 17.0.8 → 17.0.9
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/domain/f-draggable/providers.d.ts +1 -1
- package/esm2022/domain/f-draggable/emit-selection-change-event/emit-selection-change-event.execution.mjs +2 -2
- package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +6 -4
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +25 -19
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/index.mjs +1 -2
- package/esm2022/f-draggable/connections/providers.mjs +3 -5
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.mjs +1 -2
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +46 -42
- package/esm2022/f-draggable/domain/is-connection-under-node/is-connection-under-node.execution.mjs +2 -4
- package/esm2022/f-draggable/f-draggable-base.mjs +1 -1
- package/esm2022/f-draggable/f-draggable.directive.mjs +11 -7
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +4 -4
- package/esm2022/f-draggable/single-select/index.mjs +1 -2
- package/esm2022/f-draggable/single-select/providers.mjs +1 -3
- package/esm2022/f-draggable/single-select/single-select.execution.mjs +8 -1
- package/f-connection/common/f-drag-handle/f-connection-drag-handle.component.d.ts +2 -0
- package/f-connection/providers.d.ts +1 -1
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.d.ts +6 -6
- package/f-draggable/connections/create-connection/create-connection-preparation/index.d.ts +0 -1
- package/f-draggable/connections/providers.d.ts +3 -3
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.d.ts +0 -1
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.d.ts +14 -16
- package/f-draggable/domain/providers.d.ts +1 -1
- package/f-draggable/f-draggable-base.d.ts +1 -0
- package/f-draggable/f-draggable.directive.d.ts +3 -1
- package/f-draggable/node/node-move-finalize/node-move-finalize.execution.d.ts +1 -1
- package/f-draggable/node/providers.d.ts +1 -1
- package/f-draggable/node-resize/providers.d.ts +1 -1
- package/f-draggable/providers.d.ts +1 -1
- package/f-draggable/single-select/index.d.ts +0 -1
- package/f-draggable/single-select/providers.d.ts +1 -2
- package/f-draggable/single-select/single-select.execution.d.ts +1 -0
- package/f-minimap/domain/providers.d.ts +1 -1
- package/fesm2022/foblex-flow.mjs +87 -151
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +1 -1
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +0 -35
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +0 -47
- package/esm2022/f-draggable/single-select/single-select.validator.mjs +0 -29
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.d.ts +0 -15
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.d.ts +0 -20
- package/f-draggable/single-select/single-select.validator.d.ts +0 -13
package/fesm2022/foblex-flow.mjs
CHANGED
|
@@ -2243,6 +2243,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImpor
|
|
|
2243
2243
|
const F_CONNECTION_DRAG_HANDLE_CLASS = 'f-connection-drag-handle';
|
|
2244
2244
|
class FConnectionDragHandleComponent {
|
|
2245
2245
|
elementReference;
|
|
2246
|
+
point;
|
|
2247
|
+
radius = 8;
|
|
2246
2248
|
class = F_CONNECTION_DRAG_HANDLE_CLASS;
|
|
2247
2249
|
get hostElement() {
|
|
2248
2250
|
return this.elementReference.nativeElement;
|
|
@@ -2251,9 +2253,9 @@ class FConnectionDragHandleComponent {
|
|
|
2251
2253
|
this.elementReference = elementReference;
|
|
2252
2254
|
}
|
|
2253
2255
|
redraw(penultimatePoint, endPoint) {
|
|
2254
|
-
|
|
2255
|
-
this.hostElement.setAttribute('cx', point.x.toString());
|
|
2256
|
-
this.hostElement.setAttribute('cy', point.y.toString());
|
|
2256
|
+
this.point = this._calculateCircleCenter(penultimatePoint, endPoint, 8);
|
|
2257
|
+
this.hostElement.setAttribute('cx', this.point.x.toString());
|
|
2258
|
+
this.hostElement.setAttribute('cy', this.point.y.toString());
|
|
2257
2259
|
}
|
|
2258
2260
|
_calculateCircleCenter(start, end, radius) {
|
|
2259
2261
|
const direction = { x: end.x - start.x, y: end.y - start.y };
|
|
@@ -4013,31 +4015,37 @@ class CreateConnectionPreparationRequest {
|
|
|
4013
4015
|
}
|
|
4014
4016
|
|
|
4015
4017
|
let CreateConnectionPreparationExecution = class CreateConnectionPreparationExecution {
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
this.fComponentsStore = fComponentsStore;
|
|
4020
|
-
this.fMediator = fMediator;
|
|
4021
|
-
}
|
|
4018
|
+
_fMediator = inject(FMediator);
|
|
4019
|
+
_fComponentsStore = inject(FComponentsStore);
|
|
4020
|
+
_fDraggableDataContext = inject(FDraggableDataContext);
|
|
4022
4021
|
handle(request) {
|
|
4022
|
+
if (!this._isValid(request)) {
|
|
4023
|
+
return;
|
|
4024
|
+
}
|
|
4023
4025
|
if (isNodeOutlet(request.event.targetElement)) {
|
|
4024
|
-
this.
|
|
4026
|
+
this._fMediator.send(new CreateConnectionFromOutletPreparationRequest(request.event));
|
|
4025
4027
|
}
|
|
4026
|
-
else if (this.isNodeOutput(request.event.targetElement, this.
|
|
4027
|
-
this.
|
|
4028
|
+
else if (this.isNodeOutput(request.event.targetElement, this._getNode(request.event))) {
|
|
4029
|
+
this._fMediator.send(new CreateConnectionFromOutputPreparationRequest(request.event));
|
|
4028
4030
|
}
|
|
4029
4031
|
}
|
|
4030
|
-
|
|
4031
|
-
return this.
|
|
4032
|
+
_isValid(request) {
|
|
4033
|
+
return !!this._getNode(request.event) && this._isValidConditions();
|
|
4034
|
+
}
|
|
4035
|
+
_getNode(event) {
|
|
4036
|
+
return this._fComponentsStore
|
|
4032
4037
|
.fNodes.find(n => n.isContains(event.targetElement));
|
|
4033
4038
|
}
|
|
4039
|
+
_isValidConditions() {
|
|
4040
|
+
return !this._fDraggableDataContext.draggableItems.length && !!this._fComponentsStore.fTempConnection;
|
|
4041
|
+
}
|
|
4034
4042
|
isNodeOutput(targetElement, node) {
|
|
4035
4043
|
return isNodeOutput(targetElement) && !this.getOutlets(node).length;
|
|
4036
4044
|
}
|
|
4037
4045
|
getOutlets(node) {
|
|
4038
|
-
return this.
|
|
4046
|
+
return this._fComponentsStore.fOutlets.filter((x) => node.isContains(x.hostElement));
|
|
4039
4047
|
}
|
|
4040
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationExecution, deps: [
|
|
4048
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4041
4049
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationExecution });
|
|
4042
4050
|
};
|
|
4043
4051
|
CreateConnectionPreparationExecution = __decorate([
|
|
@@ -4045,34 +4053,7 @@ CreateConnectionPreparationExecution = __decorate([
|
|
|
4045
4053
|
], CreateConnectionPreparationExecution);
|
|
4046
4054
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationExecution, decorators: [{
|
|
4047
4055
|
type: Injectable
|
|
4048
|
-
}]
|
|
4049
|
-
|
|
4050
|
-
let CreateConnectionPreparationValidator = class CreateConnectionPreparationValidator {
|
|
4051
|
-
fComponentsStore;
|
|
4052
|
-
fDraggableDataContext;
|
|
4053
|
-
constructor(fComponentsStore, fDraggableDataContext) {
|
|
4054
|
-
this.fComponentsStore = fComponentsStore;
|
|
4055
|
-
this.fDraggableDataContext = fDraggableDataContext;
|
|
4056
|
-
}
|
|
4057
|
-
handle(request) {
|
|
4058
|
-
return !!this.getNode(request.event) && this.isValidConditions();
|
|
4059
|
-
}
|
|
4060
|
-
getNode(event) {
|
|
4061
|
-
return this.fComponentsStore
|
|
4062
|
-
.fNodes.find(n => n.isContains(event.targetElement));
|
|
4063
|
-
}
|
|
4064
|
-
isValidConditions() {
|
|
4065
|
-
return !this.fDraggableDataContext.draggableItems.length && !!this.fComponentsStore.fTempConnection;
|
|
4066
|
-
}
|
|
4067
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4068
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationValidator });
|
|
4069
|
-
};
|
|
4070
|
-
CreateConnectionPreparationValidator = __decorate([
|
|
4071
|
-
FValidatorRegister(CreateConnectionPreparationRequest)
|
|
4072
|
-
], CreateConnectionPreparationValidator);
|
|
4073
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: CreateConnectionPreparationValidator, decorators: [{
|
|
4074
|
-
type: Injectable
|
|
4075
|
-
}], ctorParameters: () => [{ type: FComponentsStore }, { type: FDraggableDataContext }] });
|
|
4056
|
+
}] });
|
|
4076
4057
|
|
|
4077
4058
|
class ReassignConnectionFinalizeRequest {
|
|
4078
4059
|
event;
|
|
@@ -4229,50 +4210,57 @@ class ReassignConnectionPreparationRequest {
|
|
|
4229
4210
|
}
|
|
4230
4211
|
|
|
4231
4212
|
let ReassignConnectionPreparationExecution = class ReassignConnectionPreparationExecution {
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
get
|
|
4237
|
-
return this.
|
|
4238
|
-
}
|
|
4239
|
-
get flowHost() {
|
|
4240
|
-
return this.fComponentsStore.fFlow.hostElement;
|
|
4213
|
+
_fMediator = inject(FMediator);
|
|
4214
|
+
_fComponentsStore = inject(FComponentsStore);
|
|
4215
|
+
_fDraggableDataContext = inject(FDraggableDataContext);
|
|
4216
|
+
_fConnection;
|
|
4217
|
+
get _transform() {
|
|
4218
|
+
return this._fComponentsStore.fCanvas.transform;
|
|
4241
4219
|
}
|
|
4242
|
-
get
|
|
4243
|
-
return this.
|
|
4220
|
+
get _fHost() {
|
|
4221
|
+
return this._fComponentsStore.fFlow.hostElement;
|
|
4244
4222
|
}
|
|
4245
|
-
|
|
4246
|
-
this.
|
|
4247
|
-
this.fDraggableDataContext = fDraggableDataContext;
|
|
4248
|
-
this.fMediator = fMediator;
|
|
4249
|
-
this.fBrowser = fBrowser;
|
|
4223
|
+
get _fConnections() {
|
|
4224
|
+
return this._fComponentsStore.fConnections;
|
|
4250
4225
|
}
|
|
4251
4226
|
handle(request) {
|
|
4252
|
-
|
|
4253
|
-
if (connectionToReassign.fDraggingDisabled) {
|
|
4227
|
+
if (!this._isValid(request)) {
|
|
4254
4228
|
return;
|
|
4255
4229
|
}
|
|
4256
|
-
this.
|
|
4257
|
-
this.
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
new ReassignConnectionDragHandler(this.fMediator, this.fComponentsStore, connectionToReassign)
|
|
4230
|
+
this._fDraggableDataContext.onPointerDownScale = this._transform.scale;
|
|
4231
|
+
this._fDraggableDataContext.onPointerDownPosition = Point.fromPoint(request.event.getPosition())
|
|
4232
|
+
.elementTransform(this._fHost).div(this._transform.scale);
|
|
4233
|
+
this._fDraggableDataContext.draggableItems = [
|
|
4234
|
+
new ReassignConnectionDragHandler(this._fMediator, this._fComponentsStore, this._fConnection)
|
|
4262
4235
|
];
|
|
4236
|
+
setTimeout(() => this._updateConnectionLayer());
|
|
4263
4237
|
}
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
}).find((x) => !!x);
|
|
4238
|
+
_isValid(request) {
|
|
4239
|
+
this._fConnection = this._getConnectionToReassign(this._getPointInFlow(request));
|
|
4240
|
+
return !!this._fConnection && !this._fDraggableDataContext.draggableItems.length;
|
|
4268
4241
|
}
|
|
4269
|
-
|
|
4270
|
-
return
|
|
4242
|
+
_getPointInFlow(request) {
|
|
4243
|
+
return Point.fromPoint(request.event.getPosition())
|
|
4244
|
+
.elementTransform(this._fHost)
|
|
4245
|
+
.sub(this._transform.scaledPosition).sub(this._transform.position)
|
|
4246
|
+
.div(this._transform.scale);
|
|
4271
4247
|
}
|
|
4272
|
-
|
|
4273
|
-
|
|
4248
|
+
_getConnectionToReassign(position) {
|
|
4249
|
+
const connections = this._getConnectionsFromPoint(position);
|
|
4250
|
+
return connections.length ? connections[0] : undefined;
|
|
4274
4251
|
}
|
|
4275
|
-
|
|
4252
|
+
_getConnectionsFromPoint(position) {
|
|
4253
|
+
return this._fConnections.filter((x) => {
|
|
4254
|
+
return this._isPointInsideCircle(position, x.fDragHandle.point) && !x.fDraggingDisabled;
|
|
4255
|
+
});
|
|
4256
|
+
}
|
|
4257
|
+
_isPointInsideCircle(point, circleCenter) {
|
|
4258
|
+
return (point.x - circleCenter.x) ** 2 + (point.y - circleCenter.y) ** 2 <= 8 ** 2;
|
|
4259
|
+
}
|
|
4260
|
+
_updateConnectionLayer() {
|
|
4261
|
+
this._fMediator.execute(new UpdateItemAndChildrenLayersRequest(this._fConnection, this._fComponentsStore.fCanvas.fConnectionsContainer.nativeElement));
|
|
4262
|
+
}
|
|
4263
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4276
4264
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationExecution });
|
|
4277
4265
|
};
|
|
4278
4266
|
ReassignConnectionPreparationExecution = __decorate([
|
|
@@ -4280,44 +4268,7 @@ ReassignConnectionPreparationExecution = __decorate([
|
|
|
4280
4268
|
], ReassignConnectionPreparationExecution);
|
|
4281
4269
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationExecution, decorators: [{
|
|
4282
4270
|
type: Injectable
|
|
4283
|
-
}]
|
|
4284
|
-
|
|
4285
|
-
let ReassignConnectionPreparationValidator = class ReassignConnectionPreparationValidator {
|
|
4286
|
-
fComponentsStore;
|
|
4287
|
-
fDraggableDataContext;
|
|
4288
|
-
fBrowser;
|
|
4289
|
-
get fConnections() {
|
|
4290
|
-
return this.fComponentsStore.fConnections;
|
|
4291
|
-
}
|
|
4292
|
-
constructor(fComponentsStore, fDraggableDataContext, fBrowser) {
|
|
4293
|
-
this.fComponentsStore = fComponentsStore;
|
|
4294
|
-
this.fDraggableDataContext = fDraggableDataContext;
|
|
4295
|
-
this.fBrowser = fBrowser;
|
|
4296
|
-
}
|
|
4297
|
-
handle(request) {
|
|
4298
|
-
return !!this.getDragHandleElements(request.event.getPosition()).length
|
|
4299
|
-
&& !this.fDraggableDataContext.draggableItems.length;
|
|
4300
|
-
}
|
|
4301
|
-
getDragHandleElements(position) {
|
|
4302
|
-
return this.getElementsFromPoint(position).filter((x) => {
|
|
4303
|
-
return !!this.getConnectionHandler(x) && x.classList.contains(F_CONNECTION_DRAG_HANDLE_CLASS);
|
|
4304
|
-
});
|
|
4305
|
-
}
|
|
4306
|
-
getElementsFromPoint(position) {
|
|
4307
|
-
return this.fBrowser.document.elementsFromPoint(position.x, position.y);
|
|
4308
|
-
}
|
|
4309
|
-
getConnectionHandler(element) {
|
|
4310
|
-
return this.fConnections.find(c => c.isContains(element));
|
|
4311
|
-
}
|
|
4312
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4313
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationValidator });
|
|
4314
|
-
};
|
|
4315
|
-
ReassignConnectionPreparationValidator = __decorate([
|
|
4316
|
-
FValidatorRegister(ReassignConnectionPreparationRequest)
|
|
4317
|
-
], ReassignConnectionPreparationValidator);
|
|
4318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: ReassignConnectionPreparationValidator, decorators: [{
|
|
4319
|
-
type: Injectable
|
|
4320
|
-
}], ctorParameters: () => [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i1.BrowserService }] });
|
|
4271
|
+
}] });
|
|
4321
4272
|
|
|
4322
4273
|
const CONNECTIONS_PROVIDERS = [
|
|
4323
4274
|
GetInputUnderPointerExecution,
|
|
@@ -4330,10 +4281,8 @@ const CONNECTIONS_PROVIDERS = [
|
|
|
4330
4281
|
CreateConnectionFromOutputPreparationExecution,
|
|
4331
4282
|
CreateConnectionFromOutputPreparationValidator,
|
|
4332
4283
|
CreateConnectionPreparationExecution,
|
|
4333
|
-
CreateConnectionPreparationValidator,
|
|
4334
4284
|
ReassignConnectionFinalizeExecution,
|
|
4335
4285
|
ReassignConnectionPreparationExecution,
|
|
4336
|
-
ReassignConnectionPreparationValidator,
|
|
4337
4286
|
];
|
|
4338
4287
|
|
|
4339
4288
|
class GetNormalizedParentNodeRectRequest {
|
|
@@ -4511,9 +4460,7 @@ let IsConnectionUnderNodeExecution = class IsConnectionUnderNodeExecution {
|
|
|
4511
4460
|
}
|
|
4512
4461
|
_calculateConnectionsUnderNode(fNode) {
|
|
4513
4462
|
const fNodeRect = this._fMediator.send(new GetNormalizedElementRectRequest(fNode.hostElement, true));
|
|
4514
|
-
return this._fComponentsStore.fConnections.filter((x) =>
|
|
4515
|
-
return this._isConnectionHasIntersectionsWithNode(x, fNodeRect);
|
|
4516
|
-
});
|
|
4463
|
+
return this._fComponentsStore.fConnections.filter((x) => this._isConnectionHasIntersectionsWithNode(x, fNodeRect));
|
|
4517
4464
|
}
|
|
4518
4465
|
_isConnectionHasIntersectionsWithNode(fConnection, fNodeRect) {
|
|
4519
4466
|
return GetIntersections.getRoundedRectIntersectionsWithSVGPath(fConnection.fPath.hostElement, fNodeRect).length > 0;
|
|
@@ -5345,7 +5292,7 @@ let NodeMoveFinalizeExecution = class NodeMoveFinalizeExecution {
|
|
|
5345
5292
|
const differenceWithCellSize = firstNodeOrGroup.getDifferenceWithCellSize(difference);
|
|
5346
5293
|
this._finalizeMove(differenceWithCellSize);
|
|
5347
5294
|
this._fDraggableDataContext.fLineAlignment?.complete();
|
|
5348
|
-
this.
|
|
5295
|
+
this._applyConnectionUnderDroppedNode();
|
|
5349
5296
|
}
|
|
5350
5297
|
_isValid() {
|
|
5351
5298
|
return this._fDraggableDataContext.draggableItems.some((x) => x instanceof NodeDragHandler);
|
|
@@ -5378,9 +5325,9 @@ let NodeMoveFinalizeExecution = class NodeMoveFinalizeExecution {
|
|
|
5378
5325
|
}
|
|
5379
5326
|
return difference;
|
|
5380
5327
|
}
|
|
5381
|
-
|
|
5328
|
+
_applyConnectionUnderDroppedNode() {
|
|
5382
5329
|
const isDraggedJustOneNode = this._fDraggableDataContext.draggableItems[0] instanceof NodeDragHandler;
|
|
5383
|
-
if (isDraggedJustOneNode) {
|
|
5330
|
+
if (isDraggedJustOneNode && this._fComponentsStore.fDraggable?.emitWhenNodeIntersectedWithConnection) {
|
|
5384
5331
|
const fNode = this._fDraggableDataContext.draggableItems[0].fNode;
|
|
5385
5332
|
setTimeout(() => this._fMediator.execute(new IsConnectionUnderNodeRequest(fNode)));
|
|
5386
5333
|
}
|
|
@@ -5860,6 +5807,9 @@ let SingleSelectExecution = class SingleSelectExecution {
|
|
|
5860
5807
|
this.fMediator = fMediator;
|
|
5861
5808
|
}
|
|
5862
5809
|
handle(request) {
|
|
5810
|
+
if (!this._isValid(request)) {
|
|
5811
|
+
return;
|
|
5812
|
+
}
|
|
5863
5813
|
const { event } = request;
|
|
5864
5814
|
const item = this.getSelectableItem(event);
|
|
5865
5815
|
if (item) {
|
|
@@ -5867,6 +5817,10 @@ let SingleSelectExecution = class SingleSelectExecution {
|
|
|
5867
5817
|
}
|
|
5868
5818
|
this.isMultiselectEnabled(event) ? this.multiSelect(item) : this.singleSelect(item);
|
|
5869
5819
|
}
|
|
5820
|
+
_isValid(request) {
|
|
5821
|
+
return this.fComponentsStore.fFlow.hostElement.contains(request.event.targetElement)
|
|
5822
|
+
&& !this.fDraggableDataContext.draggableItems.length;
|
|
5823
|
+
}
|
|
5870
5824
|
getSelectableItem(event) {
|
|
5871
5825
|
return this._findNode(event.targetElement) || this.getConnectionHandler(event.targetElement);
|
|
5872
5826
|
}
|
|
@@ -5935,30 +5889,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImpor
|
|
|
5935
5889
|
type: Injectable
|
|
5936
5890
|
}], ctorParameters: () => [{ type: i1.PlatformService }, { type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }] });
|
|
5937
5891
|
|
|
5938
|
-
let SingleSelectValidator = class SingleSelectValidator {
|
|
5939
|
-
fComponentsStore;
|
|
5940
|
-
fDraggableDataContext;
|
|
5941
|
-
constructor(fComponentsStore, fDraggableDataContext) {
|
|
5942
|
-
this.fComponentsStore = fComponentsStore;
|
|
5943
|
-
this.fDraggableDataContext = fDraggableDataContext;
|
|
5944
|
-
}
|
|
5945
|
-
handle(request) {
|
|
5946
|
-
return this.fComponentsStore.fFlow.hostElement.contains(request.event.targetElement)
|
|
5947
|
-
&& !this.fDraggableDataContext.draggableItems.length;
|
|
5948
|
-
}
|
|
5949
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: SingleSelectValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5950
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: SingleSelectValidator });
|
|
5951
|
-
};
|
|
5952
|
-
SingleSelectValidator = __decorate([
|
|
5953
|
-
FValidatorRegister(SingleSelectRequest)
|
|
5954
|
-
], SingleSelectValidator);
|
|
5955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: SingleSelectValidator, decorators: [{
|
|
5956
|
-
type: Injectable
|
|
5957
|
-
}], ctorParameters: () => [{ type: FComponentsStore }, { type: FDraggableDataContext }] });
|
|
5958
|
-
|
|
5959
5892
|
const SINGLE_SELECT_PROVIDERS = [
|
|
5960
5893
|
SingleSelectExecution,
|
|
5961
|
-
SingleSelectValidator
|
|
5962
5894
|
];
|
|
5963
5895
|
|
|
5964
5896
|
class FDraggableBase extends DragAndDropBase {
|
|
@@ -6305,6 +6237,7 @@ class FDraggableDirective extends FDraggableBase {
|
|
|
6305
6237
|
}
|
|
6306
6238
|
fSelectionChange = new EventEmitter();
|
|
6307
6239
|
fNodeIntersectedWithConnections = new EventEmitter();
|
|
6240
|
+
emitWhenNodeIntersectedWithConnection = false;
|
|
6308
6241
|
fCreateNode = new EventEmitter();
|
|
6309
6242
|
fReassignConnection = new EventEmitter();
|
|
6310
6243
|
fCreateConnection = new EventEmitter();
|
|
@@ -6323,11 +6256,11 @@ class FDraggableDirective extends FDraggableBase {
|
|
|
6323
6256
|
super.subscribe(this._fBrowser.document);
|
|
6324
6257
|
}
|
|
6325
6258
|
onPointerDown(event) {
|
|
6326
|
-
this._fMediator.
|
|
6259
|
+
this._fMediator.execute(new InitializeDragSequenceRequest());
|
|
6327
6260
|
this.plugins.forEach((p) => p.onPointerDown?.(event));
|
|
6328
|
-
this._fMediator.
|
|
6329
|
-
this._fMediator.
|
|
6330
|
-
this._fMediator.
|
|
6261
|
+
this._fMediator.execute(new SingleSelectRequest(event));
|
|
6262
|
+
this._fMediator.execute(new ReassignConnectionPreparationRequest(event));
|
|
6263
|
+
this._fMediator.execute(new CreateConnectionPreparationRequest(event));
|
|
6331
6264
|
const isMouseLeftButton = event.isMouseLeftButton();
|
|
6332
6265
|
if (!isMouseLeftButton) {
|
|
6333
6266
|
this.finalizeDragSequence();
|
|
@@ -6369,7 +6302,7 @@ class FDraggableDirective extends FDraggableBase {
|
|
|
6369
6302
|
super.unsubscribe();
|
|
6370
6303
|
}
|
|
6371
6304
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: FDraggableDirective, deps: [{ token: NgZone, optional: true }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6372
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
6305
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.4", type: FDraggableDirective, selector: "f-flow[fDraggable]", inputs: { disabled: ["fDraggableDisabled", "disabled"], emitWhenNodeIntersectedWithConnection: ["emitWhenNodeIntersectedWithConnection", "emitWhenNodeIntersectedWithConnection", booleanAttribute], vCellSize: "vCellSize", hCellSize: "hCellSize" }, outputs: { fSelectionChange: "fSelectionChange", fNodeIntersectedWithConnections: "fNodeIntersectedWithConnections", fCreateNode: "fCreateNode", fReassignConnection: "fReassignConnection", fCreateConnection: "fCreateConnection", fDropToGroup: "fDropToGroup" }, queries: [{ propertyName: "plugins", predicate: F_DRAG_AND_DROP_PLUGIN, descendants: true }], exportAs: ["fDraggable"], usesInheritance: true, ngImport: i0 });
|
|
6373
6306
|
}
|
|
6374
6307
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImport: i0, type: FDraggableDirective, decorators: [{
|
|
6375
6308
|
type: Directive,
|
|
@@ -6389,6 +6322,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImpor
|
|
|
6389
6322
|
type: Output
|
|
6390
6323
|
}], fNodeIntersectedWithConnections: [{
|
|
6391
6324
|
type: Output
|
|
6325
|
+
}], emitWhenNodeIntersectedWithConnection: [{
|
|
6326
|
+
type: Input,
|
|
6327
|
+
args: [{ transform: booleanAttribute }]
|
|
6392
6328
|
}], fCreateNode: [{
|
|
6393
6329
|
type: Output
|
|
6394
6330
|
}], fReassignConnection: [{
|
|
@@ -9251,5 +9187,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.4", ngImpor
|
|
|
9251
9187
|
* Generated bundle index. Do not edit.
|
|
9252
9188
|
*/
|
|
9253
9189
|
|
|
9254
|
-
export { AddBackgroundToStoreExecution, AddBackgroundToStoreRequest, AddCanvasToStoreExecution, AddCanvasToStoreRequest, AddConnectionForCreateToStoreExecution, AddConnectionForCreateToStoreRequest, AddConnectionMarkerToStoreExecution, AddConnectionMarkerToStoreRequest, AddConnectionToStoreExecution, AddConnectionToStoreRequest, AddDndToStoreExecution, AddDndToStoreRequest, AddFlowToStoreExecution, AddFlowToStoreRequest, AddInputToStoreExecution, AddInputToStoreRequest, AddLineAlignmentToStoreExecution, AddLineAlignmentToStoreRequest, AddNodeToStoreExecution, AddNodeToStoreRequest, AddOutletToStoreExecution, AddOutletToStoreRequest, AddOutputToStoreExecution, AddOutputToStoreRequest, AddPatternToBackgroundExecution, AddPatternToBackgroundRequest, AddSnapConnectionToStoreExecution, AddSnapConnectionToStoreRequest, ApplyChildResizeRestrictionsExecution, ApplyChildResizeRestrictionsRequest, ApplyParentResizeRestrictionsExecution, ApplyParentResizeRestrictionsRequest, CANVAS_MOVE_FINALIZE_PROVIDERS, CANVAS_MOVE_PREPARATION_PROVIDERS, CANVAS_PROVIDERS, COMMON_PROVIDERS, CONNECTIONS_PROVIDERS, CONNECTION_GRADIENT, CONNECTION_PATH, CONNECTION_TEXT, CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS, CalculateCenterBetweenPointsHandler, CalculateCenterBetweenPointsRequest, CalculateChangedPositionExecution, CalculateChangedPositionRequest, CalculateChangedSizeExecution, CalculateChangedSizeRequest, CalculateConnectionCenterHandler, CalculateConnectionCenterRequest, CalculateConnectionLineByBehaviorExecution, CalculateConnectionLineByBehaviorRequest, CalculateConnectorConnectableSideHandler, CalculateConnectorConnectableSideRequest, CalculateFlowPointFromMinimapPointExecution, CalculateFlowPointFromMinimapPointRequest, CalculateNodesBoundingBoxExecution, CalculateNodesBoundingBoxNormalizedPositionExecution, CalculateNodesBoundingBoxNormalizedPositionRequest, CalculateNodesBoundingBoxRequest, CanvasDragHandler, CanvasMoveFinalizeExecution, CanvasMoveFinalizeRequest, CanvasMovePreparationExecution, CanvasMovePreparationRequest, CanvasMovePreparationValidator, CenterGroupOrNodeExecution, CenterGroupOrNodeRequest, ClearSelectionExecution, ClearSelectionRequest, ConnectionBaseDragHandler, ConnectionDragHandler, ConnectionSourceDragHandler, ConnectionTargetDragHandler, CreateConnectionDragHandler, CreateConnectionDragHandlerExecution, CreateConnectionDragHandlerRequest, CreateConnectionFinalizeExecution, CreateConnectionFinalizeRequest, CreateConnectionFromOutletPreparationExecution, CreateConnectionFromOutletPreparationRequest, CreateConnectionFromOutputPreparationExecution, CreateConnectionFromOutputPreparationRequest, CreateConnectionFromOutputPreparationValidator, CreateConnectionMarkersExecution, CreateConnectionMarkersRequest, CreateConnectionPreparationExecution, CreateConnectionPreparationRequest, CreateConnectionPreparationValidator, CreateMoveNodesDragModelFromSelectionExecution, CreateMoveNodesDragModelFromSelectionRequest, DRAG_AND_DROP_COMMON_PROVIDERS, EFConnectableSide, EFConnectionBehavior, EFConnectionType, EFMarkerType, EFResizeHandleType, EXTERNAL_ITEM_FINALIZE_PROVIDERS, EXTERNAL_ITEM_PREPARATION_PROVIDERS, EmitSelectionChangeEventExecution, EmitSelectionChangeEventRequest, EndDragSequenceExecution, EndDragSequenceRequest, ExternalItemDragHandler, ExternalItemFinalizeExecution, ExternalItemFinalizeRequest, ExternalItemPreparationExecution, ExternalItemPreparationRequest, ExternalItemPreparationValidator, FBackgroundBase, FBackgroundComponent, FBezierPathBuilder, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FChannel, FChannelHub, FCirclePatternComponent, FComponentsStore, FConnectionBase, FConnectionCenterDirective, FConnectionComponent, FConnectionDragHandleComponent, FConnectionFactory, FConnectionForCreateComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective, FConnectorBase, FCreateConnectionEvent, FCreateNodeEvent, FDragHandleDirective, FDraggableBase, FDraggableDataContext, FDraggableDirective, FDropToGroupEvent, FExternalItemBase, FExternalItemDirective, FExternalItemService, FFlowBase, FFlowComponent, FFlowModule, FGroupDirective, FLineAlignmentBase, FLineAlignmentComponent, FMarkerBase, FMarkerDirective, FMinimapCanvasDirective, FMinimapComponent, FMinimapData, FMinimapDragHandler, FMinimapFlowDirective, FMinimapViewDirective, FNodeBase, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeIntersectedWithConnections, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FReassignConnectionEvent, FRectPatternComponent, FResizeChannel, FResizeHandleDirective, FRotateHandleDirective, FSegmentPathBuilder, FSelectionAreaBase, FSelectionAreaComponent, FSelectionChangeEvent, FSnapConnectionComponent, FStraightPathBuilder, FZoomBase, FZoomDirective, F_BACKGROUND, F_BACKGROUND_FEATURES, F_BACKGROUND_PATTERN, F_BACKGROUND_PROVIDERS, F_CANVAS, F_CANVAS_FEATURES, F_CANVAS_PROVIDERS, F_CONNECTION_BUILDERS, F_CONNECTION_DRAG_HANDLE_CLASS, F_CONNECTION_FEATURES, F_CONNECTION_IDENTIFIERS, F_CONNECTION_PROVIDERS, F_CONNECTORS_FEATURES, F_CONNECTORS_PROVIDERS, F_DRAGGABLE_FEATURES, F_DRAGGABLE_PROVIDERS, F_DRAG_AND_DROP_PLUGIN, F_DRAG_HANDLE, F_EXTERNAL_ITEM, F_EXTERNAL_ITEM_DRAG_AND_DROP_PROVIDERS, F_EXTERNAL_ITEM_PROVIDERS, F_FLOW, F_FLOW_FEATURES, F_FLOW_PROVIDERS, F_LINE_ALIGNMENT, F_LINE_ALIGNMENT_FEATURES, F_LINE_ALIGNMENT_PROVIDERS, F_MARKER, F_MINIMAP_DRAG_AND_DROP_PROVIDERS, F_MINIMAP_PROVIDERS, F_NODE, F_NODE_FEATURES, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_NODE_PROVIDERS, F_RESIZE_HANDLE, F_SELECTED_CLASS, F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS, F_SELECTION_AREA_PROVIDERS, F_SELECTION_FEATURES, F_STORAGE_PROVIDERS, F_ZOOM, F_ZOOM_PROVIDERS, FindClosestInputExecution, FindClosestInputRequest, FitToFlowExecution, FitToFlowRequest, GET_FLOW_STATE_PROVIDERS, GetAllCanBeConnectedInputPositionsExecution, GetAllCanBeConnectedInputPositionsRequest, GetCanBeConnectedOutputByOutletExecution, GetCanBeConnectedOutputByOutletRequest, GetCanBeConnectedOutputByOutletValidator, GetCanBeSelectedItemsExecution, GetCanBeSelectedItemsRequest, GetCanvasExecution, GetCanvasRequest, GetConnectorWithRectExecution, GetConnectorWithRectRequest, GetCurrentSelectionExecution, GetCurrentSelectionRequest, GetDeepChildrenNodesAndGroupsExecution, GetDeepChildrenNodesAndGroupsRequest, GetElementRoundedRectExecution, GetElementRoundedRectRequest, GetFlowExecution, GetFlowHostElementExecution, GetFlowHostElementRequest, GetFlowRequest, GetFlowStateConnectionsExecution, GetFlowStateConnectionsRequest, GetFlowStateExecution, GetFlowStateNodesExecution, GetFlowStateNodesRequest, GetFlowStateRequest, GetInputUnderPointerExecution, GetInputUnderPointerRequest, GetInputUnderPointerValidator, GetNodeMoveRestrictionsExecution, GetNodeMoveRestrictionsRequest, GetNodePaddingExecution, GetNodePaddingRequest, GetNodeResizeRestrictionsExecution, GetNodeResizeRestrictionsRequest, GetNodesExecution, GetNodesRequest, GetNormalizedChildrenNodesRectExecution, GetNormalizedChildrenNodesRectRequest, GetNormalizedElementRectExecution, GetNormalizedElementRectRequest, GetNormalizedParentNodeRectExecution, GetNormalizedParentNodeRectRequest, GetNormalizedPointExecution, GetNormalizedPointRequest, GetParentNodesExecution, GetParentNodesRequest, InitializeDragSequenceExecution, InitializeDragSequenceRequest, InputCanvasPositionExecution, InputCanvasPositionRequest, InputCanvasScaleExecution, InputCanvasScaleRequest, IsArrayHasParentNodeExecution, IsArrayHasParentNodeRequest, IsConnectionUnderNodeExecution, IsConnectionUnderNodeRequest, IsDragStartedExecution, IsDragStartedRequest, LineElement, LineService, ListenCountChangesExecution, ListenCountChangesRequest, ListenDataChangesExecution, ListenDataChangesRequest, ListenTransformChangesExecution, ListenTransformChangesRequest, MINIMAP_DRAG_FINALIZE_PROVIDERS, MINIMAP_DRAG_PREPARATION_PROVIDERS, MinimapCalculateSvgScaleAndViewBoxExecution, MinimapCalculateSvgScaleAndViewBoxRequest, MinimapCalculateViewBoxExecution, MinimapCalculateViewBoxRequest, MinimapDragFinalizeExecution, MinimapDragFinalizeRequest, MinimapDragFinalizeValidator, MinimapDragPreparationExecution, MinimapDragPreparationRequest, MinimapDragPreparationValidator, MinimapDrawNodesExecution, MinimapDrawNodesRequest, MoveFrontElementsBeforeTargetElementExecution, MoveFrontElementsBeforeTargetElementRequest, NODE_DRAG_TO_PARENT_FINALIZE_PROVIDERS, NODE_DRAG_TO_PARENT_PREPARATION_PROVIDERS, NODE_MOVE_PREPARATION_PROVIDERS, NODE_PROVIDERS, NODE_RESIZE_FINALIZE_PROVIDERS, NODE_RESIZE_PREPARATION_PROVIDERS, NODE_RESIZE_PROVIDERS, NodeDragHandler, NodeDragToParentDragHandler, NodeDragToParentFinalizeExecution, NodeDragToParentFinalizeRequest, NodeDragToParentPreparationExecution, NodeDragToParentPreparationRequest, NodeDragToParentPreparationValidator, NodeMoveFinalizeExecution, NodeMoveFinalizeRequest, NodeMovePreparationExecution, NodeMovePreparationRequest, NodeMovePreparationValidator, NodeResizeByChildDragHandler, NodeResizeDragHandler, NodeResizeFinalizeExecution, NodeResizeFinalizeRequest, NodeResizePreparationExecution, NodeResizePreparationRequest, NodeResizePreparationValidator, NotifyDataChangedExecution, NotifyDataChangedRequest, NotifyTransformChangedExecution, NotifyTransformChangedRequest, OnPointerMoveExecution, OnPointerMoveRequest, PrepareDragSequenceExecution, PrepareDragSequenceRequest, PreventDefaultIsExternalItemExecution, PreventDefaultIsExternalItemRequest, PutInputConnectionHandlersToArrayExecution, PutInputConnectionHandlersToArrayRequest, PutOutputConnectionHandlersToArrayExecution, PutOutputConnectionHandlersToArrayRequest, RESIZE_DIRECTIONS, ReassignConnectionDragHandler, ReassignConnectionFinalizeExecution, ReassignConnectionFinalizeRequest, ReassignConnectionPreparationExecution, ReassignConnectionPreparationRequest, ReassignConnectionPreparationValidator, RedrawCanvasWithAnimationExecution, RedrawCanvasWithAnimationRequest, RedrawConnectionsExecution, RedrawConnectionsRequest, RemoveBackgroundFromStoreExecution, RemoveBackgroundFromStoreRequest, RemoveCanvasFromStoreExecution, RemoveCanvasFromStoreRequest, RemoveConnectionForCreateFromStoreExecution, RemoveConnectionForCreateFromStoreRequest, RemoveConnectionFromStoreExecution, RemoveConnectionFromStoreRequest, RemoveConnectionMarkerFromStoreExecution, RemoveConnectionMarkerFromStoreRequest, RemoveDndFromStoreExecution, RemoveDndFromStoreRequest, RemoveFlowFromStoreExecution, RemoveFlowFromStoreRequest, RemoveInputFromStoreExecution, RemoveInputFromStoreRequest, RemoveLineAlignmentFromStoreExecution, RemoveLineAlignmentFromStoreRequest, RemoveNodeFromStoreExecution, RemoveNodeFromStoreRequest, RemoveOutletFromStoreExecution, RemoveOutletFromStoreRequest, RemoveOutputFromStoreExecution, RemoveOutputFromStoreRequest, RemoveSnapConnectionFromStoreExecution, RemoveSnapConnectionFromStoreRequest, ResetScaleAndCenterExecution, ResetScaleAndCenterRequest, ResetScaleExecution, ResetScaleRequest, SELECTION_AREA_FINALIZE_PROVIDERS, SELECTION_AREA_PREPARATION_PROVIDERS, SINGLE_SELECT_PROVIDERS, SelectAllExecution, SelectAllRequest, SelectAndUpdateNodeLayerExecution, SelectAndUpdateNodeLayerRequest, SelectExecution, SelectRequest, SelectionAreaDragHandle, SelectionAreaFinalizeExecution, SelectionAreaFinalizeRequest, SelectionAreaFinalizeValidator, SelectionAreaPreparationExecution, SelectionAreaPreparationRequest, SelectionAreaPreparationValidator, SetBackgroundTransformExecution, SetBackgroundTransformRequest, SingleSelectExecution, SingleSelectRequest, SingleSelectValidator, SortItemLayersExecution, SortItemLayersRequest, SortItemsByParentExecution, SortItemsByParentRequest, SortNodeLayersExecution, SortNodeLayersRequest, StartDragSequenceExecution, StartDragSequenceRequest, UpdateItemAndChildrenLayersExecution, UpdateItemAndChildrenLayersRequest, UpdateNodeWhenStateOrSizeChangedExecution, UpdateNodeWhenStateOrSizeChangedRequest, UpdateScaleExecution, UpdateScaleRequest, createSVGElement, debounceTime, fixedCenterBehavior, fixedOutboundBehavior, floatingBehavior, getExternalItem, getMarkerEndId, getMarkerSelectedEndId, getMarkerSelectedStartId, getMarkerStartId, isExternalItem, isMobile, isNode, isNodeOutlet, isNodeOutput, mixinChangeSelection, mixinChangeVisibility, notifyOnStart, transitionEnd };
|
|
9190
|
+
export { AddBackgroundToStoreExecution, AddBackgroundToStoreRequest, AddCanvasToStoreExecution, AddCanvasToStoreRequest, AddConnectionForCreateToStoreExecution, AddConnectionForCreateToStoreRequest, AddConnectionMarkerToStoreExecution, AddConnectionMarkerToStoreRequest, AddConnectionToStoreExecution, AddConnectionToStoreRequest, AddDndToStoreExecution, AddDndToStoreRequest, AddFlowToStoreExecution, AddFlowToStoreRequest, AddInputToStoreExecution, AddInputToStoreRequest, AddLineAlignmentToStoreExecution, AddLineAlignmentToStoreRequest, AddNodeToStoreExecution, AddNodeToStoreRequest, AddOutletToStoreExecution, AddOutletToStoreRequest, AddOutputToStoreExecution, AddOutputToStoreRequest, AddPatternToBackgroundExecution, AddPatternToBackgroundRequest, AddSnapConnectionToStoreExecution, AddSnapConnectionToStoreRequest, ApplyChildResizeRestrictionsExecution, ApplyChildResizeRestrictionsRequest, ApplyParentResizeRestrictionsExecution, ApplyParentResizeRestrictionsRequest, CANVAS_MOVE_FINALIZE_PROVIDERS, CANVAS_MOVE_PREPARATION_PROVIDERS, CANVAS_PROVIDERS, COMMON_PROVIDERS, CONNECTIONS_PROVIDERS, CONNECTION_GRADIENT, CONNECTION_PATH, CONNECTION_TEXT, CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS, CalculateCenterBetweenPointsHandler, CalculateCenterBetweenPointsRequest, CalculateChangedPositionExecution, CalculateChangedPositionRequest, CalculateChangedSizeExecution, CalculateChangedSizeRequest, CalculateConnectionCenterHandler, CalculateConnectionCenterRequest, CalculateConnectionLineByBehaviorExecution, CalculateConnectionLineByBehaviorRequest, CalculateConnectorConnectableSideHandler, CalculateConnectorConnectableSideRequest, CalculateFlowPointFromMinimapPointExecution, CalculateFlowPointFromMinimapPointRequest, CalculateNodesBoundingBoxExecution, CalculateNodesBoundingBoxNormalizedPositionExecution, CalculateNodesBoundingBoxNormalizedPositionRequest, CalculateNodesBoundingBoxRequest, CanvasDragHandler, CanvasMoveFinalizeExecution, CanvasMoveFinalizeRequest, CanvasMovePreparationExecution, CanvasMovePreparationRequest, CanvasMovePreparationValidator, CenterGroupOrNodeExecution, CenterGroupOrNodeRequest, ClearSelectionExecution, ClearSelectionRequest, ConnectionBaseDragHandler, ConnectionDragHandler, ConnectionSourceDragHandler, ConnectionTargetDragHandler, CreateConnectionDragHandler, CreateConnectionDragHandlerExecution, CreateConnectionDragHandlerRequest, CreateConnectionFinalizeExecution, CreateConnectionFinalizeRequest, CreateConnectionFromOutletPreparationExecution, CreateConnectionFromOutletPreparationRequest, CreateConnectionFromOutputPreparationExecution, CreateConnectionFromOutputPreparationRequest, CreateConnectionFromOutputPreparationValidator, CreateConnectionMarkersExecution, CreateConnectionMarkersRequest, CreateConnectionPreparationExecution, CreateConnectionPreparationRequest, CreateMoveNodesDragModelFromSelectionExecution, CreateMoveNodesDragModelFromSelectionRequest, DRAG_AND_DROP_COMMON_PROVIDERS, EFConnectableSide, EFConnectionBehavior, EFConnectionType, EFMarkerType, EFResizeHandleType, EXTERNAL_ITEM_FINALIZE_PROVIDERS, EXTERNAL_ITEM_PREPARATION_PROVIDERS, EmitSelectionChangeEventExecution, EmitSelectionChangeEventRequest, EndDragSequenceExecution, EndDragSequenceRequest, ExternalItemDragHandler, ExternalItemFinalizeExecution, ExternalItemFinalizeRequest, ExternalItemPreparationExecution, ExternalItemPreparationRequest, ExternalItemPreparationValidator, FBackgroundBase, FBackgroundComponent, FBezierPathBuilder, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FChannel, FChannelHub, FCirclePatternComponent, FComponentsStore, FConnectionBase, FConnectionCenterDirective, FConnectionComponent, FConnectionDragHandleComponent, FConnectionFactory, FConnectionForCreateComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective, FConnectorBase, FCreateConnectionEvent, FCreateNodeEvent, FDragHandleDirective, FDraggableBase, FDraggableDataContext, FDraggableDirective, FDropToGroupEvent, FExternalItemBase, FExternalItemDirective, FExternalItemService, FFlowBase, FFlowComponent, FFlowModule, FGroupDirective, FLineAlignmentBase, FLineAlignmentComponent, FMarkerBase, FMarkerDirective, FMinimapCanvasDirective, FMinimapComponent, FMinimapData, FMinimapDragHandler, FMinimapFlowDirective, FMinimapViewDirective, FNodeBase, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeIntersectedWithConnections, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FReassignConnectionEvent, FRectPatternComponent, FResizeChannel, FResizeHandleDirective, FRotateHandleDirective, FSegmentPathBuilder, FSelectionAreaBase, FSelectionAreaComponent, FSelectionChangeEvent, FSnapConnectionComponent, FStraightPathBuilder, FZoomBase, FZoomDirective, F_BACKGROUND, F_BACKGROUND_FEATURES, F_BACKGROUND_PATTERN, F_BACKGROUND_PROVIDERS, F_CANVAS, F_CANVAS_FEATURES, F_CANVAS_PROVIDERS, F_CONNECTION_BUILDERS, F_CONNECTION_DRAG_HANDLE_CLASS, F_CONNECTION_FEATURES, F_CONNECTION_IDENTIFIERS, F_CONNECTION_PROVIDERS, F_CONNECTORS_FEATURES, F_CONNECTORS_PROVIDERS, F_DRAGGABLE_FEATURES, F_DRAGGABLE_PROVIDERS, F_DRAG_AND_DROP_PLUGIN, F_DRAG_HANDLE, F_EXTERNAL_ITEM, F_EXTERNAL_ITEM_DRAG_AND_DROP_PROVIDERS, F_EXTERNAL_ITEM_PROVIDERS, F_FLOW, F_FLOW_FEATURES, F_FLOW_PROVIDERS, F_LINE_ALIGNMENT, F_LINE_ALIGNMENT_FEATURES, F_LINE_ALIGNMENT_PROVIDERS, F_MARKER, F_MINIMAP_DRAG_AND_DROP_PROVIDERS, F_MINIMAP_PROVIDERS, F_NODE, F_NODE_FEATURES, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_NODE_PROVIDERS, F_RESIZE_HANDLE, F_SELECTED_CLASS, F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS, F_SELECTION_AREA_PROVIDERS, F_SELECTION_FEATURES, F_STORAGE_PROVIDERS, F_ZOOM, F_ZOOM_PROVIDERS, FindClosestInputExecution, FindClosestInputRequest, FitToFlowExecution, FitToFlowRequest, GET_FLOW_STATE_PROVIDERS, GetAllCanBeConnectedInputPositionsExecution, GetAllCanBeConnectedInputPositionsRequest, GetCanBeConnectedOutputByOutletExecution, GetCanBeConnectedOutputByOutletRequest, GetCanBeConnectedOutputByOutletValidator, GetCanBeSelectedItemsExecution, GetCanBeSelectedItemsRequest, GetCanvasExecution, GetCanvasRequest, GetConnectorWithRectExecution, GetConnectorWithRectRequest, GetCurrentSelectionExecution, GetCurrentSelectionRequest, GetDeepChildrenNodesAndGroupsExecution, GetDeepChildrenNodesAndGroupsRequest, GetElementRoundedRectExecution, GetElementRoundedRectRequest, GetFlowExecution, GetFlowHostElementExecution, GetFlowHostElementRequest, GetFlowRequest, GetFlowStateConnectionsExecution, GetFlowStateConnectionsRequest, GetFlowStateExecution, GetFlowStateNodesExecution, GetFlowStateNodesRequest, GetFlowStateRequest, GetInputUnderPointerExecution, GetInputUnderPointerRequest, GetInputUnderPointerValidator, GetNodeMoveRestrictionsExecution, GetNodeMoveRestrictionsRequest, GetNodePaddingExecution, GetNodePaddingRequest, GetNodeResizeRestrictionsExecution, GetNodeResizeRestrictionsRequest, GetNodesExecution, GetNodesRequest, GetNormalizedChildrenNodesRectExecution, GetNormalizedChildrenNodesRectRequest, GetNormalizedElementRectExecution, GetNormalizedElementRectRequest, GetNormalizedParentNodeRectExecution, GetNormalizedParentNodeRectRequest, GetNormalizedPointExecution, GetNormalizedPointRequest, GetParentNodesExecution, GetParentNodesRequest, InitializeDragSequenceExecution, InitializeDragSequenceRequest, InputCanvasPositionExecution, InputCanvasPositionRequest, InputCanvasScaleExecution, InputCanvasScaleRequest, IsArrayHasParentNodeExecution, IsArrayHasParentNodeRequest, IsConnectionUnderNodeExecution, IsConnectionUnderNodeRequest, IsDragStartedExecution, IsDragStartedRequest, LineElement, LineService, ListenCountChangesExecution, ListenCountChangesRequest, ListenDataChangesExecution, ListenDataChangesRequest, ListenTransformChangesExecution, ListenTransformChangesRequest, MINIMAP_DRAG_FINALIZE_PROVIDERS, MINIMAP_DRAG_PREPARATION_PROVIDERS, MinimapCalculateSvgScaleAndViewBoxExecution, MinimapCalculateSvgScaleAndViewBoxRequest, MinimapCalculateViewBoxExecution, MinimapCalculateViewBoxRequest, MinimapDragFinalizeExecution, MinimapDragFinalizeRequest, MinimapDragFinalizeValidator, MinimapDragPreparationExecution, MinimapDragPreparationRequest, MinimapDragPreparationValidator, MinimapDrawNodesExecution, MinimapDrawNodesRequest, MoveFrontElementsBeforeTargetElementExecution, MoveFrontElementsBeforeTargetElementRequest, NODE_DRAG_TO_PARENT_FINALIZE_PROVIDERS, NODE_DRAG_TO_PARENT_PREPARATION_PROVIDERS, NODE_MOVE_PREPARATION_PROVIDERS, NODE_PROVIDERS, NODE_RESIZE_FINALIZE_PROVIDERS, NODE_RESIZE_PREPARATION_PROVIDERS, NODE_RESIZE_PROVIDERS, NodeDragHandler, NodeDragToParentDragHandler, NodeDragToParentFinalizeExecution, NodeDragToParentFinalizeRequest, NodeDragToParentPreparationExecution, NodeDragToParentPreparationRequest, NodeDragToParentPreparationValidator, NodeMoveFinalizeExecution, NodeMoveFinalizeRequest, NodeMovePreparationExecution, NodeMovePreparationRequest, NodeMovePreparationValidator, NodeResizeByChildDragHandler, NodeResizeDragHandler, NodeResizeFinalizeExecution, NodeResizeFinalizeRequest, NodeResizePreparationExecution, NodeResizePreparationRequest, NodeResizePreparationValidator, NotifyDataChangedExecution, NotifyDataChangedRequest, NotifyTransformChangedExecution, NotifyTransformChangedRequest, OnPointerMoveExecution, OnPointerMoveRequest, PrepareDragSequenceExecution, PrepareDragSequenceRequest, PreventDefaultIsExternalItemExecution, PreventDefaultIsExternalItemRequest, PutInputConnectionHandlersToArrayExecution, PutInputConnectionHandlersToArrayRequest, PutOutputConnectionHandlersToArrayExecution, PutOutputConnectionHandlersToArrayRequest, RESIZE_DIRECTIONS, ReassignConnectionDragHandler, ReassignConnectionFinalizeExecution, ReassignConnectionFinalizeRequest, ReassignConnectionPreparationExecution, ReassignConnectionPreparationRequest, RedrawCanvasWithAnimationExecution, RedrawCanvasWithAnimationRequest, RedrawConnectionsExecution, RedrawConnectionsRequest, RemoveBackgroundFromStoreExecution, RemoveBackgroundFromStoreRequest, RemoveCanvasFromStoreExecution, RemoveCanvasFromStoreRequest, RemoveConnectionForCreateFromStoreExecution, RemoveConnectionForCreateFromStoreRequest, RemoveConnectionFromStoreExecution, RemoveConnectionFromStoreRequest, RemoveConnectionMarkerFromStoreExecution, RemoveConnectionMarkerFromStoreRequest, RemoveDndFromStoreExecution, RemoveDndFromStoreRequest, RemoveFlowFromStoreExecution, RemoveFlowFromStoreRequest, RemoveInputFromStoreExecution, RemoveInputFromStoreRequest, RemoveLineAlignmentFromStoreExecution, RemoveLineAlignmentFromStoreRequest, RemoveNodeFromStoreExecution, RemoveNodeFromStoreRequest, RemoveOutletFromStoreExecution, RemoveOutletFromStoreRequest, RemoveOutputFromStoreExecution, RemoveOutputFromStoreRequest, RemoveSnapConnectionFromStoreExecution, RemoveSnapConnectionFromStoreRequest, ResetScaleAndCenterExecution, ResetScaleAndCenterRequest, ResetScaleExecution, ResetScaleRequest, SELECTION_AREA_FINALIZE_PROVIDERS, SELECTION_AREA_PREPARATION_PROVIDERS, SINGLE_SELECT_PROVIDERS, SelectAllExecution, SelectAllRequest, SelectAndUpdateNodeLayerExecution, SelectAndUpdateNodeLayerRequest, SelectExecution, SelectRequest, SelectionAreaDragHandle, SelectionAreaFinalizeExecution, SelectionAreaFinalizeRequest, SelectionAreaFinalizeValidator, SelectionAreaPreparationExecution, SelectionAreaPreparationRequest, SelectionAreaPreparationValidator, SetBackgroundTransformExecution, SetBackgroundTransformRequest, SingleSelectExecution, SingleSelectRequest, SortItemLayersExecution, SortItemLayersRequest, SortItemsByParentExecution, SortItemsByParentRequest, SortNodeLayersExecution, SortNodeLayersRequest, StartDragSequenceExecution, StartDragSequenceRequest, UpdateItemAndChildrenLayersExecution, UpdateItemAndChildrenLayersRequest, UpdateNodeWhenStateOrSizeChangedExecution, UpdateNodeWhenStateOrSizeChangedRequest, UpdateScaleExecution, UpdateScaleRequest, createSVGElement, debounceTime, fixedCenterBehavior, fixedOutboundBehavior, floatingBehavior, getExternalItem, getMarkerEndId, getMarkerSelectedEndId, getMarkerSelectedStartId, getMarkerStartId, isExternalItem, isMobile, isNode, isNodeOutlet, isNodeOutput, mixinChangeSelection, mixinChangeVisibility, notifyOnStart, transitionEnd };
|
|
9255
9191
|
//# sourceMappingURL=foblex-flow.mjs.map
|