@foblex/flow 12.0.2 → 12.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/domain/providers.d.ts +1 -1
  2. package/esm2022/f-connection/common/f-connection-base.mjs +1 -1
  3. package/esm2022/f-connection/f-connection/f-connection.component.mjs +15 -14
  4. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +7 -10
  5. package/esm2022/f-connectors/cast-to-connectable-side.mjs +9 -0
  6. package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +10 -3
  7. package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +10 -3
  8. package/esm2022/f-connectors/index.mjs +2 -1
  9. package/esm2022/f-draggable/canvas/canvas.prepare-drag-sequence.mjs +2 -2
  10. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.prepare-drag-sequence.mjs +5 -6
  11. package/esm2022/f-draggable/node/node.on-pointer-up.mjs +1 -4
  12. package/esm2022/f-draggable/node/node.prepare-drag-sequence.mjs +3 -3
  13. package/esm2022/f-draggable/selection-area/get-can-be-selected-items/get-can-be-selected-items.handler.mjs +3 -3
  14. package/esm2022/f-draggable/single-select/single-select.on-pointer-down.mjs +11 -5
  15. package/esm2022/f-node/f-node-base.mjs +1 -1
  16. package/esm2022/f-node/f-node.directive.mjs +12 -6
  17. package/f-connection/common/f-connection-base.d.ts +2 -1
  18. package/f-connection/f-connection/f-connection.component.d.ts +5 -6
  19. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +3 -4
  20. package/f-connectors/cast-to-connectable-side.d.ts +2 -0
  21. package/f-connectors/f-node-input/f-node-input.directive.d.ts +3 -1
  22. package/f-connectors/f-node-output/f-node-output.directive.d.ts +3 -1
  23. package/f-connectors/index.d.ts +1 -0
  24. package/f-draggable/connections/providers.d.ts +1 -1
  25. package/f-draggable/connections/reassign-connection/reassign-connection.prepare-drag-sequence.d.ts +2 -3
  26. package/f-draggable/node/node.on-pointer-up.d.ts +0 -1
  27. package/f-draggable/node/providers.d.ts +1 -1
  28. package/f-node/f-node-base.d.ts +2 -1
  29. package/f-node/f-node.directive.d.ts +3 -2
  30. package/fesm2022/foblex-flow.mjs +75 -49
  31. package/fesm2022/foblex-flow.mjs.map +1 -1
  32. package/package.json +1 -1
@@ -378,6 +378,14 @@ function isNodeInput(element) {
378
378
  return !!element.closest('[fNodeInput]');
379
379
  }
380
380
 
381
+ function castToConnectableSide(type) {
382
+ const result = EFConnectableSide[type.toUpperCase()];
383
+ if (result === undefined) {
384
+ throw new Error(`Unknown connectable side: ${type}. Accepted values: ${Object.keys(EFConnectableSide).join(', ')}`);
385
+ }
386
+ return result;
387
+ }
388
+
381
389
  let uniqueId$7 = 0;
382
390
  class FNodeInputDirective extends FNodeInputBase {
383
391
  get disabled() {
@@ -390,6 +398,12 @@ class FNodeInputDirective extends FNodeInputBase {
390
398
  this.stateChanges.next();
391
399
  }
392
400
  }
401
+ set _fSide(value) {
402
+ this._fConnectableSide = castToConnectableSide(value);
403
+ }
404
+ get _fSide() {
405
+ return this._fConnectableSide;
406
+ }
393
407
  get hostElement() {
394
408
  return this.elementReference.nativeElement;
395
409
  }
@@ -420,7 +434,7 @@ class FNodeInputDirective extends FNodeInputBase {
420
434
  this.fComponentsStore.removeInput(this);
421
435
  }
422
436
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FNodeInputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
423
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeInputDirective, selector: "[fNodeInput]", inputs: { id: ["fInputId", "id"], multiple: ["fInputMultiple", "multiple"], disabled: ["fInputDisabled", "disabled"], _fConnectableSide: ["fInputConnectableSide", "_fConnectableSide"] }, host: { properties: { "attr.data-f-input-id": "id", "class.f-node-input-multiple": "multiple", "class.f-node-input-disabled": "disabled", "class.f-node-input-not-connectable": "!canBeConnected" }, classAttribute: "f-component f-node-input" }, providers: [{ provide: F_NODE_INPUT, useExisting: FNodeInputDirective }], exportAs: ["fNodeInput"], usesInheritance: true, ngImport: i0 }); }
437
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeInputDirective, selector: "[fNodeInput]", inputs: { id: ["fInputId", "id"], multiple: ["fInputMultiple", "multiple"], disabled: ["fInputDisabled", "disabled"], _fSide: ["fInputConnectableSide", "_fSide"] }, host: { properties: { "attr.data-f-input-id": "id", "class.f-node-input-multiple": "multiple", "class.f-node-input-disabled": "disabled", "class.f-node-input-not-connectable": "!canBeConnected" }, classAttribute: "f-component f-node-input" }, providers: [{ provide: F_NODE_INPUT, useExisting: FNodeInputDirective }], exportAs: ["fNodeInput"], usesInheritance: true, ngImport: i0 }); }
424
438
  }
425
439
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FNodeInputDirective, decorators: [{
426
440
  type: Directive,
@@ -448,7 +462,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
448
462
  }], disabled: [{
449
463
  type: Input,
450
464
  args: ['fInputDisabled']
451
- }], _fConnectableSide: [{
465
+ }], _fSide: [{
452
466
  type: Input,
453
467
  args: ['fInputConnectableSide']
454
468
  }] } });
@@ -572,6 +586,12 @@ class FNodeOutputDirective extends FNodeOutputBase {
572
586
  this.stateChanges.next();
573
587
  }
574
588
  }
589
+ set _fSide(value) {
590
+ this._fConnectableSide = castToConnectableSide(value);
591
+ }
592
+ get _fSide() {
593
+ return this._fConnectableSide;
594
+ }
575
595
  get hostElement() {
576
596
  return this.elementReference.nativeElement;
577
597
  }
@@ -603,7 +623,7 @@ class FNodeOutputDirective extends FNodeOutputBase {
603
623
  this.fComponentsStore.removeOutput(this);
604
624
  }
605
625
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FNodeOutputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
606
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeOutputDirective, selector: "[fNodeOutput]", inputs: { id: ["fOutputId", "id"], multiple: ["fOutputMultiple", "multiple"], disabled: ["fOutputDisabled", "disabled"], _fConnectableSide: ["fOutputConnectableSide", "_fConnectableSide"], isSelfConnectable: "isSelfConnectable" }, host: { properties: { "attr.data-f-output-id": "id", "class.f-node-output-disabled": "disabled" }, classAttribute: "f-component f-node-output" }, providers: [{ provide: F_NODE_OUTPUT, useExisting: FNodeOutputDirective }], exportAs: ["fNodeOutput"], usesInheritance: true, ngImport: i0 }); }
626
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeOutputDirective, selector: "[fNodeOutput]", inputs: { id: ["fOutputId", "id"], multiple: ["fOutputMultiple", "multiple"], disabled: ["fOutputDisabled", "disabled"], _fSide: ["fOutputConnectableSide", "_fSide"], isSelfConnectable: "isSelfConnectable" }, host: { properties: { "attr.data-f-output-id": "id", "class.f-node-output-disabled": "disabled" }, classAttribute: "f-component f-node-output" }, providers: [{ provide: F_NODE_OUTPUT, useExisting: FNodeOutputDirective }], exportAs: ["fNodeOutput"], usesInheritance: true, ngImport: i0 }); }
607
627
  }
608
628
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FNodeOutputDirective, decorators: [{
609
629
  type: Directive,
@@ -629,7 +649,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
629
649
  }], disabled: [{
630
650
  type: Input,
631
651
  args: ['fOutputDisabled']
632
- }], _fConnectableSide: [{
652
+ }], _fSide: [{
633
653
  type: Input,
634
654
  args: ['fOutputConnectableSide']
635
655
  }], isSelfConnectable: [{
@@ -1352,13 +1372,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1352
1372
  let uniqueId$4 = 0;
1353
1373
  class FConnectionForCreateComponent extends FConnectionBase {
1354
1374
  set fBehavior(value) {
1355
- this._behavior = value;
1375
+ this._behavior = castToConnectionBehavior(value);
1356
1376
  }
1357
1377
  get fBehavior() {
1358
1378
  return this._behavior;
1359
1379
  }
1360
1380
  set fType(value) {
1361
- this._type = value;
1381
+ this._type = castToConnectionType(value);
1362
1382
  }
1363
1383
  get fType() {
1364
1384
  return this._type;
@@ -1375,7 +1395,8 @@ class FConnectionForCreateComponent extends FConnectionBase {
1375
1395
  this.fEndColor = 'black';
1376
1396
  this._behavior = EFConnectionBehavior.FIXED;
1377
1397
  this._type = EFConnectionType.STRAIGHT;
1378
- this.disabled = false;
1398
+ this.fDraggingDisabled = false;
1399
+ this.fSelectionDisabled = false;
1379
1400
  }
1380
1401
  ngOnInit() {
1381
1402
  this.fComponentsStore.fTempConnection = this;
@@ -1387,7 +1408,7 @@ class FConnectionForCreateComponent extends FConnectionBase {
1387
1408
  this.fComponentsStore.fTempConnection = undefined;
1388
1409
  }
1389
1410
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FConnectionForCreateComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
1390
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.3.1", type: FConnectionForCreateComponent, selector: "f-connection-for-create", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fBehavior: ["fBehavior", "fBehavior", castToConnectionBehavior], fType: ["fType", "fType", castToConnectionType], disabled: "disabled" }, host: { classAttribute: "f-component f-connection f-connection-for-create" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionForCreateComponent }], queries: [{ propertyName: "fMarkers", predicate: F_MARKER, descendants: true }, { propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1411
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.1", type: FConnectionForCreateComponent, selector: "f-connection-for-create", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fBehavior: "fBehavior", fType: "fType" }, host: { classAttribute: "f-component f-connection f-connection-for-create" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionForCreateComponent }], queries: [{ propertyName: "fMarkers", predicate: F_MARKER, descendants: true }, { propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1391
1412
  }
1392
1413
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FConnectionForCreateComponent, decorators: [{
1393
1414
  type: Component,
@@ -1399,12 +1420,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1399
1420
  }], fEndColor: [{
1400
1421
  type: Input
1401
1422
  }], fBehavior: [{
1402
- type: Input,
1403
- args: [{ transform: castToConnectionBehavior }]
1423
+ type: Input
1404
1424
  }], fType: [{
1405
- type: Input,
1406
- args: [{ transform: castToConnectionType }]
1407
- }], disabled: [{
1408
1425
  type: Input
1409
1426
  }], fDefs: [{
1410
1427
  type: ViewChild,
@@ -1438,13 +1455,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1438
1455
  let uniqueId$3 = 0;
1439
1456
  class FConnectionComponent extends FConnectionBase {
1440
1457
  set fBehavior(value) {
1441
- this._behavior = value;
1458
+ this._behavior = castToConnectionBehavior(value);
1442
1459
  }
1443
1460
  get fBehavior() {
1444
1461
  return this._behavior;
1445
1462
  }
1446
1463
  set fType(value) {
1447
- this._type = value;
1464
+ this._type = castToConnectionType(value);
1448
1465
  }
1449
1466
  get fType() {
1450
1467
  return this._type;
@@ -1461,7 +1478,8 @@ class FConnectionComponent extends FConnectionBase {
1461
1478
  this.fEndColor = 'black';
1462
1479
  this._behavior = EFConnectionBehavior.FIXED;
1463
1480
  this._type = EFConnectionType.STRAIGHT;
1464
- this.disabled = false;
1481
+ this.fDraggingDisabled = false;
1482
+ this.fSelectionDisabled = false;
1465
1483
  }
1466
1484
  ngOnInit() {
1467
1485
  this.fComponentsStore.addConnection(this);
@@ -1470,14 +1488,15 @@ class FConnectionComponent extends FConnectionBase {
1470
1488
  this.fComponentsStore.removeConnection(this);
1471
1489
  }
1472
1490
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FConnectionComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
1473
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.3.1", type: FConnectionComponent, selector: "f-connection", inputs: { fConnectionId: "fConnectionId", fText: "fText", fStartColor: "fStartColor", fEndColor: "fEndColor", fOutputId: "fOutputId", fInputId: "fInputId", fBehavior: ["fBehavior", "fBehavior", castToConnectionBehavior], fType: ["fType", "fType", castToConnectionType], disabled: "disabled" }, host: { properties: { "attr.id": "fConnectionId", "class.f-connection-disabled": "disabled" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionComponent }], queries: [{ propertyName: "fMarkers", predicate: F_MARKER, descendants: true }, { propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"overflow: visible; display: block; vertical-align: middle;\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1491
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.1", type: FConnectionComponent, selector: "f-connection", inputs: { fConnectionId: "fConnectionId", fText: "fText", fStartColor: "fStartColor", fEndColor: "fEndColor", fOutputId: "fOutputId", fInputId: "fInputId", fBehavior: "fBehavior", fType: "fType", fDraggingDisabled: ["fReassignDisabled", "fDraggingDisabled"], fSelectionDisabled: "fSelectionDisabled" }, host: { properties: { "attr.id": "fConnectionId", "class.f-connection-selection-disabled": "fSelectionDisabled", "class.f-connection-reassign-disabled": "fDraggingDisabled" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionComponent }], queries: [{ propertyName: "fMarkers", predicate: F_MARKER, descendants: true }, { propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"overflow: visible; display: block; vertical-align: middle;\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1474
1492
  }
1475
1493
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FConnectionComponent, decorators: [{
1476
1494
  type: Component,
1477
1495
  args: [{ selector: "f-connection", exportAs: 'fComponent', changeDetection: ChangeDetectionStrategy.OnPush, host: {
1478
1496
  '[attr.id]': 'fConnectionId',
1479
1497
  class: "f-component f-connection",
1480
- '[class.f-connection-disabled]': 'disabled',
1498
+ '[class.f-connection-selection-disabled]': 'fSelectionDisabled',
1499
+ '[class.f-connection-reassign-disabled]': 'fDraggingDisabled',
1481
1500
  }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionComponent }], template: "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"overflow: visible; display: block; vertical-align: middle;\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}\n"] }]
1482
1501
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: FComponentsStore }], propDecorators: { fConnectionId: [{
1483
1502
  type: Input
@@ -1488,18 +1507,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1488
1507
  }], fEndColor: [{
1489
1508
  type: Input
1490
1509
  }], fOutputId: [{
1491
- type: Input,
1492
- args: [{ required: true }]
1510
+ type: Input
1493
1511
  }], fInputId: [{
1494
- type: Input,
1495
- args: [{ required: true }]
1512
+ type: Input
1496
1513
  }], fBehavior: [{
1497
- type: Input,
1498
- args: [{ transform: castToConnectionBehavior }]
1514
+ type: Input
1499
1515
  }], fType: [{
1516
+ type: Input
1517
+ }], fDraggingDisabled: [{
1500
1518
  type: Input,
1501
- args: [{ transform: castToConnectionType }]
1502
- }], disabled: [{
1519
+ args: ['fReassignDisabled']
1520
+ }], fSelectionDisabled: [{
1503
1521
  type: Input
1504
1522
  }], fDefs: [{
1505
1523
  type: ViewChild,
@@ -1663,7 +1681,8 @@ class FNodeDirective extends FNodeBase {
1663
1681
  this.subscriptions$ = new Subscription();
1664
1682
  this.fNodeId = `f-node-${uniqueId$2++}`;
1665
1683
  this.positionChange = new EventEmitter();
1666
- this.disabled = false;
1684
+ this.fDraggingDisabled = false;
1685
+ this.fSelectionDisabled = false;
1667
1686
  this.connectors = [];
1668
1687
  }
1669
1688
  ngOnInit() {
@@ -1708,7 +1727,7 @@ class FNodeDirective extends FNodeBase {
1708
1727
  this.subscriptions$.unsubscribe();
1709
1728
  }
1710
1729
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: FNodeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
1711
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeDirective, selector: "[fNode]", inputs: { fNodeId: "fNodeId", position: ["fNodePosition", "position"], disabled: "disabled" }, outputs: { positionChange: "fNodePositionChange" }, host: { properties: { "attr.data-f-node-id": "fNodeId", "class.f-node-disabled": "disabled" }, classAttribute: "f-node f-component" }, providers: [
1730
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: FNodeDirective, selector: "[fNode]", inputs: { fNodeId: "fNodeId", position: ["fNodePosition", "position"], fDraggingDisabled: ["fNodeDraggingDisabled", "fDraggingDisabled"], fSelectionDisabled: ["fNodeSelectionDisabled", "fSelectionDisabled"] }, outputs: { positionChange: "fNodePositionChange" }, host: { properties: { "attr.data-f-node-id": "fNodeId", "class.f-node-dragging-disabled": "fDraggingDisabled", "class.f-node-selection-disabled": "fSelectionDisabled" }, classAttribute: "f-node f-component" }, providers: [
1712
1731
  { provide: F_NODE, useExisting: FNodeDirective }
1713
1732
  ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
1714
1733
  }
@@ -1720,7 +1739,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1720
1739
  host: {
1721
1740
  '[attr.data-f-node-id]': 'fNodeId',
1722
1741
  class: "f-node f-component",
1723
- '[class.f-node-disabled]': 'disabled'
1742
+ '[class.f-node-dragging-disabled]': 'fDraggingDisabled',
1743
+ '[class.f-node-selection-disabled]': 'fSelectionDisabled'
1724
1744
  },
1725
1745
  providers: [
1726
1746
  { provide: F_NODE, useExisting: FNodeDirective }
@@ -1734,8 +1754,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
1734
1754
  }], positionChange: [{
1735
1755
  type: Output,
1736
1756
  args: ['fNodePositionChange']
1737
- }], disabled: [{
1738
- type: Input
1757
+ }], fDraggingDisabled: [{
1758
+ type: Input,
1759
+ args: ['fNodeDraggingDisabled']
1760
+ }], fSelectionDisabled: [{
1761
+ type: Input,
1762
+ args: ['fNodeSelectionDisabled']
1739
1763
  }] } });
1740
1764
 
1741
1765
  function isNode(element) {
@@ -2021,7 +2045,7 @@ class CanvasPrepareDragSequence {
2021
2045
  const isBackgroundElement = this.fComponentsStore.fBackground?.isBackgroundElement(event.targetElement);
2022
2046
  const isFlowHost = this.flowHost.contains(event.targetElement);
2023
2047
  let node = this.fComponentsStore.findNode(event.targetElement);
2024
- if (node && node.disabled) {
2048
+ if (node && node.fDraggingDisabled) {
2025
2049
  node = undefined;
2026
2050
  }
2027
2051
  if ((isBackgroundElement || (isFlowHost && !node)) && !this.fDraggableDataContext.draggableItems.length) {
@@ -2432,11 +2456,10 @@ class ReassignConnectionPrepareDragSequence {
2432
2456
  get flowHost() {
2433
2457
  return this.fComponentsStore.fFlow.hostElement;
2434
2458
  }
2435
- constructor(fComponentsStore, fDraggableDataContext, getConnectionHandler, getInputRectInFlowHandler, fMediator, updateConnectionLayerHandler) {
2459
+ constructor(fComponentsStore, fDraggableDataContext, getConnectionHandler, fMediator, updateConnectionLayerHandler) {
2436
2460
  this.fComponentsStore = fComponentsStore;
2437
2461
  this.fDraggableDataContext = fDraggableDataContext;
2438
2462
  this.getConnectionHandler = getConnectionHandler;
2439
- this.getInputRectInFlowHandler = getInputRectInFlowHandler;
2440
2463
  this.fMediator = fMediator;
2441
2464
  this.updateConnectionLayerHandler = updateConnectionLayerHandler;
2442
2465
  }
@@ -2449,7 +2472,7 @@ class ReassignConnectionPrepareDragSequence {
2449
2472
  });
2450
2473
  let connectionToReassign;
2451
2474
  if (dragHandlesOfConnections.length) {
2452
- const connections = dragHandlesOfConnections.map((x) => this.getConnectionHandler.handle(x)).filter((x) => !x?.disabled);
2475
+ const connections = dragHandlesOfConnections.map((x) => this.getConnectionHandler.handle(x)).filter((x) => !x?.fDraggingDisabled);
2453
2476
  if (connections.length) {
2454
2477
  connectionToReassign = this.getConnectionHandler.handle(dragHandlesOfConnections[0]);
2455
2478
  }
@@ -2463,12 +2486,12 @@ class ReassignConnectionPrepareDragSequence {
2463
2486
  ];
2464
2487
  }
2465
2488
  }
2466
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReassignConnectionPrepareDragSequence, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: GetConnectionHandler }, { token: GetInputRectInFlowHandler }, { token: FFlowMediator }, { token: UpdateConnectionLayerHandler }], target: i0.ɵɵFactoryTarget.Injectable }); }
2489
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReassignConnectionPrepareDragSequence, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: GetConnectionHandler }, { token: FFlowMediator }, { token: UpdateConnectionLayerHandler }], target: i0.ɵɵFactoryTarget.Injectable }); }
2467
2490
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReassignConnectionPrepareDragSequence }); }
2468
2491
  }
2469
2492
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: ReassignConnectionPrepareDragSequence, decorators: [{
2470
2493
  type: Injectable
2471
- }], ctorParameters: () => [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: GetConnectionHandler }, { type: GetInputRectInFlowHandler }, { type: FFlowMediator }, { type: UpdateConnectionLayerHandler }] });
2494
+ }], ctorParameters: () => [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: GetConnectionHandler }, { type: FFlowMediator }, { type: UpdateConnectionLayerHandler }] });
2472
2495
 
2473
2496
  const CONNECTIONS_PROVIDERS = [
2474
2497
  FindFirstCanBeConnectedOutputByOutletHandler,
@@ -2844,9 +2867,6 @@ class NodeDragHandler {
2844
2867
  }
2845
2868
 
2846
2869
  class NodeOnPointerUp {
2847
- get transform() {
2848
- return this.fComponentsStore.fCanvas.transform;
2849
- }
2850
2870
  get flowHost() {
2851
2871
  return this.fComponentsStore.fFlow.hostElement;
2852
2872
  }
@@ -2898,9 +2918,9 @@ class NodePrepareDragSequence {
2898
2918
  handle(event) {
2899
2919
  const node = this.fComponentsStore.findNode(event.targetElement);
2900
2920
  const pointerPositionInFlow = Point.fromPoint(event.getPosition()).elementTransform(this.flowHost);
2901
- if (node && !node.disabled && !this.fDraggableDataContext.draggableItems.length) {
2921
+ if (node && !node.fDraggingDisabled && !this.fDraggableDataContext.draggableItems.length) {
2902
2922
  if (isNodeDragHandle(event.targetElement)) {
2903
- if (!this.fDraggableDataContext.selectedItems.includes(node)) {
2923
+ if (!this.fDraggableDataContext.selectedItems.includes(node) && !node.fSelectionDisabled) {
2904
2924
  this.fDraggableDataContext.selectedItems.push(node);
2905
2925
  node.select();
2906
2926
  this.fDraggableDataContext.isSelectedChanged = true;
@@ -2998,7 +3018,7 @@ class GetCanBeSelectedItemsHandler {
2998
3018
  return result;
2999
3019
  }
3000
3020
  getNodesWithRects() {
3001
- return this.fNodes.map((x) => {
3021
+ return this.fNodes.filter((x) => !x.fSelectionDisabled).map((x) => {
3002
3022
  const rect = this.fMediator.send(new GetElementRectInFlowRequest(x.hostElement));
3003
3023
  return {
3004
3024
  element: x,
@@ -3007,7 +3027,7 @@ class GetCanBeSelectedItemsHandler {
3007
3027
  });
3008
3028
  }
3009
3029
  getConnectionsWithRects() {
3010
- return this.fConnections.map((x) => {
3030
+ return this.fConnections.filter((x) => !x.fSelectionDisabled).map((x) => {
3011
3031
  const rect = this.fMediator.send(new GetElementRectInFlowRequest(x.boundingElement));
3012
3032
  return {
3013
3033
  element: x,
@@ -3142,26 +3162,32 @@ class SingleSelectOnPointerDown {
3142
3162
  }
3143
3163
  this.resetSelectionIfNotMultiselect(event);
3144
3164
  if (node) {
3145
- if (!this.fDraggableDataContext.selectedItems.includes(node)) {
3165
+ if (!this.fDraggableDataContext.selectedItems.includes(node) && !node.fSelectionDisabled) {
3146
3166
  this.fDraggableDataContext.selectedItems.push(node);
3147
3167
  if (element?.hostElement.dataset['fNodeId'] !== node.hostElement.dataset['fNodeId']) {
3148
3168
  this.fDraggableDataContext.isSelectedChanged = true;
3149
3169
  }
3150
3170
  }
3151
3171
  else {
3152
- this.fDraggableDataContext.selectedItems.splice(this.fDraggableDataContext.selectedItems.indexOf(node), 1);
3172
+ const index = this.fDraggableDataContext.selectedItems.indexOf(node);
3173
+ if (index > -1) {
3174
+ this.fDraggableDataContext.selectedItems.splice(index, 1);
3175
+ }
3153
3176
  }
3154
3177
  }
3155
3178
  else if (connection) {
3156
3179
  this.updateConnectionLayerHandler.handle(connection);
3157
- if (!this.fDraggableDataContext.selectedItems.includes(connection)) {
3180
+ if (!this.fDraggableDataContext.selectedItems.includes(connection) && !connection.fSelectionDisabled) {
3158
3181
  this.fDraggableDataContext.selectedItems.push(connection);
3159
3182
  if (element?.hostElement.id !== connection.hostElement.id) {
3160
3183
  this.fDraggableDataContext.isSelectedChanged = true;
3161
3184
  }
3162
3185
  }
3163
3186
  else {
3164
- this.fDraggableDataContext.selectedItems.splice(this.fDraggableDataContext.selectedItems.indexOf(connection), 1);
3187
+ const index = this.fDraggableDataContext.selectedItems.indexOf(connection);
3188
+ if (index > -1) {
3189
+ this.fDraggableDataContext.selectedItems.splice(index, 1);
3190
+ }
3165
3191
  }
3166
3192
  }
3167
3193
  this.selectIfNotSelected();
@@ -4572,5 +4598,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImpor
4572
4598
  * Generated bundle index. Do not edit.
4573
4599
  */
4574
4600
 
4575
- export { CANVAS_PROVIDERS, COMMON_PROVIDERS, CONNECTIONS_PROVIDERS, CONNECTION_GRADIENT, CONNECTION_PATH, CONNECTION_TEXT, CalculateCenterBetweenPointsHandler, CalculateCenterBetweenPointsRequest, CalculateConnectionCenterHandler, CalculateConnectionCenterRequest, CalculateConnectorConnectableSideHandler, CalculateConnectorConnectableSideRequest, CanvasDragHandler, CanvasOnPointerUp, CanvasPrepareDragSequence, ClearSelectionHandler, ClearSelectionRequest, ConnectionDragHandler, ConnectionSourceDragHandler, ConnectionTargetDragHandler, CreateConnectionDragHandler, CreateConnectionOnPointerUp, CreateConnectionPrepareDragSequence, EFConnectableSide, EFConnectionBehavior, EFConnectionType, EFDraggableType, EFMarkerType, EXTERNAL_ITEM_PROVIDERS, ExternalItemDragHandler, ExternalItemOnPointerUp, ExternalItemPrepareDragSequence, FBackgroundBase, FBackgroundComponent, FBezierPathBuilder, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FCellPatternComponent, FComponentsStore, FConnectionBase, FConnectionCenterDirective, FConnectionComponent, FConnectionDragHandleComponent, FConnectionForCreateComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective, FConnectorBase, FCreateConnectionEvent, FCreateNodeEvent, FDragHandleDirective, FDraggableBase, FDraggableDataContext, FDraggableDirective, FExternalItemBase, FExternalItemDirective, FExternalItemService, FFlowBase, FFlowComponent, FFlowMediator, FFlowModule, FHandlerRegister, FLOW, FLineAlignmentBase, FLineAlignmentComponent, FMarkerBase, FMarkerDirective, FNodeBase, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FPathBuilderBase, FPathBuilderSelector, FReassignConnectionEvent, FResizeObserver, FSegmentPathBuilder, FSelectionAreaBase, FSelectionAreaComponent, FSelectionChangeEvent, FStraightPathBuilder, FZoomBase, FZoomDirective, F_BACKGROUND, F_BACKGROUND_PATTERN, F_CANVAS, F_CONNECTION_DRAG_HANDLE_CLASS, F_CONNECTION_IDENTIFIERS, F_DRAGGABLE, F_DRAG_HANDLE, F_EXTERNAL_ITEM, F_FLOW, F_LINE_ALIGNMENT, F_MARKER, F_NODE, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_SELECTED_CLASS, F_SELECTION_AREA, F_ZOOM, FindFirstCanBeConnectedOutputByOutletHandler, FindInputsUnderPointerHandler, FindInputsUnderPointerRequest, FirstNotConnectedInputOfNodeUnderPointerHandler, GetCanBeSelectedItemsHandler, GetConnectionHandler, GetConnectionVectorHandler, GetConnectionVectorRequest, GetElementRectInFlowHandler, GetElementRectInFlowRequest, GetIncomingConnectionsHandler, GetInputRectInFlowHandler, GetInputRectInFlowRequest, GetInputRectInFlowResponse, GetNodesRectHandler, GetNodesRectRequest, GetOutgoingConnectionsHandler, GetOutputRectInFlowHandler, GetOutputRectInFlowRequest, GetOutputRectInFlowResponse, GetSelectionHandler, GetSelectionRequest, InputsUnderPointerHandler, IsConnectionUnderNodeHandler, LineElement, LineService, MOUSE_EVENT_IGNORE_TIME, NODE_PROVIDERS, NearestCoordinateFinder, NodeDragHandler, NodeOnPointerUp, NodePrepareDragSequence, ReassignConnectionDragHandler, ReassignConnectionOnPointerUp, ReassignConnectionPrepareDragSequence, RedrawConnectionsHandler, RedrawConnectionsRequest, SELECTION_AREA_PROVIDERS, SINGLE_SELECT_PROVIDERS, SelectAllHandler, SelectAllRequest, SelectHandler, SelectRequest, SelectionAreaDragHandle, SelectionAreaOnPointerUp, SelectionAreaPrepareDragSequence, SingleSelectOnPointerDown, UpdateConnectionLayerHandler, UpdateNodeLayerHandler, castToConnectionBehavior, castToConnectionType, getExternalItem, getFlowUid, isExternalItem, isNode, isNodeDragHandle, isNodeInput, isNodeOutlet, isNodeOutput, mixinChangeConnectionSelection, mixinChangeConnectionVisibility };
4601
+ export { CANVAS_PROVIDERS, COMMON_PROVIDERS, CONNECTIONS_PROVIDERS, CONNECTION_GRADIENT, CONNECTION_PATH, CONNECTION_TEXT, CalculateCenterBetweenPointsHandler, CalculateCenterBetweenPointsRequest, CalculateConnectionCenterHandler, CalculateConnectionCenterRequest, CalculateConnectorConnectableSideHandler, CalculateConnectorConnectableSideRequest, CanvasDragHandler, CanvasOnPointerUp, CanvasPrepareDragSequence, ClearSelectionHandler, ClearSelectionRequest, ConnectionDragHandler, ConnectionSourceDragHandler, ConnectionTargetDragHandler, CreateConnectionDragHandler, CreateConnectionOnPointerUp, CreateConnectionPrepareDragSequence, EFConnectableSide, EFConnectionBehavior, EFConnectionType, EFDraggableType, EFMarkerType, EXTERNAL_ITEM_PROVIDERS, ExternalItemDragHandler, ExternalItemOnPointerUp, ExternalItemPrepareDragSequence, FBackgroundBase, FBackgroundComponent, FBezierPathBuilder, FCanvasBase, FCanvasChangeEvent, FCanvasComponent, FCellPatternComponent, FComponentsStore, FConnectionBase, FConnectionCenterDirective, FConnectionComponent, FConnectionDragHandleComponent, FConnectionForCreateComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective, FConnectorBase, FCreateConnectionEvent, FCreateNodeEvent, FDragHandleDirective, FDraggableBase, FDraggableDataContext, FDraggableDirective, FExternalItemBase, FExternalItemDirective, FExternalItemService, FFlowBase, FFlowComponent, FFlowMediator, FFlowModule, FHandlerRegister, FLOW, FLineAlignmentBase, FLineAlignmentComponent, FMarkerBase, FMarkerDirective, FNodeBase, FNodeDirective, FNodeInputBase, FNodeInputDirective, FNodeOutletBase, FNodeOutletDirective, FNodeOutputBase, FNodeOutputDirective, FPathBuilderBase, FPathBuilderSelector, FReassignConnectionEvent, FResizeObserver, FSegmentPathBuilder, FSelectionAreaBase, FSelectionAreaComponent, FSelectionChangeEvent, FStraightPathBuilder, FZoomBase, FZoomDirective, F_BACKGROUND, F_BACKGROUND_PATTERN, F_CANVAS, F_CONNECTION_DRAG_HANDLE_CLASS, F_CONNECTION_IDENTIFIERS, F_DRAGGABLE, F_DRAG_HANDLE, F_EXTERNAL_ITEM, F_FLOW, F_LINE_ALIGNMENT, F_MARKER, F_NODE, F_NODE_INPUT, F_NODE_OUTLET, F_NODE_OUTPUT, F_SELECTED_CLASS, F_SELECTION_AREA, F_ZOOM, FindFirstCanBeConnectedOutputByOutletHandler, FindInputsUnderPointerHandler, FindInputsUnderPointerRequest, FirstNotConnectedInputOfNodeUnderPointerHandler, GetCanBeSelectedItemsHandler, GetConnectionHandler, GetConnectionVectorHandler, GetConnectionVectorRequest, GetElementRectInFlowHandler, GetElementRectInFlowRequest, GetIncomingConnectionsHandler, GetInputRectInFlowHandler, GetInputRectInFlowRequest, GetInputRectInFlowResponse, GetNodesRectHandler, GetNodesRectRequest, GetOutgoingConnectionsHandler, GetOutputRectInFlowHandler, GetOutputRectInFlowRequest, GetOutputRectInFlowResponse, GetSelectionHandler, GetSelectionRequest, InputsUnderPointerHandler, IsConnectionUnderNodeHandler, LineElement, LineService, MOUSE_EVENT_IGNORE_TIME, NODE_PROVIDERS, NearestCoordinateFinder, NodeDragHandler, NodeOnPointerUp, NodePrepareDragSequence, ReassignConnectionDragHandler, ReassignConnectionOnPointerUp, ReassignConnectionPrepareDragSequence, RedrawConnectionsHandler, RedrawConnectionsRequest, SELECTION_AREA_PROVIDERS, SINGLE_SELECT_PROVIDERS, SelectAllHandler, SelectAllRequest, SelectHandler, SelectRequest, SelectionAreaDragHandle, SelectionAreaOnPointerUp, SelectionAreaPrepareDragSequence, SingleSelectOnPointerDown, UpdateConnectionLayerHandler, UpdateNodeLayerHandler, castToConnectableSide, castToConnectionBehavior, castToConnectionType, getExternalItem, getFlowUid, isExternalItem, isNode, isNodeDragHandle, isNodeInput, isNodeOutlet, isNodeOutput, mixinChangeConnectionSelection, mixinChangeConnectionVisibility };
4576
4602
  //# sourceMappingURL=foblex-flow.mjs.map