@foblex/flow 17.8.5 → 17.8.6

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 (111) hide show
  1. package/domain/drag-rect-cache.d.ts +8 -0
  2. package/domain/f-background/providers.d.ts +1 -1
  3. package/domain/f-canvas/providers.d.ts +1 -1
  4. package/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior-request.d.ts +7 -7
  5. package/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.d.ts +37 -3
  6. package/domain/f-connection/calculate-connection-line-by-behavior/index.d.ts +4 -3
  7. package/domain/f-connection/calculate-connection-line-by-behavior/models/calculate-behavior-request.d.ts +8 -0
  8. package/domain/f-connection/calculate-connection-line-by-behavior/{fixed-center-behavior.d.ts → utils/fixed-center-behavior.d.ts} +2 -2
  9. package/domain/f-connection/calculate-connection-line-by-behavior/{fixed-outbound-behavior.d.ts → utils/fixed-outbound-behavior.d.ts} +2 -2
  10. package/domain/f-connection/calculate-connection-line-by-behavior/{floating-behavior.d.ts → utils/floating-behavior.d.ts} +2 -2
  11. package/domain/f-connection/providers.d.ts +2 -2
  12. package/domain/f-connection/redraw-connections/index.d.ts +1 -1
  13. package/domain/f-connection/redraw-connections/{redraw-connections.execution.d.ts → redraw-connections.d.ts} +3 -3
  14. package/domain/f-draggable/emit-selection-change-event/emit-selection-change-event.execution.d.ts +1 -1
  15. package/domain/f-flow/providers.d.ts +1 -1
  16. package/domain/f-line-alignment/add-line-alignment-to-store/add-line-alignment-to-store-request.d.ts +2 -2
  17. package/domain/f-line-alignment/add-line-alignment-to-store/{add-line-alignment-to-store.execution.d.ts → add-line-alignment-to-store.d.ts} +4 -4
  18. package/domain/f-line-alignment/add-line-alignment-to-store/index.d.ts +1 -1
  19. package/domain/f-line-alignment/providers.d.ts +3 -3
  20. package/domain/f-line-alignment/remove-line-alignment-from-store/index.d.ts +1 -1
  21. package/domain/f-line-alignment/remove-line-alignment-from-store/{remove-line-alignment-from-store.execution.d.ts → remove-line-alignment-from-store.d.ts} +4 -4
  22. package/domain/f-node/get-parent-nodes/get-parent-nodes.d.ts +1 -1
  23. package/domain/f-node/get-parent-nodes/get-parent-nodes.request.d.ts +2 -2
  24. package/domain/f-node/remove-node-from-store/remove-node-from-store-request.d.ts +2 -2
  25. package/domain/f-node/remove-node-from-store/remove-node-from-store.d.ts +1 -1
  26. package/domain/f-zoom/providers.d.ts +1 -1
  27. package/domain/index.d.ts +1 -0
  28. package/domain/providers.d.ts +4 -3
  29. package/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.d.ts +2 -2
  30. package/domain/update-item-and-children-layers/move-front-elements-before-target-element/{move-front-elements-before-target-element.request.d.ts → move-front-elements-before-target-element-request.d.ts} +4 -4
  31. package/domain/update-item-and-children-layers/move-front-elements-before-target-element/{move-front-elements-before-target-element.execution.d.ts → move-front-elements-before-target-element.d.ts} +4 -4
  32. package/esm2022/domain/drag-rect-cache.mjs +19 -0
  33. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior-request.mjs +4 -4
  34. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.mjs +126 -13
  35. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/index.mjs +5 -4
  36. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/models/calculate-behavior-request.mjs +2 -0
  37. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/utils/fixed-center-behavior.mjs +12 -0
  38. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/utils/fixed-outbound-behavior.mjs +31 -0
  39. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/utils/floating-behavior.mjs +22 -0
  40. package/esm2022/domain/f-connection/providers.mjs +3 -3
  41. package/esm2022/domain/f-connection/redraw-connections/index.mjs +2 -2
  42. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.mjs +75 -0
  43. package/esm2022/domain/f-draggable/emit-selection-change-event/emit-selection-change-event-request.mjs +1 -1
  44. package/esm2022/domain/f-draggable/emit-selection-change-event/emit-selection-change-event.execution.mjs +2 -2
  45. package/esm2022/domain/f-line-alignment/add-line-alignment-to-store/add-line-alignment-to-store-request.mjs +4 -4
  46. package/esm2022/domain/f-line-alignment/add-line-alignment-to-store/add-line-alignment-to-store.mjs +25 -0
  47. package/esm2022/domain/f-line-alignment/add-line-alignment-to-store/index.mjs +2 -2
  48. package/esm2022/domain/f-line-alignment/providers.mjs +4 -7
  49. package/esm2022/domain/f-line-alignment/remove-line-alignment-from-store/index.mjs +2 -2
  50. package/esm2022/domain/f-line-alignment/remove-line-alignment-from-store/remove-line-alignment-from-store.mjs +25 -0
  51. package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/calculate-nodes-bounding-box-normalized-position.mjs +1 -1
  52. package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/fit-to-child-nodes-and-groups-request.mjs +1 -1
  53. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.mjs +8 -8
  54. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.request.mjs +4 -4
  55. package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store-request.mjs +4 -4
  56. package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store.mjs +3 -3
  57. package/esm2022/domain/index.mjs +2 -1
  58. package/esm2022/domain/providers.mjs +5 -5
  59. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.mjs +3 -3
  60. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element-request.mjs +15 -0
  61. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.mjs +34 -0
  62. package/esm2022/f-connection/common/domain/adaptive-curve-builder.mjs +201 -0
  63. package/esm2022/f-connection/common/domain/index.mjs +2 -1
  64. package/esm2022/f-connection/common/e-f-connection-connectable-side.mjs +12 -0
  65. package/esm2022/f-connection/common/e-f-connection-type.mjs +2 -1
  66. package/esm2022/f-connection/common/f-connection-base.mjs +28 -5
  67. package/esm2022/f-connection/common/index.mjs +2 -1
  68. package/esm2022/f-connection/f-connection/f-connection.component.mjs +13 -3
  69. package/esm2022/f-connection/f-connection-builder/f-connection-factory.mjs +9 -17
  70. package/esm2022/f-connection/f-connection-content/f-connection-content.mjs +10 -4
  71. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-content-layout-engine.mjs +4 -5
  72. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-content-place.mjs +3 -2
  73. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +14 -4
  74. package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +14 -4
  75. package/esm2022/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.mjs +5 -5
  76. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-source.drag-handler.mjs +5 -5
  77. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-target.drag-handler.mjs +5 -5
  78. package/esm2022/f-draggable/f-draggable.directive.mjs +3 -2
  79. package/esm2022/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.mjs +3 -3
  80. package/esm2022/f-draggable/f-node-move/move-preparation/f-node-move-preparation.execution.mjs +1 -1
  81. package/esm2022/f-flow/f-flow.component.mjs +2 -2
  82. package/f-backgroud/providers.d.ts +1 -1
  83. package/f-connection/common/domain/adaptive-curve-builder.d.ts +102 -0
  84. package/f-connection/common/domain/index.d.ts +1 -0
  85. package/f-connection/common/e-f-connection-connectable-side.d.ts +10 -0
  86. package/f-connection/common/e-f-connection-type.d.ts +2 -1
  87. package/f-connection/common/f-connection-base.d.ts +14 -2
  88. package/f-connection/common/index.d.ts +1 -0
  89. package/f-connection/f-connection/f-connection.component.d.ts +4 -2
  90. package/f-connection/f-connection-builder/f-connection-factory.d.ts +2 -4
  91. package/f-connection/f-connection-content/f-connection-content.d.ts +2 -2
  92. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +4 -2
  93. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +4 -2
  94. package/f-connection/providers.d.ts +1 -1
  95. package/f-connectors/providers.d.ts +1 -1
  96. package/f-draggable/f-connection/providers.d.ts +1 -1
  97. package/f-draggable/f-drop-to-group/providers.d.ts +1 -1
  98. package/f-draggable/providers.d.ts +1 -1
  99. package/f-minimap/providers.d.ts +1 -1
  100. package/f-node/providers.d.ts +1 -1
  101. package/fesm2022/foblex-flow.mjs +502 -113
  102. package/fesm2022/foblex-flow.mjs.map +1 -1
  103. package/package.json +1 -1
  104. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-center-behavior.mjs +0 -12
  105. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-outbound-behavior.mjs +0 -31
  106. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.mjs +0 -22
  107. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.execution.mjs +0 -73
  108. package/esm2022/domain/f-line-alignment/add-line-alignment-to-store/add-line-alignment-to-store.execution.mjs +0 -25
  109. package/esm2022/domain/f-line-alignment/remove-line-alignment-from-store/remove-line-alignment-from-store.execution.mjs +0 -25
  110. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.execution.mjs +0 -34
  111. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.request.mjs +0 -15

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.