@foblex/flow 18.4.0 → 18.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/domain/f-canvas/redraw-canvas-with-animation/e-canvas-redraw-context.d.ts +4 -0
- package/domain/f-canvas/redraw-canvas-with-animation/index.d.ts +1 -0
- package/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation-request.d.ts +4 -2
- package/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store-request.d.ts +1 -1
- package/domain/f-connection/create-connection-markers/create-connection-markers.d.ts +0 -1
- package/domain/f-connection/providers.d.ts +6 -6
- package/domain/f-connection/redraw-connections/index.d.ts +5 -0
- package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render.d.ts +15 -0
- package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/main-thread/index.d.ts +5 -0
- package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected-request.d.ts +7 -0
- package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected.d.ts +9 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection.d.ts +9 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry.d.ts +9 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line-request.d.ts +11 -0
- package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line.d.ts +9 -0
- package/domain/f-connection/redraw-connections/models/connection-redraw-state.d.ts +11 -0
- package/domain/f-connection/redraw-connections/models/connection-worker-state.d.ts +13 -0
- package/domain/f-connection/redraw-connections/models/i-connection-endpoints.d.ts +5 -0
- package/domain/f-connection/redraw-connections/models/i-connection-geometry.d.ts +6 -0
- package/domain/f-connection/redraw-connections/models/i-connection-redraw-session.d.ts +5 -0
- package/domain/f-connection/redraw-connections/models/i-connection-worker-batch-item.d.ts +8 -0
- package/domain/f-connection/redraw-connections/models/i-connection-worker-batch.d.ts +6 -0
- package/domain/f-connection/redraw-connections/models/i-connection-worker-payload-item.d.ts +13 -0
- package/{f-connection-worker/model/i-f-connection-worker-rect.d.ts → domain/f-connection/redraw-connections/models/i-connection-worker-rect.d.ts} +1 -1
- package/domain/f-connection/redraw-connections/models/i-connection-worker-response.d.ts +6 -0
- package/{f-connection-worker/model/i-f-connection-worker-result-item.d.ts → domain/f-connection/redraw-connections/models/i-connection-worker-result-item.d.ts} +2 -2
- package/domain/f-connection/redraw-connections/models/index.d.ts +12 -0
- package/domain/f-connection/redraw-connections/models/t-connection-worker-pending-request.d.ts +5 -0
- package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw.d.ts +10 -0
- package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/pipeline/index.d.ts +4 -0
- package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current.d.ts +10 -0
- package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice-request.d.ts +13 -0
- package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice.d.ts +14 -0
- package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw-request.d.ts +3 -0
- package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw.d.ts +11 -0
- package/domain/f-connection/redraw-connections/redraw-connections.d.ts +6 -25
- package/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line.d.ts +12 -0
- package/domain/f-connection/redraw-connections/shared/build-connection-line/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/shared/index.d.ts +4 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect.d.ts +12 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints.d.ts +10 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry.d.ts +12 -0
- package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result-request.d.ts +7 -0
- package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result.d.ts +11 -0
- package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch-request.d.ts +8 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch.d.ts +11 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item-request.d.ts +9 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item.d.ts +10 -0
- package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/index.d.ts +2 -0
- package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/disable-connection-worker-request.d.ts +1 -1
- package/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/worker/index.d.ts +13 -0
- package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/reset-connection-worker-runtime-request.d.ts +1 -1
- package/domain/f-connection/redraw-connections/worker/run-connection-worker/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker.d.ts +12 -0
- package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch-request.d.ts +6 -0
- package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch.d.ts +10 -0
- package/domain/f-connection/redraw-connections/worker/runtime/index.d.ts +1 -0
- package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/should-use-connection-worker-request.d.ts +1 -1
- package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/index.d.ts +2 -0
- package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw-request.d.ts +10 -0
- package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw.d.ts +10 -0
- package/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store-request.d.ts +1 -1
- package/domain/f-flow/add-flow-to-store/add-flow-to-store-request.d.ts +2 -2
- package/domain/f-flow/add-flow-to-store/add-flow-to-store.d.ts +2 -1
- package/domain/f-flow/calculate-flow-state/calculate-flow-state-request.d.ts +2 -0
- package/domain/f-flow/calculate-flow-state/calculate-flow-state.d.ts +1 -1
- package/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state-request.d.ts +2 -1
- package/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state.d.ts +2 -1
- package/domain/f-flow/calculate-flow-state/i-f-flow-state-node.d.ts +1 -0
- package/domain/f-flow/calculate-flow-state/i-f-flow-state-options.d.ts +3 -0
- package/domain/f-flow/calculate-flow-state/index.d.ts +1 -0
- package/domain/f-flow/index.d.ts +1 -0
- package/domain/f-flow/providers.d.ts +2 -1
- package/domain/f-flow/remove-flow-from-store/remove-flow-from-store-request.d.ts +3 -0
- package/domain/f-flow/remove-flow-from-store/remove-flow-from-store.d.ts +2 -1
- package/domain/f-flow/render-lifecycle/index.d.ts +6 -0
- package/domain/f-flow/render-lifecycle/notify-full-rendered/index.d.ts +2 -0
- package/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered-request.d.ts +3 -0
- package/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered.d.ts +10 -0
- package/domain/f-flow/render-lifecycle/notify-nodes-rendered/index.d.ts +2 -0
- package/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered-request.d.ts +3 -0
- package/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered.d.ts +10 -0
- package/domain/f-flow/render-lifecycle/queue-connection-redraw/index.d.ts +3 -0
- package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-request.d.ts +6 -0
- package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-state.d.ts +7 -0
- package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw.d.ts +11 -0
- package/domain/f-flow/render-lifecycle/render-lifecycle-state.d.ts +7 -0
- package/domain/f-flow/render-lifecycle/reset-render-lifecycle/index.d.ts +2 -0
- package/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle-request.d.ts +3 -0
- package/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle.d.ts +9 -0
- package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/index.d.ts +2 -0
- package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered-request.d.ts +9 -0
- package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered.d.ts +9 -0
- package/domain/providers.d.ts +1 -1
- package/esm2022/domain/create-dom-element.mjs +1 -1
- package/esm2022/domain/css-cls.mjs +1 -1
- package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background-request.mjs +1 -1
- package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.mjs +1 -1
- package/esm2022/domain/f-background/add-pattern-to-background/index.mjs +1 -1
- package/esm2022/domain/f-background/index.mjs +1 -1
- package/esm2022/domain/f-background/providers.mjs +1 -1
- package/esm2022/domain/f-background/set-background-transform/index.mjs +1 -1
- package/esm2022/domain/f-background/set-background-transform/set-background-transform-request.mjs +1 -1
- package/esm2022/domain/f-background/set-background-transform/set-background-transform.mjs +1 -1
- package/esm2022/domain/f-canvas/add-canvas-to-store/add-canvas-to-store-request.mjs +1 -1
- package/esm2022/domain/f-canvas/add-canvas-to-store/add-canvas-to-store.mjs +1 -1
- package/esm2022/domain/f-canvas/add-canvas-to-store/index.mjs +1 -1
- package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node-request.mjs +1 -1
- package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node.mjs +3 -3
- package/esm2022/domain/f-canvas/center-group-or-node/index.mjs +1 -1
- package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow-request.mjs +1 -1
- package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow.mjs +3 -3
- package/esm2022/domain/f-canvas/fit-to-flow/index.mjs +1 -1
- package/esm2022/domain/f-canvas/index.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-position/index.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position-request.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-scale/index.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale-request.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.mjs +1 -1
- package/esm2022/domain/f-canvas/providers.mjs +1 -1
- package/esm2022/domain/f-canvas/redraw-canvas-with-animation/e-canvas-redraw-context.mjs +6 -0
- package/esm2022/domain/f-canvas/redraw-canvas-with-animation/index.mjs +2 -1
- package/esm2022/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation-request.mjs +5 -2
- package/esm2022/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation.mjs +15 -6
- package/esm2022/domain/f-canvas/remove-canvas-from-store/index.mjs +1 -1
- package/esm2022/domain/f-canvas/remove-canvas-from-store/remove-canvas-from-store-request.mjs +1 -1
- package/esm2022/domain/f-canvas/remove-canvas-from-store/remove-canvas-from-store.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale/index.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale/reset-scale-request.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale/reset-scale.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale-and-center/index.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center-request.mjs +1 -1
- package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.mjs +3 -3
- package/esm2022/domain/f-canvas/update-scale/index.mjs +1 -1
- package/esm2022/domain/f-canvas/update-scale/update-scale-request.mjs +1 -1
- package/esm2022/domain/f-canvas/update-scale/update-scale.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-for-create-to-store/add-connection-for-create-to-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-for-create-to-store/add-connection-for-create-to-store.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-for-create-to-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-marker-to-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-to-store/add-connection-to-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-to-store/add-connection-to-store.mjs +1 -1
- package/esm2022/domain/f-connection/add-connection-to-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/add-snap-connection-to-store/add-snap-connection-to-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/add-snap-connection-to-store/add-snap-connection-to-store.mjs +1 -1
- package/esm2022/domain/f-connection/add-snap-connection-to-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/create-connection-markers/create-connection-markers-request.mjs +1 -1
- package/esm2022/domain/f-connection/create-connection-markers/create-connection-markers.mjs +35 -18
- package/esm2022/domain/f-connection/create-connection-markers/index.mjs +1 -1
- package/esm2022/domain/f-connection/index.mjs +1 -1
- package/esm2022/domain/f-connection/providers.mjs +33 -6
- package/esm2022/domain/f-connection/redraw-connections/index.mjs +6 -1
- package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render.mjs +67 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/index.mjs +6 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected.mjs +24 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection.mjs +27 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry.mjs +24 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line-request.mjs +14 -0
- package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line.mjs +24 -0
- package/esm2022/domain/f-connection/redraw-connections/models/connection-redraw-state.mjs +25 -0
- package/esm2022/domain/f-connection/redraw-connections/models/connection-worker-state.mjs +27 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-endpoints.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-geometry.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-redraw-session.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-batch-item.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-batch.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-payload-item.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-rect.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-response.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-result-item.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/models/index.mjs +13 -0
- package/esm2022/domain/f-connection/redraw-connections/models/t-connection-worker-pending-request.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw.mjs +27 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/index.mjs +5 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current.mjs +25 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice-request.mjs +18 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice.mjs +76 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw-request.mjs +4 -0
- package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw.mjs +29 -0
- package/esm2022/domain/f-connection/redraw-connections/redraw-connections-request.mjs +1 -1
- package/esm2022/domain/f-connection/redraw-connections/redraw-connections.mjs +30 -230
- package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line.mjs +27 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/index.mjs +5 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect.mjs +31 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints.mjs +27 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry.mjs +37 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result.mjs +42 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch-request.mjs +10 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch.mjs +44 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item-request.mjs +12 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item.mjs +52 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/disable-connection-worker-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/disable-connection-worker.mjs +25 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/ensure-connection-worker-request.mjs +4 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/ensure-connection-worker.mjs +68 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message.mjs +34 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/index.mjs +14 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/is-connection-worker-enabled-request.mjs +4 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/is-connection-worker-enabled.mjs +35 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/reset-connection-worker-runtime-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/reset-connection-worker-runtime.mjs +22 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker.mjs +59 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch.mjs +25 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/runtime/connection-worker-runtime.mjs +247 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/runtime/index.mjs +2 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/should-use-connection-worker-request.mjs +8 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/should-use-connection-worker.mjs +22 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/index.mjs +3 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw-request.mjs +12 -0
- package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw.mjs +53 -0
- package/esm2022/domain/f-connection/remove-connection-for-create-from-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-for-create-from-store/remove-connection-for-create-from-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-for-create-from-store/remove-connection-for-create-from-store.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-from-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-from-store/remove-connection-from-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-from-store/remove-connection-from-store.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-marker-from-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-waypoint/index.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-waypoint/remove-connection-waypoint-request.mjs +1 -1
- package/esm2022/domain/f-connection/remove-connection-waypoint/remove-connection-waypoint.mjs +1 -1
- package/esm2022/domain/f-connection/remove-snap-connection-from-store/index.mjs +1 -1
- package/esm2022/domain/f-connection/remove-snap-connection-from-store/remove-snap-connection-from-store-request.mjs +1 -1
- package/esm2022/domain/f-connection/remove-snap-connection-from-store/remove-snap-connection-from-store.mjs +1 -1
- package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/index.mjs +1 -1
- package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/resolve-connection-endpoint-rotation-context-request.mjs +1 -1
- package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/resolve-connection-endpoint-rotation-context.mjs +1 -1
- package/esm2022/domain/f-connectors/add-connector-to-store/add-connector-to-store-request.mjs +1 -1
- package/esm2022/domain/f-connectors/add-connector-to-store/add-connector-to-store.mjs +1 -1
- package/esm2022/domain/f-connectors/add-connector-to-store/index.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector-request.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-closest-connector/index.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/calculate-source-connectors-to-connect-request.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/calculate-source-connectors-to-connect.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/index.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/calculate-target-connectors-to-connect-request.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/calculate-target-connectors-to-connect.mjs +1 -1
- package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/index.mjs +1 -1
- package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/find-connectable-connector-using-priority-and-position-request.mjs +1 -1
- package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/find-connectable-connector-using-priority-and-position.mjs +1 -1
- package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/index.mjs +1 -1
- package/esm2022/domain/f-connectors/get-connector-rect-reference/get-connector-rect-reference-request.mjs +1 -1
- package/esm2022/domain/f-connectors/get-connector-rect-reference/get-connector-rect-reference.mjs +1 -1
- package/esm2022/domain/f-connectors/get-connector-rect-reference/index.mjs +1 -1
- package/esm2022/domain/f-connectors/i-closest-connector-ref.mjs +1 -1
- package/esm2022/domain/f-connectors/i-connector-rect-ref.mjs +1 -1
- package/esm2022/domain/f-connectors/index.mjs +1 -1
- package/esm2022/domain/f-connectors/mark-connectable-connectors/index.mjs +1 -1
- package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors-request.mjs +1 -1
- package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors.mjs +1 -1
- package/esm2022/domain/f-connectors/providers.mjs +1 -1
- package/esm2022/domain/f-connectors/remove-connector-from-store/index.mjs +1 -1
- package/esm2022/domain/f-connectors/remove-connector-from-store/remove-connector-from-store-request.mjs +1 -1
- package/esm2022/domain/f-connectors/remove-connector-from-store/remove-connector-from-store.mjs +1 -1
- package/esm2022/domain/f-connectors/unmark-connectable-connectors/index.mjs +1 -1
- package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors-request.mjs +1 -1
- package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors.mjs +1 -1
- package/esm2022/domain/f-draggable/add-dnd-to-store/add-dnd-to-store-request.mjs +1 -1
- package/esm2022/domain/f-draggable/add-dnd-to-store/add-dnd-to-store.mjs +1 -1
- package/esm2022/domain/f-draggable/add-dnd-to-store/index.mjs +1 -1
- package/esm2022/domain/f-draggable/index.mjs +1 -1
- package/esm2022/domain/f-draggable/initialize-drag-sequence/index.mjs +1 -1
- package/esm2022/domain/f-draggable/initialize-drag-sequence/initialize-drag-sequence-request.mjs +1 -1
- package/esm2022/domain/f-draggable/initialize-drag-sequence/initialize-drag-sequence.mjs +1 -1
- package/esm2022/domain/f-draggable/is-drag-started/index.mjs +1 -1
- package/esm2022/domain/f-draggable/is-drag-started/is-drag-started-request.mjs +1 -1
- package/esm2022/domain/f-draggable/is-drag-started/is-drag-started.mjs +1 -1
- package/esm2022/domain/f-draggable/on-pointer-move/index.mjs +1 -1
- package/esm2022/domain/f-draggable/on-pointer-move/on-pointer-move-request.mjs +1 -1
- package/esm2022/domain/f-draggable/on-pointer-move/on-pointer-move.mjs +1 -1
- package/esm2022/domain/f-draggable/prepare-drag-sequence/index.mjs +1 -1
- package/esm2022/domain/f-draggable/prepare-drag-sequence/prepare-drag-sequence-request.mjs +1 -1
- package/esm2022/domain/f-draggable/prepare-drag-sequence/prepare-drag-sequence.mjs +1 -1
- package/esm2022/domain/f-draggable/providers.mjs +1 -1
- package/esm2022/domain/f-draggable/remove-dnd-from-store/index.mjs +1 -1
- package/esm2022/domain/f-draggable/remove-dnd-from-store/remove-dnd-from-store-request.mjs +1 -1
- package/esm2022/domain/f-draggable/remove-dnd-from-store/remove-dnd-from-store.mjs +1 -1
- package/esm2022/domain/f-event-trigger.mjs +1 -1
- package/esm2022/domain/f-flow/add-flow-to-store/add-flow-to-store-request.mjs +4 -4
- package/esm2022/domain/f-flow/add-flow-to-store/add-flow-to-store.mjs +6 -3
- package/esm2022/domain/f-flow/add-flow-to-store/index.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/calculate-connections-state-request.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/calculate-connections-state.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/index.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-flow-state-request.mjs +5 -1
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-flow-state.mjs +4 -4
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state-request.mjs +4 -2
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state.mjs +17 -6
- package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/index.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-connection.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-connector.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-node.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-options.mjs +2 -0
- package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state.mjs +1 -1
- package/esm2022/domain/f-flow/calculate-flow-state/index.mjs +2 -1
- package/esm2022/domain/f-flow/calculate-flow-state/providers.mjs +1 -1
- package/esm2022/domain/f-flow/get-flow/get-flow-request.mjs +1 -1
- package/esm2022/domain/f-flow/get-flow/get-flow.mjs +1 -1
- package/esm2022/domain/f-flow/get-flow/index.mjs +1 -1
- package/esm2022/domain/f-flow/index.mjs +2 -1
- package/esm2022/domain/f-flow/providers.mjs +9 -1
- package/esm2022/domain/f-flow/remove-flow-from-store/index.mjs +1 -1
- package/esm2022/domain/f-flow/remove-flow-from-store/remove-flow-from-store-request.mjs +5 -1
- package/esm2022/domain/f-flow/remove-flow-from-store/remove-flow-from-store.mjs +5 -2
- package/esm2022/domain/f-flow/render-lifecycle/index.mjs +7 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/index.mjs +3 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered-request.mjs +4 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered.mjs +29 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/index.mjs +3 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered-request.mjs +4 -0
- package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered.mjs +28 -0
- package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/index.mjs +4 -0
- package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-request.mjs +8 -0
- package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-state.mjs +12 -0
- package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw.mjs +44 -0
- package/esm2022/domain/f-flow/render-lifecycle/render-lifecycle-state.mjs +12 -0
- package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/index.mjs +3 -0
- package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle-request.mjs +4 -0
- package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle.mjs +23 -0
- package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/index.mjs +3 -0
- package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered-request.mjs +14 -0
- package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered.mjs +35 -0
- package/esm2022/domain/f-node/add-node-to-store/add-node-to-store-request.mjs +1 -1
- package/esm2022/domain/f-node/add-node-to-store/add-node-to-store.mjs +1 -1
- package/esm2022/domain/f-node/add-node-to-store/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/calculate-connectable-side-by-connected-positions-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/calculate-connectable-side-by-connected-positions.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/calculate-connectable-side-by-internal-position-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/calculate-connectable-side-by-internal-position.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectors-connectable-sides-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectors-connectable-sides.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/constants/calculatable-sides.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/constants/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/models/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/models/t-calculate-mode.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/determine-side.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/is-calculate-mode.mjs +1 -1
- package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections.mjs +1 -1
- package/esm2022/domain/f-node/calculate-input-connections/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box/calculate-nodes-bounding-box-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box/calculate-nodes-bounding-box.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/calculate-nodes-bounding-box-normalized-position-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/calculate-nodes-bounding-box-normalized-position.mjs +1 -1
- package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/index.mjs +1 -1
- package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections-request.mjs +1 -1
- package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections.mjs +1 -1
- package/esm2022/domain/f-node/calculate-output-connections/index.mjs +1 -1
- package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/fit-to-child-nodes-and-groups-request.mjs +1 -1
- package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/fit-to-child-nodes-and-groups.mjs +1 -1
- package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/index.mjs +1 -1
- package/esm2022/domain/f-node/get-child-node-ids/get-child-node-ids-request.mjs +1 -1
- package/esm2022/domain/f-node/get-child-node-ids/get-child-node-ids.mjs +1 -1
- package/esm2022/domain/f-node/get-child-node-ids/index.mjs +1 -1
- package/esm2022/domain/f-node/get-node-padding/get-node-padding-request.mjs +1 -1
- package/esm2022/domain/f-node/get-node-padding/get-node-padding.mjs +1 -1
- package/esm2022/domain/f-node/get-node-padding/index.mjs +1 -1
- package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes-request.mjs +1 -1
- package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.mjs +1 -1
- package/esm2022/domain/f-node/get-parent-nodes/index.mjs +1 -1
- package/esm2022/domain/f-node/index.mjs +1 -1
- package/esm2022/domain/f-node/providers.mjs +1 -1
- package/esm2022/domain/f-node/remove-node-from-store/index.mjs +1 -1
- package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store-request.mjs +1 -1
- package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store.mjs +1 -1
- package/esm2022/domain/f-node/update-node-when-state-or-size-changed/index.mjs +1 -1
- package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed-request.mjs +1 -1
- package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.mjs +3 -3
- package/esm2022/domain/f-selection/calculate-selectable-items/calculate-selectable-items-request.mjs +1 -1
- package/esm2022/domain/f-selection/calculate-selectable-items/calculate-selectable-items.mjs +1 -1
- package/esm2022/domain/f-selection/calculate-selectable-items/i-can-be-selected-element-and-rect.mjs +1 -1
- package/esm2022/domain/f-selection/calculate-selectable-items/index.mjs +1 -1
- package/esm2022/domain/f-selection/clear-selection/clear-selection-request.mjs +1 -1
- package/esm2022/domain/f-selection/clear-selection/clear-selection.mjs +1 -1
- package/esm2022/domain/f-selection/clear-selection/index.mjs +1 -1
- package/esm2022/domain/f-selection/get-current-selection/get-current-selection-request.mjs +1 -1
- package/esm2022/domain/f-selection/get-current-selection/get-current-selection.mjs +1 -1
- package/esm2022/domain/f-selection/get-current-selection/i-current-selection.mjs +1 -1
- package/esm2022/domain/f-selection/get-current-selection/index.mjs +1 -1
- package/esm2022/domain/f-selection/index.mjs +1 -1
- package/esm2022/domain/f-selection/providers.mjs +1 -1
- package/esm2022/domain/f-selection/select-all/index.mjs +1 -1
- package/esm2022/domain/f-selection/select-all/select-all-request.mjs +1 -1
- package/esm2022/domain/f-selection/select-all/select-all.mjs +1 -1
- package/esm2022/domain/f-selection/select-and-update-node-layer/index.mjs +1 -1
- package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer-request.mjs +1 -1
- package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.mjs +1 -1
- package/esm2022/domain/f-selection/select-items/index.mjs +1 -1
- package/esm2022/domain/f-selection/select-items/select-request.mjs +1 -1
- package/esm2022/domain/f-selection/select-items/select.mjs +1 -1
- package/esm2022/domain/f-zoom/index.mjs +1 -1
- package/esm2022/domain/f-zoom/providers.mjs +1 -1
- package/esm2022/domain/f-zoom/reset-zoom/index.mjs +1 -1
- package/esm2022/domain/f-zoom/reset-zoom/reset-zoom-request.mjs +1 -1
- package/esm2022/domain/f-zoom/reset-zoom/reset-zoom.mjs +1 -1
- package/esm2022/domain/f-zoom/set-zoom/index.mjs +1 -1
- package/esm2022/domain/f-zoom/set-zoom/set-zoom-request.mjs +1 -1
- package/esm2022/domain/f-zoom/set-zoom/set-zoom.mjs +1 -1
- package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups-request.mjs +1 -1
- package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.mjs +1 -1
- package/esm2022/domain/get-deep-children-nodes-and-groups/index.mjs +1 -1
- package/esm2022/domain/get-normalized-connector-rect/get-normalized-connector-rect-request.mjs +1 -1
- package/esm2022/domain/get-normalized-connector-rect/get-normalized-connector-rect.mjs +1 -1
- package/esm2022/domain/get-normalized-connector-rect/index.mjs +1 -1
- package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect-request.mjs +1 -1
- package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect.mjs +1 -1
- package/esm2022/domain/get-normalized-element-rect/index.mjs +1 -1
- package/esm2022/domain/get-normalized-point/get-normalized-point-request.mjs +1 -1
- package/esm2022/domain/get-normalized-point/get-normalized-point.mjs +1 -1
- package/esm2022/domain/get-normalized-point/index.mjs +1 -1
- package/esm2022/domain/index.mjs +1 -1
- package/esm2022/domain/is-mobile.mjs +1 -1
- package/esm2022/domain/log-deprecated.mjs +5 -2
- package/esm2022/domain/log-execution-time.mjs +11 -5
- package/esm2022/domain/minimap/f-minimap-state.mjs +1 -1
- package/esm2022/domain/minimap/index.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-view-rect/index.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-view-rect/minimap-calculate-view-rect-request.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-view-rect/minimap-calculate-view-rect.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-viewport/i-minimap-viewport.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-viewport/index.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-viewport/minimap-calculate-viewport-request.mjs +1 -1
- package/esm2022/domain/minimap/minimap-calculate-viewport/minimap-calculate-viewport.mjs +1 -1
- package/esm2022/domain/minimap/minimap-draw-nodes/index.mjs +1 -1
- package/esm2022/domain/minimap/minimap-draw-nodes/minimap-draw-nodes-request.mjs +1 -1
- package/esm2022/domain/minimap/minimap-draw-nodes/minimap-draw-nodes.mjs +1 -1
- package/esm2022/domain/minimap/providers.mjs +1 -1
- package/esm2022/domain/providers.mjs +1 -1
- package/esm2022/domain/sort-item-layers/index.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-item-layers-request.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-item-layers.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-items-by-parent/index.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent-request.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/index.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers-request.mjs +1 -1
- package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.mjs +1 -1
- package/esm2022/domain/transition-end.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/index.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element-request.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers-request.mjs +1 -1
- package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.mjs +1 -1
- package/esm2022/drag-toolkit/drag-and-drop-base.mjs +1 -1
- package/esm2022/drag-toolkit/event.extensions.mjs +1 -1
- package/esm2022/drag-toolkit/index.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/i-mouse-event.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/i-pointer-event.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/i-pointer-up-event.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/i-touch-down-event.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/i-touch-move-event.mjs +1 -1
- package/esm2022/drag-toolkit/pointer-events/index.mjs +1 -1
- package/esm2022/f-auto-pan/f-auto-pan-base.mjs +1 -1
- package/esm2022/f-auto-pan/f-auto-pan.mjs +1 -1
- package/esm2022/f-auto-pan/index.mjs +1 -1
- package/esm2022/f-auto-pan/providers.mjs +1 -1
- package/esm2022/f-backgroud/domain/i-f-background-pattern.mjs +1 -1
- package/esm2022/f-backgroud/domain/index.mjs +1 -1
- package/esm2022/f-backgroud/f-background-base.mjs +1 -1
- package/esm2022/f-backgroud/f-background.component.mjs +1 -1
- package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +1 -1
- package/esm2022/f-backgroud/f-circle-pattern/index.mjs +1 -1
- package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +1 -1
- package/esm2022/f-backgroud/f-rect-pattern/index.mjs +1 -1
- package/esm2022/f-backgroud/index.mjs +1 -1
- package/esm2022/f-backgroud/providers.mjs +1 -1
- package/esm2022/f-cache/config/f-cache-options.mjs +1 -1
- package/esm2022/f-cache/config/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/register-connector/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/register-connector/register-connector-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/register-connector/register-connector.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/unregister-connector-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/unregister-connector.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/invalidate-node-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/invalidate-node.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/register-node/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/register-node/register-node-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/register-node/register-node.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/unregister-node/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/unregister-node/unregister-node-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-nodes/unregister-node/unregister-node.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/get-cached-rect-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/get-cached-rect.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/set-connector-rect-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/set-connector-rect.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-node-rect/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-node-rect/set-node-rect-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/set-node-rect/set-node-rect.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/index.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/update-rect-by-element-request.mjs +1 -1
- package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/update-rect-by-element.mjs +1 -1
- package/esm2022/f-cache/features/index.mjs +1 -1
- package/esm2022/f-cache/index.mjs +1 -1
- package/esm2022/f-cache/model/f-cache-connector-key.mjs +1 -1
- package/esm2022/f-cache/model/f-cache-connector.mjs +1 -1
- package/esm2022/f-cache/model/f-cache-node.mjs +1 -1
- package/esm2022/f-cache/model/f-cache.mjs +1 -1
- package/esm2022/f-cache/model/i-f-cache-node-ref.mjs +1 -1
- package/esm2022/f-cache/model/index.mjs +1 -1
- package/esm2022/f-cache/providers.mjs +1 -1
- package/esm2022/f-canvas/domain/f-canvas-change-event.mjs +1 -1
- package/esm2022/f-canvas/domain/index.mjs +1 -1
- package/esm2022/f-canvas/f-canvas-base.mjs +1 -1
- package/esm2022/f-canvas/f-canvas.component.mjs +4 -12
- package/esm2022/f-canvas/index.mjs +1 -1
- package/esm2022/f-canvas/providers.mjs +1 -1
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +3 -3
- package/esm2022/f-connection/f-connection/index.mjs +1 -1
- package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +3 -3
- package/esm2022/f-connection/f-connection-for-create/index.mjs +1 -1
- package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +3 -3
- package/esm2022/f-connection/f-snap-connection/index.mjs +1 -1
- package/esm2022/f-connection/index.mjs +1 -1
- package/esm2022/f-connection/providers.mjs +4 -2
- package/esm2022/f-connection-v2/components/connection-content/f-connection-content.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/models/f-connection-content-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/i-polyline-content.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-align.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-layout-engine.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-place.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/i-sampler-result.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/i-tangent.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/polyline-sampler.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/polyline.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-drag-handles/f-connection-drag-handle-end.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-drag-handles/f-connection-drag-handle-start.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-drag-handles/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-drag-handles/models/f-connection-drag-handle-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-drag-handles/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/components/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/components/render/f-connection-gradient-renderer.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/components/render/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/components/render/models/f-connection-gradient-renderer-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/components/render/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/f-connection-gradient.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/models/f-connection-gradient-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-gradient/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-marker/enums/e-f-marker-type.mjs +3 -1
- package/esm2022/f-connection-v2/components/connection-marker/enums/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-marker/f-connection-marker.mjs +6 -3
- package/esm2022/f-connection-v2/components/connection-marker/index.mjs +3 -1
- package/esm2022/f-connection-v2/components/connection-marker/models/f-connection-marker-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-marker/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-arrow.mjs +48 -0
- package/esm2022/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-circle.mjs +48 -0
- package/esm2022/f-connection-v2/components/connection-marker/shape-markers/index.mjs +3 -0
- package/esm2022/f-connection-v2/components/connection-marker/utils/coerce-marker-type.mjs +40 -0
- package/esm2022/f-connection-v2/components/connection-marker/utils/index.mjs +2 -0
- package/esm2022/f-connection-v2/components/connection-path/f-connection-path.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-path/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-path/models/f-connection-path-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-path/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-selection/f-connection-selection.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-selection/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-selection/models/f-connection-selection-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-selection/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/f-connection-waypoints.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/models/f-connection-waypoints-base.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/utils/find-existing-waypoint.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/utils/find-waypoint-candidate.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/utils/index.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/utils/is-pointer-inside-point.mjs +1 -1
- package/esm2022/f-connection-v2/components/connection-waypoints/utils/pick-waypoint.mjs +1 -1
- package/esm2022/f-connection-v2/components/f-connection-base.mjs +9 -4
- package/esm2022/f-connection-v2/components/index.mjs +1 -1
- package/esm2022/f-connection-v2/enums/e-f-connectable-side.mjs +1 -1
- package/esm2022/f-connection-v2/enums/e-f-connection-type.mjs +1 -1
- package/esm2022/f-connection-v2/enums/index.mjs +1 -1
- package/esm2022/f-connection-v2/index.mjs +1 -1
- package/esm2022/f-connection-v2/models/f-connection-components-parent.mjs +1 -1
- package/esm2022/f-connection-v2/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/connection-behaviour-builder-request.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/connection-behaviour-builder.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/enums/e-f-connection-behavior.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/enums/e-f-connection-connectable-side.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/enums/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/models/i-calculate-behavior-request.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/utils/fixed-center-behavior.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/utils/fixed-outbound-behavior.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/utils/floating-behavior.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/utils/get-rotated-rounded-rect-intersection.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-behaviour/utils/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/adaptive-curve/calculate-adaptive-curve-data.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/adaptive-curve/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/bezier-curve/calculate-bezier-curve-data.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/bezier-curve/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/build-corner-mid-points-and-apply-offsets.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/calculate-segment-line-data.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/create-segment-line-path.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/straight-line/calculate-straight-line-data.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/straight-line/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/build-connection-anchors.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-center-between-points.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-curve-candidates.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-polyline-candidates.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/merge-point-chains.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/multi-cubic.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/normalize-polyline.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/sample-cubic-bezier-uniform.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/connection-line-builder-request.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/connection-line-builder.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder-request.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder-response.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/models/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/providers/f-connection-builders.mjs +1 -1
- package/esm2022/f-connection-v2/utils/connection-line-builder/providers/index.mjs +1 -1
- package/esm2022/f-connection-v2/utils/create-connection-dom-identifier.mjs +1 -1
- package/esm2022/f-connection-v2/utils/create-connection-selection-dom-identifier.mjs +1 -1
- package/esm2022/f-connection-v2/utils/create-gradient-dom-identifier.mjs +1 -1
- package/esm2022/f-connection-v2/utils/create-gradient-dom-url.mjs +1 -1
- package/esm2022/f-connection-v2/utils/index.mjs +1 -1
- package/esm2022/f-connectors/f-connector-base.mjs +1 -1
- package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +1 -1
- package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +1 -1
- package/esm2022/f-connectors/f-node-input/index.mjs +1 -1
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +1 -1
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +1 -1
- package/esm2022/f-connectors/f-node-outlet/index.mjs +1 -1
- package/esm2022/f-connectors/f-node-outlet/is-node-outlet.mjs +1 -1
- package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +1 -1
- package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +1 -1
- package/esm2022/f-connectors/f-node-output/index.mjs +1 -1
- package/esm2022/f-connectors/f-node-output/is-node-output.mjs +1 -1
- package/esm2022/f-connectors/f-source-connector-base.mjs +1 -1
- package/esm2022/f-connectors/index.mjs +1 -1
- package/esm2022/f-connectors/providers.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/auto-pan.utils.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/index.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/providers.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/index.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/run-auto-pan-frame-request.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/run-auto-pan-frame.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/stop-auto-pan/index.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/stop-auto-pan/stop-auto-pan-request.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/stop-auto-pan/stop-auto-pan.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/stored-pointer-event.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/sync-auto-pan/index.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/sync-auto-pan/sync-auto-pan-request.mjs +1 -1
- package/esm2022/f-draggable/auto-pan/sync-auto-pan/sync-auto-pan.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/create-connection-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/create-connection-finalize.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-handler/create-connection-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-handler/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-connection-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-connection-preparation.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/create-connection-create-drag-handler-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/create-connection-create-drag-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/create-connection-from-outlet-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/create-connection-from-outlet-preparation.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/create-connection-from-output-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/create-connection-from-output-preparation.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/f-create-connection-event.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/i-create-connection-drag-result.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/i-create-connection-event-data.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/index.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/resolve-connectable-output-for-outlet-request.mjs +1 -1
- package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/resolve-connectable-output-for-outlet.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/drag-connection-waypoint-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/drag-connection-waypoint-finalize.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-handler/drag-connection-waypoint-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-handler/index.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/drag-connection-waypoint-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/drag-connection-waypoint-preparation.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/f-connection-waypoints-changed-event.mjs +1 -1
- package/esm2022/f-draggable/connection/drag-connection-waypoint/index.mjs +1 -1
- package/esm2022/f-draggable/connection/index.mjs +1 -1
- package/esm2022/f-draggable/connection/providers.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/f-reassign-connection-event.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/i-reassign-connection-drag-result.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/i-reassign-connection-event-data.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/index.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/reassign-connection-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/i-reassign-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/index.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-source-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-target-handler.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/is-pointer-inside-start-or-end-drag-handles.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/reassign-connection-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.mjs +1 -1
- package/esm2022/f-draggable/domain/detect-connections-under-drag-node/detect-connections-under-drag-node-request.mjs +1 -1
- package/esm2022/f-draggable/domain/detect-connections-under-drag-node/detect-connections-under-drag-node.mjs +1 -1
- package/esm2022/f-draggable/domain/detect-connections-under-drag-node/f-node-intersected-with-connections-event.mjs +1 -1
- package/esm2022/f-draggable/domain/detect-connections-under-drag-node/index.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/emit-end-drag-sequence-event-request.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/emit-end-drag-sequence-event.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/index.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-selection-change-event/emit-selection-change-event-request.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-selection-change-event/emit-selection-change-event.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-selection-change-event/index.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/emit-start-drag-sequence-event-request.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/emit-start-drag-sequence-event.mjs +1 -1
- package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/index.mjs +1 -1
- package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect-request.mjs +1 -1
- package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.mjs +1 -1
- package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/index.mjs +1 -1
- package/esm2022/f-draggable/domain/i-node-with-rect.mjs +1 -1
- package/esm2022/f-draggable/domain/index.mjs +1 -1
- package/esm2022/f-draggable/domain/is-array-has-parent-node/index.mjs +1 -1
- package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node-request.mjs +1 -1
- package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.mjs +1 -1
- package/esm2022/f-draggable/domain/providers.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/drag-canvas-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/drag-canvas-finalize.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-handler/drag-canvas-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/drag-canvas-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/drag-canvas-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/index.mjs +1 -1
- package/esm2022/f-draggable/drag-canvas/providers.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/constraints/external-rect-constraint.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/constraints/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/drag-external-item-create-placeholder-request.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/drag-external-item-create-placeholder.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/drag-external-item-create-preview-request.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/drag-external-item-create-preview.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/drag-external-item-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/drag-external-item-finalize.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-handler/drag-external-item-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/drag-external-item-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/drag-external-item-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/f-create-node-event.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/f-drag-external-item-start-event-data.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/i-drag-external-item-drag-result.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/is-drag-external-item-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/index.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/prevent-default-is-external-item-request.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/prevent-default-is-external-item.mjs +1 -1
- package/esm2022/f-draggable/drag-external-item/providers.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point-request.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/index.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/drag-minimap-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/drag-minimap-finalize.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-handler/drag-minimap-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/drag-minimap-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/drag-minimap-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/index.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/is-drag-minimap-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-minimap/providers.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-drag-node-handler-from-selection-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-drag-node-handler-from-selection.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/attach-soft-parent-connection-drag-handlers-to-node-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/attach-soft-parent-connection-drag-handlers-to-node.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/attach-source-connection-drag-handlers-to-node-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/attach-source-connection-drag-handlers-to-node.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/attach-target-connection-drag-handlers-to-node-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/attach-target-connection-drag-handlers-to-node.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/build-drag-node-constraints-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/build-drag-node-constraints.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/create-drag-node-handler-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/create-drag-node-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/create-drag-node-hierarchy-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/create-drag-node-hierarchy.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/drag-node-hierarchy.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/providers.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings-response.mjs +1 -1
- package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/delta-clamp.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/drag-node-delta-constraints.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/expand-rect-by-overflow.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/grid-snapper.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/i-drag-node-delta-constraints-result.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/i-drag-node-delta-constraints.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-constraint/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-both-sides-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-handler-base.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-source-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-target-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-finalize/drag-node-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-finalize/drag-node-finalize.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-handler/drag-node-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-handler/drag-node-item-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-handler/i-soft-parent-connection-handlers.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-preparation/drag-node-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-preparation/drag-node-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-node/drag-node-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/f-drag-node-start-event-data.mjs +1 -1
- package/esm2022/f-draggable/drag-node/f-move-nodes-event.mjs +1 -1
- package/esm2022/f-draggable/drag-node/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/is-drag-node-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/calculate-magnetic-guides.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/i-magnetic-axis-guide.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/i-magnetic-guides-result.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/magnetic-line-element.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/domain/magnetic-line-renderer.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-handler/magnetic-lines-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/magnetic-lines-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/magnetic-lines-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/calculate-magnetic-rects.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/i-magnetic-gap-rect.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/i-magnetic-rects-result.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/magnetic-rect-element.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/domain/magnetic-rects-renderer.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-handler/magnetic-rects-handler.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/magnetic-rects-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/magnetic-rects-preparation.mjs +1 -1
- package/esm2022/f-draggable/drag-node/providers.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/drop-to-group-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/drop-to-group-finalize.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-handler/drop-to-group-handler.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-handler/index.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/drop-to-group-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/drop-to-group-preparation.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/f-drop-to-group-event.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/index.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/providers.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/index.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/sort-drop-candidates-by-layer-request.mjs +1 -1
- package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/sort-drop-candidates-by-layer.mjs +1 -1
- package/esm2022/f-draggable/f-drag-blocker.directive.mjs +1 -1
- package/esm2022/f-draggable/f-drag-started-event.mjs +1 -1
- package/esm2022/f-draggable/f-draggable-base.mjs +1 -1
- package/esm2022/f-draggable/f-draggable-data-context.mjs +1 -1
- package/esm2022/f-draggable/f-draggable.directive.mjs +1 -1
- package/esm2022/f-draggable/f-selection-change-event.mjs +1 -1
- package/esm2022/f-draggable/index.mjs +1 -1
- package/esm2022/f-draggable/infrastructure/drag-handler-base.mjs +1 -1
- package/esm2022/f-draggable/infrastructure/drag-handler-injector.mjs +1 -1
- package/esm2022/f-draggable/infrastructure/f-drag-handler-result.mjs +1 -1
- package/esm2022/f-draggable/infrastructure/i-drag-session-feature.mjs +1 -1
- package/esm2022/f-draggable/infrastructure/index.mjs +1 -1
- package/esm2022/f-draggable/is-drag-blocker.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/handler/index.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/handler/pinch-to-zoom-handler.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/index.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/pinch-to-zoom-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/pinch-to-zoom-finalize.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/pinch-to-zoom-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/pinch-to-zoom-preparation.mjs +1 -1
- package/esm2022/f-draggable/pinch-to-zoom/providers.mjs +1 -1
- package/esm2022/f-draggable/providers.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/apply-child-resize-constraints-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/apply-child-resize-constraints.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/apply-parent-resize-constraints-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/apply-parent-resize-constraints.mjs +1 -1
- package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/calculate-changed-rect-from-difference-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/calculate-changed-rect-from-difference.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/calculate-direct-children-union-rect-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/calculate-direct-children-union-rect.mjs +2 -2
- package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-resize-limits/calculate-resize-limits-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-resize-limits/calculate-resize-limits.mjs +1 -1
- package/esm2022/f-draggable/resize-node/calculate-resize-limits/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/i-resize-constraint.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/i-resize-limit.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/i-resize-limits.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/i-resize-overflow.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/constraint/resize-direction.mjs +1 -1
- package/esm2022/f-draggable/resize-node/f-resize-node-start-event-data.mjs +1 -1
- package/esm2022/f-draggable/resize-node/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/is-resize-node-handler.mjs +1 -1
- package/esm2022/f-draggable/resize-node/providers.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-finalize/resize-node-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-finalize/resize-node-finalize.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/i-resize-node-connection-handlers.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-both-sides-handler.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-handler-base.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-source-handler.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-target-handler.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-handler.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/attach-resize-connection-drag-handlers-to-node-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/attach-resize-connection-drag-handlers-to-node.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/resize-node-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/resize-node/resize-preparation/resize-node-preparation.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/calculate-difference-after-rotation.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/f-rotate-node-start-event-data.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/index.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/is-rotate-node-handler.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/providers.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-finalize/rotate-node-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-finalize/rotate-node-finalize.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-handler/index.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-handler/rotate-node-handler.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-preparation/rotate-node-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/rotate-node/rotate-node-preparation/rotate-node-preparation.mjs +1 -1
- package/esm2022/f-draggable/select-by-pointer/index.mjs +1 -1
- package/esm2022/f-draggable/select-by-pointer/providers.mjs +1 -1
- package/esm2022/f-draggable/select-by-pointer/select-by-pointer-request.mjs +1 -1
- package/esm2022/f-draggable/select-by-pointer/select-by-pointer.mjs +1 -1
- package/esm2022/f-draggable/selection-area/index.mjs +1 -1
- package/esm2022/f-draggable/selection-area/providers.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-finalize/index.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize-request.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-handler/index.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-handler/selection-area-handler.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-preparation/index.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation-request.mjs +1 -1
- package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.mjs +1 -1
- package/esm2022/f-external-item/f-external-item-base.mjs +1 -1
- package/esm2022/f-external-item/f-external-item-placeholder.mjs +1 -1
- package/esm2022/f-external-item/f-external-item-preview.mjs +1 -1
- package/esm2022/f-external-item/f-external-item.mjs +1 -1
- package/esm2022/f-external-item/f-external-item.service.mjs +1 -1
- package/esm2022/f-external-item/index.mjs +1 -1
- package/esm2022/f-external-item/is-external-item.mjs +1 -1
- package/esm2022/f-external-item/providers.mjs +1 -1
- package/esm2022/f-flow/f-flow-base.mjs +1 -1
- package/esm2022/f-flow/f-flow.component.mjs +21 -23
- package/esm2022/f-flow/index.mjs +1 -1
- package/esm2022/f-flow/providers.mjs +1 -1
- package/esm2022/f-flow.module.mjs +8 -6
- package/esm2022/f-layout/enums/e-f-layout-direction.mjs +8 -0
- package/esm2022/f-layout/enums/e-f-layout-mode.mjs +6 -0
- package/esm2022/f-layout/enums/index.mjs +3 -0
- package/esm2022/f-layout/f-layout-engine.mjs +53 -0
- package/esm2022/f-layout/flow-integration/f-layout-controller.mjs +226 -0
- package/esm2022/f-layout/flow-integration/index.mjs +3 -0
- package/esm2022/f-layout/flow-integration/normalize-flow-layout-data.mjs +35 -0
- package/esm2022/f-layout/index.mjs +6 -0
- package/esm2022/f-layout/models/i-f-layout-algorithm-options.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-calculation-options.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-connection.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-graph.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-node-position.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-node.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-options.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-provider-config.mjs +3 -0
- package/esm2022/f-layout/models/i-f-layout-result.mjs +2 -0
- package/esm2022/f-layout/models/i-f-layout-writeback-payload.mjs +2 -0
- package/esm2022/f-layout/models/index.mjs +12 -0
- package/esm2022/f-layout/models/merge-layout-nodes.mjs +14 -0
- package/esm2022/f-layout/providers.mjs +18 -0
- package/esm2022/f-line-alignment/f-line-alignment.component.mjs +1 -1
- package/esm2022/f-line-alignment/index.mjs +1 -1
- package/esm2022/f-line-alignment/providers.mjs +1 -1
- package/esm2022/f-magnetic-lines/f-magnetic-lines-base.mjs +1 -1
- package/esm2022/f-magnetic-lines/f-magnetic-lines.mjs +1 -1
- package/esm2022/f-magnetic-lines/index.mjs +1 -1
- package/esm2022/f-magnetic-lines/providers.mjs +1 -1
- package/esm2022/f-magnetic-rects/f-magnetic-rects-base.mjs +1 -1
- package/esm2022/f-magnetic-rects/f-magnetic-rects.mjs +1 -1
- package/esm2022/f-magnetic-rects/index.mjs +1 -1
- package/esm2022/f-magnetic-rects/providers.mjs +1 -1
- package/esm2022/f-minimap/f-minimap-base.mjs +1 -1
- package/esm2022/f-minimap/f-minimap-canvas.directive.mjs +1 -1
- package/esm2022/f-minimap/f-minimap-flow.directive.mjs +1 -1
- package/esm2022/f-minimap/f-minimap-view.directive.mjs +1 -1
- package/esm2022/f-minimap/f-minimap.component.mjs +1 -1
- package/esm2022/f-minimap/index.mjs +1 -1
- package/esm2022/f-minimap/providers.mjs +1 -1
- package/esm2022/f-node/f-drag-handle.directive.mjs +1 -1
- package/esm2022/f-node/f-group.directive.mjs +1 -1
- package/esm2022/f-node/f-node-base.mjs +1 -1
- package/esm2022/f-node/f-node.directive.mjs +1 -1
- package/esm2022/f-node/f-resize-handle/e-f-resize-handle-type.mjs +1 -1
- package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +1 -1
- package/esm2022/f-node/f-resize-handle/index.mjs +1 -1
- package/esm2022/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +1 -1
- package/esm2022/f-node/f-rotate-handle/index.mjs +1 -1
- package/esm2022/f-node/f-rotate-handle/is-rotate-handle.mjs +1 -1
- package/esm2022/f-node/index.mjs +1 -1
- package/esm2022/f-node/is-node.mjs +1 -1
- package/esm2022/f-node/providers.mjs +1 -1
- package/esm2022/f-selection-area/f-selection-area-base.mjs +1 -1
- package/esm2022/f-selection-area/f-selection-area.mjs +1 -1
- package/esm2022/f-selection-area/index.mjs +1 -1
- package/esm2022/f-selection-area/providers.mjs +1 -1
- package/esm2022/f-storage/base/f-id-registry-base.mjs +1 -1
- package/esm2022/f-storage/base/f-single-registry-base.mjs +1 -1
- package/esm2022/f-storage/base/index.mjs +1 -1
- package/esm2022/f-storage/f-components-store.mjs +36 -1
- package/esm2022/f-storage/f-connection-marker-registry.mjs +1 -1
- package/esm2022/f-storage/f-connection-registry.mjs +1 -1
- package/esm2022/f-storage/f-connector-registry.mjs +1 -1
- package/esm2022/f-storage/f-node-registry.mjs +1 -1
- package/esm2022/f-storage/features/emit-connections-changes/emit-connections-changes-request.mjs +1 -1
- package/esm2022/f-storage/features/emit-connections-changes/emit-connections-changes.mjs +1 -1
- package/esm2022/f-storage/features/emit-connections-changes/index.mjs +1 -1
- package/esm2022/f-storage/features/index.mjs +1 -1
- package/esm2022/f-storage/features/listen-connections-changes/index.mjs +1 -1
- package/esm2022/f-storage/features/listen-connections-changes/listen-connections-changes-request.mjs +1 -1
- package/esm2022/f-storage/features/listen-connections-changes/listen-connections-changes.mjs +1 -1
- package/esm2022/f-storage/features/listen-nodes-changes/index.mjs +1 -1
- package/esm2022/f-storage/features/listen-nodes-changes/listen-nodes-changes-request.mjs +1 -1
- package/esm2022/f-storage/features/listen-nodes-changes/listen-nodes-changes.mjs +1 -1
- package/esm2022/f-storage/features/listen-transform-changes/index.mjs +1 -1
- package/esm2022/f-storage/features/listen-transform-changes/listen-transform-changes-request.mjs +1 -1
- package/esm2022/f-storage/features/listen-transform-changes/listen-transform-changes.mjs +1 -1
- package/esm2022/f-storage/features/notify-transform-changed/index.mjs +1 -1
- package/esm2022/f-storage/features/notify-transform-changed/notify-transform-changed-request.mjs +1 -1
- package/esm2022/f-storage/features/notify-transform-changed/notify-transform-changed.mjs +1 -1
- package/esm2022/f-storage/features/register-plugin-instance/index.mjs +1 -1
- package/esm2022/f-storage/features/register-plugin-instance/register-plugin-instance-request.mjs +1 -1
- package/esm2022/f-storage/features/register-plugin-instance/register-plugin-instance.mjs +1 -1
- package/esm2022/f-storage/features/remove-plugin-instance/index.mjs +1 -1
- package/esm2022/f-storage/features/remove-plugin-instance/remove-plugin-instance-request.mjs +1 -1
- package/esm2022/f-storage/features/remove-plugin-instance/remove-plugin-instance.mjs +1 -1
- package/esm2022/f-storage/index.mjs +1 -1
- package/esm2022/f-storage/providers.mjs +1 -1
- package/esm2022/f-virtual/f-virtual-for.mjs +1 -1
- package/esm2022/f-virtual/index.mjs +1 -1
- package/esm2022/f-virtual/providers.mjs +1 -1
- package/esm2022/f-zoom/e-f-zoom-direction.mjs +1 -1
- package/esm2022/f-zoom/f-zoom-base.mjs +1 -1
- package/esm2022/f-zoom/f-zoom.directive.mjs +1 -1
- package/esm2022/f-zoom/index.mjs +1 -1
- package/esm2022/f-zoom/providers.mjs +1 -1
- package/esm2022/f-zoom/wheel-zoom.utils.mjs +1 -1
- package/esm2022/foblex-flow.mjs +1 -1
- package/esm2022/i-has-host-element.mjs +1 -1
- package/esm2022/mixins/change-selection/change-selection.mjs +1 -1
- package/esm2022/mixins/change-selection/i-selectable.mjs +1 -1
- package/esm2022/mixins/change-selection/index.mjs +1 -1
- package/esm2022/mixins/change-visibility/change-visibility.mjs +1 -1
- package/esm2022/mixins/change-visibility/i-can-change-visibility.mjs +1 -1
- package/esm2022/mixins/change-visibility/index.mjs +1 -1
- package/esm2022/mixins/constructor.mjs +1 -1
- package/esm2022/mixins/index.mjs +1 -1
- package/esm2022/public-api.mjs +2 -3
- package/esm2022/reactivity/after-next-paint.mjs +1 -1
- package/esm2022/reactivity/debounce-animation-frame.mjs +1 -1
- package/esm2022/reactivity/debounce-microtask.mjs +1 -1
- package/esm2022/reactivity/debounce-time.mjs +1 -1
- package/esm2022/reactivity/f-channel-hub.mjs +1 -1
- package/esm2022/reactivity/f-channel.mjs +1 -1
- package/esm2022/reactivity/f-resize-channel.mjs +1 -1
- package/esm2022/reactivity/index.mjs +1 -1
- package/esm2022/reactivity/notify-on-start.mjs +1 -1
- package/esm2022/reactivity/take-one.mjs +1 -1
- package/esm2022/reactivity/types.mjs +1 -1
- package/esm2022/utils/calculate-pointer-in-flow.mjs +1 -1
- package/esm2022/utils/index.mjs +1 -1
- package/esm2022/utils/infinity-min-max.mjs +1 -1
- package/esm2022/utils/string-attribute.mjs +1 -1
- package/f-connection/f-connection/f-connection.component.d.ts +1 -1
- package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +1 -1
- package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +1 -1
- package/f-connection/providers.d.ts +2 -2
- package/f-connection-v2/components/connection-marker/enums/e-f-marker-type.d.ts +3 -1
- package/f-connection-v2/components/connection-marker/f-connection-marker.d.ts +4 -1
- package/f-connection-v2/components/connection-marker/index.d.ts +2 -0
- package/f-connection-v2/components/connection-marker/models/f-connection-marker-base.d.ts +4 -2
- package/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-arrow.d.ts +17 -0
- package/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-circle.d.ts +17 -0
- package/f-connection-v2/components/connection-marker/shape-markers/index.d.ts +2 -0
- package/f-connection-v2/components/connection-marker/utils/coerce-marker-type.d.ts +2 -0
- package/f-connection-v2/components/connection-marker/utils/index.d.ts +1 -0
- package/f-connection-v2/components/f-connection-base.d.ts +3 -1
- package/f-flow/f-flow-base.d.ts +8 -0
- package/f-flow/f-flow.component.d.ts +8 -6
- package/f-flow.module.d.ts +8 -6
- package/f-layout/enums/e-f-layout-direction.d.ts +6 -0
- package/f-layout/enums/e-f-layout-mode.d.ts +4 -0
- package/f-layout/enums/index.d.ts +2 -0
- package/f-layout/f-layout-engine.d.ts +28 -0
- package/f-layout/flow-integration/f-layout-controller.d.ts +30 -0
- package/f-layout/flow-integration/index.d.ts +2 -0
- package/f-layout/flow-integration/normalize-flow-layout-data.d.ts +7 -0
- package/f-layout/index.d.ts +5 -0
- package/f-layout/models/i-f-layout-algorithm-options.d.ts +3 -0
- package/f-layout/models/i-f-layout-calculation-options.d.ts +6 -0
- package/f-layout/models/i-f-layout-connection.d.ts +4 -0
- package/f-layout/models/i-f-layout-graph.d.ts +6 -0
- package/f-layout/models/i-f-layout-node-position.d.ts +5 -0
- package/f-layout/models/i-f-layout-node.d.ts +5 -0
- package/f-layout/models/i-f-layout-options.d.ts +9 -0
- package/f-layout/models/i-f-layout-provider-config.d.ts +10 -0
- package/f-layout/models/i-f-layout-result.d.ts +4 -0
- package/f-layout/models/i-f-layout-writeback-payload.d.ts +7 -0
- package/f-layout/models/index.d.ts +11 -0
- package/f-layout/models/merge-layout-nodes.d.ts +4 -0
- package/f-layout/providers.d.ts +4 -0
- package/f-storage/f-components-store.d.ts +11 -0
- package/fesm2022/foblex-flow.mjs +2419 -1834
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -2
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-update/index.js.map +1 -1
- package/schematics/shared/foblex-dependencies.js.map +1 -1
- package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect-request.mjs +0 -10
- package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect.mjs +0 -31
- package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item-request.mjs +0 -10
- package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item.mjs +0 -57
- package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker-request.mjs +0 -10
- package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker.mjs +0 -41
- package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/connection-worker-run/connection-worker-run-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/connection-worker-run/connection-worker-run.mjs +0 -59
- package/esm2022/f-connection-worker/features/connection-worker-run/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/disable-connection-worker/disable-connection-worker-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/disable-connection-worker/disable-connection-worker.mjs +0 -25
- package/esm2022/f-connection-worker/features/disable-connection-worker/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/ensure-connection-worker/ensure-connection-worker-request.mjs +0 -4
- package/esm2022/f-connection-worker/features/ensure-connection-worker/ensure-connection-worker.mjs +0 -68
- package/esm2022/f-connection-worker/features/ensure-connection-worker/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message.mjs +0 -34
- package/esm2022/f-connection-worker/features/handle-connection-worker-message/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/index.mjs +0 -13
- package/esm2022/f-connection-worker/features/is-connection-worker-enabled/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/is-connection-worker-enabled/is-connection-worker-enabled-request.mjs +0 -4
- package/esm2022/f-connection-worker/features/is-connection-worker-enabled/is-connection-worker-enabled.mjs +0 -35
- package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/reset-connection-worker-runtime-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/reset-connection-worker-runtime.mjs +0 -22
- package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors.mjs +0 -27
- package/esm2022/f-connection-worker/features/resolve-connection-worker-context/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context-request.mjs +0 -10
- package/esm2022/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context.mjs +0 -36
- package/esm2022/f-connection-worker/features/should-use-connection-worker/index.mjs +0 -3
- package/esm2022/f-connection-worker/features/should-use-connection-worker/should-use-connection-worker-request.mjs +0 -8
- package/esm2022/f-connection-worker/features/should-use-connection-worker/should-use-connection-worker.mjs +0 -22
- package/esm2022/f-connection-worker/index.mjs +0 -4
- package/esm2022/f-connection-worker/model/f-connection-worker.mjs +0 -27
- package/esm2022/f-connection-worker/model/i-f-connection-worker-rect.mjs +0 -2
- package/esm2022/f-connection-worker/model/i-f-connection-worker-request-item.mjs +0 -2
- package/esm2022/f-connection-worker/model/i-f-connection-worker-response.mjs +0 -2
- package/esm2022/f-connection-worker/model/i-f-connection-worker-result-item.mjs +0 -2
- package/esm2022/f-connection-worker/model/index.mjs +0 -7
- package/esm2022/f-connection-worker/model/t-f-connection-worker-pending-request.mjs +0 -2
- package/esm2022/f-connection-worker/providers.mjs +0 -18
- package/esm2022/f-connection-worker/worker/connection-worker-runtime.mjs +0 -247
- package/esm2022/testing/component-harness.mjs +0 -16
- package/esm2022/testing/di-harness.mjs +0 -32
- package/esm2022/testing/factories.mjs +0 -367
- package/esm2022/testing/index.mjs +0 -8
- package/esm2022/testing/internal/index.mjs +0 -2
- package/esm2022/testing/internal/type-helpers.mjs +0 -28
- package/esm2022/testing/jasmine/index.mjs +0 -2
- package/esm2022/testing/jasmine/spy-helpers.mjs +0 -14
- package/esm2022/testing/mediator-harness.mjs +0 -14
- package/esm2022/testing/pure-harness.mjs +0 -25
- package/esm2022/testing/registry-harness.mjs +0 -23
- package/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect-request.d.ts +0 -8
- package/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect.d.ts +0 -12
- package/f-connection-worker/features/calculate-connection-worker-connector-rect/index.d.ts +0 -2
- package/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item-request.d.ts +0 -8
- package/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item.d.ts +0 -11
- package/f-connection-worker/features/calculate-connection-worker-payload-item/index.d.ts +0 -2
- package/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker-request.d.ts +0 -8
- package/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker.d.ts +0 -12
- package/f-connection-worker/features/calculate-connections-using-connection-worker/index.d.ts +0 -2
- package/f-connection-worker/features/connection-worker-run/connection-worker-run-request.d.ts +0 -6
- package/f-connection-worker/features/connection-worker-run/connection-worker-run.d.ts +0 -12
- package/f-connection-worker/features/connection-worker-run/index.d.ts +0 -2
- package/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message-request.d.ts +0 -6
- package/f-connection-worker/features/index.d.ts +0 -12
- package/f-connection-worker/features/resolve-connection-worker-connectors/index.d.ts +0 -2
- package/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors-request.d.ts +0 -11
- package/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors.d.ts +0 -9
- package/f-connection-worker/features/resolve-connection-worker-context/index.d.ts +0 -2
- package/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context-request.d.ts +0 -13
- package/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context.d.ts +0 -10
- package/f-connection-worker/index.d.ts +0 -3
- package/f-connection-worker/model/f-connection-worker.d.ts +0 -13
- package/f-connection-worker/model/i-f-connection-worker-request-item.d.ts +0 -13
- package/f-connection-worker/model/i-f-connection-worker-response.d.ts +0 -6
- package/f-connection-worker/model/index.d.ts +0 -6
- package/f-connection-worker/model/t-f-connection-worker-pending-request.d.ts +0 -5
- package/f-connection-worker/providers.d.ts +0 -3
- package/testing/component-harness.d.ts +0 -9
- package/testing/di-harness.d.ts +0 -10
- package/testing/factories.d.ts +0 -104
- package/testing/index.d.ts +0 -7
- package/testing/internal/index.d.ts +0 -1
- package/testing/internal/type-helpers.d.ts +0 -12
- package/testing/jasmine/index.d.ts +0 -1
- package/testing/jasmine/spy-helpers.d.ts +0 -11
- package/testing/mediator-harness.d.ts +0 -7
- package/testing/pure-harness.d.ts +0 -12
- package/testing/registry-harness.d.ts +0 -6
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/disable-connection-worker.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/ensure-connection-worker-request.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/ensure-connection-worker.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/handle-connection-worker-message/handle-connection-worker-message.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/handle-connection-worker-message/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/is-connection-worker-enabled-request.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/is-connection-worker-enabled.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/reset-connection-worker-runtime.d.ts +0 -0
- /package/{f-connection-worker/worker → domain/f-connection/redraw-connections/worker/runtime}/connection-worker-runtime.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/index.d.ts +0 -0
- /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/should-use-connection-worker.d.ts +0 -0
|
@@ -2,9 +2,8 @@ import { afterNextRender, ChangeDetectionStrategy, Component, computed, effect,
|
|
|
2
2
|
import { F_CANVAS, FCanvasBase } from './f-canvas-base';
|
|
3
3
|
import { PointExtensions, TransformModelExtensions } from '@foblex/2d';
|
|
4
4
|
import { FMediator } from '@foblex/mediator';
|
|
5
|
-
import { AddCanvasToStoreRequest, CenterGroupOrNodeRequest, FitToFlowRequest, GetFlowRequest, InputCanvasPositionRequest, InputCanvasScaleRequest, isMobile, RemoveCanvasFromStoreRequest, ResetScaleAndCenterRequest, ResetScaleRequest, SetBackgroundTransformRequest, transitionEnd, UpdateScaleRequest, } from '../domain';
|
|
6
|
-
import { FComponentsStore,
|
|
7
|
-
import { takeOne } from '../reactivity';
|
|
5
|
+
import { AddCanvasToStoreRequest, CenterGroupOrNodeRequest, FitToFlowRequest, GetFlowRequest, InputCanvasPositionRequest, InputCanvasScaleRequest, isMobile, RemoveCanvasFromStoreRequest, ResetScaleAndCenterRequest, ResetScaleRequest, SetBackgroundTransformRequest, transitionEnd, UpdateScaleRequest, WaitForConnectionsRenderedRequest, } from '../domain';
|
|
6
|
+
import { FComponentsStore, NotifyTransformChangedRequest } from '../f-storage';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
/**
|
|
10
9
|
* Component representing a canvas in the F-Flow framework.
|
|
@@ -131,14 +130,7 @@ export class FCanvasComponent extends FCanvasBase {
|
|
|
131
130
|
this._mediator.execute(new RemoveCanvasFromStoreRequest());
|
|
132
131
|
}
|
|
133
132
|
_afterRedraw(callback) {
|
|
134
|
-
|
|
135
|
-
afterNextRender(callback, { injector: this._injector });
|
|
136
|
-
return;
|
|
137
|
-
}
|
|
138
|
-
this._mediator
|
|
139
|
-
.execute(new ListenConnectionsChangesRequest(false))
|
|
140
|
-
.pipe(takeOne())
|
|
141
|
-
.listen(this.destroyRef, callback);
|
|
133
|
+
this._mediator.execute(new WaitForConnectionsRenderedRequest(this._componentsStore.connectionsRevision, this._componentsStore.nodesRevision, () => afterNextRender(callback, { injector: this._injector }), this.destroyRef));
|
|
142
134
|
}
|
|
143
135
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FCanvasComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
144
136
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.13", type: FCanvasComponent, isStandalone: true, selector: "f-canvas", inputs: { position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null }, scale: { classPropertyName: "scale", publicName: "scale", isSignal: true, isRequired: false, transformFunction: null }, debounceTime: { classPropertyName: "debounceTime", publicName: "debounceTime", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { fCanvasChange: "fCanvasChange" }, host: { classAttribute: "f-component f-canvas" }, providers: [{ provide: F_CANVAS, useExisting: FCanvasComponent }], viewQueries: [{ propertyName: "fGroupsContainer", first: true, predicate: ["fGroupsContainer"], descendants: true, isSignal: true }, { propertyName: "fNodesContainer", first: true, predicate: ["fNodesContainer"], descendants: true, isSignal: true }, { propertyName: "fConnectionsContainer", first: true, predicate: ["fConnectionsContainer"], descendants: true, isSignal: true }], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <div #fGroupsContainer>\n <ng-content select=\"[fGroup], [fGroups]\" />\n </div>\n <div #fConnectionsContainer class=\"f-connections-container\">\n <ng-content select=\"f-snap-connection\" />\n <ng-content select=\"f-connection, [fConnections]\" />\n <ng-content select=\"f-connection-for-create\" />\n </div>\n\n <div #fNodesContainer>\n <ng-content select=\"[fNode], [fNodes]\" />\n </div>\n</ng-container>\n", styles: [":host{position:absolute;overflow:visible;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host.f-canvas-dragging,:host.canvas-dragging{transform:translateZ(0)}.f-connections-container{position:absolute;z-index:2}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
@@ -149,4 +141,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
149
141
|
'class': 'f-component f-canvas',
|
|
150
142
|
}, providers: [{ provide: F_CANVAS, useExisting: FCanvasComponent }], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container>\n <div #fGroupsContainer>\n <ng-content select=\"[fGroup], [fGroups]\" />\n </div>\n <div #fConnectionsContainer class=\"f-connections-container\">\n <ng-content select=\"f-snap-connection\" />\n <ng-content select=\"f-connection, [fConnections]\" />\n <ng-content select=\"f-connection-for-create\" />\n </div>\n\n <div #fNodesContainer>\n <ng-content select=\"[fNode], [fNodes]\" />\n </div>\n</ng-container>\n", styles: [":host{position:absolute;overflow:visible;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host.f-canvas-dragging,:host.canvas-dragging{transform:translateZ(0)}.f-connections-container{position:absolute;z-index:2}\n"] }]
|
|
151
143
|
}] });
|
|
152
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9mLWNhbnZhcy9mLWNhbnZhcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2YtY2FudmFzL2YtY2FudmFzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxlQUFlLEVBQ2YsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxRQUFRLEVBQ1IsTUFBTSxFQUNOLFVBQVUsRUFDVixNQUFNLEVBQ04sUUFBUSxFQUNSLEtBQUssRUFDTCxlQUFlLEVBR2YsTUFBTSxFQUNOLFNBQVMsR0FDVixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQ3hELE9BQU8sRUFBVSxlQUFlLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFFL0UsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQzdDLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsd0JBQXdCLEVBQ3hCLGdCQUFnQixFQUNoQixjQUFjLEVBQ2QsMEJBQTBCLEVBQzFCLHVCQUF1QixFQUN2QixRQUFRLEVBQ1IsNEJBQTRCLEVBQzVCLDBCQUEwQixFQUMxQixpQkFBaUIsRUFDakIsNkJBQTZCLEVBQzdCLGFBQWEsRUFDYixrQkFBa0IsR0FDbkIsTUFBTSxXQUFXLENBQUM7QUFDbkIsT0FBTyxFQUNMLGdCQUFnQixFQUNoQiwrQkFBK0IsRUFDL0IsNkJBQTZCLEdBQzlCLE1BQU0sY0FBYyxDQUFDO0FBRXRCLE9BQU8sRUFBZSxPQUFPLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRXJEOzs7Ozs7OztHQVFHO0FBWUgsTUFBTSxPQUFPLGdCQUFpQixTQUFRLFdBQVc7SUFDOUIsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM5QixnQkFBZ0IsR0FBRyxNQUFNLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztJQUM1QyxpQkFBaUIsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDLENBQUM7SUFDdkMsU0FBUyxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUV0QyxPQUFPLENBQXFCO0lBRXBCLGFBQWEsR0FBRyxNQUFNLEVBQXNCLENBQUM7SUFFN0MsUUFBUSxHQUFHLEtBQUssQ0FDOUIsZUFBZSxDQUFDLFVBQVUsRUFBRSxFQUM1QixFQUFFLFNBQVMsRUFBRSxlQUFlLENBQUMsV0FBVyxFQUFFLENBQzNDLENBQUM7SUFDYyxLQUFLLEdBQUcsS0FBSyxDQUFrQixDQUFDLEVBQUUsRUFBRSxTQUFTLEVBQUUsZUFBZSxFQUFFLENBQUMsQ0FBQztJQUNsRSxZQUFZLEdBQUcsS0FBSyxDQUFrQixDQUFDLEVBQUUsRUFBRSxTQUFTLEVBQUUsZUFBZSxFQUFFLENBQUMsQ0FBQztJQUN6RSxRQUFRLEdBQUcsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBRS9GLElBQW9CLFdBQVc7UUFDN0IsT0FBTyxJQUFJLENBQUMsaUJBQWlCLENBQUMsYUFBYSxDQUFDO0lBQzlDLENBQUM7SUFFZSxnQkFBZ0IsR0FDOUIsU0FBUyxDQUFDLFFBQVEsQ0FBMEIsa0JBQWtCLENBQUMsQ0FBQztJQUNsRCxlQUFlLEdBQUcsU0FBUyxDQUFDLFFBQVEsQ0FBMEIsaUJBQWlCLENBQUMsQ0FBQztJQUNqRixxQkFBcUIsR0FDbkMsU0FBUyxDQUFDLFFBQVEsQ0FBMEIsdUJBQXVCLENBQUMsQ0FBQztJQUV2RSxJQUFXLE1BQU07UUFDZixPQUFPLElBQUksQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFTSxRQUFRO1FBQ2IsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBWSxJQUFJLGNBQWMsRUFBRSxDQUFDLENBQUMsR0FBRyxFQUFFLENBQUM7UUFDN0UsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQzFELElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUN2QixJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7UUFDcEIsS0FBSyxDQUFDLHVCQUF1QixFQUFFLENBQUM7SUFDbEMsQ0FBQztJQUVPLGVBQWU7UUFDckIsTUFBTSxDQUNKLEdBQUcsRUFBRTtZQUNILElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksMEJBQTBCLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQzFGLENBQUMsRUFDRCxFQUFFLFFBQVEsRUFBRSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQzdCLENBQUM7SUFDSixDQUFDO0lBRU8sWUFBWTtRQUNsQixNQUFNLENBQ0osR0FBRyxFQUFFO1lBQ0gsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDcEYsQ0FBQyxFQUNELEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FDN0IsQ0FBQztJQUNKLENBQUM7SUFFRDs7T0FFRztJQUNhLE1BQU07UUFDcEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztRQUMxRSxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxjQUFjLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDcEQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsU0FBUyxHQUFHLHdCQUF3QixDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7UUFDckYsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsRUFBRSxDQUFDLENBQUM7SUFDOUQsQ0FBQztJQUVEOzs7O09BSUc7SUFDYSxtQkFBbUI7UUFDakMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztRQUMxRSxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxVQUFVLEdBQUcsYUFBYSxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxHQUFHLGdCQUFnQixDQUFDO1FBQ3ZGLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLFNBQVMsR0FBRyx3QkFBd0IsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBQ3JGLGFBQWEsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZELENBQUM7SUFFRDs7OztPQUlHO0lBQ0ksaUJBQWlCLENBQUMsYUFBcUIsRUFBRSxXQUFvQixJQUFJO1FBQ3RFLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFO1lBQ3JCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksd0JBQXdCLENBQUMsYUFBYSxFQUFFLFFBQVEsQ0FBQyxDQUFDLENBQUM7UUFDaEYsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7Ozs7T0FJRztJQUNJLFdBQVcsQ0FDaEIsVUFBa0IsZUFBZSxDQUFDLFVBQVUsRUFBRSxFQUM5QyxXQUFvQixJQUFJO1FBRXhCLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFO1lBQ3JCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksZ0JBQWdCLENBQUMsT0FBTyxFQUFFLFFBQVEsQ0FBQyxDQUFDLENBQUM7UUFDbEUsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7Ozs7OztPQU1HO0lBQ0ksbUJBQW1CLENBQUMsV0FBb0IsSUFBSTtRQUNqRCxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsRUFBRTtZQUNyQixJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJLDBCQUEwQixDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7UUFDbkUsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7O09BRUc7SUFDSSxRQUFRO1FBQ2IsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssSUFBSSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNhLFFBQVEsQ0FBQyxLQUFhLEVBQUUsYUFBcUIsZUFBZSxDQUFDLFVBQVUsRUFBRTtRQUN2RixJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJLGtCQUFrQixDQUFDLEtBQUssRUFBRSxVQUFVLENBQUMsQ0FBQyxDQUFDO0lBQ3BFLENBQUM7SUFFRDs7O09BR0c7SUFDYSxVQUFVO1FBQ3hCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksaUJBQWlCLEVBQUUsQ0FBQyxDQUFDO0lBQ2xELENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksNEJBQTRCLEVBQUUsQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFTyxZQUFZLENBQUMsUUFBb0I7UUFDdkMsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsbUJBQW1CLEdBQUcsQ0FBQyxFQUFFLENBQUM7WUFDbEQsZUFBZSxDQUFDLFFBQVEsRUFBRSxFQUFFLFFBQVEsRUFBRSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQztZQUV4RCxPQUFPO1FBQ1QsQ0FBQztRQUVELElBQUksQ0FBQyxTQUFTO2FBQ1gsT0FBTyxDQUFjLElBQUksK0JBQStCLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDaEUsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO2FBQ2YsTUFBTSxDQUFDLElBQUksQ0FBQyxVQUFVLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDdkMsQ0FBQzt3R0EvSlUsZ0JBQWdCOzRGQUFoQixnQkFBZ0Isd2lCQUhoQixDQUFDLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsQ0FBQyw2YUM1RG5FLGtjQWNBOzs0RkRpRGEsZ0JBQWdCO2tCQVg1QixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLFFBQ1Y7d0JBQ0osT0FBTyxFQUFFLHNCQUFzQjtxQkFDaEMsYUFDVSxDQUFDLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLGtCQUFrQixFQUFFLENBQUMsbUJBQ2hELHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBhZnRlck5leHRSZW5kZXIsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIGNvbXB1dGVkLFxuICBlZmZlY3QsXG4gIEVsZW1lbnRSZWYsXG4gIGluamVjdCxcbiAgSW5qZWN0b3IsXG4gIGlucHV0LFxuICBudW1iZXJBdHRyaWJ1dGUsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBvdXRwdXQsXG4gIHZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGX0NBTlZBUywgRkNhbnZhc0Jhc2UgfSBmcm9tICcuL2YtY2FudmFzLWJhc2UnO1xuaW1wb3J0IHsgSVBvaW50LCBQb2ludEV4dGVuc2lvbnMsIFRyYW5zZm9ybU1vZGVsRXh0ZW5zaW9ucyB9IGZyb20gJ0Bmb2JsZXgvMmQnO1xuaW1wb3J0IHsgRkNhbnZhc0NoYW5nZUV2ZW50IH0gZnJvbSAnLi9kb21haW4nO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQge1xuICBBZGRDYW52YXNUb1N0b3JlUmVxdWVzdCxcbiAgQ2VudGVyR3JvdXBPck5vZGVSZXF1ZXN0LFxuICBGaXRUb0Zsb3dSZXF1ZXN0LFxuICBHZXRGbG93UmVxdWVzdCxcbiAgSW5wdXRDYW52YXNQb3NpdGlvblJlcXVlc3QsXG4gIElucHV0Q2FudmFzU2NhbGVSZXF1ZXN0LFxuICBpc01vYmlsZSxcbiAgUmVtb3ZlQ2FudmFzRnJvbVN0b3JlUmVxdWVzdCxcbiAgUmVzZXRTY2FsZUFuZENlbnRlclJlcXVlc3QsXG4gIFJlc2V0U2NhbGVSZXF1ZXN0LFxuICBTZXRCYWNrZ3JvdW5kVHJhbnNmb3JtUmVxdWVzdCxcbiAgdHJhbnNpdGlvbkVuZCxcbiAgVXBkYXRlU2NhbGVSZXF1ZXN0LFxufSBmcm9tICcuLi9kb21haW4nO1xuaW1wb3J0IHtcbiAgRkNvbXBvbmVudHNTdG9yZSxcbiAgTGlzdGVuQ29ubmVjdGlvbnNDaGFuZ2VzUmVxdWVzdCxcbiAgTm90aWZ5VHJhbnNmb3JtQ2hhbmdlZFJlcXVlc3QsXG59IGZyb20gJy4uL2Ytc3RvcmFnZSc7XG5pbXBvcnQgeyBGRmxvd0Jhc2UgfSBmcm9tICcuLi9mLWZsb3cnO1xuaW1wb3J0IHsgRkNoYW5uZWxIdWIsIHRha2VPbmUgfSBmcm9tICcuLi9yZWFjdGl2aXR5JztcblxuLyoqXG4gKiBDb21wb25lbnQgcmVwcmVzZW50aW5nIGEgY2FudmFzIGluIHRoZSBGLUZsb3cgZnJhbWV3b3JrLlxuICogSXQgaGFuZGxlcyB0aGUgcmVuZGVyaW5nIG9mIG5vZGVzLCBjb25uZWN0aW9ucywgYW5kIGdyb3VwcyxcbiAqIGFzIHdlbGwgYXMgdXNlciBpbnRlcmFjdGlvbnMgc3VjaCBhcyB6b29taW5nIGFuZCBwYW5uaW5nLlxuICogSXQgZXh0ZW5kcyB0aGUgRkNhbnZhc0Jhc2UgY2xhc3MgYW5kIGltcGxlbWVudHMgT25Jbml0IGFuZCBPbkRlc3Ryb3kgbGlmZWN5Y2xlIGhvb2tzLlxuICogSXQgcHJvdmlkZXMgbWV0aG9kcyB0byBtYW5pcHVsYXRlIHRoZSBjYW52YXMsIHN1Y2ggYXMgY2VudGVyaW5nIG5vZGVzIG9yIGdyb3VwcyxcbiAqIGZpdHRpbmcgdGhlIGNhbnZhcyB0byB0aGUgc2NyZWVuLCBhbmQgcmVzZXR0aW5nIHRoZSBzY2FsZS5cbiAqIEl0IGFsc28gZW1pdHMgZXZlbnRzIHdoZW4gdGhlIGNhbnZhcyBjaGFuZ2VzLCBhbGxvd2luZyBvdGhlciBjb21wb25lbnRzIHRvIHJlYWN0IHRvIHRoZXNlIGNoYW5nZXMuXG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtY2FudmFzJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2YtY2FudmFzLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZi1jYW52YXMuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdmLWNvbXBvbmVudCBmLWNhbnZhcycsXG4gIH0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogRl9DQU5WQVMsIHVzZUV4aXN0aW5nOiBGQ2FudmFzQ29tcG9uZW50IH1dLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRkNhbnZhc0NvbXBvbmVudCBleHRlbmRzIEZDYW52YXNCYXNlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBwcml2YXRlIHJlYWRvbmx5IF9tZWRpYXRvciA9IGluamVjdChGTWVkaWF0b3IpO1xuICBwcml2YXRlIHJlYWRvbmx5IF9jb21wb25lbnRzU3RvcmUgPSBpbmplY3QoRkNvbXBvbmVudHNTdG9yZSk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2VsZW1lbnRSZWZlcmVuY2UgPSBpbmplY3QoRWxlbWVudFJlZik7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2luamVjdG9yID0gaW5qZWN0KEluamVjdG9yKTtcblxuICBwcml2YXRlIF9mbG93SWQ6IHN0cmluZyB8IHVuZGVmaW5lZDtcblxuICBwdWJsaWMgb3ZlcnJpZGUgZkNhbnZhc0NoYW5nZSA9IG91dHB1dDxGQ2FudmFzQ2hhbmdlRXZlbnQ+KCk7XG5cbiAgcHVibGljIHJlYWRvbmx5IHBvc2l0aW9uID0gaW5wdXQ8SVBvaW50LCBJUG9pbnQgfCBudWxsIHwgdW5kZWZpbmVkPihcbiAgICBQb2ludEV4dGVuc2lvbnMuaW5pdGlhbGl6ZSgpLFxuICAgIHsgdHJhbnNmb3JtOiBQb2ludEV4dGVuc2lvbnMuY2FzdFRvUG9pbnQgfSxcbiAgKTtcbiAgcHVibGljIHJlYWRvbmx5IHNjYWxlID0gaW5wdXQ8bnVtYmVyLCB1bmtub3duPigxLCB7IHRyYW5zZm9ybTogbnVtYmVyQXR0cmlidXRlIH0pO1xuICBwdWJsaWMgcmVhZG9ubHkgZGVib3VuY2VUaW1lID0gaW5wdXQ8bnVtYmVyLCB1bmtub3duPigwLCB7IHRyYW5zZm9ybTogbnVtYmVyQXR0cmlidXRlIH0pO1xuICBwdWJsaWMgb3ZlcnJpZGUgZGVib3VuY2UgPSBjb21wdXRlZCgoKSA9PiAodGhpcy5kZWJvdW5jZVRpbWUoKSA8IDAgPyAwIDogdGhpcy5kZWJvdW5jZVRpbWUoKSkpO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBnZXQgaG9zdEVsZW1lbnQoKTogSFRNTEVsZW1lbnQge1xuICAgIHJldHVybiB0aGlzLl9lbGVtZW50UmVmZXJlbmNlLm5hdGl2ZUVsZW1lbnQ7XG4gIH1cblxuICBwdWJsaWMgb3ZlcnJpZGUgZkdyb3Vwc0NvbnRhaW5lciA9XG4gICAgdmlld0NoaWxkLnJlcXVpcmVkPEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+PignZkdyb3Vwc0NvbnRhaW5lcicpO1xuICBwdWJsaWMgb3ZlcnJpZGUgZk5vZGVzQ29udGFpbmVyID0gdmlld0NoaWxkLnJlcXVpcmVkPEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+PignZk5vZGVzQ29udGFpbmVyJyk7XG4gIHB1YmxpYyBvdmVycmlkZSBmQ29ubmVjdGlvbnNDb250YWluZXIgPVxuICAgIHZpZXdDaGlsZC5yZXF1aXJlZDxFbGVtZW50UmVmPEhUTUxFbGVtZW50Pj4oJ2ZDb25uZWN0aW9uc0NvbnRhaW5lcicpO1xuXG4gIHB1YmxpYyBnZXQgZmxvd0lkKCk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuX2Zsb3dJZCB8fCAnJztcbiAgfVxuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9mbG93SWQgPSB0aGlzLl9tZWRpYXRvci5leGVjdXRlPEZGbG93QmFzZT4obmV3IEdldEZsb3dSZXF1ZXN0KCkpLmZJZCgpO1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IEFkZENhbnZhc1RvU3RvcmVSZXF1ZXN0KHRoaXMpKTtcbiAgICB0aGlzLl9wb3NpdGlvbkNoYW5nZSgpO1xuICAgIHRoaXMuX3NjYWxlQ2hhbmdlKCk7XG4gICAgc3VwZXIuc3Vic2NyaWJlT25DYW52YXNDaGFuZ2UoKTtcbiAgfVxuXG4gIHByaXZhdGUgX3Bvc2l0aW9uQ2hhbmdlKCk6IHZvaWQge1xuICAgIGVmZmVjdChcbiAgICAgICgpID0+IHtcbiAgICAgICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgSW5wdXRDYW52YXNQb3NpdGlvblJlcXVlc3QodGhpcy50cmFuc2Zvcm0sIHRoaXMucG9zaXRpb24oKSkpO1xuICAgICAgfSxcbiAgICAgIHsgaW5qZWN0b3I6IHRoaXMuX2luamVjdG9yIH0sXG4gICAgKTtcbiAgfVxuXG4gIHByaXZhdGUgX3NjYWxlQ2hhbmdlKCk6IHZvaWQge1xuICAgIGVmZmVjdChcbiAgICAgICgpID0+IHtcbiAgICAgICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgSW5wdXRDYW52YXNTY2FsZVJlcXVlc3QodGhpcy50cmFuc2Zvcm0sIHRoaXMuc2NhbGUoKSkpO1xuICAgICAgfSxcbiAgICAgIHsgaW5qZWN0b3I6IHRoaXMuX2luamVjdG9yIH0sXG4gICAgKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZWRyYXdzIHRoZSBjYW52YXMgYnkgYXBwbHlpbmcgdGhlIGN1cnJlbnQgdHJhbnNmb3JtYXRpb24uXG4gICAqL1xuICBwdWJsaWMgb3ZlcnJpZGUgcmVkcmF3KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFNldEJhY2tncm91bmRUcmFuc2Zvcm1SZXF1ZXN0KHRoaXMudHJhbnNmb3JtKSk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zdHlsZS5yZW1vdmVQcm9wZXJ0eSgndHJhbnNpdGlvbicpO1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc3R5bGUudHJhbnNmb3JtID0gVHJhbnNmb3JtTW9kZWxFeHRlbnNpb25zLnRvU3RyaW5nKHRoaXMudHJhbnNmb3JtKTtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBOb3RpZnlUcmFuc2Zvcm1DaGFuZ2VkUmVxdWVzdCgpKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZWRyYXdzIHRoZSBjYW52YXMgd2l0aCBhbiBhbmltYXRpb24gZWZmZWN0LlxuICAgKiBUaGlzIG1ldGhvZCBhcHBsaWVzIGEgQ1NTIHRyYW5zaXRpb24gdG8gdGhlIGNhbnZhcyBlbGVtZW50LFxuICAgKiBhbGxvd2luZyBmb3IgYSBzbW9vdGggdmlzdWFsIHVwZGF0ZSBvZiB0aGUgY2FudmFzJ3MgdHJhbnNmb3JtYXRpb24uXG4gICAqL1xuICBwdWJsaWMgb3ZlcnJpZGUgcmVkcmF3V2l0aEFuaW1hdGlvbigpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBTZXRCYWNrZ3JvdW5kVHJhbnNmb3JtUmVxdWVzdCh0aGlzLnRyYW5zZm9ybSkpO1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc3R5bGUudHJhbnNpdGlvbiA9IGB0cmFuc2Zvcm0gJHtpc01vYmlsZSgpID8gODAgOiAxNTB9bXMgZWFzZS1pbi1vdXRgO1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc3R5bGUudHJhbnNmb3JtID0gVHJhbnNmb3JtTW9kZWxFeHRlbnNpb25zLnRvU3RyaW5nKHRoaXMudHJhbnNmb3JtKTtcbiAgICB0cmFuc2l0aW9uRW5kKHRoaXMuaG9zdEVsZW1lbnQsICgpID0+IHRoaXMucmVkcmF3KCkpO1xuICB9XG5cbiAgLyoqXG4gICAqIENlbnRlcnMgdGhlIHNwZWNpZmllZCBncm91cCBvciBub2RlIG9uIHRoZSBjYW52YXMuXG4gICAqIEBwYXJhbSBncm91cE9yTm9kZUlkIC0gVGhlIElEIG9mIHRoZSBncm91cCBvciBub2RlIHRvIGNlbnRlci5cbiAgICogQHBhcmFtIGFuaW1hdGVkIC0gSWYgdHJ1ZSwgdGhlIGNlbnRlcmluZyB3aWxsIGJlIGFuaW1hdGVkOyBvdGhlcndpc2UsIGl0IHdpbGwgYmUgaW5zdGFudGFuZW91cy5cbiAgICovXG4gIHB1YmxpYyBjZW50ZXJHcm91cE9yTm9kZShncm91cE9yTm9kZUlkOiBzdHJpbmcsIGFuaW1hdGVkOiBib29sZWFuID0gdHJ1ZSk6IHZvaWQge1xuICAgIHRoaXMuX2FmdGVyUmVkcmF3KCgpID0+IHtcbiAgICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IENlbnRlckdyb3VwT3JOb2RlUmVxdWVzdChncm91cE9yTm9kZUlkLCBhbmltYXRlZCkpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIEZpdHMgdGhlIGNhbnZhcyB0byB0aGUgc2NyZWVuIGJ5IGFkanVzdGluZyB0aGUgc2NhbGUgYW5kIHBvc2l0aW9uLlxuICAgKiBAcGFyYW0gcGFkZGluZyAtIHBhZGRpbmdzIGZyb20gdGhlIGJvdW5kcyBvZiB0aGUgY2FudmFzXG4gICAqIEBwYXJhbSBhbmltYXRlZCAtIElmIHRydWUsIHRoZSBmaXQgd2lsbCBiZSBhbmltYXRlZDsgb3RoZXJ3aXNlLCBpdCB3aWxsIGJlIGluc3RhbnRhbmVvdXMuXG4gICAqL1xuICBwdWJsaWMgZml0VG9TY3JlZW4oXG4gICAgcGFkZGluZzogSVBvaW50ID0gUG9pbnRFeHRlbnNpb25zLmluaXRpYWxpemUoKSxcbiAgICBhbmltYXRlZDogYm9vbGVhbiA9IHRydWUsXG4gICk6IHZvaWQge1xuICAgIHRoaXMuX2FmdGVyUmVkcmF3KCgpID0+IHtcbiAgICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IEZpdFRvRmxvd1JlcXVlc3QocGFkZGluZywgYW5pbWF0ZWQpKTtcbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZXNldHMgdGhlIHNjYWxlIGFuZCBjZW50ZXIgYWxsIG5vZGVzIGFuZCBncm91cHMgb24gdGhlIGNhbnZhcy5cbiAgICogVGhpcyBtZXRob2QgaXMgdXNlZCB0byByZXN0b3JlIHRoZSBjYW52YXMgdG8gaXRzIGRlZmF1bHQgc2NhbGUgYW5kIHBvc2l0aW9uLFxuICAgKiBhbGxvd2luZyB1c2VycyB0byBxdWlja2x5IHJldHVybiB0byBhIHN0YW5kYXJkIHZpZXcgb2YgdGhlIGNhbnZhcyBjb250ZW50LlxuICAgKiBAcGFyYW0gYW5pbWF0ZWQgLSBJZiB0cnVlLCB0aGUgcmVzZXQgd2lsbCBiZSBhbmltYXRlZDsgb3RoZXJ3aXNlLCBpdCB3aWxsIGJlIGluc3RhbnRhbmVvdXMuXG4gICAqIFRoaXMgaXMgdXNlZnVsIGZvciBwcm92aWRpbmcgYSBzbW9vdGggdXNlciBleHBlcmllbmNlIHdoZW4gcmVzZXR0aW5nIHRoZSB2aWV3LlxuICAgKi9cbiAgcHVibGljIHJlc2V0U2NhbGVBbmRDZW50ZXIoYW5pbWF0ZWQ6IGJvb2xlYW4gPSB0cnVlKTogdm9pZCB7XG4gICAgdGhpcy5fYWZ0ZXJSZWRyYXcoKCkgPT4ge1xuICAgICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgUmVzZXRTY2FsZUFuZENlbnRlclJlcXVlc3QoYW5pbWF0ZWQpKTtcbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiAgR2V0cyB0aGUgY3VycmVudCBzY2FsZSBvZiB0aGUgY2FudmFzLlxuICAgKi9cbiAgcHVibGljIGdldFNjYWxlKCk6IG51bWJlciB7XG4gICAgcmV0dXJuIHRoaXMudHJhbnNmb3JtLnNjYWxlIHx8IDE7XG4gIH1cblxuICAvKipcbiAgICogU2V0cyB0aGUgc2NhbGUgb2YgdGhlIGNhbnZhcyB0byBhIHNwZWNpZmllZCB2YWx1ZS5cbiAgICogVGhpcyBtZXRob2QgaXMgdXNlZCB0byB6b29tIGluIG9yIG91dCBvZiB0aGUgY2FudmFzLFxuICAgKiBhbGxvd2luZyB1c2VycyB0byBhZGp1c3QgdGhlIHZpZXcgb2YgdGhlIGNhbnZhcyBjb250ZW50LlxuICAgKiBAcGFyYW0gc2NhbGUgLSBUaGUgc2NhbGUgZmFjdG9yIHRvIHNldCBmb3IgdGhlIGNhbnZhcy5cbiAgICogQHBhcmFtIHRvUG9zaXRpb24gLSBUaGUgcG9zaXRpb24gdG8gd2hpY2ggdGhlIGNhbnZhcyBzaG91bGQgYmUgY2VudGVyZWQgYWZ0ZXIgc2NhbGluZy5cbiAgICovXG4gIHB1YmxpYyBvdmVycmlkZSBzZXRTY2FsZShzY2FsZTogbnVtYmVyLCB0b1Bvc2l0aW9uOiBJUG9pbnQgPSBQb2ludEV4dGVuc2lvbnMuaW5pdGlhbGl6ZSgpKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgVXBkYXRlU2NhbGVSZXF1ZXN0KHNjYWxlLCB0b1Bvc2l0aW9uKSk7XG4gIH1cblxuICAvKipcbiAgICogUmVzZXRzIHRoZSBzY2FsZSBvZiB0aGUgY2FudmFzIHRvIGl0cyBkZWZhdWx0IHZhbHVlLlxuICAgKiBUaGlzIG1ldGhvZCBpcyB1c2VkIHRvIHJlc3RvcmUgdGhlIGNhbnZhcyB0byBpdHMgb3JpZ2luYWwgc2NhbGUuXG4gICAqL1xuICBwdWJsaWMgb3ZlcnJpZGUgcmVzZXRTY2FsZSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZXNldFNjYWxlUmVxdWVzdCgpKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZW1vdmVDYW52YXNGcm9tU3RvcmVSZXF1ZXN0KCkpO1xuICB9XG5cbiAgcHJpdmF0ZSBfYWZ0ZXJSZWRyYXcoY2FsbGJhY2s6ICgpID0+IHZvaWQpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5fY29tcG9uZW50c1N0b3JlLmNvbm5lY3Rpb25zUmV2aXNpb24gPiAwKSB7XG4gICAgICBhZnRlck5leHRSZW5kZXIoY2FsbGJhY2ssIHsgaW5qZWN0b3I6IHRoaXMuX2luamVjdG9yIH0pO1xuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5fbWVkaWF0b3JcbiAgICAgIC5leGVjdXRlPEZDaGFubmVsSHViPihuZXcgTGlzdGVuQ29ubmVjdGlvbnNDaGFuZ2VzUmVxdWVzdChmYWxzZSkpXG4gICAgICAucGlwZSh0YWtlT25lKCkpXG4gICAgICAubGlzdGVuKHRoaXMuZGVzdHJveVJlZiwgY2FsbGJhY2spO1xuICB9XG59XG4iLCI8bmctY29udGFpbmVyPlxuICA8ZGl2ICNmR3JvdXBzQ29udGFpbmVyPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltmR3JvdXBdLCBbZkdyb3Vwc11cIiAvPlxuICA8L2Rpdj5cbiAgPGRpdiAjZkNvbm5lY3Rpb25zQ29udGFpbmVyIGNsYXNzPVwiZi1jb25uZWN0aW9ucy1jb250YWluZXJcIj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJmLXNuYXAtY29ubmVjdGlvblwiIC8+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZi1jb25uZWN0aW9uLCBbZkNvbm5lY3Rpb25zXVwiIC8+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZi1jb25uZWN0aW9uLWZvci1jcmVhdGVcIiAvPlxuICA8L2Rpdj5cblxuICA8ZGl2ICNmTm9kZXNDb250YWluZXI+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2ZOb2RlXSwgW2ZOb2Rlc11cIiAvPlxuICA8L2Rpdj5cbjwvbmctY29udGFpbmVyPlxuIl19
|
|
144
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY2FudmFzL2YtY2FudmFzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWNhbnZhcy9mLWNhbnZhcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsZUFBZSxFQUNmLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsUUFBUSxFQUNSLE1BQU0sRUFDTixVQUFVLEVBQ1YsTUFBTSxFQUNOLFFBQVEsRUFDUixLQUFLLEVBQ0wsZUFBZSxFQUdmLE1BQU0sRUFDTixTQUFTLEdBQ1YsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUN4RCxPQUFPLEVBQVUsZUFBZSxFQUFFLHdCQUF3QixFQUFFLE1BQU0sWUFBWSxDQUFDO0FBRS9FLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUM3QyxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLHdCQUF3QixFQUN4QixnQkFBZ0IsRUFDaEIsY0FBYyxFQUNkLDBCQUEwQixFQUMxQix1QkFBdUIsRUFDdkIsUUFBUSxFQUNSLDRCQUE0QixFQUM1QiwwQkFBMEIsRUFDMUIsaUJBQWlCLEVBQ2pCLDZCQUE2QixFQUM3QixhQUFhLEVBQ2Isa0JBQWtCLEVBQ2xCLGlDQUFpQyxHQUNsQyxNQUFNLFdBQVcsQ0FBQztBQUNuQixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxjQUFjLENBQUM7O0FBRy9FOzs7Ozs7OztHQVFHO0FBWUgsTUFBTSxPQUFPLGdCQUFpQixTQUFRLFdBQVc7SUFDOUIsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM5QixnQkFBZ0IsR0FBRyxNQUFNLENBQUMs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QWdCOzRGQUFoQixnQkFBZ0Isd2lCQUhoQixDQUFDLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsQ0FBQyw2YUN4RG5FLGtjQWNBOzs0RkQ2Q2EsZ0JBQWdCO2tCQVg1QixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLFFBQ1Y7d0JBQ0osT0FBTyxFQUFFLHNCQUFzQjtxQkFDaEMsYUFDVSxDQUFDLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLGtCQUFrQixFQUFFLENBQUMsbUJBQ2hELHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBhZnRlck5leHRSZW5kZXIsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIGNvbXB1dGVkLFxuICBlZmZlY3QsXG4gIEVsZW1lbnRSZWYsXG4gIGluamVjdCxcbiAgSW5qZWN0b3IsXG4gIGlucHV0LFxuICBudW1iZXJBdHRyaWJ1dGUsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBvdXRwdXQsXG4gIHZpZXdDaGlsZCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGX0NBTlZBUywgRkNhbnZhc0Jhc2UgfSBmcm9tICcuL2YtY2FudmFzLWJhc2UnO1xuaW1wb3J0IHsgSVBvaW50LCBQb2ludEV4dGVuc2lvbnMsIFRyYW5zZm9ybU1vZGVsRXh0ZW5zaW9ucyB9IGZyb20gJ0Bmb2JsZXgvMmQnO1xuaW1wb3J0IHsgRkNhbnZhc0NoYW5nZUV2ZW50IH0gZnJvbSAnLi9kb21haW4nO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQge1xuICBBZGRDYW52YXNUb1N0b3JlUmVxdWVzdCxcbiAgQ2VudGVyR3JvdXBPck5vZGVSZXF1ZXN0LFxuICBGaXRUb0Zsb3dSZXF1ZXN0LFxuICBHZXRGbG93UmVxdWVzdCxcbiAgSW5wdXRDYW52YXNQb3NpdGlvblJlcXVlc3QsXG4gIElucHV0Q2FudmFzU2NhbGVSZXF1ZXN0LFxuICBpc01vYmlsZSxcbiAgUmVtb3ZlQ2FudmFzRnJvbVN0b3JlUmVxdWVzdCxcbiAgUmVzZXRTY2FsZUFuZENlbnRlclJlcXVlc3QsXG4gIFJlc2V0U2NhbGVSZXF1ZXN0LFxuICBTZXRCYWNrZ3JvdW5kVHJhbnNmb3JtUmVxdWVzdCxcbiAgdHJhbnNpdGlvbkVuZCxcbiAgVXBkYXRlU2NhbGVSZXF1ZXN0LFxuICBXYWl0Rm9yQ29ubmVjdGlvbnNSZW5kZXJlZFJlcXVlc3QsXG59IGZyb20gJy4uL2RvbWFpbic7XG5pbXBvcnQgeyBGQ29tcG9uZW50c1N0b3JlLCBOb3RpZnlUcmFuc2Zvcm1DaGFuZ2VkUmVxdWVzdCB9IGZyb20gJy4uL2Ytc3RvcmFnZSc7XG5pbXBvcnQgeyBGRmxvd0Jhc2UgfSBmcm9tICcuLi9mLWZsb3cnO1xuXG4vKipcbiAqIENvbXBvbmVudCByZXByZXNlbnRpbmcgYSBjYW52YXMgaW4gdGhlIEYtRmxvdyBmcmFtZXdvcmsuXG4gKiBJdCBoYW5kbGVzIHRoZSByZW5kZXJpbmcgb2Ygbm9kZXMsIGNvbm5lY3Rpb25zLCBhbmQgZ3JvdXBzLFxuICogYXMgd2VsbCBhcyB1c2VyIGludGVyYWN0aW9ucyBzdWNoIGFzIHpvb21pbmcgYW5kIHBhbm5pbmcuXG4gKiBJdCBleHRlbmRzIHRoZSBGQ2FudmFzQmFzZSBjbGFzcyBhbmQgaW1wbGVtZW50cyBPbkluaXQgYW5kIE9uRGVzdHJveSBsaWZlY3ljbGUgaG9va3MuXG4gKiBJdCBwcm92aWRlcyBtZXRob2RzIHRvIG1hbmlwdWxhdGUgdGhlIGNhbnZhcywgc3VjaCBhcyBjZW50ZXJpbmcgbm9kZXMgb3IgZ3JvdXBzLFxuICogZml0dGluZyB0aGUgY2FudmFzIHRvIHRoZSBzY3JlZW4sIGFuZCByZXNldHRpbmcgdGhlIHNjYWxlLlxuICogSXQgYWxzbyBlbWl0cyBldmVudHMgd2hlbiB0aGUgY2FudmFzIGNoYW5nZXMsIGFsbG93aW5nIG90aGVyIGNvbXBvbmVudHMgdG8gcmVhY3QgdG8gdGhlc2UgY2hhbmdlcy5cbiAqL1xuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZi1jYW52YXMnLFxuICB0ZW1wbGF0ZVVybDogJy4vZi1jYW52YXMuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mLWNhbnZhcy5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBob3N0OiB7XG4gICAgJ2NsYXNzJzogJ2YtY29tcG9uZW50IGYtY2FudmFzJyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBGX0NBTlZBUywgdXNlRXhpc3Rpbmc6IEZDYW52YXNDb21wb25lbnQgfV0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBGQ2FudmFzQ29tcG9uZW50IGV4dGVuZHMgRkNhbnZhc0Jhc2UgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX21lZGlhdG9yID0gaW5qZWN0KEZNZWRpYXRvcik7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2NvbXBvbmVudHNTdG9yZSA9IGluamVjdChGQ29tcG9uZW50c1N0b3JlKTtcbiAgcHJpdmF0ZSByZWFkb25seSBfZWxlbWVudFJlZmVyZW5jZSA9IGluamVjdChFbGVtZW50UmVmKTtcbiAgcHJpdmF0ZSByZWFkb25seSBfaW5qZWN0b3IgPSBpbmplY3QoSW5qZWN0b3IpO1xuXG4gIHByaXZhdGUgX2Zsb3dJZDogc3RyaW5nIHwgdW5kZWZpbmVkO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmQ2FudmFzQ2hhbmdlID0gb3V0cHV0PEZDYW52YXNDaGFuZ2VFdmVudD4oKTtcblxuICBwdWJsaWMgcmVhZG9ubHkgcG9zaXRpb24gPSBpbnB1dDxJUG9pbnQsIElQb2ludCB8IG51bGwgfCB1bmRlZmluZWQ+KFxuICAgIFBvaW50RXh0ZW5zaW9ucy5pbml0aWFsaXplKCksXG4gICAgeyB0cmFuc2Zvcm06IFBvaW50RXh0ZW5zaW9ucy5jYXN0VG9Qb2ludCB9LFxuICApO1xuICBwdWJsaWMgcmVhZG9ubHkgc2NhbGUgPSBpbnB1dDxudW1iZXIsIHVua25vd24+KDEsIHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSk7XG4gIHB1YmxpYyByZWFkb25seSBkZWJvdW5jZVRpbWUgPSBpbnB1dDxudW1iZXIsIHVua25vd24+KDAsIHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSk7XG4gIHB1YmxpYyBvdmVycmlkZSBkZWJvdW5jZSA9IGNvbXB1dGVkKCgpID0+ICh0aGlzLmRlYm91bmNlVGltZSgpIDwgMCA/IDAgOiB0aGlzLmRlYm91bmNlVGltZSgpKSk7XG5cbiAgcHVibGljIG92ZXJyaWRlIGdldCBob3N0RWxlbWVudCgpOiBIVE1MRWxlbWVudCB7XG4gICAgcmV0dXJuIHRoaXMuX2VsZW1lbnRSZWZlcmVuY2UubmF0aXZlRWxlbWVudDtcbiAgfVxuXG4gIHB1YmxpYyBvdmVycmlkZSBmR3JvdXBzQ29udGFpbmVyID1cbiAgICB2aWV3Q2hpbGQucmVxdWlyZWQ8RWxlbWVudFJlZjxIVE1MRWxlbWVudD4+KCdmR3JvdXBzQ29udGFpbmVyJyk7XG4gIHB1YmxpYyBvdmVycmlkZSBmTm9kZXNDb250YWluZXIgPSB2aWV3Q2hpbGQucmVxdWlyZWQ8RWxlbWVudFJlZjxIVE1MRWxlbWVudD4+KCdmTm9kZXNDb250YWluZXInKTtcbiAgcHVibGljIG92ZXJyaWRlIGZDb25uZWN0aW9uc0NvbnRhaW5lciA9XG4gICAgdmlld0NoaWxkLnJlcXVpcmVkPEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+PignZkNvbm5lY3Rpb25zQ29udGFpbmVyJyk7XG5cbiAgcHVibGljIGdldCBmbG93SWQoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5fZmxvd0lkIHx8ICcnO1xuICB9XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuX2Zsb3dJZCA9IHRoaXMuX21lZGlhdG9yLmV4ZWN1dGU8RkZsb3dCYXNlPihuZXcgR2V0Rmxvd1JlcXVlc3QoKSkuZklkKCk7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgQWRkQ2FudmFzVG9TdG9yZVJlcXVlc3QodGhpcykpO1xuICAgIHRoaXMuX3Bvc2l0aW9uQ2hhbmdlKCk7XG4gICAgdGhpcy5fc2NhbGVDaGFuZ2UoKTtcbiAgICBzdXBlci5zdWJzY3JpYmVPbkNhbnZhc0NoYW5nZSgpO1xuICB9XG5cbiAgcHJpdmF0ZSBfcG9zaXRpb25DaGFuZ2UoKTogdm9pZCB7XG4gICAgZWZmZWN0KFxuICAgICAgKCkgPT4ge1xuICAgICAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBJbnB1dENhbnZhc1Bvc2l0aW9uUmVxdWVzdCh0aGlzLnRyYW5zZm9ybSwgdGhpcy5wb3NpdGlvbigpKSk7XG4gICAgICB9LFxuICAgICAgeyBpbmplY3RvcjogdGhpcy5faW5qZWN0b3IgfSxcbiAgICApO1xuICB9XG5cbiAgcHJpdmF0ZSBfc2NhbGVDaGFuZ2UoKTogdm9pZCB7XG4gICAgZWZmZWN0KFxuICAgICAgKCkgPT4ge1xuICAgICAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBJbnB1dENhbnZhc1NjYWxlUmVxdWVzdCh0aGlzLnRyYW5zZm9ybSwgdGhpcy5zY2FsZSgpKSk7XG4gICAgICB9LFxuICAgICAgeyBpbmplY3RvcjogdGhpcy5faW5qZWN0b3IgfSxcbiAgICApO1xuICB9XG5cbiAgLyoqXG4gICAqIFJlZHJhd3MgdGhlIGNhbnZhcyBieSBhcHBseWluZyB0aGUgY3VycmVudCB0cmFuc2Zvcm1hdGlvbi5cbiAgICovXG4gIHB1YmxpYyBvdmVycmlkZSByZWRyYXcoKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgU2V0QmFja2dyb3VuZFRyYW5zZm9ybVJlcXVlc3QodGhpcy50cmFuc2Zvcm0pKTtcbiAgICB0aGlzLmhvc3RFbGVtZW50LnN0eWxlLnJlbW92ZVByb3BlcnR5KCd0cmFuc2l0aW9uJyk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zdHlsZS50cmFuc2Zvcm0gPSBUcmFuc2Zvcm1Nb2RlbEV4dGVuc2lvbnMudG9TdHJpbmcodGhpcy50cmFuc2Zvcm0pO1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IE5vdGlmeVRyYW5zZm9ybUNoYW5nZWRSZXF1ZXN0KCkpO1xuICB9XG5cbiAgLyoqXG4gICAqIFJlZHJhd3MgdGhlIGNhbnZhcyB3aXRoIGFuIGFuaW1hdGlvbiBlZmZlY3QuXG4gICAqIFRoaXMgbWV0aG9kIGFwcGxpZXMgYSBDU1MgdHJhbnNpdGlvbiB0byB0aGUgY2FudmFzIGVsZW1lbnQsXG4gICAqIGFsbG93aW5nIGZvciBhIHNtb290aCB2aXN1YWwgdXBkYXRlIG9mIHRoZSBjYW52YXMncyB0cmFuc2Zvcm1hdGlvbi5cbiAgICovXG4gIHB1YmxpYyBvdmVycmlkZSByZWRyYXdXaXRoQW5pbWF0aW9uKCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFNldEJhY2tncm91bmRUcmFuc2Zvcm1SZXF1ZXN0KHRoaXMudHJhbnNmb3JtKSk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zdHlsZS50cmFuc2l0aW9uID0gYHRyYW5zZm9ybSAke2lzTW9iaWxlKCkgPyA4MCA6IDE1MH1tcyBlYXNlLWluLW91dGA7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zdHlsZS50cmFuc2Zvcm0gPSBUcmFuc2Zvcm1Nb2RlbEV4dGVuc2lvbnMudG9TdHJpbmcodGhpcy50cmFuc2Zvcm0pO1xuICAgIHRyYW5zaXRpb25FbmQodGhpcy5ob3N0RWxlbWVudCwgKCkgPT4gdGhpcy5yZWRyYXcoKSk7XG4gIH1cblxuICAvKipcbiAgICogQ2VudGVycyB0aGUgc3BlY2lmaWVkIGdyb3VwIG9yIG5vZGUgb24gdGhlIGNhbnZhcy5cbiAgICogQHBhcmFtIGdyb3VwT3JOb2RlSWQgLSBUaGUgSUQgb2YgdGhlIGdyb3VwIG9yIG5vZGUgdG8gY2VudGVyLlxuICAgKiBAcGFyYW0gYW5pbWF0ZWQgLSBJZiB0cnVlLCB0aGUgY2VudGVyaW5nIHdpbGwgYmUgYW5pbWF0ZWQ7IG90aGVyd2lzZSwgaXQgd2lsbCBiZSBpbnN0YW50YW5lb3VzLlxuICAgKi9cbiAgcHVibGljIGNlbnRlckdyb3VwT3JOb2RlKGdyb3VwT3JOb2RlSWQ6IHN0cmluZywgYW5pbWF0ZWQ6IGJvb2xlYW4gPSB0cnVlKTogdm9pZCB7XG4gICAgdGhpcy5fYWZ0ZXJSZWRyYXcoKCkgPT4ge1xuICAgICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgQ2VudGVyR3JvdXBPck5vZGVSZXF1ZXN0KGdyb3VwT3JOb2RlSWQsIGFuaW1hdGVkKSk7XG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogRml0cyB0aGUgY2FudmFzIHRvIHRoZSBzY3JlZW4gYnkgYWRqdXN0aW5nIHRoZSBzY2FsZSBhbmQgcG9zaXRpb24uXG4gICAqIEBwYXJhbSBwYWRkaW5nIC0gcGFkZGluZ3MgZnJvbSB0aGUgYm91bmRzIG9mIHRoZSBjYW52YXNcbiAgICogQHBhcmFtIGFuaW1hdGVkIC0gSWYgdHJ1ZSwgdGhlIGZpdCB3aWxsIGJlIGFuaW1hdGVkOyBvdGhlcndpc2UsIGl0IHdpbGwgYmUgaW5zdGFudGFuZW91cy5cbiAgICovXG4gIHB1YmxpYyBmaXRUb1NjcmVlbihcbiAgICBwYWRkaW5nOiBJUG9pbnQgPSBQb2ludEV4dGVuc2lvbnMuaW5pdGlhbGl6ZSgpLFxuICAgIGFuaW1hdGVkOiBib29sZWFuID0gdHJ1ZSxcbiAgKTogdm9pZCB7XG4gICAgdGhpcy5fYWZ0ZXJSZWRyYXcoKCkgPT4ge1xuICAgICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgRml0VG9GbG93UmVxdWVzdChwYWRkaW5nLCBhbmltYXRlZCkpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIFJlc2V0cyB0aGUgc2NhbGUgYW5kIGNlbnRlciBhbGwgbm9kZXMgYW5kIGdyb3VwcyBvbiB0aGUgY2FudmFzLlxuICAgKiBUaGlzIG1ldGhvZCBpcyB1c2VkIHRvIHJlc3RvcmUgdGhlIGNhbnZhcyB0byBpdHMgZGVmYXVsdCBzY2FsZSBhbmQgcG9zaXRpb24sXG4gICAqIGFsbG93aW5nIHVzZXJzIHRvIHF1aWNrbHkgcmV0dXJuIHRvIGEgc3RhbmRhcmQgdmlldyBvZiB0aGUgY2FudmFzIGNvbnRlbnQuXG4gICAqIEBwYXJhbSBhbmltYXRlZCAtIElmIHRydWUsIHRoZSByZXNldCB3aWxsIGJlIGFuaW1hdGVkOyBvdGhlcndpc2UsIGl0IHdpbGwgYmUgaW5zdGFudGFuZW91cy5cbiAgICogVGhpcyBpcyB1c2VmdWwgZm9yIHByb3ZpZGluZyBhIHNtb290aCB1c2VyIGV4cGVyaWVuY2Ugd2hlbiByZXNldHRpbmcgdGhlIHZpZXcuXG4gICAqL1xuICBwdWJsaWMgcmVzZXRTY2FsZUFuZENlbnRlcihhbmltYXRlZDogYm9vbGVhbiA9IHRydWUpOiB2b2lkIHtcbiAgICB0aGlzLl9hZnRlclJlZHJhdygoKSA9PiB7XG4gICAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZXNldFNjYWxlQW5kQ2VudGVyUmVxdWVzdChhbmltYXRlZCkpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqICBHZXRzIHRoZSBjdXJyZW50IHNjYWxlIG9mIHRoZSBjYW52YXMuXG4gICAqL1xuICBwdWJsaWMgZ2V0U2NhbGUoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy50cmFuc2Zvcm0uc2NhbGUgfHwgMTtcbiAgfVxuXG4gIC8qKlxuICAgKiBTZXRzIHRoZSBzY2FsZSBvZiB0aGUgY2FudmFzIHRvIGEgc3BlY2lmaWVkIHZhbHVlLlxuICAgKiBUaGlzIG1ldGhvZCBpcyB1c2VkIHRvIHpvb20gaW4gb3Igb3V0IG9mIHRoZSBjYW52YXMsXG4gICAqIGFsbG93aW5nIHVzZXJzIHRvIGFkanVzdCB0aGUgdmlldyBvZiB0aGUgY2FudmFzIGNvbnRlbnQuXG4gICAqIEBwYXJhbSBzY2FsZSAtIFRoZSBzY2FsZSBmYWN0b3IgdG8gc2V0IGZvciB0aGUgY2FudmFzLlxuICAgKiBAcGFyYW0gdG9Qb3NpdGlvbiAtIFRoZSBwb3NpdGlvbiB0byB3aGljaCB0aGUgY2FudmFzIHNob3VsZCBiZSBjZW50ZXJlZCBhZnRlciBzY2FsaW5nLlxuICAgKi9cbiAgcHVibGljIG92ZXJyaWRlIHNldFNjYWxlKHNjYWxlOiBudW1iZXIsIHRvUG9zaXRpb246IElQb2ludCA9IFBvaW50RXh0ZW5zaW9ucy5pbml0aWFsaXplKCkpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBVcGRhdGVTY2FsZVJlcXVlc3Qoc2NhbGUsIHRvUG9zaXRpb24pKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZXNldHMgdGhlIHNjYWxlIG9mIHRoZSBjYW52YXMgdG8gaXRzIGRlZmF1bHQgdmFsdWUuXG4gICAqIFRoaXMgbWV0aG9kIGlzIHVzZWQgdG8gcmVzdG9yZSB0aGUgY2FudmFzIHRvIGl0cyBvcmlnaW5hbCBzY2FsZS5cbiAgICovXG4gIHB1YmxpYyBvdmVycmlkZSByZXNldFNjYWxlKCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFJlc2V0U2NhbGVSZXF1ZXN0KCkpO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFJlbW92ZUNhbnZhc0Zyb21TdG9yZVJlcXVlc3QoKSk7XG4gIH1cblxuICBwcml2YXRlIF9hZnRlclJlZHJhdyhjYWxsYmFjazogKCkgPT4gdm9pZCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUoXG4gICAgICBuZXcgV2FpdEZvckNvbm5lY3Rpb25zUmVuZGVyZWRSZXF1ZXN0KFxuICAgICAgICB0aGlzLl9jb21wb25lbnRzU3RvcmUuY29ubmVjdGlvbnNSZXZpc2lvbixcbiAgICAgICAgdGhpcy5fY29tcG9uZW50c1N0b3JlLm5vZGVzUmV2aXNpb24sXG4gICAgICAgICgpID0+IGFmdGVyTmV4dFJlbmRlcihjYWxsYmFjaywgeyBpbmplY3RvcjogdGhpcy5faW5qZWN0b3IgfSksXG4gICAgICAgIHRoaXMuZGVzdHJveVJlZixcbiAgICAgICksXG4gICAgKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRhaW5lcj5cbiAgPGRpdiAjZkdyb3Vwc0NvbnRhaW5lcj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbZkdyb3VwXSwgW2ZHcm91cHNdXCIgLz5cbiAgPC9kaXY+XG4gIDxkaXYgI2ZDb25uZWN0aW9uc0NvbnRhaW5lciBjbGFzcz1cImYtY29ubmVjdGlvbnMtY29udGFpbmVyXCI+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZi1zbmFwLWNvbm5lY3Rpb25cIiAvPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImYtY29ubmVjdGlvbiwgW2ZDb25uZWN0aW9uc11cIiAvPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImYtY29ubmVjdGlvbi1mb3ItY3JlYXRlXCIgLz5cbiAgPC9kaXY+XG5cbiAgPGRpdiAjZk5vZGVzQ29udGFpbmVyPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltmTm9kZV0sIFtmTm9kZXNdXCIgLz5cbiAgPC9kaXY+XG48L25nLWNvbnRhaW5lcj5cbiJdfQ==
|
|
@@ -2,4 +2,4 @@ export * from './domain';
|
|
|
2
2
|
export * from './f-canvas.component';
|
|
3
3
|
export * from './f-canvas-base';
|
|
4
4
|
export * from './providers';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jYW52YXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxzQkFBc0IsQ0FBQztBQUVyQyxjQUFjLGlCQUFpQixDQUFDO0FBRWhDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9kb21haW4nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtY2FudmFzLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1jYW52YXMtYmFzZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vcHJvdmlkZXJzJztcblxuXG4iXX0=
|
|
@@ -2,4 +2,4 @@ import { FCanvasComponent } from './f-canvas.component';
|
|
|
2
2
|
export const F_CANVAS_PROVIDERS = [
|
|
3
3
|
FCanvasComponent,
|
|
4
4
|
];
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY2FudmFzL3Byb3ZpZGVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUV4RCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRztJQUNoQyxnQkFBZ0I7Q0FDakIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZDYW52YXNDb21wb25lbnQgfSBmcm9tICcuL2YtY2FudmFzLmNvbXBvbmVudCc7XG5cbmV4cG9ydCBjb25zdCBGX0NBTlZBU19QUk9WSURFUlMgPSBbXG4gIEZDYW52YXNDb21wb25lbnQsXG5dO1xuIl19
|
|
@@ -54,7 +54,7 @@ export class FConnectionComponent extends FConnectionBase {
|
|
|
54
54
|
this._mediator.execute(new RemoveConnectionFromStoreRequest(this));
|
|
55
55
|
}
|
|
56
56
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FConnectionComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
57
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FConnectionComponent, selector: "f-connection", inputs: { fId: { classPropertyName: "fId", publicName: "fConnectionId", isSignal: true, isRequired: false, transformFunction: null }, fOutputId: { classPropertyName: "fOutputId", publicName: "fOutputId", isSignal: true, isRequired: false, transformFunction: null }, fInputId: { classPropertyName: "fInputId", publicName: "fInputId", isSignal: true, isRequired: false, transformFunction: null }, fRadius: { classPropertyName: "fRadius", publicName: "fRadius", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fOffset: { classPropertyName: "fOffset", publicName: "fOffset", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fBehavior: { classPropertyName: "fBehavior", publicName: "fBehavior", isSignal: false, isRequired: false, transformFunction: (value) => castToEnum(value, 'fBehavior', EFConnectionBehavior) }, fType: { classPropertyName: "fType", publicName: "fType", isSignal: false, isRequired: false, transformFunction: null }, fSelectionDisabled: { classPropertyName: "fSelectionDisabled", publicName: "fSelectionDisabled", isSignal: true, isRequired: false, transformFunction: null }, fReassignableStart: { classPropertyName: "fReassignableStart", publicName: "fReassignableStart", isSignal: true, isRequired: false, transformFunction: null }, fDraggingDisabled: { classPropertyName: "fDraggingDisabled", publicName: "fReassignDisabled", isSignal: true, isRequired: false, transformFunction: null }, fInputSide: { classPropertyName: "fInputSide", publicName: "fInputSide", isSignal: true, isRequired: false, transformFunction: null }, fOutputSide: { classPropertyName: "fOutputSide", publicName: "fOutputSide", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.id": "fId()", "class.f-connection-selection-disabled": "fSelectionDisabled()", "class.f-connection-reassign-disabled": "fDraggingDisabled()" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionComponent }], exportAs: ["fComponent"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n @if (fReassignableStart()) {\n <circle f-connection-drag-handle-start r=\"8\"></circle>\n }\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n<ng-content select=\"f-connection-waypoints\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none}:host svg{display:block;vertical-align:middle;overflow:visible!important;position:absolute}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleStart, selector: "circle[f-connection-drag-handle-start]" }, { kind: "component", type: i3.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i4.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i5.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
57
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FConnectionComponent, selector: "f-connection", inputs: { fId: { classPropertyName: "fId", publicName: "fConnectionId", isSignal: true, isRequired: false, transformFunction: null }, fOutputId: { classPropertyName: "fOutputId", publicName: "fOutputId", isSignal: true, isRequired: false, transformFunction: null }, fInputId: { classPropertyName: "fInputId", publicName: "fInputId", isSignal: true, isRequired: false, transformFunction: null }, fRadius: { classPropertyName: "fRadius", publicName: "fRadius", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fOffset: { classPropertyName: "fOffset", publicName: "fOffset", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fBehavior: { classPropertyName: "fBehavior", publicName: "fBehavior", isSignal: false, isRequired: false, transformFunction: (value) => castToEnum(value, 'fBehavior', EFConnectionBehavior) }, fType: { classPropertyName: "fType", publicName: "fType", isSignal: false, isRequired: false, transformFunction: null }, fSelectionDisabled: { classPropertyName: "fSelectionDisabled", publicName: "fSelectionDisabled", isSignal: true, isRequired: false, transformFunction: null }, fReassignableStart: { classPropertyName: "fReassignableStart", publicName: "fReassignableStart", isSignal: true, isRequired: false, transformFunction: null }, fDraggingDisabled: { classPropertyName: "fDraggingDisabled", publicName: "fReassignDisabled", isSignal: true, isRequired: false, transformFunction: null }, fInputSide: { classPropertyName: "fInputSide", publicName: "fInputSide", isSignal: true, isRequired: false, transformFunction: null }, fOutputSide: { classPropertyName: "fOutputSide", publicName: "fOutputSide", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.id": "fId()", "class.f-connection-selection-disabled": "fSelectionDisabled()", "class.f-connection-reassign-disabled": "fDraggingDisabled()" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionComponent }], exportAs: ["fComponent"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n @if (fReassignableStart()) {\n <circle f-connection-drag-handle-start r=\"8\"></circle>\n }\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n<ng-content select=\"f-connection-waypoints\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none}:host svg{display:block;vertical-align:middle;overflow:visible!important;position:absolute}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleStart, selector: "circle[f-connection-drag-handle-start]" }, { kind: "component", type: i3.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i4.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i5.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
58
58
|
}
|
|
59
59
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FConnectionComponent, decorators: [{
|
|
60
60
|
type: Component,
|
|
@@ -63,7 +63,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
63
63
|
class: 'f-component f-connection',
|
|
64
64
|
'[class.f-connection-selection-disabled]': 'fSelectionDisabled()',
|
|
65
65
|
'[class.f-connection-reassign-disabled]': 'fDraggingDisabled()',
|
|
66
|
-
}, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionComponent }], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n @if (fReassignableStart()) {\n <circle f-connection-drag-handle-start r=\"8\"></circle>\n }\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n<ng-content select=\"f-connection-waypoints\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none}:host svg{display:block;vertical-align:middle;overflow:visible!important;position:absolute}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
66
|
+
}, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionComponent }], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n @if (fReassignableStart()) {\n <circle f-connection-drag-handle-start r=\"8\"></circle>\n }\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n<ng-content select=\"f-connection-waypoints\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none}:host svg{display:block;vertical-align:middle;overflow:visible!important;position:absolute}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
67
67
|
}], propDecorators: { fRadius: [{
|
|
68
68
|
type: Input,
|
|
69
69
|
args: [{ transform: numberAttribute }]
|
|
@@ -76,4 +76,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
76
76
|
}], fType: [{
|
|
77
77
|
type: Input
|
|
78
78
|
}] } });
|
|
79
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jb25uZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWNvbm5lY3Rpb24vZi1jb25uZWN0aW9uL2YtY29ubmVjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2YtY29ubmVjdGlvbi9mLWNvbm5lY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLGdCQUFnQixFQUNoQix1QkFBdUIsRUFDdkIsU0FBUyxFQUNULE1BQU0sRUFDTixLQUFLLEVBQ0wsS0FBSyxFQUNMLGVBQWUsR0FJaEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDaEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLGdDQUFnQyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzdGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFDOUMsT0FBTyxFQUNMLG9CQUFvQixFQUNwQiwyQkFBMkIsRUFDM0IsZ0JBQWdCLEVBQ2hCLDhCQUE4QixFQUM5QixlQUFlLEdBQ2hCLE1BQU0sdUJBQXVCLENBQUM7Ozs7Ozs7QUFFL0IsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO0FBZ0JqQixNQUFNLE9BQU8sb0JBQXFCLFNBQVEsZUFBZTtJQUN2QyxHQUFHLEdBQUcsS0FBSyxDQUFTLGdCQUFnQixRQUFRLEVBQUUsRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLGVBQWUsRUFBRSxDQUFDLENBQUM7SUFFOUUsU0FBUyxHQUFHLEtBQUssQ0FBa0IsRUFBRSxFQUFFO1FBQ3JE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QUFFO2dCQUlyQixPQUFPO3NCQUR0QixLQUFLO3VCQUFDLEVBQUUsU0FBUyxFQUFFLGVBQWUsRUFBRTtnQkFJckIsU0FBUztzQkFEeEIsS0FBSzt1QkFBQyxFQUFFLFNBQVMsRUFBRSxDQUFDLEtBQWMsRUFBRSxFQUFFLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxXQUFXLEVBQUUsb0JBQW9CLENBQUMsRUFBRTtnQkFJOUUsS0FBSztzQkFEcEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIGJvb2xlYW5BdHRyaWJ1dGUsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIGluamVjdCxcbiAgaW5wdXQsXG4gIElucHV0LFxuICBudW1iZXJBdHRyaWJ1dGUsXG4gIE9uQ2hhbmdlcyxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRW1pdENvbm5lY3Rpb25zQ2hhbmdlc1JlcXVlc3QgfSBmcm9tICcuLi8uLi9mLXN0b3JhZ2UnO1xuaW1wb3J0IHsgY2FzdFRvRW51bSB9IGZyb20gJ0Bmb2JsZXgvdXRpbHMnO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQgeyBBZGRDb25uZWN0aW9uVG9TdG9yZVJlcXVlc3QsIFJlbW92ZUNvbm5lY3Rpb25Gcm9tU3RvcmVSZXF1ZXN0IH0gZnJvbSAnLi4vLi4vZG9tYWluJztcbmltcG9ydCB7IHN0cmluZ0F0dHJpYnV0ZSB9IGZyb20gJy4uLy4uL3V0aWxzJztcbmltcG9ydCB7XG4gIEVGQ29ubmVjdGlvbkJlaGF2aW9yLFxuICBFRkNvbm5lY3Rpb25Db25uZWN0YWJsZVNpZGUsXG4gIEVGQ29ubmVjdGlvblR5cGUsXG4gIEZfQ09OTkVDVElPTl9DT01QT05FTlRTX1BBUkVOVCxcbiAgRkNvbm5lY3Rpb25CYXNlLFxufSBmcm9tICcuLi8uLi9mLWNvbm5lY3Rpb24tdjInO1xuXG5sZXQgdW5pcXVlSWQgPSAwO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmLWNvbm5lY3Rpb24nLFxuICBleHBvcnRBczogJ2ZDb21wb25lbnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vZi1jb25uZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZi1jb25uZWN0aW9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBob3N0OiB7XG4gICAgJ1thdHRyLmlkXSc6ICdmSWQoKScsXG4gICAgY2xhc3M6ICdmLWNvbXBvbmVudCBmLWNvbm5lY3Rpb24nLFxuICAgICdbY2xhc3MuZi1jb25uZWN0aW9uLXNlbGVjdGlvbi1kaXNhYmxlZF0nOiAnZlNlbGVjdGlvbkRpc2FibGVkKCknLFxuICAgICdbY2xhc3MuZi1jb25uZWN0aW9uLXJlYXNzaWduLWRpc2FibGVkXSc6ICdmRHJhZ2dpbmdEaXNhYmxlZCgpJyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBGX0NPTk5FQ1RJT05fQ09NUE9ORU5UU19QQVJFTlQsIHVzZUV4aXN0aW5nOiBGQ29ubmVjdGlvbkNvbXBvbmVudCB9XSxcbn0pXG5leHBvcnQgY2xhc3MgRkNvbm5lY3Rpb25Db21wb25lbnQgZXh0ZW5kcyBGQ29ubmVjdGlvbkJhc2UgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcbiAgcHVibGljIG92ZXJyaWRlIGZJZCA9IGlucHV0PHN0cmluZz4oYGYtY29ubmVjdGlvbi0ke3VuaXF1ZUlkKyt9YCwgeyBhbGlhczogJ2ZDb25uZWN0aW9uSWQnIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmT3V0cHV0SWQgPSBpbnB1dDxzdHJpbmcsIHVua25vd24+KCcnLCB7XG4gICAgdHJhbnNmb3JtOiAodmFsdWUpID0+IHN0cmluZ0F0dHJpYnV0ZSh2YWx1ZSkgfHwgJycsXG4gIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmSW5wdXRJZCA9IGlucHV0PHN0cmluZywgdW5rbm93bj4oJycsIHtcbiAgICB0cmFuc2Zvcm06ICh2YWx1ZSkgPT4gc3RyaW5nQXR0cmlidXRlKHZhbHVlKSB8fCAnJyxcbiAgfSk7XG5cbiAgQElucHV0KHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSlcbiAgcHVibGljIG92ZXJyaWRlIGZSYWRpdXM6IG51bWJlciA9IDg7XG5cbiAgQElucHV0KHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSlcbiAgcHVibGljIG92ZXJyaWRlIGZPZmZzZXQ6IG51bWJlciA9IDEyO1xuXG4gIEBJbnB1dCh7IHRyYW5zZm9ybTogKHZhbHVlOiB1bmtub3duKSA9PiBjYXN0VG9FbnVtKHZhbHVlLCAnZkJlaGF2aW9yJywgRUZDb25uZWN0aW9uQmVoYXZpb3IpIH0pXG4gIHB1YmxpYyBvdmVycmlkZSBmQmVoYXZpb3I6IEVGQ29ubmVjdGlvbkJlaGF2aW9yID0gRUZDb25uZWN0aW9uQmVoYXZpb3IuRklYRUQ7XG5cbiAgQElucHV0KClcbiAgcHVibGljIG92ZXJyaWRlIGZUeXBlOiBFRkNvbm5lY3Rpb25UeXBlIHwgc3RyaW5nID0gRUZDb25uZWN0aW9uVHlwZS5TVFJBSUdIVDtcblxuICBwdWJsaWMgb3ZlcnJpZGUgZlNlbGVjdGlvbkRpc2FibGVkID0gaW5wdXQoZmFsc2UsIHsgdHJhbnNmb3JtOiBib29sZWFuQXR0cmlidXRlIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmUmVhc3NpZ25hYmxlU3RhcnQgPSBpbnB1dChmYWxzZSwgeyB0cmFuc2Zvcm06IGJvb2xlYW5BdHRyaWJ1dGUgfSk7XG5cbiAgcHVibGljIG92ZXJyaWRlIGZEcmFnZ2luZ0Rpc2FibGVkID0gaW5wdXQoZmFsc2UsIHtcbiAgICBhbGlhczogJ2ZSZWFzc2lnbkRpc2FibGVkJyxcbiAgICB0cmFuc2Zvcm06IGJvb2xlYW5BdHRyaWJ1dGUsXG4gIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmSW5wdXRTaWRlID0gaW5wdXQoRUZDb25uZWN0aW9uQ29ubmVjdGFibGVTaWRlLkRFRkFVTFQsIHtcbiAgICB0cmFuc2Zvcm06ICh4KSA9PiB7XG4gICAgICByZXR1cm4gY2FzdFRvRW51bSh4LCAnZklucHV0U2lkZScsIEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZSk7XG4gICAgfSxcbiAgfSk7XG5cbiAgcHVibGljIG92ZXJyaWRlIGZPdXRwdXRTaWRlID0gaW5wdXQoRUZDb25uZWN0aW9uQ29ubmVjdGFibGVTaWRlLkRFRkFVTFQsIHtcbiAgICB0cmFuc2Zvcm06ICh4KSA9PiB7XG4gICAgICByZXR1cm4gY2FzdFRvRW51bSh4LCAnZk91dHB1dFNpZGUnLCBFRkNvbm5lY3Rpb25Db25uZWN0YWJsZVNpZGUpO1xuICAgIH0sXG4gIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBnZXQgYm91bmRpbmdFbGVtZW50KCk6IEhUTUxFbGVtZW50IHwgU1ZHRWxlbWVudCB7XG4gICAgcmV0dXJuIHRoaXMuZlBhdGgoKS5ob3N0RWxlbWVudDtcbiAgfVxuXG4gIHByaXZhdGUgcmVhZG9ubHkgX21lZGlhdG9yID0gaW5qZWN0KEZNZWRpYXRvcik7XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IEFkZENvbm5lY3Rpb25Ub1N0b3JlUmVxdWVzdCh0aGlzKSk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkNoYW5nZXMoKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgRW1pdENvbm5lY3Rpb25zQ2hhbmdlc1JlcXVlc3QoKSk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgUmVtb3ZlQ29ubmVjdGlvbkZyb21TdG9yZVJlcXVlc3QodGhpcykpO1xuICB9XG59XG4iLCI8c3ZnIHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmdcIj5cbiAgPGRlZnMgI2RlZnM+PC9kZWZzPlxuICA8bmctY29udGVudCBzZWxlY3Q9XCJzdmdbZk1hcmtlcl1cIiAvPlxuICA8ZyBjbGFzcz1cImYtY29ubmVjdGlvbi1ncm91cFwiPlxuICAgIEBpZiAoZkdyYWRpZW50KCk7IGFzIGdyYWRpZW50KSB7XG4gICAgICA8bGluZWFyR3JhZGllbnRcbiAgICAgICAgZkNvbm5lY3Rpb25HcmFkaWVudFJlbmRlcmVyXG4gICAgICAgIFtmQ29ubmVjdGlvbkdyYWRpZW50UmVuZGVyZXJGb3JdPVwiZ3JhZGllbnRcIlxuICAgICAgPjwvbGluZWFyR3JhZGllbnQ+XG4gICAgfVxuICAgIDxwYXRoIGZDb25uZWN0aW9uU2VsZWN0aW9uIFthdHRyLmRdPVwicGF0aFwiPjwvcGF0aD5cbiAgICA8Zz5cbiAgICAgIDxwYXRoIGYtY29ubmVjdGlvbi1wYXRoIFt1c2VHcmFkaWVudF09XCIhIWZHcmFkaWVudCgpXCIgW2F0dHIuZF09XCJwYXRoXCI+PC9wYXRoPlxuICAgICAgQGlmIChmUmVhc3NpZ25hYmxlU3RhcnQoKSkge1xuICAgICAgICA8Y2lyY2xlIGYtY29ubmVjdGlvbi1kcmFnLWhhbmRsZS1zdGFydCByPVwiOFwiPjwvY2lyY2xlPlxuICAgICAgfVxuICAgICAgPGNpcmNsZSBmLWNvbm5lY3Rpb24tZHJhZy1oYW5kbGUtZW5kIHI9XCI4XCI+PC9jaXJjbGU+XG4gICAgPC9nPlxuICA8L2c+XG48L3N2Zz5cbjxuZy1jb250ZW50IHNlbGVjdD1cImYtY29ubmVjdGlvbi1tYXJrZXItY2lyY2xlLCBmLWNvbm5lY3Rpb24tbWFya2VyLWFycm93XCIgLz5cbjxuZy1jb250ZW50IHNlbGVjdD1cImYtY29ubmVjdGlvbi1ncmFkaWVudFwiIC8+XG48bmctY29udGVudCBzZWxlY3Q9XCJmLWNvbm5lY3Rpb24td2F5cG9pbnRzXCIgLz5cblxuQGlmIChmQ29udGVudHMoKS5sZW5ndGgpIHtcbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2ZDb25uZWN0aW9uQ29udGVudF1cIiAvPlxufVxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './f-connection.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2YtY29ubmVjdGlvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLWNvbm5lY3Rpb24uY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -47,7 +47,7 @@ export class FConnectionForCreateComponent extends FConnectionBase {
|
|
|
47
47
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FConnectionForCreateComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
48
48
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FConnectionForCreateComponent, selector: "f-connection-for-create", inputs: { fRadius: { classPropertyName: "fRadius", publicName: "fRadius", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fOffset: { classPropertyName: "fOffset", publicName: "fOffset", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fBehavior: { classPropertyName: "fBehavior", publicName: "fBehavior", isSignal: false, isRequired: false, transformFunction: (value) => castToEnum(value, 'fBehavior', EFConnectionBehavior) }, fType: { classPropertyName: "fType", publicName: "fType", isSignal: false, isRequired: false, transformFunction: null }, fInputSide: { classPropertyName: "fInputSide", publicName: "fInputSide", isSignal: true, isRequired: false, transformFunction: null }, fOutputSide: { classPropertyName: "fOutputSide", publicName: "fOutputSide", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "f-component f-connection f-connection-for-create" }, providers: [
|
|
49
49
|
{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionForCreateComponent },
|
|
50
|
-
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i3.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i4.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
50
|
+
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i3.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i4.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
51
51
|
}
|
|
52
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FConnectionForCreateComponent, decorators: [{
|
|
53
53
|
type: Component,
|
|
@@ -55,7 +55,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
55
55
|
class: 'f-component f-connection f-connection-for-create',
|
|
56
56
|
}, providers: [
|
|
57
57
|
{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FConnectionForCreateComponent },
|
|
58
|
-
], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
58
|
+
], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
59
59
|
}], propDecorators: { fRadius: [{
|
|
60
60
|
type: Input,
|
|
61
61
|
args: [{ transform: numberAttribute }]
|
|
@@ -68,4 +68,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
68
68
|
}], fType: [{
|
|
69
69
|
type: Input
|
|
70
70
|
}] } });
|
|
71
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
71
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jb25uZWN0aW9uLWZvci1jcmVhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY29ubmVjdGlvbi9mLWNvbm5lY3Rpb24tZm9yLWNyZWF0ZS9mLWNvbm5lY3Rpb24tZm9yLWNyZWF0ZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULE1BQU0sRUFDTixLQUFLLEVBQ0wsS0FBSyxFQUNMLGVBQWUsRUFJZixNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDaEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUNMLG9DQUFvQyxFQUNwQyx5Q0FBeUMsR0FDMUMsTUFBTSxjQUFjLENBQUM7QUFDdEIsT0FBTyxFQUNMLG9CQUFvQixFQUNwQiwyQkFBMkIsRUFDM0IsZ0JBQWdCLEVBQ2hCLDhCQUE4QixFQUM5QixlQUFlLEdBQ2hCLE1BQU0sdUJBQXVCLENBQUM7Ozs7OztBQUUvQixJQUFJLFFBQVEsR0FBRyxDQUFDLENBQUM7QUFjakIsTUFBTSxPQUFPLDZCQUNYLFNBQVEsZUFBZTtJQUdQLEdBQUcsR0FBRyxNQUFNLENBQVMsMkJBQTJCLFFBQVEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUU5RCxTQUFTLEdBQUcsTUFBTSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBRXZCLFFBQVEsR0FBRyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7SUFHdEIsT0FBTyxHQUFXLENBQUMsQ0FBQztJQUdwQixPQUFPLEdBQVcsRUFBRSxDQUFDO0lBR3JCLFNBQVMsR0FBeUIsb0JBQW9CLENBQUMsS0FBSyxDQUFDO0lBRzdELEtBQUssR0FBOEIsZ0JBQWdCLENBQUMsUUFBUSxDQUFDO0lBRTdELFVBQVUsR0FBRyxLQUFLLENBQUMsMkJBQTJCLENBQUMsT0FBTyxFQUFFO1FBQ3RFLFNBQVMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFO1lBQ2YsT0FBTyxVQUFVLENBQUMsQ0FBQyxFQUFFLFlBQVksRUFBRSwyQkFBMkIsQ0FBQyxDQUFDO1FBQ2xFLENBQUM7S0FDRixDQUFDLENBQUM7SUFFYSxXQUFXLEdBQUcsS0FBSyxDQUFDLDJCQUEyQixDQUFDLE9BQU8sRUFBRTtRQUN2RSxTQUFTLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRTtZQUNmLE9BQU8sVUFBVSxDQUFDLENBQUMsRUFBRSxhQUFhLEVBQUUsMkJBQTJCLENBQUMsQ0FBQztRQUNuRSxDQUFDO0tBQ0YsQ0FBQyxDQUFDO0lBRUgsSUFBb0IsZUFBZTtRQUNqQyxPQUFPLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQyxXQUFXLENBQUM7SUFDbEMsQ0FBQztJQUVnQixTQUFTLEdBQUcsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBRXhDLFFBQVE7UUFDYixJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJLG9DQUFvQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7SUFDekUsQ0FBQztJQUVNLGVBQWU7UUFDcEIsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2QsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsRUFBRSxDQUFDLENBQUM7SUFDOUQsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSx5Q0FBeUMsRUFBRSxDQUFDLENBQUM7SUFDMUUsQ0FBQzt3R0F0RFUsNkJBQTZCOzRGQUE3Qiw2QkFBNkIsd0tBVXBCLGVBQWUsMkhBR2YsZUFBZSxpSUFHZixDQUFDLEtBQWMsRUFBRSxFQUFFLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxXQUFXLEVBQUUsb0JBQW9CLENBQUMseWVBcEJqRjtZQUNULEVBQUUsT0FBTyxFQUFFLDhCQUE4QixFQUFFLFdBQVcsRUFBRSw2QkFBNkIsRUFBRTtTQUN4RixzRUN4Q0gsc3hCQXVCQTs7NEZEbUJhLDZCQUE2QjtrQkFaekMsU0FBUzsrQkFDRSx5QkFBeUIsbUJBR2xCLHVCQUF1QixDQUFDLE1BQU0sUUFDekM7d0JBQ0osS0FBSyxFQUFFLGtEQUFrRDtxQkFDMUQsYUFDVTt3QkFDVCxFQUFFLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxXQUFXLCtCQUErQixFQUFFO3FCQUN4Rjs4QkFhZSxPQUFPO3NCQUR0QixLQUFLO3VCQUFDLEVBQUUsU0FBUyxFQUFFLGVBQWUsRUFBRTtnQkFJckIsT0FBTztzQkFEdEIsS0FBSzt1QkFBQyxFQUFFLFNBQVMsRUFBRSxlQUFlLEVBQUU7Z0JBSXJCLFNBQVM7c0JBRHhCLEtBQUs7dUJBQUMsRUFBRSxTQUFTLEVBQUUsQ0FBQyxLQUFjLEVBQUUsRUFBRSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEVBQUUsV0FBVyxFQUFFLG9CQUFvQixDQUFDLEVBQUU7Z0JBSTlFLEtBQUs7c0JBRHBCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBpbmplY3QsXG4gIGlucHV0LFxuICBJbnB1dCxcbiAgbnVtYmVyQXR0cmlidXRlLFxuICBPbkNoYW5nZXMsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBzaWduYWwsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRW1pdENvbm5lY3Rpb25zQ2hhbmdlc1JlcXVlc3QgfSBmcm9tICcuLi8uLi9mLXN0b3JhZ2UnO1xuaW1wb3J0IHsgY2FzdFRvRW51bSB9IGZyb20gJ0Bmb2JsZXgvdXRpbHMnO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQge1xuICBBZGRDb25uZWN0aW9uRm9yQ3JlYXRlVG9TdG9yZVJlcXVlc3QsXG4gIFJlbW92ZUNvbm5lY3Rpb25Gb3JDcmVhdGVGcm9tU3RvcmVSZXF1ZXN0LFxufSBmcm9tICcuLi8uLi9kb21haW4nO1xuaW1wb3J0IHtcbiAgRUZDb25uZWN0aW9uQmVoYXZpb3IsXG4gIEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZSxcbiAgRUZDb25uZWN0aW9uVHlwZSxcbiAgRl9DT05ORUNUSU9OX0NPTVBPTkVOVFNfUEFSRU5ULFxuICBGQ29ubmVjdGlvbkJhc2UsXG59IGZyb20gJy4uLy4uL2YtY29ubmVjdGlvbi12Mic7XG5cbmxldCB1bmlxdWVJZCA9IDA7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZi1jb25uZWN0aW9uLWZvci1jcmVhdGUuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2YtY29tcG9uZW50IGYtY29ubmVjdGlvbiBmLWNvbm5lY3Rpb24tZm9yLWNyZWF0ZScsXG4gIH0sXG4gIHByb3ZpZGVyczogW1xuICAgIHsgcHJvdmlkZTogRl9DT05ORUNUSU9OX0NPTVBPTkVOVFNfUEFSRU5ULCB1c2VFeGlzdGluZzogRkNvbm5lY3Rpb25Gb3JDcmVhdGVDb21wb25lbnQgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgRkNvbm5lY3Rpb25Gb3JDcmVhdGVDb21wb25lbnRcbiAgZXh0ZW5kcyBGQ29ubmVjdGlvbkJhc2VcbiAgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0LCBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95XG57XG4gIHB1YmxpYyBvdmVycmlkZSBmSWQgPSBzaWduYWw8c3RyaW5nPihgZi1jb25uZWN0aW9uLWZvci1jcmVhdGUtJHt1bmlxdWVJZCsrfWApO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmT3V0cHV0SWQgPSBzaWduYWwoJycpO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmSW5wdXRJZCA9IHNpZ25hbCgnJyk7XG5cbiAgQElucHV0KHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSlcbiAgcHVibGljIG92ZXJyaWRlIGZSYWRpdXM6IG51bWJlciA9IDg7XG5cbiAgQElucHV0KHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSlcbiAgcHVibGljIG92ZXJyaWRlIGZPZmZzZXQ6IG51bWJlciA9IDEyO1xuXG4gIEBJbnB1dCh7IHRyYW5zZm9ybTogKHZhbHVlOiB1bmtub3duKSA9PiBjYXN0VG9FbnVtKHZhbHVlLCAnZkJlaGF2aW9yJywgRUZDb25uZWN0aW9uQmVoYXZpb3IpIH0pXG4gIHB1YmxpYyBvdmVycmlkZSBmQmVoYXZpb3I6IEVGQ29ubmVjdGlvbkJlaGF2aW9yID0gRUZDb25uZWN0aW9uQmVoYXZpb3IuRklYRUQ7XG5cbiAgQElucHV0KClcbiAgcHVibGljIG92ZXJyaWRlIGZUeXBlOiBFRkNvbm5lY3Rpb25UeXBlIHwgc3RyaW5nID0gRUZDb25uZWN0aW9uVHlwZS5TVFJBSUdIVDtcblxuICBwdWJsaWMgb3ZlcnJpZGUgZklucHV0U2lkZSA9IGlucHV0KEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZS5ERUZBVUxULCB7XG4gICAgdHJhbnNmb3JtOiAoeCkgPT4ge1xuICAgICAgcmV0dXJuIGNhc3RUb0VudW0oeCwgJ2ZJbnB1dFNpZGUnLCBFRkNvbm5lY3Rpb25Db25uZWN0YWJsZVNpZGUpO1xuICAgIH0sXG4gIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmT3V0cHV0U2lkZSA9IGlucHV0KEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZS5ERUZBVUxULCB7XG4gICAgdHJhbnNmb3JtOiAoeCkgPT4ge1xuICAgICAgcmV0dXJuIGNhc3RUb0VudW0oeCwgJ2ZPdXRwdXRTaWRlJywgRUZDb25uZWN0aW9uQ29ubmVjdGFibGVTaWRlKTtcbiAgICB9LFxuICB9KTtcblxuICBwdWJsaWMgb3ZlcnJpZGUgZ2V0IGJvdW5kaW5nRWxlbWVudCgpOiBIVE1MRWxlbWVudCB8IFNWR0VsZW1lbnQge1xuICAgIHJldHVybiB0aGlzLmZQYXRoKCkuaG9zdEVsZW1lbnQ7XG4gIH1cblxuICBwcml2YXRlIHJlYWRvbmx5IF9tZWRpYXRvciA9IGluamVjdChGTWVkaWF0b3IpO1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBBZGRDb25uZWN0aW9uRm9yQ3JlYXRlVG9TdG9yZVJlcXVlc3QodGhpcykpO1xuICB9XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmhpZGUoKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBFbWl0Q29ubmVjdGlvbnNDaGFuZ2VzUmVxdWVzdCgpKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZW1vdmVDb25uZWN0aW9uRm9yQ3JlYXRlRnJvbVN0b3JlUmVxdWVzdCgpKTtcbiAgfVxufVxuIiwiPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCI+XG4gIDxkZWZzICNkZWZzPjwvZGVmcz5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwic3ZnW2ZNYXJrZXJdXCIgLz5cbiAgPGcgY2xhc3M9XCJmLWNvbm5lY3Rpb24tZ3JvdXBcIj5cbiAgICBAaWYgKGZHcmFkaWVudCgpOyBhcyBncmFkaWVudCkge1xuICAgICAgPGxpbmVhckdyYWRpZW50XG4gICAgICAgIGZDb25uZWN0aW9uR3JhZGllbnRSZW5kZXJlclxuICAgICAgICBbZkNvbm5lY3Rpb25HcmFkaWVudFJlbmRlcmVyRm9yXT1cImdyYWRpZW50XCJcbiAgICAgID48L2xpbmVhckdyYWRpZW50PlxuICAgIH1cbiAgICA8cGF0aCBmQ29ubmVjdGlvblNlbGVjdGlvbiBbYXR0ci5kXT1cInBhdGhcIj48L3BhdGg+XG4gICAgPGc+XG4gICAgICA8cGF0aCBmLWNvbm5lY3Rpb24tcGF0aCBbdXNlR3JhZGllbnRdPVwiISFmR3JhZGllbnQoKVwiIFthdHRyLmRdPVwicGF0aFwiPjwvcGF0aD5cbiAgICAgIDxjaXJjbGUgZi1jb25uZWN0aW9uLWRyYWctaGFuZGxlLWVuZCByPVwiOFwiPjwvY2lyY2xlPlxuICAgIDwvZz5cbiAgPC9nPlxuPC9zdmc+XG48bmctY29udGVudCBzZWxlY3Q9XCJmLWNvbm5lY3Rpb24tbWFya2VyLWNpcmNsZSwgZi1jb25uZWN0aW9uLW1hcmtlci1hcnJvd1wiIC8+XG48bmctY29udGVudCBzZWxlY3Q9XCJmLWNvbm5lY3Rpb24tZ3JhZGllbnRcIiAvPlxuXG5AaWYgKGZDb250ZW50cygpLmxlbmd0aCkge1xuICA8bmctY29udGVudCBzZWxlY3Q9XCJbZkNvbm5lY3Rpb25Db250ZW50XVwiIC8+XG59XG4iXX0=
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './f-connection-for-create.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUNBQXFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlLmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -46,13 +46,13 @@ export class FSnapConnectionComponent extends FConnectionBase {
|
|
|
46
46
|
this._mediator.execute(new RemoveSnapConnectionFromStoreRequest());
|
|
47
47
|
}
|
|
48
48
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FSnapConnectionComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
49
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FSnapConnectionComponent, selector: "f-snap-connection", inputs: { fSnapThreshold: { classPropertyName: "fSnapThreshold", publicName: "fSnapThreshold", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fRadius: { classPropertyName: "fRadius", publicName: "fRadius", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fOffset: { classPropertyName: "fOffset", publicName: "fOffset", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fBehavior: { classPropertyName: "fBehavior", publicName: "fBehavior", isSignal: false, isRequired: false, transformFunction: (value) => castToEnum(value, 'fBehavior', EFConnectionBehavior) }, fType: { classPropertyName: "fType", publicName: "fType", isSignal: false, isRequired: false, transformFunction: null }, fInputSide: { classPropertyName: "fInputSide", publicName: "fInputSide", isSignal: true, isRequired: false, transformFunction: null }, fOutputSide: { classPropertyName: "fOutputSide", publicName: "fOutputSide", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "f-component f-connection f-snap-connection" }, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FSnapConnectionComponent }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i3.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i4.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
49
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FSnapConnectionComponent, selector: "f-snap-connection", inputs: { fSnapThreshold: { classPropertyName: "fSnapThreshold", publicName: "fSnapThreshold", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fRadius: { classPropertyName: "fRadius", publicName: "fRadius", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fOffset: { classPropertyName: "fOffset", publicName: "fOffset", isSignal: false, isRequired: false, transformFunction: numberAttribute }, fBehavior: { classPropertyName: "fBehavior", publicName: "fBehavior", isSignal: false, isRequired: false, transformFunction: (value) => castToEnum(value, 'fBehavior', EFConnectionBehavior) }, fType: { classPropertyName: "fType", publicName: "fType", isSignal: false, isRequired: false, transformFunction: null }, fInputSide: { classPropertyName: "fInputSide", publicName: "fInputSide", isSignal: true, isRequired: false, transformFunction: null }, fOutputSide: { classPropertyName: "fOutputSide", publicName: "fOutputSide", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "f-component f-connection f-snap-connection" }, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FSnapConnectionComponent }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"], dependencies: [{ kind: "component", type: i1.FConnectionGradientRenderer, selector: "linearGradient[fConnectionGradientRenderer]", inputs: ["fConnectionGradientRendererFor"] }, { kind: "component", type: i2.FConnectionDragHandleEnd, selector: "circle[f-connection-drag-handle-end]" }, { kind: "component", type: i3.FConnectionPath, selector: "path[f-connection-path]", inputs: ["useGradient"] }, { kind: "component", type: i4.FConnectionSelection, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
50
50
|
}
|
|
51
51
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FSnapConnectionComponent, decorators: [{
|
|
52
52
|
type: Component,
|
|
53
53
|
args: [{ selector: 'f-snap-connection', changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
54
54
|
class: 'f-component f-connection f-snap-connection',
|
|
55
|
-
}, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FSnapConnectionComponent }], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
55
|
+
}, providers: [{ provide: F_CONNECTION_COMPONENTS_PARENT, useExisting: FSnapConnectionComponent }], template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <ng-content select=\"svg[fMarker]\" />\n <g class=\"f-connection-group\">\n @if (fGradient(); as gradient) {\n <linearGradient\n fConnectionGradientRenderer\n [fConnectionGradientRendererFor]=\"gradient\"\n ></linearGradient>\n }\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [useGradient]=\"!!fGradient()\" [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle-end r=\"8\"></circle>\n </g>\n </g>\n</svg>\n<ng-content select=\"f-connection-marker-circle, f-connection-marker-arrow\" />\n<ng-content select=\"f-connection-gradient\" />\n\n@if (fContents().length) {\n <ng-content select=\"[fConnectionContent]\" />\n}\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-content{pointer-events:all}\n"] }]
|
|
56
56
|
}], propDecorators: { fSnapThreshold: [{
|
|
57
57
|
type: Input,
|
|
58
58
|
args: [{ transform: numberAttribute }]
|
|
@@ -68,4 +68,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
68
68
|
}], fType: [{
|
|
69
69
|
type: Input
|
|
70
70
|
}] } });
|
|
71
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
71
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1zbmFwLWNvbm5lY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY29ubmVjdGlvbi9mLXNuYXAtY29ubmVjdGlvbi9mLXNuYXAtY29ubmVjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2Ytc25hcC1jb25uZWN0aW9uL2Ytc25hcC1jb25uZWN0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULE1BQU0sRUFDTixLQUFLLEVBQ0wsS0FBSyxFQUNMLGVBQWUsRUFJZixNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDaEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUNMLCtCQUErQixFQUMvQixvQ0FBb0MsR0FDckMsTUFBTSxjQUFjLENBQUM7QUFDdEIsT0FBTyxFQUNMLG9CQUFvQixFQUNwQiwyQkFBMkIsRUFDM0IsZ0JBQWdCLEVBQ2hCLDhCQUE4QixFQUM5QixlQUFlLEdBQ2hCLE1BQU0sdUJBQXVCLENBQUM7Ozs7OztBQUUvQixJQUFJLFFBQVEsR0FBRyxDQUFDLENBQUM7QUFZakIsTUFBTSxPQUFPLHdCQUNYLFNBQVEsZUFBZTtJQUdQLEdBQUcsR0FBRyxNQUFNLENBQVMscUJBQXFCLFFBQVEsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUdqRSxjQUFjLEdBQVcsRUFBRSxDQUFDO0lBRW5CLFNBQVMsR0FBRyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7SUFFdkIsUUFBUSxHQUFHLE1BQU0sQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUd0QixPQUFPLEdBQVcsQ0FBQyxDQUFDO0lBR3BCLE9BQU8sR0FBVyxFQUFFLENBQUM7SUFHckIsU0FBUyxHQUF5QixvQkFBb0IsQ0FBQyxLQUFLLENBQUM7SUFHN0QsS0FBSyxHQUE4QixnQkFBZ0IsQ0FBQyxRQUFRLENBQUM7SUFFN0QsVUFBVSxHQUFHLEtBQUssQ0FBQywyQkFBMkIsQ0FBQyxPQUFPLEVBQUU7UUFDdEUsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7WUFDZixPQUFPLFVBQVUsQ0FBQyxDQUFDLEVBQUUsWUFBWSxFQUFFLDJCQUEyQixDQUFDLENBQUM7UUFDbEUsQ0FBQztLQUNGLENBQUMsQ0FBQztJQUVhLFdBQVcsR0FBRyxLQUFLLENBQUMsMkJBQTJCLENBQUMsT0FBTyxFQUFFO1FBQ3ZFLFNBQVMsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFO1lBQ2YsT0FBTyxVQUFVLENBQUMsQ0FBQyxFQUFFLGFBQWEsRUFBRSwyQkFBMkIsQ0FBQyxDQUFDO1FBQ25FLENBQUM7S0FDRixDQUFDLENBQUM7SUFFSCxJQUFvQixlQUFlO1FBQ2pDLE9BQU8sSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLFdBQVcsQ0FBQztJQUNsQyxDQUFDO0lBRWdCLFNBQVMsR0FBRyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUM7SUFFeEMsUUFBUTtRQUNiLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksK0JBQStCLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztJQUNwRSxDQUFDO0lBRU0sZUFBZTtRQUNwQixJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDZCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJLDZCQUE2QixFQUFFLENBQUMsQ0FBQztJQUM5RCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxJQUFJLG9DQUFvQyxFQUFFLENBQUMsQ0FBQztJQUNyRSxDQUFDO3dHQXpEVSx3QkFBd0I7NEZBQXhCLHdCQUF3Qix1TEFNZixlQUFlLDJIQU9mLGVBQWUsMkhBR2YsZUFBZSxpSUFHZixDQUFDLEtBQWMsRUFBRSxFQUFFLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxXQUFXLEVBQUUsb0JBQW9CLENBQUMsbWVBckJqRixDQUFDLEVBQUUsT0FBTyxFQUFFLDhCQUE4QixFQUFFLFdBQVcsRUFBRSx3QkFBd0IsRUFBRSxDQUFDLHNFQ3RDakcsc3hCQXVCQTs7NEZEaUJhLHdCQUF3QjtrQkFWcEMsU0FBUzsrQkFDRSxtQkFBbUIsbUJBR1osdUJBQXVCLENBQUMsTUFBTSxRQUN6Qzt3QkFDSixLQUFLLEVBQUUsNENBQTRDO3FCQUNwRCxhQUNVLENBQUMsRUFBRSxPQUFPLEVBQUUsOEJBQThCLEVBQUUsV0FBVywwQkFBMEIsRUFBRSxDQUFDOzhCQVN4RixjQUFjO3NCQURwQixLQUFLO3VCQUFDLEVBQUUsU0FBUyxFQUFFLGVBQWUsRUFBRTtnQkFRckIsT0FBTztzQkFEdEIsS0FBSzt1QkFBQyxFQUFFLFNBQVMsRUFBRSxlQUFlLEVBQUU7Z0JBSXJCLE9BQU87c0JBRHRCLEtBQUs7dUJBQUMsRUFBRSxTQUFTLEVBQUUsZUFBZSxFQUFFO2dCQUlyQixTQUFTO3NCQUR4QixLQUFLO3VCQUFDLEVBQUUsU0FBUyxFQUFFLENBQUMsS0FBYyxFQUFFLEVBQUUsQ0FBQyxVQUFVLENBQUMsS0FBSyxFQUFFLFdBQVcsRUFBRSxvQkFBb0IsQ0FBQyxFQUFFO2dCQUk5RSxLQUFLO3NCQURwQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWZ0ZXJWaWV3SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgaW5qZWN0LFxuICBpbnB1dCxcbiAgSW5wdXQsXG4gIG51bWJlckF0dHJpYnV0ZSxcbiAgT25DaGFuZ2VzLFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbiAgc2lnbmFsLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEVtaXRDb25uZWN0aW9uc0NoYW5nZXNSZXF1ZXN0IH0gZnJvbSAnLi4vLi4vZi1zdG9yYWdlJztcbmltcG9ydCB7IGNhc3RUb0VudW0gfSBmcm9tICdAZm9ibGV4L3V0aWxzJztcbmltcG9ydCB7IEZNZWRpYXRvciB9IGZyb20gJ0Bmb2JsZXgvbWVkaWF0b3InO1xuaW1wb3J0IHtcbiAgQWRkU25hcENvbm5lY3Rpb25Ub1N0b3JlUmVxdWVzdCxcbiAgUmVtb3ZlU25hcENvbm5lY3Rpb25Gcm9tU3RvcmVSZXF1ZXN0LFxufSBmcm9tICcuLi8uLi9kb21haW4nO1xuaW1wb3J0IHtcbiAgRUZDb25uZWN0aW9uQmVoYXZpb3IsXG4gIEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZSxcbiAgRUZDb25uZWN0aW9uVHlwZSxcbiAgRl9DT05ORUNUSU9OX0NPTVBPTkVOVFNfUEFSRU5ULFxuICBGQ29ubmVjdGlvbkJhc2UsXG59IGZyb20gJy4uLy4uL2YtY29ubmVjdGlvbi12Mic7XG5cbmxldCB1bmlxdWVJZCA9IDA7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Ytc25hcC1jb25uZWN0aW9uJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Ytc25hcC1jb25uZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZi1zbmFwLWNvbm5lY3Rpb24uY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2YtY29tcG9uZW50IGYtY29ubmVjdGlvbiBmLXNuYXAtY29ubmVjdGlvbicsXG4gIH0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogRl9DT05ORUNUSU9OX0NPTVBPTkVOVFNfUEFSRU5ULCB1c2VFeGlzdGluZzogRlNuYXBDb25uZWN0aW9uQ29tcG9uZW50IH1dLFxufSlcbmV4cG9ydCBjbGFzcyBGU25hcENvbm5lY3Rpb25Db21wb25lbnRcbiAgZXh0ZW5kcyBGQ29ubmVjdGlvbkJhc2VcbiAgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0LCBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95XG57XG4gIHB1YmxpYyBvdmVycmlkZSBmSWQgPSBzaWduYWw8c3RyaW5nPihgZi1zbmFwLWNvbm5lY3Rpb24tJHt1bmlxdWVJZCsrfWApO1xuXG4gIEBJbnB1dCh7IHRyYW5zZm9ybTogbnVtYmVyQXR0cmlidXRlIH0pXG4gIHB1YmxpYyBmU25hcFRocmVzaG9sZDogbnVtYmVyID0gMjA7XG5cbiAgcHVibGljIG92ZXJyaWRlIGZPdXRwdXRJZCA9IHNpZ25hbCgnJyk7XG5cbiAgcHVibGljIG92ZXJyaWRlIGZJbnB1dElkID0gc2lnbmFsKCcnKTtcblxuICBASW5wdXQoeyB0cmFuc2Zvcm06IG51bWJlckF0dHJpYnV0ZSB9KVxuICBwdWJsaWMgb3ZlcnJpZGUgZlJhZGl1czogbnVtYmVyID0gODtcblxuICBASW5wdXQoeyB0cmFuc2Zvcm06IG51bWJlckF0dHJpYnV0ZSB9KVxuICBwdWJsaWMgb3ZlcnJpZGUgZk9mZnNldDogbnVtYmVyID0gMTI7XG5cbiAgQElucHV0KHsgdHJhbnNmb3JtOiAodmFsdWU6IHVua25vd24pID0+IGNhc3RUb0VudW0odmFsdWUsICdmQmVoYXZpb3InLCBFRkNvbm5lY3Rpb25CZWhhdmlvcikgfSlcbiAgcHVibGljIG92ZXJyaWRlIGZCZWhhdmlvcjogRUZDb25uZWN0aW9uQmVoYXZpb3IgPSBFRkNvbm5lY3Rpb25CZWhhdmlvci5GSVhFRDtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgb3ZlcnJpZGUgZlR5cGU6IEVGQ29ubmVjdGlvblR5cGUgfCBzdHJpbmcgPSBFRkNvbm5lY3Rpb25UeXBlLlNUUkFJR0hUO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBmSW5wdXRTaWRlID0gaW5wdXQoRUZDb25uZWN0aW9uQ29ubmVjdGFibGVTaWRlLkRFRkFVTFQsIHtcbiAgICB0cmFuc2Zvcm06ICh4KSA9PiB7XG4gICAgICByZXR1cm4gY2FzdFRvRW51bSh4LCAnZklucHV0U2lkZScsIEVGQ29ubmVjdGlvbkNvbm5lY3RhYmxlU2lkZSk7XG4gICAgfSxcbiAgfSk7XG5cbiAgcHVibGljIG92ZXJyaWRlIGZPdXRwdXRTaWRlID0gaW5wdXQoRUZDb25uZWN0aW9uQ29ubmVjdGFibGVTaWRlLkRFRkFVTFQsIHtcbiAgICB0cmFuc2Zvcm06ICh4KSA9PiB7XG4gICAgICByZXR1cm4gY2FzdFRvRW51bSh4LCAnZk91dHB1dFNpZGUnLCBFRkNvbm5lY3Rpb25Db25uZWN0YWJsZVNpZGUpO1xuICAgIH0sXG4gIH0pO1xuXG4gIHB1YmxpYyBvdmVycmlkZSBnZXQgYm91bmRpbmdFbGVtZW50KCk6IEhUTUxFbGVtZW50IHwgU1ZHRWxlbWVudCB7XG4gICAgcmV0dXJuIHRoaXMuZlBhdGgoKS5ob3N0RWxlbWVudDtcbiAgfVxuXG4gIHByaXZhdGUgcmVhZG9ubHkgX21lZGlhdG9yID0gaW5qZWN0KEZNZWRpYXRvcik7XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IEFkZFNuYXBDb25uZWN0aW9uVG9TdG9yZVJlcXVlc3QodGhpcykpO1xuICB9XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmhpZGUoKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBFbWl0Q29ubmVjdGlvbnNDaGFuZ2VzUmVxdWVzdCgpKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZW1vdmVTbmFwQ29ubmVjdGlvbkZyb21TdG9yZVJlcXVlc3QoKSk7XG4gIH1cbn1cbiIsIjxzdmcgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Z1wiPlxuICA8ZGVmcyAjZGVmcz48L2RlZnM+XG4gIDxuZy1jb250ZW50IHNlbGVjdD1cInN2Z1tmTWFya2VyXVwiIC8+XG4gIDxnIGNsYXNzPVwiZi1jb25uZWN0aW9uLWdyb3VwXCI+XG4gICAgQGlmIChmR3JhZGllbnQoKTsgYXMgZ3JhZGllbnQpIHtcbiAgICAgIDxsaW5lYXJHcmFkaWVudFxuICAgICAgICBmQ29ubmVjdGlvbkdyYWRpZW50UmVuZGVyZXJcbiAgICAgICAgW2ZDb25uZWN0aW9uR3JhZGllbnRSZW5kZXJlckZvcl09XCJncmFkaWVudFwiXG4gICAgICA+PC9saW5lYXJHcmFkaWVudD5cbiAgICB9XG4gICAgPHBhdGggZkNvbm5lY3Rpb25TZWxlY3Rpb24gW2F0dHIuZF09XCJwYXRoXCI+PC9wYXRoPlxuICAgIDxnPlxuICAgICAgPHBhdGggZi1jb25uZWN0aW9uLXBhdGggW3VzZUdyYWRpZW50XT1cIiEhZkdyYWRpZW50KClcIiBbYXR0ci5kXT1cInBhdGhcIj48L3BhdGg+XG4gICAgICA8Y2lyY2xlIGYtY29ubmVjdGlvbi1kcmFnLWhhbmRsZS1lbmQgcj1cIjhcIj48L2NpcmNsZT5cbiAgICA8L2c+XG4gIDwvZz5cbjwvc3ZnPlxuPG5nLWNvbnRlbnQgc2VsZWN0PVwiZi1jb25uZWN0aW9uLW1hcmtlci1jaXJjbGUsIGYtY29ubmVjdGlvbi1tYXJrZXItYXJyb3dcIiAvPlxuPG5nLWNvbnRlbnQgc2VsZWN0PVwiZi1jb25uZWN0aW9uLWdyYWRpZW50XCIgLz5cblxuQGlmIChmQ29udGVudHMoKS5sZW5ndGgpIHtcbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2ZDb25uZWN0aW9uQ29udGVudF1cIiAvPlxufVxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './f-snap-connection.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2Ytc25hcC1jb25uZWN0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsK0JBQStCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Ytc25hcC1jb25uZWN0aW9uLmNvbXBvbmVudCc7XG4iXX0=
|
|
@@ -2,4 +2,4 @@ export * from './f-connection';
|
|
|
2
2
|
export * from './f-connection-for-create';
|
|
3
3
|
export * from './f-snap-connection';
|
|
4
4
|
export * from './providers';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUM7QUFFL0IsY0FBYywyQkFBMkIsQ0FBQztBQUUxQyxjQUFjLHFCQUFxQixDQUFDO0FBRXBDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLWNvbm5lY3Rpb24nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtY29ubmVjdGlvbi1mb3ItY3JlYXRlJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLXNuYXAtY29ubmVjdGlvbic7XG5cbmV4cG9ydCAqIGZyb20gJy4vcHJvdmlkZXJzJztcbiJdfQ==
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FConnectionComponent } from './f-connection';
|
|
2
2
|
import { FConnectionForCreateComponent } from './f-connection-for-create';
|
|
3
3
|
import { FSnapConnectionComponent } from './f-snap-connection';
|
|
4
|
-
import { FConnectionContent, FConnectionDragHandleEnd, FConnectionDragHandleStart, FConnectionGradient, FConnectionGradientRenderer, FConnectionMarker, FConnectionPath, FConnectionSelection, FConnectionWaypoints, } from '../f-connection-v2';
|
|
4
|
+
import { FConnectionContent, FConnectionMarkerArrow, FConnectionMarkerCircle, FConnectionDragHandleEnd, FConnectionDragHandleStart, FConnectionGradient, FConnectionGradientRenderer, FConnectionMarker, FConnectionPath, FConnectionSelection, FConnectionWaypoints, } from '../f-connection-v2';
|
|
5
5
|
export const F_CONNECTION_PROVIDERS = [
|
|
6
6
|
FConnectionDragHandleStart,
|
|
7
7
|
FConnectionDragHandleEnd,
|
|
@@ -14,8 +14,10 @@ export const F_CONNECTION_PROVIDERS = [
|
|
|
14
14
|
];
|
|
15
15
|
export const F_CONNECTION_IMPORTS_EXPORTS = [
|
|
16
16
|
FConnectionContent,
|
|
17
|
+
FConnectionMarkerCircle,
|
|
18
|
+
FConnectionMarkerArrow,
|
|
17
19
|
FConnectionGradient,
|
|
18
20
|
FConnectionGradientRenderer,
|
|
19
21
|
FConnectionWaypoints,
|
|
20
22
|
];
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY29ubmVjdGlvbi9wcm92aWRlcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDdEQsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDMUUsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDL0QsT0FBTyxFQUNMLGtCQUFrQixFQUNsQixzQkFBc0IsRUFDdEIsdUJBQXVCLEVBQ3ZCLHdCQUF3QixFQUN4QiwwQkFBMEIsRUFDMUIsbUJBQW1CLEVBQ25CLDJCQUEyQixFQUMzQixpQkFBaUIsRUFDakIsZUFBZSxFQUNmLG9CQUFvQixFQUNwQixvQkFBb0IsR0FDckIsTUFBTSxvQkFBb0IsQ0FBQztBQUU1QixNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRztJQUNwQywwQkFBMEI7SUFDMUIsd0JBQXdCO0lBQ3hCLGVBQWU7SUFDZixvQkFBb0I7SUFDcEIsaUJBQWlCO0lBRWpCLG9CQUFvQjtJQUNwQiw2QkFBNkI7SUFDN0Isd0JBQXdCO0NBQ3pCLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSw0QkFBNEIsR0FBRztJQUMxQyxrQkFBa0I7SUFDbEIsdUJBQXVCO0lBQ3ZCLHNCQUFzQjtJQUN0QixtQkFBbUI7SUFDbkIsMkJBQTJCO0lBQzNCLG9CQUFvQjtDQUNyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRkNvbm5lY3Rpb25Db21wb25lbnQgfSBmcm9tICcuL2YtY29ubmVjdGlvbic7XG5pbXBvcnQgeyBGQ29ubmVjdGlvbkZvckNyZWF0ZUNvbXBvbmVudCB9IGZyb20gJy4vZi1jb25uZWN0aW9uLWZvci1jcmVhdGUnO1xuaW1wb3J0IHsgRlNuYXBDb25uZWN0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9mLXNuYXAtY29ubmVjdGlvbic7XG5pbXBvcnQge1xuICBGQ29ubmVjdGlvbkNvbnRlbnQsXG4gIEZDb25uZWN0aW9uTWFya2VyQXJyb3csXG4gIEZDb25uZWN0aW9uTWFya2VyQ2lyY2xlLFxuICBGQ29ubmVjdGlvbkRyYWdIYW5kbGVFbmQsXG4gIEZDb25uZWN0aW9uRHJhZ0hhbmRsZVN0YXJ0LFxuICBGQ29ubmVjdGlvbkdyYWRpZW50LFxuICBGQ29ubmVjdGlvbkdyYWRpZW50UmVuZGVyZXIsXG4gIEZDb25uZWN0aW9uTWFya2VyLFxuICBGQ29ubmVjdGlvblBhdGgsXG4gIEZDb25uZWN0aW9uU2VsZWN0aW9uLFxuICBGQ29ubmVjdGlvbldheXBvaW50cyxcbn0gZnJvbSAnLi4vZi1jb25uZWN0aW9uLXYyJztcblxuZXhwb3J0IGNvbnN0IEZfQ09OTkVDVElPTl9QUk9WSURFUlMgPSBbXG4gIEZDb25uZWN0aW9uRHJhZ0hhbmRsZVN0YXJ0LFxuICBGQ29ubmVjdGlvbkRyYWdIYW5kbGVFbmQsXG4gIEZDb25uZWN0aW9uUGF0aCxcbiAgRkNvbm5lY3Rpb25TZWxlY3Rpb24sXG4gIEZDb25uZWN0aW9uTWFya2VyLFxuXG4gIEZDb25uZWN0aW9uQ29tcG9uZW50LFxuICBGQ29ubmVjdGlvbkZvckNyZWF0ZUNvbXBvbmVudCxcbiAgRlNuYXBDb25uZWN0aW9uQ29tcG9uZW50LFxuXTtcblxuZXhwb3J0IGNvbnN0IEZfQ09OTkVDVElPTl9JTVBPUlRTX0VYUE9SVFMgPSBbXG4gIEZDb25uZWN0aW9uQ29udGVudCxcbiAgRkNvbm5lY3Rpb25NYXJrZXJDaXJjbGUsXG4gIEZDb25uZWN0aW9uTWFya2VyQXJyb3csXG4gIEZDb25uZWN0aW9uR3JhZGllbnQsXG4gIEZDb25uZWN0aW9uR3JhZGllbnRSZW5kZXJlcixcbiAgRkNvbm5lY3Rpb25XYXlwb2ludHMsXG5dO1xuIl19
|
|
@@ -87,4 +87,4 @@ function isNumberValue(value) {
|
|
|
87
87
|
}
|
|
88
88
|
return false;
|
|
89
89
|
}
|
|
90
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
90
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jb25uZWN0aW9uLWNvbnRlbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uLXYyL2NvbXBvbmVudHMvY29ubmVjdGlvbi1jb250ZW50L2YtY29ubmVjdGlvbi1jb250ZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUFVLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RixPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNuRSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFDeEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sU0FBUyxDQUFDOztBQUUvQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0EwQkc7QUFTSCxNQUFNLE9BQU8sa0JBQW1CLFNBQVEsc0JBQXNCO0lBQzNDLFNBQVMsR0FBRyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDOUIsU0FBUyxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUVyQixRQUFRLEdBQUcsS0FBSyxDQUFrQixHQUFHLEVBQUU7UUFDOUQsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7WUFDZixNQUFNLENBQUMsR0FBRyw2QkFBNkIsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUUzQyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDbkMsQ0FBQztLQUNGLENBQUMsQ0FBQztJQUVzQixNQUFNLEdBQUcsS0FBSyxDQUFrQixDQUFDLEVBQUU7UUFDMUQsU0FBUyxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDLENBQUM7S0FDbkQsQ0FBQyxDQUFDO0lBRXNCLEtBQUssR0FBRyxLQUFLLENBQWdDLG9CQUFvQixDQUFDLElBQUksRUFBRTtRQUMvRixTQUFTLEVBQUUsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLFVBQVUsQ0FBdUIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsQ0FBQztLQUNyRixDQUFDLENBQUM7SUFFSSxRQUFRO1FBQ2IsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQ3hCLENBQUM7SUFFTyxjQUFjO1FBQ3BCLE1BQU0sQ0FDSixHQUFHLEVBQUU7WUFDSCxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDZCxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDaEIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1lBQ2IsU0FBUyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksNkJBQTZCLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0UsQ0FBQyxFQUNELEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FDN0IsQ0FBQztJQUNKLENBQUM7d0dBbENVLGtCQUFrQjs0RkFBbEIsa0JBQWtCLHFmQUZsQixDQUFDLEVBQUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLFdBQVcsRUFBRSxrQkFBa0IsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLENBQUM7OzRGQUVqRixrQkFBa0I7a0JBUjlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLElBQUksRUFBRTt3QkFDSixPQUFPLEVBQUUsc0JBQXNCO3FCQUNoQztvQkFDRCxTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxXQUFXLG9CQUFvQixFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsQ0FBQztpQkFDN0Y7O0FBc0NELFNBQVMsNkJBQTZCLENBQUMsS0FBYyxFQUFFLGdCQUF3QixDQUFDO0lBQzlFLE9BQU8sYUFBYSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQztBQUM5RCxDQUFDO0FBRUQsU0FBUyxhQUFhLENBQUMsS0FBYztJQUNuQyxJQUFJLE9BQU8sS0FBSyxLQUFLLFFBQVEsRUFBRSxDQUFDO1FBQzlCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzlCLENBQUM7SUFFRCxJQUFJLE9BQU8sS0FBSyxLQUFLLFFBQVEsRUFBRSxDQUFDO1FBQzlCLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVELElBQUksT0FBTyxLQUFLLEtBQUssUUFBUSxFQUFFLENBQUM7UUFDOUIsT0FBTyxLQUFLLENBQUMsSUFBSSxFQUFFLEtBQUssRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUM3RCxDQUFDO0lBRUQsT0FBTyxLQUFLLENBQUM7QUFDZixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBlZmZlY3QsIGluamVjdCwgSW5qZWN0b3IsIGlucHV0LCBPbkluaXQsIHVudHJhY2tlZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRW1pdENvbm5lY3Rpb25zQ2hhbmdlc1JlcXVlc3QgfSBmcm9tICcuLi8uLi8uLi9mLXN0b3JhZ2UnO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQgeyBjYXN0VG9FbnVtIH0gZnJvbSAnQGZvYmxleC91dGlscyc7XG5pbXBvcnQgeyBGX0NPTk5FQ1RJT05fQ09OVEVOVCwgRkNvbm5lY3Rpb25Db250ZW50QmFzZSB9IGZyb20gJy4vbW9kZWxzJztcbmltcG9ydCB7IFBvbHlsaW5lQ29udGVudEFsaWduIH0gZnJvbSAnLi91dGlscyc7XG5cbi8qKlxuICogRGlyZWN0aXZlIGZvciBwbGFjaW5nIGN1c3RvbSB1c2VyIGNvbnRlbnQgKHRleHQsIGljb25zLCBidXR0b25zLCBldGMuKVxuICogYWxvbmcgYSBjb25uZWN0aW9uIGxpbmUuXG4gKlxuICogSXQgYWxsb3dzIHlvdSB0byBzcGVjaWZ5IHRoZSBwb3NpdGlvbiBhbG9uZyB0aGUgY29ubmVjdGlvbixcbiAqIHNoaWZ0IHRoZSBjb250ZW50IHNpZGV3YXlzIChwZXJwZW5kaWN1bGFyIHRvIHRoZSBwYXRoKSxcbiAqIGFwcGx5IGEgbWFyZ2luIG5lYXIgdGhlIGVkZ2VzLCBhbmQgY29udHJvbCBvcmllbnRhdGlvbi5cbiAqXG4gKiAjIyMgVXNhZ2UgZXhhbXBsZXNcbiAqXG4gKiBgYGBodG1sXG4gKiA8IS0tIFRleHQgY2VudGVyZWQgb24gdGhlIGNvbm5lY3Rpb24gLS0+XG4gKiA8ZGl2IGZDb25uZWN0aW9uQ29udGVudCBbcG9zaXRpb25dPVwiMC41XCI+XG4gKiAgIEhlbGxvXG4gKiA8L2Rpdj5cbiAqXG4gKiA8IS0tIEJ1dHRvbiBuZWFyIHRoZSBzdGFydCBvZiB0aGUgY29ubmVjdGlvbiwgc2hpZnRlZCB1cHdhcmQgYnkgMTJweCAtLT5cbiAqIDxidXR0b24gZkNvbm5lY3Rpb25Db250ZW50IFtwb3NpdGlvbl09XCIwLjJcIiBbb2Zmc2V0XT1cIi0xMlwiPlxuICogICArXG4gKiA8L2J1dHRvbj5cbiAqXG4gKiA8IS0tIEljb24gYXQgdGhlIGVuZCBvZiB0aGUgY29ubmVjdGlvbiwgd2l0aCA2cHggbWFyZ2luIGFuZCByb3RhdGVkIGFsb25nIHRoZSBwYXRoIC0tPlxuICogPHNwYW4gZkNvbm5lY3Rpb25Db250ZW50IFtwb3NpdGlvbl09XCIxXCIgW21hcmdpbl09XCI2XCIgYWxpZ249XCJhbG9uZ1wiPlxuICogICDirpVcbiAqIDwvc3Bhbj5cbiAqIGBgYFxuICovXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZkNvbm5lY3Rpb25Db250ZW50XScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICAnY2xhc3MnOiAnZi1jb25uZWN0aW9uLWNvbnRlbnQnLFxuICB9LFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IEZfQ09OTkVDVElPTl9DT05URU5ULCB1c2VFeGlzdGluZzogRkNvbm5lY3Rpb25Db250ZW50LCBtdWx0aTogdHJ1ZSB9XSxcbn0pXG5leHBvcnQgY2xhc3MgRkNvbm5lY3Rpb25Db250ZW50IGV4dGVuZHMgRkNvbm5lY3Rpb25Db250ZW50QmFzZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIHByaXZhdGUgcmVhZG9ubHkgX21lZGlhdG9yID0gaW5qZWN0KEZNZWRpYXRvcik7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2luamVjdG9yID0gaW5qZWN0KEluamVjdG9yKTtcblxuICBwdWJsaWMgb3ZlcnJpZGUgcmVhZG9ubHkgcG9zaXRpb24gPSBpbnB1dDxudW1iZXIsIHVua25vd24+KDAuNSwge1xuICAgIHRyYW5zZm9ybTogKHgpID0+IHtcbiAgICAgIGNvbnN0IHYgPSBjb2VyY2VDb25uZWN0aW9uQ29udGVudE51bWJlcih4KTtcblxuICAgICAgcmV0dXJuIHYgPCAwID8gMCA6IHYgPiAxID8gMSA6IHY7XG4gICAgfSxcbiAgfSk7XG5cbiAgcHVibGljIG92ZXJyaWRlIHJlYWRvbmx5IG9mZnNldCA9IGlucHV0PG51bWJlciwgdW5rbm93bj4oMCwge1xuICAgIHRyYW5zZm9ybTogKHgpID0+IGNvZXJjZUNvbm5lY3Rpb25Db250ZW50TnVtYmVyKHgpLFxuICB9KTtcblxuICBwdWJsaWMgb3ZlcnJpZGUgcmVhZG9ubHkgYWxpZ24gPSBpbnB1dDxQb2x5bGluZUNvbnRlbnRBbGlnbiwgdW5rbm93bj4oUG9seWxpbmVDb250ZW50QWxpZ24uTk9ORSwge1xuICAgIHRyYW5zZm9ybTogKHgpID0+IGNhc3RUb0VudW08UG9seWxpbmVDb250ZW50QWxpZ24+KHgsICdhbGlnbicsIFBvbHlsaW5lQ29udGVudEFsaWduKSxcbiAgfSk7XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuX2xpc3RlbkNoYW5nZXMoKTtcbiAgfVxuXG4gIHByaXZhdGUgX2xpc3RlbkNoYW5nZXMoKTogdm9pZCB7XG4gICAgZWZmZWN0KFxuICAgICAgKCkgPT4ge1xuICAgICAgICB0aGlzLm9mZnNldCgpO1xuICAgICAgICB0aGlzLnBvc2l0aW9uKCk7XG4gICAgICAgIHRoaXMuYWxpZ24oKTtcbiAgICAgICAgdW50cmFja2VkKCgpID0+IHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IEVtaXRDb25uZWN0aW9uc0NoYW5nZXNSZXF1ZXN0KCkpKTtcbiAgICAgIH0sXG4gICAgICB7IGluamVjdG9yOiB0aGlzLl9pbmplY3RvciB9LFxuICAgICk7XG4gIH1cbn1cblxuZnVuY3Rpb24gY29lcmNlQ29ubmVjdGlvbkNvbnRlbnROdW1iZXIodmFsdWU6IHVua25vd24sIGZhbGxiYWNrVmFsdWU6IG51bWJlciA9IDApOiBudW1iZXIge1xuICByZXR1cm4gaXNOdW1iZXJWYWx1ZSh2YWx1ZSkgPyBOdW1iZXIodmFsdWUpIDogZmFsbGJhY2tWYWx1ZTtcbn1cblxuZnVuY3Rpb24gaXNOdW1iZXJWYWx1ZSh2YWx1ZTogdW5rbm93bik6IHZhbHVlIGlzIG51bWJlciB8IHN0cmluZyB8IGJpZ2ludCB7XG4gIGlmICh0eXBlb2YgdmFsdWUgPT09ICdudW1iZXInKSB7XG4gICAgcmV0dXJuICFOdW1iZXIuaXNOYU4odmFsdWUpO1xuICB9XG5cbiAgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gJ2JpZ2ludCcpIHtcbiAgICByZXR1cm4gdHJ1ZTtcbiAgfVxuXG4gIGlmICh0eXBlb2YgdmFsdWUgPT09ICdzdHJpbmcnKSB7XG4gICAgcmV0dXJuIHZhbHVlLnRyaW0oKSAhPT0gJycgJiYgIU51bWJlci5pc05hTihOdW1iZXIodmFsdWUpKTtcbiAgfVxuXG4gIHJldHVybiBmYWxzZTtcbn1cbiJdfQ==
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export * from './models';
|
|
2
2
|
export * from './utils';
|
|
3
3
|
export * from './f-connection-content';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uLXYyL2NvbXBvbmVudHMvY29ubmVjdGlvbi1jb250ZW50L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsd0JBQXdCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL21vZGVscyc7XG5leHBvcnQgKiBmcm9tICcuL3V0aWxzJztcbmV4cG9ydCAqIGZyb20gJy4vZi1jb25uZWN0aW9uLWNvbnRlbnQnO1xuIl19
|
package/esm2022/f-connection-v2/components/connection-content/models/f-connection-content-base.mjs
CHANGED
|
@@ -7,4 +7,4 @@ export class FConnectionContentBase {
|
|
|
7
7
|
*/
|
|
8
8
|
hostElement = inject((ElementRef)).nativeElement;
|
|
9
9
|
}
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jb25uZWN0aW9uLWNvbnRlbnQtYmFzZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWNvbm5lY3Rpb24tdjIvY29tcG9uZW50cy9jb25uZWN0aW9uLWNvbnRlbnQvbW9kZWxzL2YtY29ubmVjdGlvbi1jb250ZW50LWJhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBRzNFLE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLElBQUksY0FBYyxDQUNwRCxzQkFBc0IsQ0FDdkIsQ0FBQztBQUVGLE1BQU0sT0FBZ0Isc0JBQXNCO0lBQzFDOzs7T0FHRztJQUNhLFdBQVcsR0FBRyxNQUFNLENBQUMsQ0FBQSxVQUF1QixDQUFBLENBQUMsQ0FBQyxhQUFhLENBQUM7Q0E4QjdFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRWxlbWVudFJlZiwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiwgU2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJUG9seWxpbmVDb250ZW50LCBQb2x5bGluZUNvbnRlbnRBbGlnbiB9IGZyb20gJy4uL3V0aWxzJztcblxuZXhwb3J0IGNvbnN0IEZfQ09OTkVDVElPTl9DT05URU5UID0gbmV3IEluamVjdGlvblRva2VuPEZDb25uZWN0aW9uQ29udGVudEJhc2U+KFxuICAnRl9DT05ORUNUSU9OX0NPTlRFTlQnLFxuKTtcblxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEZDb25uZWN0aW9uQ29udGVudEJhc2UgaW1wbGVtZW50cyBJUG9seWxpbmVDb250ZW50IHtcbiAgLyoqXG4gICAqIFRoZSBob3N0IERPTSBlbGVtZW50IHRvIHdoaWNoIHRoZSBkaXJlY3RpdmUgaXMgYXBwbGllZC5cbiAgICogVXNlZCBpbnRlcm5hbGx5IGZvciBwb3NpdGlvbmluZyBjYWxjdWxhdGlvbnMuXG4gICAqL1xuICBwdWJsaWMgcmVhZG9ubHkgaG9zdEVsZW1lbnQgPSBpbmplY3QoRWxlbWVudFJlZjxIVE1MRWxlbWVudD4pLm5hdGl2ZUVsZW1lbnQ7XG5cbiAgLyoqXG4gICAqIFBvc2l0aW9uIGFsb25nIHRoZSBjb25uZWN0aW9uLlxuICAgKlxuICAgKiBBIG5vcm1hbGl6ZWQgdmFsdWUgaW4gdGhlIHJhbmdlIGAwLi4xYDpcbiAgICogLSBgMGAg4oCUIGF0IHRoZSBzdGFydCBvZiB0aGUgY29ubmVjdGlvbixcbiAgICogLSBgMWAg4oCUIGF0IHRoZSBlbmQgb2YgdGhlIGNvbm5lY3Rpb24sXG4gICAqIC0gYDAuNWAg4oCUIGF0IHRoZSBtaWRkbGUgb2YgdGhlIGNvbm5lY3Rpb24gKGRlZmF1bHQpLlxuICAgKi9cbiAgcHVibGljIGFic3RyYWN0IHBvc2l0aW9uOiBTaWduYWw8bnVtYmVyPjtcblxuICAvKipcbiAgICogUGVycGVuZGljdWxhciBvZmZzZXQgZnJvbSB0aGUgY29ubmVjdGlvbiBsaW5lIChpbiBwaXhlbHMpLlxuICAgKlxuICAgKiAtIFBvc2l0aXZlIHZhbHVlcyBzaGlmdCB0aGUgZWxlbWVudCB0byB0aGUgcmlnaHRcbiAgICogICByZWxhdGl2ZSB0byB0aGUgbGluZSBkaXJlY3Rpb24uXG4gICAqIC0gTmVnYXRpdmUgdmFsdWVzIHNoaWZ0IGl0IHRvIHRoZSBsZWZ0LlxuICAgKiAtIERlZmF1bHQ6IGAwYCAobm8gc2hpZnQpLlxuICAgKi9cbiAgcHVibGljIGFic3RyYWN0IG9mZnNldDogU2lnbmFsPG51bWJlcj47XG5cbiAgLyoqXG4gICAqIENvbnRyb2xzIHRoZSBvcmllbnRhdGlvbiAocm90YXRpb24pIG9mIHRoZSBjb250ZW50IHJlbGF0aXZlIHRvIHRoZSBjb25uZWN0aW9uLlxuICAgKlxuICAgKiBQb3NzaWJsZSB2YWx1ZXM6XG4gICAqIC0gYCdub25lJ2Ag4oCUIG5vIHJvdGF0aW9uIChkZWZhdWx0KS5cbiAgICogLSBgJ2Fsb25nJ2Ag4oCUIGFsaWduZWQgYWxvbmcgdGhlIHBhdGggKHRhbmdlbnQpLlxuICAgKi9cbiAgcHVibGljIGFic3RyYWN0IGFsaWduOiBTaWduYWw8UG9seWxpbmVDb250ZW50QWxpZ24+O1xufVxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './f-connection-content-base';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uLXYyL2NvbXBvbmVudHMvY29ubmVjdGlvbi1jb250ZW50L21vZGVscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDZCQUE2QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLWNvbm5lY3Rpb24tY29udGVudC1iYXNlJztcbiJdfQ==
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1wb2x5bGluZS1jb250ZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY29ubmVjdGlvbi12Mi9jb21wb25lbnRzL2Nvbm5lY3Rpb24tY29udGVudC91dGlscy9pLXBvbHlsaW5lLWNvbnRlbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNpZ25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUG9seWxpbmVDb250ZW50QWxpZ24gfSBmcm9tICcuL3BvbHlsaW5lLWNvbnRlbnQtYWxpZ24nO1xuXG4vKiogRG9tYWluIGNvbnRyYWN0IGZvciBjb250ZW50IGl0ZW0gdG8gYmUgcGxhY2VkIGFsb25nIHRoZSBwYXRoLiAqL1xuZXhwb3J0IGludGVyZmFjZSBJUG9seWxpbmVDb250ZW50IHtcbiAgcG9zaXRpb246IFNpZ25hbDxudW1iZXI+O1xuXG4gIG9mZnNldDogU2lnbmFsPG51bWJlcj47XG5cbiAgYWxpZ246IFNpZ25hbDxQb2x5bGluZUNvbnRlbnRBbGlnbj47XG5cbiAgaG9zdEVsZW1lbnQ6IEhUTUxFbGVtZW50O1xufVxuIl19
|
|
@@ -3,4 +3,4 @@ export * from './polyline-content-align';
|
|
|
3
3
|
export * from './i-polyline-content';
|
|
4
4
|
export * from './polyline-content-layout-engine';
|
|
5
5
|
export * from './polyline-content-place';
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1jb25uZWN0aW9uLXYyL2NvbXBvbmVudHMvY29ubmVjdGlvbi1jb250ZW50L3V0aWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcG9seWxpbmUtc2FtcGxlcic7XG5leHBvcnQgKiBmcm9tICcuL3BvbHlsaW5lLWNvbnRlbnQtYWxpZ24nO1xuZXhwb3J0ICogZnJvbSAnLi9pLXBvbHlsaW5lLWNvbnRlbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9wb2x5bGluZS1jb250ZW50LWxheW91dC1lbmdpbmUnO1xuZXhwb3J0ICogZnJvbSAnLi9wb2x5bGluZS1jb250ZW50LXBsYWNlJztcbiJdfQ==
|
package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-align.mjs
CHANGED
|
@@ -3,4 +3,4 @@ export var PolylineContentAlign;
|
|
|
3
3
|
PolylineContentAlign["NONE"] = "none";
|
|
4
4
|
PolylineContentAlign["ALONG"] = "along";
|
|
5
5
|
})(PolylineContentAlign || (PolylineContentAlign = {}));
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9seWxpbmUtY29udGVudC1hbGlnbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWNvbm5lY3Rpb24tdjIvY29tcG9uZW50cy9jb25uZWN0aW9uLWNvbnRlbnQvdXRpbHMvcG9seWxpbmUtY29udGVudC1hbGlnbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxvQkFJWDtBQUpELFdBQVksb0JBQW9CO0lBQzlCLHFDQUFhLENBQUE7SUFFYix1Q0FBZSxDQUFBO0FBQ2pCLENBQUMsRUFKVyxvQkFBb0IsS0FBcEIsb0JBQW9CLFFBSS9CIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gUG9seWxpbmVDb250ZW50QWxpZ24ge1xuICBOT05FID0gJ25vbmUnLFxuXG4gIEFMT05HID0gJ2Fsb25nJyxcbn1cbiJdfQ==
|
|
@@ -22,4 +22,4 @@ export class ConnectionContentLayoutEngine {
|
|
|
22
22
|
return `translate3d(${position.x}px, ${position.y}px, 0) translate(-50%, -50%) rotate(${rotationDeg}deg)`;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9seWxpbmUtY29udGVudC1sYXlvdXQtZW5naW5lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtY29ubmVjdGlvbi12Mi9jb21wb25lbnRzL2Nvbm5lY3Rpb24tY29udGVudC91dGlscy9wb2x5bGluZS1jb250ZW50LWxheW91dC1lbmdpbmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRXJELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBRWhFOzs7R0FHRztBQUNILE1BQU0sT0FBTyw2QkFBNkI7SUFDWDtJQUE3QixZQUE2QixhQUFhLElBQUksb0JBQW9CLEVBQUU7UUFBdkMsZUFBVSxHQUFWLFVBQVUsQ0FBNkI7SUFBRyxDQUFDO0lBRWpFLE1BQU0sQ0FBQyxNQUFnQixFQUFFLFFBQW9DO1FBQ2xFLE1BQU0sT0FBTyxHQUFHLElBQUksZUFBZSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQzVDLE1BQU0sS0FBSyxHQUFHLE9BQU8sQ0FBQyxXQUFXLENBQUM7UUFFbEMsS0FBSyxNQUFNLElBQUksSUFBSSxRQUFRLEVBQUUsQ0FBQztZQUM1QixNQUFNLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsQ0FBQztZQUN6RSxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLFFBQVEsRUFBRSxXQUFXLENBQUMsQ0FBQztRQUN4RixDQUFDO1FBRUQsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRU8sc0JBQXNCLENBQUMsUUFBZ0IsRUFBRSxXQUFtQjtRQUNsRSxPQUFPLGVBQWUsUUFBUSxDQUFDLENBQUMsT0FBTyxRQUFRLENBQUMsQ0FBQyx1Q0FBdUMsV0FBVyxNQUFNLENBQUM7SUFDNUcsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSVBvaW50IH0gZnJvbSAnQGZvYmxleC8yZCc7XG5pbXBvcnQgeyBQb2x5bGluZVNhbXBsZXIgfSBmcm9tICcuL3BvbHlsaW5lLXNhbXBsZXInO1xuaW1wb3J0IHsgSVBvbHlsaW5lQ29udGVudCB9IGZyb20gJy4vaS1wb2x5bGluZS1jb250ZW50JztcbmltcG9ydCB7IFBvbHlsaW5lQ29udGVudFBsYWNlIH0gZnJvbSAnLi9wb2x5bGluZS1jb250ZW50LXBsYWNlJztcblxuLyoqXG4gKiBFbmdpbmUgdGhhdCBvcmNoZXN0cmF0ZXMgcG9zaXRpb25pbmcgYW5kIG9yaWVudGF0aW9uIG9mIGFsbFxuICogY29ubmVjdGlvbiBjb250ZW50cyBhbG9uZyBhIGNvbXB1dGVkIHBhdGguXG4gKi9cbmV4cG9ydCBjbGFzcyBDb25uZWN0aW9uQ29udGVudExheW91dEVuZ2luZSB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgX3BsYWNlbWVudCA9IG5ldyBQb2x5bGluZUNvbnRlbnRQbGFjZSgpKSB7fVxuXG4gIHB1YmxpYyBsYXlvdXQocG9pbnRzOiBJUG9pbnRbXSwgY29udGVudHM6IEl0ZXJhYmxlPElQb2x5bGluZUNvbnRlbnQ+KTogbnVtYmVyIHtcbiAgICBjb25zdCBzYW1wbGVyID0gbmV3IFBvbHlsaW5lU2FtcGxlcihwb2ludHMpO1xuICAgIGNvbnN0IHRvdGFsID0gc2FtcGxlci50b3RhbExlbmd0aDtcblxuICAgIGZvciAoY29uc3QgaXRlbSBvZiBjb250ZW50cykge1xuICAgICAgY29uc3QgeyBwb3NpdGlvbiwgcm90YXRpb25EZWcgfSA9IHRoaXMuX3BsYWNlbWVudC5jb21wdXRlKHNhbXBsZXIsIGl0ZW0pO1xuICAgICAgaXRlbS5ob3N0RWxlbWVudC5zdHlsZS50cmFuc2Zvcm0gPSB0aGlzLl9jcmVhdGVUcmFuc2Zvcm1TdHJpbmcocG9zaXRpb24sIHJvdGF0aW9uRGVnKTtcbiAgICB9XG5cbiAgICByZXR1cm4gdG90YWw7XG4gIH1cblxuICBwcml2YXRlIF9jcmVhdGVUcmFuc2Zvcm1TdHJpbmcocG9zaXRpb246IElQb2ludCwgcm90YXRpb25EZWc6IG51bWJlcik6IHN0cmluZyB7XG4gICAgcmV0dXJuIGB0cmFuc2xhdGUzZCgke3Bvc2l0aW9uLnh9cHgsICR7cG9zaXRpb24ueX1weCwgMCkgdHJhbnNsYXRlKC01MCUsIC01MCUpIHJvdGF0ZSgke3JvdGF0aW9uRGVnfWRlZylgO1xuICB9XG59XG4iXX0=
|