├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ ├── TASK.md │ └── config.yml ├── merge-me.yml └── workflows │ ├── CI.yml │ ├── CODE_SCANNING.yml │ ├── COMMENT_TARGETS_MAIN.yml │ ├── MERGE_MAIN_TO_DEVELOP.yml │ ├── POST_RELEASE.yml │ └── RELEASE.yml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── bpmn-js.css ├── docs ├── architecture │ └── overview.svg ├── project │ ├── SETUP.md │ ├── setup-alternative.sh │ ├── setup.bat │ └── setup.sh └── translations.json ├── eslint.config.mjs ├── lib ├── BaseModeler.js ├── BaseModeler.spec.ts ├── BaseViewer.js ├── BaseViewer.spec.ts ├── Modeler.js ├── Modeler.spec.ts ├── NavigatedViewer.js ├── NavigatedViewer.spec.ts ├── Viewer.js ├── Viewer.spec.ts ├── core │ └── index.js ├── draw │ ├── BpmnRenderUtil.js │ ├── BpmnRenderer.js │ ├── PathMap.js │ ├── TextRenderer.js │ ├── TextRenderer.spec.ts │ └── index.js ├── features │ ├── align-elements │ │ ├── AlignElementsContextPadProvider.js │ │ ├── AlignElementsIcons.js │ │ ├── AlignElementsMenuProvider.js │ │ ├── BpmnAlignElements.js │ │ └── index.js │ ├── append-preview │ │ ├── AppendPreview.js │ │ └── index.js │ ├── auto-place │ │ ├── BpmnAutoPlace.js │ │ ├── BpmnAutoPlaceUtil.js │ │ └── index.js │ ├── auto-resize │ │ ├── BpmnAutoResize.js │ │ ├── BpmnAutoResizeProvider.js │ │ └── index.js │ ├── context-pad │ │ ├── ContextPadProvider.js │ │ └── index.js │ ├── copy-paste │ │ ├── BpmnCopyPaste.js │ │ ├── ModdleCopy.js │ │ └── index.js │ ├── di-ordering │ │ ├── BpmnDiOrdering.js │ │ └── index.js │ ├── distribute-elements │ │ ├── BpmnDistributeElements.js │ │ ├── DistributeElementsIcons.js │ │ ├── DistributeElementsMenuProvider.js │ │ └── index.js │ ├── drilldown │ │ ├── DrilldownBreadcrumbs.js │ │ ├── DrilldownCentering.js │ │ ├── DrilldownOverlayBehavior.js │ │ ├── SubprocessCompatibility.js │ │ └── index.js │ ├── editor-actions │ │ ├── BpmnEditorActions.js │ │ └── index.js │ ├── grid-snapping │ │ ├── BpmnGridSnapping.js │ │ ├── behavior │ │ │ ├── GridSnappingAutoPlaceBehavior.js │ │ │ ├── GridSnappingLayoutConnectionBehavior.js │ │ │ ├── GridSnappingParticipantBehavior.js │ │ │ └── index.js │ │ └── index.js │ ├── interaction-events │ │ ├── BpmnInteractionEvents.js │ │ └── index.js │ ├── keyboard │ │ ├── BpmnKeyboardBindings.js │ │ └── index.js │ ├── label-editing │ │ ├── LabelEditingPreview.js │ │ ├── LabelEditingProvider.js │ │ ├── LabelUtil.js │ │ ├── cmd │ │ │ └── UpdateLabelHandler.js │ │ └── index.js │ ├── label-link │ │ ├── LabelLink.js │ │ └── index.js │ ├── modeling-feedback │ │ ├── ModelingFeedback.js │ │ └── index.js │ ├── modeling │ │ ├── BpmnFactory.js │ │ ├── BpmnLayouter.js │ │ ├── BpmnUpdater.js │ │ ├── ElementFactory.js │ │ ├── ElementFactory.test.ts │ │ ├── Modeling.js │ │ ├── Modeling.test.ts │ │ ├── behavior │ │ │ ├── AdaptiveLabelPositioningBehavior.js │ │ │ ├── AppendBehavior.js │ │ │ ├── AssociationBehavior.js │ │ │ ├── AttachEventBehavior.js │ │ │ ├── BoundaryEventBehavior.js │ │ │ ├── CompensateBoundaryEventBehavior.js │ │ │ ├── CreateBehavior.js │ │ │ ├── CreateDataObjectBehavior.js │ │ │ ├── CreateParticipantBehavior.js │ │ │ ├── DataInputAssociationBehavior.js │ │ │ ├── DataStoreBehavior.js │ │ │ ├── DeleteLaneBehavior.js │ │ │ ├── DetachEventBehavior.js │ │ │ ├── DropOnFlowBehavior.js │ │ │ ├── EventBasedGatewayBehavior.js │ │ │ ├── FixHoverBehavior.js │ │ │ ├── GroupBehavior.js │ │ │ ├── ImportDockingFix.js │ │ │ ├── IsHorizontalFix.js │ │ │ ├── LabelBehavior.js │ │ │ ├── LayoutConnectionBehavior.js │ │ │ ├── MessageFlowBehavior.js │ │ │ ├── NonInterruptingBehavior.js │ │ │ ├── RemoveElementBehavior.js │ │ │ ├── RemoveEmbeddedLabelBoundsBehavior.js │ │ │ ├── RemoveParticipantBehavior.js │ │ │ ├── ReplaceConnectionBehavior.js │ │ │ ├── ReplaceElementBehaviour.js │ │ │ ├── ResizeBehavior.js │ │ │ ├── ResizeLaneBehavior.js │ │ │ ├── RootElementReferenceBehavior.js │ │ │ ├── SetCompensationActivityAfterPasteBehavior.js │ │ │ ├── SpaceToolBehavior.js │ │ │ ├── SubProcessPlaneBehavior.js │ │ │ ├── SubProcessStartEventBehavior.js │ │ │ ├── TextAnnotationBehavior.js │ │ │ ├── ToggleCollapseConnectionBehaviour.js │ │ │ ├── ToggleElementCollapseBehaviour.js │ │ │ ├── UnclaimIdBehavior.js │ │ │ ├── UnsetDefaultFlowBehavior.js │ │ │ ├── UpdateFlowNodeRefsBehavior.js │ │ │ ├── index.js │ │ │ └── util │ │ │ │ ├── CategoryUtil.js │ │ │ │ ├── ConnectionLayoutUtil.js │ │ │ │ ├── GeometricUtil.js │ │ │ │ ├── LabelLayoutUtil.js │ │ │ │ ├── LayoutUtil.js │ │ │ │ ├── LineAttachmentUtil.js │ │ │ │ ├── LineIntersect.js │ │ │ │ ├── NonInterruptingUtil.js │ │ │ │ └── ResizeUtil.js │ │ ├── cmd │ │ │ ├── AddLaneHandler.js │ │ │ ├── IdClaimHandler.js │ │ │ ├── ResizeLaneHandler.js │ │ │ ├── SetColorHandler.js │ │ │ ├── SplitLaneHandler.js │ │ │ ├── UpdateCanvasRootHandler.js │ │ │ ├── UpdateFlowNodeRefsHandler.js │ │ │ ├── UpdateModdlePropertiesHandler.js │ │ │ ├── UpdatePropertiesHandler.js │ │ │ └── UpdateSemanticParentHandler.js │ │ ├── index.js │ │ └── util │ │ │ ├── LaneUtil.js │ │ │ └── ModelingUtil.js │ ├── ordering │ │ ├── BpmnOrderingProvider.js │ │ └── index.js │ ├── outline │ │ ├── OutlineProvider.js │ │ ├── OutlineUtil.js │ │ └── index.js │ ├── palette │ │ ├── PaletteProvider.js │ │ └── index.js │ ├── popup-menu │ │ ├── ReplaceMenuProvider.js │ │ ├── index.js │ │ └── util │ │ │ ├── Icons.js │ │ │ └── TypeUtil.js │ ├── replace-preview │ │ ├── BpmnReplacePreview.js │ │ └── index.js │ ├── replace │ │ ├── BpmnReplace.js │ │ ├── ReplaceOptions.js │ │ └── index.js │ ├── rules │ │ ├── BpmnRules.js │ │ └── index.js │ ├── search │ │ ├── BpmnSearchProvider.js │ │ └── index.js │ ├── snapping │ │ ├── BpmnConnectSnapping.js │ │ ├── BpmnCreateMoveSnapping.js │ │ ├── BpmnSnappingUtil.js │ │ └── index.js │ └── space-tool │ │ ├── BpmnSpaceTool.js │ │ └── index.js ├── import │ ├── BpmnImporter.js │ ├── BpmnTreeWalker.js │ ├── Importer.js │ ├── Util.js │ └── index.js ├── index.js ├── model │ └── Types.ts └── util │ ├── CompatibilityUtil.js │ ├── DiUtil.js │ ├── DrilldownUtil.js │ ├── LabelUtil.js │ ├── ModelUtil.js │ ├── PoweredByUtil.js │ ├── Types.js │ └── Types.ts ├── package.json ├── renovate.json ├── resources ├── banner-min.txt ├── banner.txt ├── initial.bpmn ├── logo.svg └── screencast.gif ├── rollup.config.js ├── tasks ├── build-distro.mjs ├── stages │ ├── await-published │ ├── update-demo │ ├── update-examples │ ├── update-integration-test │ ├── update-translations │ └── update-website └── test-distro.mjs ├── test ├── TestHelper.js ├── config │ ├── karma.distro.js │ ├── karma.unit.js │ └── translation-reporter.js ├── coverageBundle.js ├── distro │ ├── bpmn-modeler.js │ ├── bpmn-navigated-viewer.js │ ├── bpmn-viewer.js │ └── helper.js ├── fixtures │ ├── bpmn │ │ ├── align-elements.bpmn │ │ ├── basic.bpmn │ │ ├── boundary-events.bpmn │ │ ├── collaboration-data-items.bpmn │ │ ├── collaboration-message-flows.bpmn │ │ ├── collaboration-sequence-flows.bpmn │ │ ├── collaboration-vertical.bpmn │ │ ├── collaboration.bpmn │ │ ├── collaboration │ │ │ ├── collaboration-data-store.bpmn │ │ │ ├── collaboration-empty-participant.bpmn │ │ │ ├── collaboration-message-flows.bpmn │ │ │ ├── collaboration-participant.bpmn │ │ │ ├── process-empty.bpmn │ │ │ └── process.bpmn │ │ ├── collapsed-sub-process-legacy.bpmn │ │ ├── collapsed-sub-process.bpmn │ │ ├── complex.bpmn │ │ ├── conditions.bpmn │ │ ├── containers.bpmn │ │ ├── distribute-elements-filtering.bpmn │ │ ├── distribute-elements-filtering.collaboration.bpmn │ │ ├── distribute-elements.bpmn │ │ ├── draw │ │ │ ├── activity-markers-combination.bpmn │ │ │ ├── activity-markers-simple.bpmn │ │ │ ├── activity-markers.bpmn │ │ │ ├── associations.bpmn │ │ │ ├── boundary-event-with-refnode.bpmn │ │ │ ├── boundary-event-without-refnode.bpmn │ │ │ ├── boundary-event-z-index.bpmn │ │ │ ├── call-activity.bpmn │ │ │ ├── conditional-flow-default.bpmn │ │ │ ├── conditional-flow-gateways.bpmn │ │ │ ├── conditional-flow-typed-task.bpmn │ │ │ ├── conditional-flow.bpmn │ │ │ ├── data-objects.bpmn │ │ │ ├── event-subprocess-icons.bpmn │ │ │ ├── event-subprocesses-collapsed.bpmn │ │ │ ├── event-subprocesses-expanded.bpmn │ │ │ ├── events-interrupting.bpmn │ │ │ ├── events.bpmn │ │ │ ├── gateway-type-default.bpmn │ │ │ ├── gateways.bpmn │ │ │ ├── group-name.bpmn │ │ │ ├── group.bpmn │ │ │ ├── message-label.bpmn │ │ │ ├── message-marker.bpmn │ │ │ ├── pools-with-collection-marker.bpmn │ │ │ ├── pools.bpmn │ │ │ ├── task-types.bpmn │ │ │ ├── text-annotation.bpmn │ │ │ ├── vertical-pools.bpmn │ │ │ └── xor.bpmn │ │ ├── empty-definitions.bpmn │ │ ├── error │ │ │ ├── binary.png │ │ │ ├── categoryValue.bpmn │ │ │ ├── di-plane-no-bpmn-element.bpmn │ │ │ ├── duplicate-ids.bpmn │ │ │ ├── invalid-child.bpmn │ │ │ ├── missing-namespace.bpmn │ │ │ ├── no-process-collaboration.bpmn │ │ │ └── no-xml.txt │ │ ├── event-sub-processes.bpmn │ │ ├── extension │ │ │ ├── camunda.bpmn │ │ │ ├── custom-override.bpmn │ │ │ └── custom.bpmn │ │ ├── features │ │ │ ├── drop │ │ │ │ ├── drop.bpmn │ │ │ │ └── recursive-task.bpmn │ │ │ ├── replace │ │ │ │ ├── 01_replace.bpmn │ │ │ │ ├── association-gateways.bpmn │ │ │ │ ├── cancel-events.bpmn │ │ │ │ ├── connection.bpmn │ │ │ │ ├── copy-properties.bpmn │ │ │ │ ├── data-elements.bpmn │ │ │ │ ├── data-stores-positioned-against-participant.bpmn │ │ │ │ └── participants.bpmn │ │ │ └── rules │ │ │ │ ├── event-based-gateway-outgoing-edge.bpmn │ │ │ │ ├── link-event.bpmn │ │ │ │ └── text-annotation-association.bpmn │ │ ├── flow-markers.bpmn │ │ ├── import │ │ │ ├── boundaryEvent.bpmn │ │ │ ├── collaboration.bpmn │ │ │ ├── collapsed-subprocess.bpmn │ │ │ ├── collapsed │ │ │ │ ├── collaboration.bpmn │ │ │ │ ├── process.bpmn │ │ │ │ └── processWithChildren.bpmn │ │ │ ├── data-store.inside-participant.bpmn │ │ │ ├── data-store.outside-participant.dangling.bpmn │ │ │ ├── data-store.outside-participant.participant.bpmn │ │ │ ├── data-store.outside-participant.subprocess.bpmn │ │ │ ├── default-attrs.bpmn │ │ │ ├── error │ │ │ │ ├── boundaryEvent-invalidAttachToRef.bpmn │ │ │ │ ├── boundaryEvent-missingAttachToRef.bpmn │ │ │ │ ├── dangling-process-message-flow.bpmn │ │ │ │ ├── invalid-flow-element.bpmn │ │ │ │ └── multiple-dis.bpmn │ │ │ ├── groups.bpmn │ │ │ ├── labels │ │ │ │ ├── collaboration-message-flows.bpmn │ │ │ │ ├── collaboration.bpmn │ │ │ │ ├── embedded.bpmn │ │ │ │ ├── external-no-di.bpmn │ │ │ │ └── external.bpmn │ │ │ ├── multiple-diagrams.bpmn │ │ │ ├── position │ │ │ │ └── position-testcase.bpmn │ │ │ ├── process.bpmn │ │ │ └── text-annotation-message-flow.bpmn │ │ ├── kitchen-sink.bpmn │ │ ├── multiple-diagrams-lanesets.bpmn │ │ ├── multiple-diagrams-overlapping-di.bpmn │ │ ├── multiple-diagrams.bpmn │ │ ├── multiple-nested-processes.bpmn │ │ ├── nested-subprocesses.bpmn │ │ ├── sequence-flows.bpmn │ │ ├── simple-resizable.bpmn │ │ └── simple.bpmn │ └── json │ │ └── model │ │ ├── camunda.json │ │ ├── custom-override.json │ │ └── custom.json ├── helper │ ├── TranslationCollector.js │ └── index.js ├── integration │ ├── CustomElementsSpec.js │ ├── ReimportSpec.js │ ├── SimpleModelingSpec.js │ ├── custom-elements │ │ ├── CustomElementFactory.js │ │ ├── CustomRenderer.js │ │ ├── CustomRules.js │ │ ├── CustomUpdater.js │ │ └── index.js │ └── model │ │ └── BpmnModdleSpec.js ├── matchers │ ├── BoundsMatchers.js │ ├── ConnectionMatchers.js │ └── JSONMatcher.js ├── spec │ ├── BaseModelerSpec.js │ ├── BaseViewerSpec.js │ ├── Modeler.copy-paste.a.bpmn │ ├── Modeler.copy-paste.b.bpmn │ ├── Modeler.copy-paste.complex.bpmn │ ├── Modeler.copy-paste.empty.bpmn │ ├── ModelerSpec.js │ ├── NavigatedViewerSpec.js │ ├── ViewerSpec.js │ ├── draw │ │ ├── BpmnRenderUtilSpec.js │ │ ├── BpmnRenderer.colors.bpmn │ │ ├── BpmnRenderer.connection-colors.bpmn │ │ ├── BpmnRenderer.group-colors.bpmn │ │ ├── BpmnRenderer.labels.bpmn │ │ ├── BpmnRenderer.no-event-icons.bpmn │ │ ├── BpmnRenderer.sequenceFlow-no-source.bpmn │ │ ├── BpmnRenderer.simple-cropping.bpmn │ │ ├── BpmnRendererSpec.js │ │ ├── TextRenderer.bpmn │ │ ├── TextRendererSpec.js │ │ └── custom-renderer │ │ │ ├── CustomRenderer.js │ │ │ └── index.js │ ├── environment │ │ └── MockingSpec.js │ ├── features │ │ ├── align-elements │ │ │ ├── AlignElementsContextPadProviderSpec.js │ │ │ ├── AlignElementsMenuProviderSpec.js │ │ │ └── BpmnAlignElementsSpec.js │ │ ├── append-preview │ │ │ ├── AppendPreview.bpmn │ │ │ └── AppendPreviewSpec.js │ │ ├── auto-place │ │ │ ├── BpmnAutoPlace.boundary-events.bpmn │ │ │ ├── BpmnAutoPlace.bpmn │ │ │ ├── BpmnAutoPlace.multi-connection.bpmn │ │ │ ├── BpmnAutoPlace.subprocess.bpmn │ │ │ ├── BpmnAutoPlace.subprocess.horizontal.bpmn │ │ │ ├── BpmnAutoPlace.subprocess.vertical.bpmn │ │ │ ├── BpmnAutoPlace.vertical.boundary-events.bpmn │ │ │ ├── BpmnAutoPlace.vertical.bpmn │ │ │ ├── BpmnAutoPlace.vertical.multi-connection.bpmn │ │ │ └── BpmnAutoPlaceSpec.js │ │ ├── auto-resize │ │ │ ├── AutoResize.lanes.bpmn │ │ │ ├── AutoResize.multi-selection.bpmn │ │ │ ├── AutoResize.nested-sub-processes.bpmn │ │ │ ├── AutoResize.participant.bpmn │ │ │ ├── AutoResize.space-tool.bpmn │ │ │ ├── AutoResize.sub-processes.bpmn │ │ │ └── AutoResizeSpec.js │ │ ├── context-pad │ │ │ ├── ContextPad.activation.bpmn │ │ │ └── ContextPadProviderSpec.js │ │ ├── copy-paste │ │ │ ├── BpmnCopyPasteSpec.js │ │ │ ├── ModdleCopySpec.js │ │ │ ├── basic.bpmn │ │ │ ├── collaboration-multiple.bpmn │ │ │ ├── collaboration.bpmn │ │ │ ├── collapsed-subprocess.bpmn │ │ │ ├── complex.bpmn │ │ │ ├── copy-properties.bpmn │ │ │ ├── data-associations.bpmn │ │ │ ├── event-based-gateway.bpmn │ │ │ └── properties.bpmn │ │ ├── distribute-elements │ │ │ ├── BpmnDistributeElementsSpec.js │ │ │ └── DistributeElementsMenuProviderSpec.js │ │ ├── drilldown │ │ │ ├── DrilldownIntegrationSpec.js │ │ │ ├── DrilldownOverlayBehaviorSpec.bpmn │ │ │ ├── DrilldownOverlaysBehaviorSpec.js │ │ │ ├── DrilldownSpec.js │ │ │ ├── collaboration-subprocesses.bpmn │ │ │ ├── diagram-missing-plane.bpmn │ │ │ ├── legacy-subprocesses.bpmn │ │ │ ├── nested-subprocesses.bpmn │ │ │ ├── plane-missing-bpmnelement.bpmn │ │ │ ├── process-missing-bpmndiagram.bpmn │ │ │ ├── subprocess-missing-bpmndiagram.bpmn │ │ │ └── subprocess-missing-di.bpmn │ │ ├── editor-actions │ │ │ └── BpmnEditorActionsSpec.js │ │ ├── grid-snapping │ │ │ ├── BpmnGridSnapping.bpmn │ │ │ ├── BpmnGridSnappingSpec.js │ │ │ ├── basic.bpmn │ │ │ └── behavior │ │ │ │ ├── AutoPlaceBehavior.bpmn │ │ │ │ ├── AutoPlaceBehaviorSpec.js │ │ │ │ ├── AutoResizeBehavior.bpmn │ │ │ │ ├── AutoResizeBehaviorSpec.js │ │ │ │ ├── CreateParticipantBehavior.bpmn │ │ │ │ ├── CreateParticipantBehaviorSpec.js │ │ │ │ ├── LayoutConnectionBehavior.bpmn │ │ │ │ └── LayoutConnectionBehaviorSpec.js │ │ ├── interaction-events │ │ │ └── BpmnInteractionEventsSpec.js │ │ ├── keyboard-move-selection │ │ │ ├── KeyboardMoveSelectionSpec.js │ │ │ └── keyboard-move-selection.bpmn │ │ ├── keyboard │ │ │ └── BpmnKeyboardBindingsSpec.js │ │ ├── label-editing │ │ │ ├── LabelEditing.bpmn │ │ │ ├── LabelEditingPreviewSpec.js │ │ │ └── LabelEditingProviderSpec.js │ │ ├── label-link │ │ │ ├── LabelLink.bpmn │ │ │ └── LabelLinkSpec.js │ │ ├── modeling-feedback │ │ │ ├── ModelingFeedback.bpmn │ │ │ └── ModelingFeedbackSpec.js │ │ ├── modeling │ │ │ ├── AppendShapeSpec.js │ │ │ ├── BendpointsSpec.js │ │ │ ├── BpmnFactorySpec.js │ │ │ ├── BpmnUpdater.bpmn │ │ │ ├── BpmnUpdater.incompleteDi.bpmn │ │ │ ├── BpmnUpdaterSpec.js │ │ │ ├── CreateConnectionSpec.js │ │ │ ├── DeleteConnectionSpec.js │ │ │ ├── DeleteParticipantSpec.js │ │ │ ├── DeleteShape.cropping.bpmn │ │ │ ├── DeleteShapeSpec.js │ │ │ ├── DropSpec.js │ │ │ ├── ElementFactory.bpmn │ │ │ ├── ElementFactorySpec.js │ │ │ ├── IdClaim.bpmn │ │ │ ├── IdClaimSpec.js │ │ │ ├── LabelBoundsSpec.js │ │ │ ├── LabelBoundsSpec.simple.bpmn │ │ │ ├── LabelLayouting.initial.bpmn │ │ │ ├── LabelLayouting.integration.bpmn │ │ │ ├── LabelLayouting.move.bpmn │ │ │ ├── LabelLayoutingSpec.js │ │ │ ├── LoggingCroppingConnectionDocking.js │ │ │ ├── MoveConnectionSpec.js │ │ │ ├── MoveElements.boundary-connection.bpmn │ │ │ ├── MoveElements.centered-connection.bpmn │ │ │ ├── MoveElements.collaboration-association.bpmn │ │ │ ├── MoveElements.data-input-output.bpmn │ │ │ ├── MoveElements.eventBasedTargets.bpmn │ │ │ ├── MoveElements.flow-collaboration.bpmn │ │ │ ├── MoveElementsSpec.js │ │ │ ├── MoveRulesSpec.js │ │ │ ├── MoveShapeSpec.js │ │ │ ├── MoveStress.bpmn │ │ │ ├── MoveStressSpec.js │ │ │ ├── ResizeShapeSpec.js │ │ │ ├── SetColor.bpmn │ │ │ ├── SetColorSpec.js │ │ │ ├── UpdateAttachmentSpec.js │ │ │ ├── UpdateLabel.bpmn │ │ │ ├── UpdateLabelSpec.js │ │ │ ├── UpdateModdleProperties.dataObject.bpmn │ │ │ ├── UpdateModdleProperties.error.bpmn │ │ │ ├── UpdateModdlePropertiesSpec.js │ │ │ ├── UpdatePropertiesSpec.js │ │ │ ├── UpdateSemanticParent.bpmn │ │ │ ├── UpdateSemanticParentSpec.js │ │ │ ├── append │ │ │ │ └── TextAnnotationSpec.js │ │ │ ├── behavior │ │ │ │ ├── AdaptiveLabelPositioningBehavior.basics.bpmn │ │ │ │ ├── AdaptiveLabelPositioningBehavior.boundary-events.bpmn │ │ │ │ ├── AdaptiveLabelPositioningBehaviorSpec.js │ │ │ │ ├── AssociationBehavior.bpmn │ │ │ │ ├── AssociationBehaviorSpec.js │ │ │ │ ├── AttachEventBehavior.bpmn │ │ │ │ ├── AttachEventBehaviorSpec.js │ │ │ │ ├── BoundaryEvent.bpmn │ │ │ │ ├── BoundaryEventBehaviorSpec.js │ │ │ │ ├── CompensateBoundaryEventBehavior.bpmn │ │ │ │ ├── CompensateBoundaryEventBehaviorSpec.js │ │ │ │ ├── CompensationAssociationBehavior.bpmn │ │ │ │ ├── CompensationAssociationBehaviorSpec.js │ │ │ │ ├── CreateBehavior.bpmn │ │ │ │ ├── CreateBehaviorSpec.js │ │ │ │ ├── CreateParticipantBehaviorSpec.js │ │ │ │ ├── DataInputAssociationBehavior.bpmn │ │ │ │ ├── DataInputAssociationBehaviorSpec.js │ │ │ │ ├── DataObjectBehavior.create-data-association.bpmn │ │ │ │ ├── DataObjectBehavior.data-object-reference.bpmn │ │ │ │ ├── DataObjectBehavior.remove-data-association.bpmn │ │ │ │ ├── DataObjectBehaviorSpec.js │ │ │ │ ├── DataStoreBehavior.bpmn │ │ │ │ ├── DataStoreBehavior.collaboration.bpmn │ │ │ │ ├── DataStoreBehavior.connect.bpmn │ │ │ │ ├── DataStoreBehavior.empty-pool.bpmn │ │ │ │ ├── DataStoreBehavior.process.bpmn │ │ │ │ ├── DataStoreBehavior.remove-participant.bpmn │ │ │ │ ├── DataStoreBehaviorSpec.js │ │ │ │ ├── DetachEventBehavior.bpmn │ │ │ │ ├── DetachEventBehaviorSpec.js │ │ │ │ ├── DropOnFlowBehavior.bpmn │ │ │ │ ├── DropOnFlowBehaviorSpec.js │ │ │ │ ├── EventBasedGatewayBehavior.bpmn │ │ │ │ ├── EventBasedGatewayBehaviorSpec.js │ │ │ │ ├── FixHoverBehavior.annotation.bpmn │ │ │ │ ├── FixHoverBehavior.group.bpmn │ │ │ │ ├── FixHoverBehavior.label.bpmn │ │ │ │ ├── FixHoverBehavior.lane-connect.bpmn │ │ │ │ ├── FixHoverBehavior.participant.bpmn │ │ │ │ ├── FixHoverBehaviorSpec.js │ │ │ │ ├── GroupBehaviorSpec.bpmn │ │ │ │ ├── GroupBehaviorSpec.js │ │ │ │ ├── ImportDockingFix.bpmn │ │ │ │ ├── ImportDockingFixSpec.js │ │ │ │ ├── IsHorizontalFix.bpmn │ │ │ │ ├── IsHorizontalFixSpec.js │ │ │ │ ├── LabelBehavior.bpmn │ │ │ │ ├── LabelBehavior.copyPaste.bpmn │ │ │ │ ├── LabelBehaviorSpec.js │ │ │ │ ├── LayoutConnectionBehavior.bpmn │ │ │ │ ├── LayoutConnectionBehaviorSpec.js │ │ │ │ ├── MessageFlowBehavior.bpmn │ │ │ │ ├── MessageFlowBehaviorSpec.js │ │ │ │ ├── NonInterruptingBehavior.bpmn │ │ │ │ ├── NonInterruptingBehaviorSpec.js │ │ │ │ ├── ReconnectConnection.data-association.bpmn │ │ │ │ ├── ReconnectConnectionSpec.js │ │ │ │ ├── RemoveElementBehavior.bpmn │ │ │ │ ├── RemoveElementBehavior.diagonal.bpmn │ │ │ │ ├── RemoveElementBehavior.perpendicular.bpmn │ │ │ │ ├── RemoveElementBehavior.vertical.diagonal.bpmn │ │ │ │ ├── RemoveElementBehaviorSpec.js │ │ │ │ ├── RemoveEmbeddedLabelBoundsBehavior.bpmn │ │ │ │ ├── RemoveEmbeddedLabelBoundsBehaviorSpec.js │ │ │ │ ├── RemoveParticipantBehaviorSpec.js │ │ │ │ ├── ReplaceConnectionBehavior.association.bpmn │ │ │ │ ├── ReplaceConnectionBehavior.boundary-events.bpmn │ │ │ │ ├── ReplaceConnectionBehavior.message-sequence-flow.bpmn │ │ │ │ ├── ReplaceConnectionBehaviorSpec.js │ │ │ │ ├── ReplaceElementBehaviourSpec.js │ │ │ │ ├── ResizeBehavior.lanes.bpmn │ │ │ │ ├── ResizeBehavior.lanes.vertical.bpmn │ │ │ │ ├── ResizeBehavior.participant.bpmn │ │ │ │ ├── ResizeBehavior.participant.vertical.bpmn │ │ │ │ ├── ResizeBehavior.subProcess.bpmn │ │ │ │ ├── ResizeBehavior.textAnnotation.bpmn │ │ │ │ ├── ResizeBehavior.utility.lanes-flowNodes.bpmn │ │ │ │ ├── ResizeBehavior.utility.lanes.bpmn │ │ │ │ ├── ResizeBehavior.utility.lanes.vertical-flowNodes.bpmn │ │ │ │ ├── ResizeBehavior.utility.lanes.vertical.bpmn │ │ │ │ ├── ResizeBehaviorSpec.js │ │ │ │ ├── RootElementReferenceBehavior.bpmn │ │ │ │ ├── RootElementReferenceBehaviorSpec.js │ │ │ │ ├── SetCompensationActivityAfterPasteBehaviorSpec.bpmn │ │ │ │ ├── SetCompensationActivityAfterPasteBehaviorSpec.js │ │ │ │ ├── SpaceToolBehaviorSpec.group.bpmn │ │ │ │ ├── SpaceToolBehaviorSpec.js │ │ │ │ ├── SpaceToolBehaviorSpec.participant.bpmn │ │ │ │ ├── SpaceToolBehaviorSpec.participant.vertical.bpmn │ │ │ │ ├── SpaceToolBehaviorSpec.subprocess.bpmn │ │ │ │ ├── SubProcessBehavior.copy-paste.bpmn │ │ │ │ ├── SubProcessBehavior.multiple-planes.bpmn │ │ │ │ ├── SubProcessBehavior.planes.bpmn │ │ │ │ ├── SubProcessBehavior.start-event.bpmn │ │ │ │ ├── SubProcessPlaneBehaviorSpec.js │ │ │ │ ├── SubProcessStartEventBehaviorSpec.js │ │ │ │ ├── TextAnnotationBehaviorSpec.bpmn │ │ │ │ ├── TextAnnotationBehaviorSpec.js │ │ │ │ ├── ToggleCollapseConnectionBehaviourSpec.bpmn │ │ │ │ ├── ToggleCollapseConnectionBehaviourSpec.js │ │ │ │ ├── ToggleElementCollapseBehaviour.bpmn │ │ │ │ ├── ToggleElementCollapseBehaviourSpec.js │ │ │ │ ├── UnclaimIdBehaviorSpec.bpmn │ │ │ │ ├── UnclaimIdBehaviorSpec.js │ │ │ │ ├── UnsetDefaultFlowBehaviorSpec.bpmn │ │ │ │ ├── UnsetDefaultFlowBehaviorSpec.js │ │ │ │ └── util │ │ │ │ │ ├── GeometricUtilSpec.js │ │ │ │ │ ├── LabelLayoutUtilSpec.js │ │ │ │ │ ├── LineAttachmentUtilSpec.js │ │ │ │ │ ├── LineIntersectSpec.js │ │ │ │ │ └── ResizeUtilSpec.js │ │ │ ├── input-output │ │ │ │ └── DataInputOutput.bpmn │ │ │ ├── lanes │ │ │ │ ├── AddLaneSpec.js │ │ │ │ ├── DeleteLaneSpec.js │ │ │ │ ├── ResizeLaneSpec.js │ │ │ │ ├── SplitLane.nested.bpmn │ │ │ │ ├── SplitLane.nested.vertical.bpmn │ │ │ │ ├── SplitLaneSpec.js │ │ │ │ ├── UpdateFlowNodeRefs.basic.bpmn │ │ │ │ ├── UpdateFlowNodeRefsSpec.js │ │ │ │ ├── lanes-flow-nodes-vertical.bpmn │ │ │ │ ├── lanes-flow-nodes.bpmn │ │ │ │ ├── lanes.bpmn │ │ │ │ ├── lanes.only.bpmn │ │ │ │ ├── lanes.only.vertical.bpmn │ │ │ │ ├── lanes.vertical.bpmn │ │ │ │ ├── participant-lane-vertical.bpmn │ │ │ │ ├── participant-lane.bpmn │ │ │ │ ├── participant-no-lane-vertical.bpmn │ │ │ │ ├── participant-no-lane.bpmn │ │ │ │ └── participant-single-lane.bpmn │ │ │ └── layout │ │ │ │ ├── Helper.js │ │ │ │ ├── LayoutAssociationSpec.js │ │ │ │ ├── LayoutConnectionSpec.js │ │ │ │ ├── LayoutDataAssociationSpec.js │ │ │ │ ├── LayoutMessageFlowSpec.bpmn │ │ │ │ ├── LayoutMessageFlowSpec.js │ │ │ │ ├── LayoutMessageFlowSpec.vertical.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.boundaryEvents.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.boundaryEventsLoops.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.flowElements.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.js │ │ │ │ ├── LayoutSequenceFlowSpec.subProcess.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.vertical.boundaryEvents.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.vertical.boundaryEventsLoops.bpmn │ │ │ │ ├── LayoutSequenceFlowSpec.vertical.flowElements.bpmn │ │ │ │ └── LayoutSequenceFlowSpec.vertical.subProcess.bpmn │ │ ├── ordering │ │ │ ├── BpmnDiOrderingSpec.js │ │ │ ├── BpmnOrderingProviderSpec.js │ │ │ ├── Helper.js │ │ │ ├── collapsed-subprocess.bpmn │ │ │ ├── data-association.bpmn │ │ │ ├── groups.bpmn │ │ │ ├── ordering-start-event.bpmn │ │ │ ├── ordering-subprocesses.bpmn │ │ │ ├── ordering.bpmn │ │ │ └── wrong-di-order.bpmn │ │ ├── outline │ │ │ ├── OutlineProvider.bpmn │ │ │ └── OutlineProviderSpec.js │ │ ├── palette │ │ │ └── PaletteProviderSpec.js │ │ ├── popup-menu │ │ │ ├── ReplaceMenuProvider.collapsedSubProcess.bpmn │ │ │ ├── ReplaceMenuProvider.compensation-activity.bpmn │ │ │ ├── ReplaceMenuProvider.conditionalFlows.bpmn │ │ │ ├── ReplaceMenuProvider.defaultFlows.bpmn │ │ │ ├── ReplaceMenuProvider.defaultFlowsFromComplexGateways.bpmn │ │ │ ├── ReplaceMenuProvider.defaultFlowsFromInclusiveGateways.bpmn │ │ │ ├── ReplaceMenuProvider.events.bpmn │ │ │ ├── ReplaceMenuProvider.pools.bpmn │ │ │ ├── ReplaceMenuProvider.subProcesses.bpmn │ │ │ └── ReplaceMenuProviderSpec.js │ │ ├── replace-preview │ │ │ ├── BpmnReplacePreview.bpmn │ │ │ └── BpmnReplacePreviewSpec.js │ │ ├── replace │ │ │ ├── BpmnReplace.collaboration.bpmn │ │ │ ├── BpmnReplace.collaboration.vertical.bpmn │ │ │ ├── BpmnReplace.collapsedSubProcess.bpmn │ │ │ ├── BpmnReplace.compensation.bpmn │ │ │ ├── BpmnReplace.dataObjects.bpmn │ │ │ ├── BpmnReplace.eventSubProcesses.bpmn │ │ │ ├── BpmnReplace.poolMessageFlows.bpmn │ │ │ ├── BpmnReplace.poolMessageFlows.vertical.bpmn │ │ │ ├── BpmnReplaceSpec.js │ │ │ ├── ReplaceRulesSpec.js │ │ │ └── SubProcess-collapsed.bpmn │ │ ├── rules │ │ │ ├── BpmnRules.attaching.bpmn │ │ │ ├── BpmnRules.boundaryEvent.bpmn │ │ │ ├── BpmnRules.collaboration-dataAssociation.bpmn │ │ │ ├── BpmnRules.collaboration-empty.bpmn │ │ │ ├── BpmnRules.collaboration-lanes.bpmn │ │ │ ├── BpmnRules.collaboration.bpmn │ │ │ ├── BpmnRules.collapsedPools.bpmn │ │ │ ├── BpmnRules.compensation-collaboration.bpmn │ │ │ ├── BpmnRules.compensation.bpmn │ │ │ ├── BpmnRules.connectOnCreate.bpmn │ │ │ ├── BpmnRules.dataAssociation.bpmn │ │ │ ├── BpmnRules.dataInputOutput.collaboration.bpmn │ │ │ ├── BpmnRules.dataInputOutput.process.bpmn │ │ │ ├── BpmnRules.detaching.bpmn │ │ │ ├── BpmnRules.eventBasedGatewayBasic.bpmn │ │ │ ├── BpmnRules.groups.bpmn │ │ │ ├── BpmnRules.insert.bpmn │ │ │ ├── BpmnRules.messageFlow.bpmn │ │ │ ├── BpmnRules.moveLane.bpmn │ │ │ ├── BpmnRules.multiSelectionPools.bpmn │ │ │ ├── BpmnRules.process.bpmn │ │ │ ├── BpmnRules.subProcess-dataAssociation.bpmn │ │ │ ├── BpmnRulesSpec.js │ │ │ └── Helper.js │ │ ├── search │ │ │ ├── BpmnSearchProviderSpec.js │ │ │ ├── bpmn-search-collaboration.bpmn │ │ │ ├── bpmn-search-sorting.bpmn │ │ │ └── bpmn-search.bpmn │ │ ├── snapping │ │ │ ├── BpmnConnectSnapping.bpmn │ │ │ ├── BpmnConnectSnappingSpec.js │ │ │ ├── BpmnCreateMoveSnapping.boundary-events.bpmn │ │ │ ├── BpmnCreateMoveSnapping.collaboration.bpmn │ │ │ ├── BpmnCreateMoveSnapping.docking-create-mode.bpmn │ │ │ ├── BpmnCreateMoveSnapping.docking-points.bpmn │ │ │ ├── BpmnCreateMoveSnapping.process.bpmn │ │ │ ├── BpmnCreateMoveSnapping.sequence-flows.bpmn │ │ │ ├── BpmnCreateMoveSnapping.trbl-snapping.bpmn │ │ │ └── BpmnCreateMoveSnappingSpec.js │ │ └── space-tool │ │ │ ├── BpmnSpaceTool.artifacts.bpmn │ │ │ ├── BpmnSpaceTool.basics.bpmn │ │ │ ├── BpmnSpaceTool.boundary-events.bpmn │ │ │ ├── BpmnSpaceTool.participants.bpmn │ │ │ ├── BpmnSpaceTool.text-annotations.bpmn │ │ │ └── BpmnSpaceToolSpec.js │ ├── helper │ │ └── InjectSpec.js │ ├── i18n │ │ ├── custom-translate │ │ │ ├── custom-translate.js │ │ │ └── index.js │ │ └── translateSpec.js │ ├── import │ │ ├── BpmnTreeWalkerSpec.js │ │ ├── ImporterSpec.js │ │ ├── ModelWiringSpec.js │ │ ├── data-association.bpmn │ │ ├── elements │ │ │ ├── AssociationSpec.collaboration.bpmn │ │ │ ├── AssociationSpec.compensation.bpmn │ │ │ ├── AssociationSpec.data-association.bpmn │ │ │ ├── AssociationSpec.data-input-output.bpmn │ │ │ ├── AssociationSpec.events.bpmn │ │ │ ├── AssociationSpec.js │ │ │ ├── AssociationSpec.text-annotation.bpmn │ │ │ ├── CollapsedSpec.js │ │ │ ├── DataInputOutput.bpmn │ │ │ ├── DataInputOutputSpec.js │ │ │ ├── Groups.bpmn │ │ │ ├── GroupsSpec.js │ │ │ └── LabelSpec.js │ │ ├── lane-flowNodes.bpmn │ │ ├── lane-missing-flowNodeRef.bpmn │ │ ├── missing-di-plane-root-element.bpmn │ │ ├── missing-di-plane.bpmn │ │ ├── sequenceFlow-missingWaypoints.bpmn │ │ └── sequenceFlow-ordering.bpmn │ └── util │ │ ├── ModelUtilSpec.js │ │ └── svgHelpersSpec.js ├── testBundle.js └── util │ ├── KeyEvents.js │ ├── MockEvents.js │ ├── custom-rules │ ├── CustomRules.js │ └── index.js │ └── svgHelpers.js └── tsconfig.json /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/TASK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/ISSUE_TEMPLATE/TASK.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/merge-me.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/merge-me.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/CODE_SCANNING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/CODE_SCANNING.yml -------------------------------------------------------------------------------- /.github/workflows/COMMENT_TARGETS_MAIN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/COMMENT_TARGETS_MAIN.yml -------------------------------------------------------------------------------- /.github/workflows/MERGE_MAIN_TO_DEVELOP.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/MERGE_MAIN_TO_DEVELOP.yml -------------------------------------------------------------------------------- /.github/workflows/POST_RELEASE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/POST_RELEASE.yml -------------------------------------------------------------------------------- /.github/workflows/RELEASE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.github/workflows/RELEASE.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/README.md -------------------------------------------------------------------------------- /assets/bpmn-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/assets/bpmn-js.css -------------------------------------------------------------------------------- /docs/architecture/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/architecture/overview.svg -------------------------------------------------------------------------------- /docs/project/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/project/SETUP.md -------------------------------------------------------------------------------- /docs/project/setup-alternative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/project/setup-alternative.sh -------------------------------------------------------------------------------- /docs/project/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/project/setup.bat -------------------------------------------------------------------------------- /docs/project/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/project/setup.sh -------------------------------------------------------------------------------- /docs/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/docs/translations.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/BaseModeler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/BaseModeler.js -------------------------------------------------------------------------------- /lib/BaseModeler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/BaseModeler.spec.ts -------------------------------------------------------------------------------- /lib/BaseViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/BaseViewer.js -------------------------------------------------------------------------------- /lib/BaseViewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/BaseViewer.spec.ts -------------------------------------------------------------------------------- /lib/Modeler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/Modeler.js -------------------------------------------------------------------------------- /lib/Modeler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/Modeler.spec.ts -------------------------------------------------------------------------------- /lib/NavigatedViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/NavigatedViewer.js -------------------------------------------------------------------------------- /lib/NavigatedViewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/NavigatedViewer.spec.ts -------------------------------------------------------------------------------- /lib/Viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/Viewer.js -------------------------------------------------------------------------------- /lib/Viewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/Viewer.spec.ts -------------------------------------------------------------------------------- /lib/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/core/index.js -------------------------------------------------------------------------------- /lib/draw/BpmnRenderUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/BpmnRenderUtil.js -------------------------------------------------------------------------------- /lib/draw/BpmnRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/BpmnRenderer.js -------------------------------------------------------------------------------- /lib/draw/PathMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/PathMap.js -------------------------------------------------------------------------------- /lib/draw/TextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/TextRenderer.js -------------------------------------------------------------------------------- /lib/draw/TextRenderer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/TextRenderer.spec.ts -------------------------------------------------------------------------------- /lib/draw/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/draw/index.js -------------------------------------------------------------------------------- /lib/features/align-elements/AlignElementsContextPadProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/align-elements/AlignElementsContextPadProvider.js -------------------------------------------------------------------------------- /lib/features/align-elements/AlignElementsIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/align-elements/AlignElementsIcons.js -------------------------------------------------------------------------------- /lib/features/align-elements/AlignElementsMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/align-elements/AlignElementsMenuProvider.js -------------------------------------------------------------------------------- /lib/features/align-elements/BpmnAlignElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/align-elements/BpmnAlignElements.js -------------------------------------------------------------------------------- /lib/features/align-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/align-elements/index.js -------------------------------------------------------------------------------- /lib/features/append-preview/AppendPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/append-preview/AppendPreview.js -------------------------------------------------------------------------------- /lib/features/append-preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/append-preview/index.js -------------------------------------------------------------------------------- /lib/features/auto-place/BpmnAutoPlace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-place/BpmnAutoPlace.js -------------------------------------------------------------------------------- /lib/features/auto-place/BpmnAutoPlaceUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-place/BpmnAutoPlaceUtil.js -------------------------------------------------------------------------------- /lib/features/auto-place/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-place/index.js -------------------------------------------------------------------------------- /lib/features/auto-resize/BpmnAutoResize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-resize/BpmnAutoResize.js -------------------------------------------------------------------------------- /lib/features/auto-resize/BpmnAutoResizeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-resize/BpmnAutoResizeProvider.js -------------------------------------------------------------------------------- /lib/features/auto-resize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/auto-resize/index.js -------------------------------------------------------------------------------- /lib/features/context-pad/ContextPadProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/context-pad/ContextPadProvider.js -------------------------------------------------------------------------------- /lib/features/context-pad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/context-pad/index.js -------------------------------------------------------------------------------- /lib/features/copy-paste/BpmnCopyPaste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/copy-paste/BpmnCopyPaste.js -------------------------------------------------------------------------------- /lib/features/copy-paste/ModdleCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/copy-paste/ModdleCopy.js -------------------------------------------------------------------------------- /lib/features/copy-paste/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/copy-paste/index.js -------------------------------------------------------------------------------- /lib/features/di-ordering/BpmnDiOrdering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/di-ordering/BpmnDiOrdering.js -------------------------------------------------------------------------------- /lib/features/di-ordering/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/di-ordering/index.js -------------------------------------------------------------------------------- /lib/features/distribute-elements/BpmnDistributeElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/distribute-elements/BpmnDistributeElements.js -------------------------------------------------------------------------------- /lib/features/distribute-elements/DistributeElementsIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/distribute-elements/DistributeElementsIcons.js -------------------------------------------------------------------------------- /lib/features/distribute-elements/DistributeElementsMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/distribute-elements/DistributeElementsMenuProvider.js -------------------------------------------------------------------------------- /lib/features/distribute-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/distribute-elements/index.js -------------------------------------------------------------------------------- /lib/features/drilldown/DrilldownBreadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/drilldown/DrilldownBreadcrumbs.js -------------------------------------------------------------------------------- /lib/features/drilldown/DrilldownCentering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/drilldown/DrilldownCentering.js -------------------------------------------------------------------------------- /lib/features/drilldown/DrilldownOverlayBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/drilldown/DrilldownOverlayBehavior.js -------------------------------------------------------------------------------- /lib/features/drilldown/SubprocessCompatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/drilldown/SubprocessCompatibility.js -------------------------------------------------------------------------------- /lib/features/drilldown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/drilldown/index.js -------------------------------------------------------------------------------- /lib/features/editor-actions/BpmnEditorActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/editor-actions/BpmnEditorActions.js -------------------------------------------------------------------------------- /lib/features/editor-actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/editor-actions/index.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/BpmnGridSnapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/BpmnGridSnapping.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/behavior/GridSnappingAutoPlaceBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/behavior/GridSnappingAutoPlaceBehavior.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/behavior/GridSnappingLayoutConnectionBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/behavior/GridSnappingLayoutConnectionBehavior.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/behavior/GridSnappingParticipantBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/behavior/GridSnappingParticipantBehavior.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/behavior/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/behavior/index.js -------------------------------------------------------------------------------- /lib/features/grid-snapping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/grid-snapping/index.js -------------------------------------------------------------------------------- /lib/features/interaction-events/BpmnInteractionEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/interaction-events/BpmnInteractionEvents.js -------------------------------------------------------------------------------- /lib/features/interaction-events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/interaction-events/index.js -------------------------------------------------------------------------------- /lib/features/keyboard/BpmnKeyboardBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/keyboard/BpmnKeyboardBindings.js -------------------------------------------------------------------------------- /lib/features/keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/keyboard/index.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelEditingPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-editing/LabelEditingPreview.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelEditingProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-editing/LabelEditingProvider.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-editing/LabelUtil.js -------------------------------------------------------------------------------- /lib/features/label-editing/cmd/UpdateLabelHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-editing/cmd/UpdateLabelHandler.js -------------------------------------------------------------------------------- /lib/features/label-editing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-editing/index.js -------------------------------------------------------------------------------- /lib/features/label-link/LabelLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-link/LabelLink.js -------------------------------------------------------------------------------- /lib/features/label-link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/label-link/index.js -------------------------------------------------------------------------------- /lib/features/modeling-feedback/ModelingFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling-feedback/ModelingFeedback.js -------------------------------------------------------------------------------- /lib/features/modeling-feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling-feedback/index.js -------------------------------------------------------------------------------- /lib/features/modeling/BpmnFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/BpmnFactory.js -------------------------------------------------------------------------------- /lib/features/modeling/BpmnLayouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/BpmnLayouter.js -------------------------------------------------------------------------------- /lib/features/modeling/BpmnUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/BpmnUpdater.js -------------------------------------------------------------------------------- /lib/features/modeling/ElementFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/ElementFactory.js -------------------------------------------------------------------------------- /lib/features/modeling/ElementFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/ElementFactory.test.ts -------------------------------------------------------------------------------- /lib/features/modeling/Modeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/Modeling.js -------------------------------------------------------------------------------- /lib/features/modeling/Modeling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/Modeling.test.ts -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AdaptiveLabelPositioningBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/AdaptiveLabelPositioningBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AppendBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/AppendBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AssociationBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/AssociationBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AttachEventBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/AttachEventBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/BoundaryEventBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/BoundaryEventBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/CompensateBoundaryEventBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/CompensateBoundaryEventBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/CreateBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/CreateBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/CreateDataObjectBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/CreateDataObjectBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/CreateParticipantBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/CreateParticipantBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/DataInputAssociationBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/DataInputAssociationBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/DataStoreBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/DataStoreBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/DeleteLaneBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/DeleteLaneBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/DetachEventBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/DetachEventBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/DropOnFlowBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/DropOnFlowBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/EventBasedGatewayBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/EventBasedGatewayBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/FixHoverBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/FixHoverBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/GroupBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/GroupBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ImportDockingFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ImportDockingFix.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/IsHorizontalFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/IsHorizontalFix.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/LabelBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/LabelBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/LayoutConnectionBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/LayoutConnectionBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/MessageFlowBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/MessageFlowBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/NonInterruptingBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/NonInterruptingBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/RemoveElementBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/RemoveElementBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/RemoveParticipantBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/RemoveParticipantBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ReplaceConnectionBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ReplaceConnectionBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ReplaceElementBehaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ReplaceElementBehaviour.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ResizeBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ResizeBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ResizeLaneBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ResizeLaneBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/RootElementReferenceBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/RootElementReferenceBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/SetCompensationActivityAfterPasteBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/SetCompensationActivityAfterPasteBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/SpaceToolBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/SpaceToolBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/SubProcessPlaneBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/SubProcessPlaneBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/SubProcessStartEventBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/SubProcessStartEventBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/TextAnnotationBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/TextAnnotationBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ToggleCollapseConnectionBehaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ToggleCollapseConnectionBehaviour.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ToggleElementCollapseBehaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/ToggleElementCollapseBehaviour.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/UnclaimIdBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/UnclaimIdBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/UnsetDefaultFlowBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/UnsetDefaultFlowBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/UpdateFlowNodeRefsBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/UpdateFlowNodeRefsBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/index.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/CategoryUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/CategoryUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/ConnectionLayoutUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/ConnectionLayoutUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/GeometricUtil.js: -------------------------------------------------------------------------------- 1 | export * from 'diagram-js/lib/features/bendpoints/GeometricUtil'; -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LabelLayoutUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/LabelLayoutUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LayoutUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/LayoutUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LineAttachmentUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/LineAttachmentUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LineIntersect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/LineIntersect.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/NonInterruptingUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/NonInterruptingUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/ResizeUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/behavior/util/ResizeUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/AddLaneHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/AddLaneHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/IdClaimHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/IdClaimHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/ResizeLaneHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/ResizeLaneHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/SetColorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/SetColorHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/SplitLaneHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/SplitLaneHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateCanvasRootHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/UpdateCanvasRootHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateFlowNodeRefsHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/UpdateFlowNodeRefsHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateModdlePropertiesHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/UpdateModdlePropertiesHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdatePropertiesHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/UpdatePropertiesHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateSemanticParentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/cmd/UpdateSemanticParentHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/index.js -------------------------------------------------------------------------------- /lib/features/modeling/util/LaneUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/util/LaneUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/util/ModelingUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/modeling/util/ModelingUtil.js -------------------------------------------------------------------------------- /lib/features/ordering/BpmnOrderingProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/ordering/BpmnOrderingProvider.js -------------------------------------------------------------------------------- /lib/features/ordering/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/ordering/index.js -------------------------------------------------------------------------------- /lib/features/outline/OutlineProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/outline/OutlineProvider.js -------------------------------------------------------------------------------- /lib/features/outline/OutlineUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/outline/OutlineUtil.js -------------------------------------------------------------------------------- /lib/features/outline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/outline/index.js -------------------------------------------------------------------------------- /lib/features/palette/PaletteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/palette/PaletteProvider.js -------------------------------------------------------------------------------- /lib/features/palette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/palette/index.js -------------------------------------------------------------------------------- /lib/features/popup-menu/ReplaceMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/popup-menu/ReplaceMenuProvider.js -------------------------------------------------------------------------------- /lib/features/popup-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/popup-menu/index.js -------------------------------------------------------------------------------- /lib/features/popup-menu/util/Icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/popup-menu/util/Icons.js -------------------------------------------------------------------------------- /lib/features/popup-menu/util/TypeUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/popup-menu/util/TypeUtil.js -------------------------------------------------------------------------------- /lib/features/replace-preview/BpmnReplacePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/replace-preview/BpmnReplacePreview.js -------------------------------------------------------------------------------- /lib/features/replace-preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/replace-preview/index.js -------------------------------------------------------------------------------- /lib/features/replace/BpmnReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/replace/BpmnReplace.js -------------------------------------------------------------------------------- /lib/features/replace/ReplaceOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/replace/ReplaceOptions.js -------------------------------------------------------------------------------- /lib/features/replace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/replace/index.js -------------------------------------------------------------------------------- /lib/features/rules/BpmnRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/rules/BpmnRules.js -------------------------------------------------------------------------------- /lib/features/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/rules/index.js -------------------------------------------------------------------------------- /lib/features/search/BpmnSearchProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/search/BpmnSearchProvider.js -------------------------------------------------------------------------------- /lib/features/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/search/index.js -------------------------------------------------------------------------------- /lib/features/snapping/BpmnConnectSnapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/snapping/BpmnConnectSnapping.js -------------------------------------------------------------------------------- /lib/features/snapping/BpmnCreateMoveSnapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/snapping/BpmnCreateMoveSnapping.js -------------------------------------------------------------------------------- /lib/features/snapping/BpmnSnappingUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/snapping/BpmnSnappingUtil.js -------------------------------------------------------------------------------- /lib/features/snapping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/snapping/index.js -------------------------------------------------------------------------------- /lib/features/space-tool/BpmnSpaceTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/space-tool/BpmnSpaceTool.js -------------------------------------------------------------------------------- /lib/features/space-tool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/features/space-tool/index.js -------------------------------------------------------------------------------- /lib/import/BpmnImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/import/BpmnImporter.js -------------------------------------------------------------------------------- /lib/import/BpmnTreeWalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/import/BpmnTreeWalker.js -------------------------------------------------------------------------------- /lib/import/Importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/import/Importer.js -------------------------------------------------------------------------------- /lib/import/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/import/Util.js -------------------------------------------------------------------------------- /lib/import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/import/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | export { 2 | default 3 | } from './Viewer'; -------------------------------------------------------------------------------- /lib/model/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/model/Types.ts -------------------------------------------------------------------------------- /lib/util/CompatibilityUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/CompatibilityUtil.js -------------------------------------------------------------------------------- /lib/util/DiUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/DiUtil.js -------------------------------------------------------------------------------- /lib/util/DrilldownUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/DrilldownUtil.js -------------------------------------------------------------------------------- /lib/util/LabelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/LabelUtil.js -------------------------------------------------------------------------------- /lib/util/ModelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/ModelUtil.js -------------------------------------------------------------------------------- /lib/util/PoweredByUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/PoweredByUtil.js -------------------------------------------------------------------------------- /lib/util/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/Types.js -------------------------------------------------------------------------------- /lib/util/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/lib/util/Types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/banner-min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/resources/banner-min.txt -------------------------------------------------------------------------------- /resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/resources/banner.txt -------------------------------------------------------------------------------- /resources/initial.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/resources/initial.bpmn -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/resources/screencast.gif -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /tasks/build-distro.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/build-distro.mjs -------------------------------------------------------------------------------- /tasks/stages/await-published: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/await-published -------------------------------------------------------------------------------- /tasks/stages/update-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/update-demo -------------------------------------------------------------------------------- /tasks/stages/update-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/update-examples -------------------------------------------------------------------------------- /tasks/stages/update-integration-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/update-integration-test -------------------------------------------------------------------------------- /tasks/stages/update-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/update-translations -------------------------------------------------------------------------------- /tasks/stages/update-website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/stages/update-website -------------------------------------------------------------------------------- /tasks/test-distro.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tasks/test-distro.mjs -------------------------------------------------------------------------------- /test/TestHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/TestHelper.js -------------------------------------------------------------------------------- /test/config/karma.distro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/config/karma.distro.js -------------------------------------------------------------------------------- /test/config/karma.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/config/karma.unit.js -------------------------------------------------------------------------------- /test/config/translation-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/config/translation-reporter.js -------------------------------------------------------------------------------- /test/coverageBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/coverageBundle.js -------------------------------------------------------------------------------- /test/distro/bpmn-modeler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/distro/bpmn-modeler.js -------------------------------------------------------------------------------- /test/distro/bpmn-navigated-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/distro/bpmn-navigated-viewer.js -------------------------------------------------------------------------------- /test/distro/bpmn-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/distro/bpmn-viewer.js -------------------------------------------------------------------------------- /test/distro/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/distro/helper.js -------------------------------------------------------------------------------- /test/fixtures/bpmn/align-elements.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/align-elements.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/basic.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/basic.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/boundary-events.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration-data-items.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration-data-items.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration-message-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration-message-flows.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration-sequence-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration-sequence-flows.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration-vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration-vertical.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/collaboration-data-store.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/collaboration-data-store.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/collaboration-empty-participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/collaboration-empty-participant.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/collaboration-message-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/collaboration-message-flows.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/collaboration-participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/collaboration-participant.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/process-empty.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/process-empty.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collaboration/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collaboration/process.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collapsed-sub-process-legacy.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collapsed-sub-process-legacy.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/collapsed-sub-process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/collapsed-sub-process.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/complex.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/complex.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/conditions.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/conditions.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/containers.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/containers.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/distribute-elements-filtering.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/distribute-elements-filtering.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/distribute-elements-filtering.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/distribute-elements-filtering.collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/distribute-elements.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/distribute-elements.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/activity-markers-combination.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/activity-markers-combination.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/activity-markers-simple.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/activity-markers-simple.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/activity-markers.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/activity-markers.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/associations.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/associations.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/boundary-event-with-refnode.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/boundary-event-with-refnode.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/boundary-event-without-refnode.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/boundary-event-without-refnode.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/boundary-event-z-index.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/boundary-event-z-index.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/call-activity.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/call-activity.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/conditional-flow-default.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/conditional-flow-default.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/conditional-flow-gateways.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/conditional-flow-gateways.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/conditional-flow-typed-task.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/conditional-flow-typed-task.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/conditional-flow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/conditional-flow.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/data-objects.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/data-objects.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/event-subprocess-icons.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/event-subprocess-icons.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/event-subprocesses-collapsed.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/event-subprocesses-collapsed.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/event-subprocesses-expanded.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/event-subprocesses-expanded.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/events-interrupting.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/events-interrupting.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/events.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/gateway-type-default.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/gateway-type-default.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/gateways.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/gateways.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/group-name.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/group-name.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/group.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/group.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/message-label.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/message-label.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/message-marker.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/message-marker.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/pools-with-collection-marker.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/pools-with-collection-marker.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/pools.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/pools.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/task-types.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/task-types.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/text-annotation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/text-annotation.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/vertical-pools.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/vertical-pools.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/draw/xor.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/draw/xor.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/empty-definitions.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/empty-definitions.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/binary.png -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/categoryValue.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/categoryValue.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/di-plane-no-bpmn-element.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/di-plane-no-bpmn-element.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/duplicate-ids.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/duplicate-ids.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/invalid-child.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/invalid-child.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/missing-namespace.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/missing-namespace.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/no-process-collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/error/no-process-collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/error/no-xml.txt: -------------------------------------------------------------------------------- 1 | this is no xml -------------------------------------------------------------------------------- /test/fixtures/bpmn/event-sub-processes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/event-sub-processes.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/extension/camunda.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/extension/camunda.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/extension/custom-override.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/extension/custom-override.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/extension/custom.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/extension/custom.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/drop/drop.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/drop/drop.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/drop/recursive-task.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/drop/recursive-task.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/01_replace.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/01_replace.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/association-gateways.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/association-gateways.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/cancel-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/cancel-events.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/connection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/connection.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/copy-properties.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/copy-properties.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/data-elements.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/data-elements.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/data-stores-positioned-against-participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/data-stores-positioned-against-participant.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/replace/participants.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/replace/participants.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/rules/event-based-gateway-outgoing-edge.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/rules/event-based-gateway-outgoing-edge.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/rules/link-event.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/rules/link-event.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/features/rules/text-annotation-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/features/rules/text-annotation-association.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/flow-markers.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/flow-markers.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/boundaryEvent.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/boundaryEvent.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/collapsed-subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/collapsed-subprocess.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/collapsed/collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/collapsed/collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/collapsed/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/collapsed/process.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/collapsed/processWithChildren.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/collapsed/processWithChildren.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/data-store.inside-participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/data-store.inside-participant.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/data-store.outside-participant.dangling.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/data-store.outside-participant.dangling.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/data-store.outside-participant.participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/data-store.outside-participant.participant.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/data-store.outside-participant.subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/data-store.outside-participant.subprocess.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/default-attrs.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/default-attrs.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/error/boundaryEvent-invalidAttachToRef.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/error/boundaryEvent-invalidAttachToRef.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/error/boundaryEvent-missingAttachToRef.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/error/boundaryEvent-missingAttachToRef.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/error/dangling-process-message-flow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/error/dangling-process-message-flow.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/error/invalid-flow-element.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/error/invalid-flow-element.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/error/multiple-dis.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/error/multiple-dis.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/groups.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/groups.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/labels/collaboration-message-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/labels/collaboration-message-flows.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/labels/collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/labels/collaboration.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/labels/embedded.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/labels/embedded.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/labels/external-no-di.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/labels/external-no-di.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/labels/external.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/labels/external.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/multiple-diagrams.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/multiple-diagrams.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/position/position-testcase.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/position/position-testcase.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/process.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/import/text-annotation-message-flow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/import/text-annotation-message-flow.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/kitchen-sink.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/kitchen-sink.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/multiple-diagrams-lanesets.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/multiple-diagrams-lanesets.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/multiple-diagrams-overlapping-di.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/multiple-diagrams-overlapping-di.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/multiple-diagrams.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/multiple-diagrams.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/multiple-nested-processes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/multiple-nested-processes.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/nested-subprocesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/nested-subprocesses.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/sequence-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/sequence-flows.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/simple-resizable.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/simple-resizable.bpmn -------------------------------------------------------------------------------- /test/fixtures/bpmn/simple.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/bpmn/simple.bpmn -------------------------------------------------------------------------------- /test/fixtures/json/model/camunda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/json/model/camunda.json -------------------------------------------------------------------------------- /test/fixtures/json/model/custom-override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/json/model/custom-override.json -------------------------------------------------------------------------------- /test/fixtures/json/model/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/fixtures/json/model/custom.json -------------------------------------------------------------------------------- /test/helper/TranslationCollector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/helper/TranslationCollector.js -------------------------------------------------------------------------------- /test/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/helper/index.js -------------------------------------------------------------------------------- /test/integration/CustomElementsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/CustomElementsSpec.js -------------------------------------------------------------------------------- /test/integration/ReimportSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/ReimportSpec.js -------------------------------------------------------------------------------- /test/integration/SimpleModelingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/SimpleModelingSpec.js -------------------------------------------------------------------------------- /test/integration/custom-elements/CustomElementFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/custom-elements/CustomElementFactory.js -------------------------------------------------------------------------------- /test/integration/custom-elements/CustomRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/custom-elements/CustomRenderer.js -------------------------------------------------------------------------------- /test/integration/custom-elements/CustomRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/custom-elements/CustomRules.js -------------------------------------------------------------------------------- /test/integration/custom-elements/CustomUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/custom-elements/CustomUpdater.js -------------------------------------------------------------------------------- /test/integration/custom-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/custom-elements/index.js -------------------------------------------------------------------------------- /test/integration/model/BpmnModdleSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/integration/model/BpmnModdleSpec.js -------------------------------------------------------------------------------- /test/matchers/BoundsMatchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/matchers/BoundsMatchers.js -------------------------------------------------------------------------------- /test/matchers/ConnectionMatchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/matchers/ConnectionMatchers.js -------------------------------------------------------------------------------- /test/matchers/JSONMatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/matchers/JSONMatcher.js -------------------------------------------------------------------------------- /test/spec/BaseModelerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/BaseModelerSpec.js -------------------------------------------------------------------------------- /test/spec/BaseViewerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/BaseViewerSpec.js -------------------------------------------------------------------------------- /test/spec/Modeler.copy-paste.a.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/Modeler.copy-paste.a.bpmn -------------------------------------------------------------------------------- /test/spec/Modeler.copy-paste.b.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/Modeler.copy-paste.b.bpmn -------------------------------------------------------------------------------- /test/spec/Modeler.copy-paste.complex.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/Modeler.copy-paste.complex.bpmn -------------------------------------------------------------------------------- /test/spec/Modeler.copy-paste.empty.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/Modeler.copy-paste.empty.bpmn -------------------------------------------------------------------------------- /test/spec/ModelerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/ModelerSpec.js -------------------------------------------------------------------------------- /test/spec/NavigatedViewerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/NavigatedViewerSpec.js -------------------------------------------------------------------------------- /test/spec/ViewerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/ViewerSpec.js -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderUtilSpec.js -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.colors.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.colors.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.connection-colors.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.connection-colors.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.group-colors.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.group-colors.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.labels.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.labels.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.no-event-icons.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.no-event-icons.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.sequenceFlow-no-source.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.sequenceFlow-no-source.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRenderer.simple-cropping.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRenderer.simple-cropping.bpmn -------------------------------------------------------------------------------- /test/spec/draw/BpmnRendererSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/BpmnRendererSpec.js -------------------------------------------------------------------------------- /test/spec/draw/TextRenderer.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/TextRenderer.bpmn -------------------------------------------------------------------------------- /test/spec/draw/TextRendererSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/TextRendererSpec.js -------------------------------------------------------------------------------- /test/spec/draw/custom-renderer/CustomRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/custom-renderer/CustomRenderer.js -------------------------------------------------------------------------------- /test/spec/draw/custom-renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/draw/custom-renderer/index.js -------------------------------------------------------------------------------- /test/spec/environment/MockingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/environment/MockingSpec.js -------------------------------------------------------------------------------- /test/spec/features/align-elements/AlignElementsContextPadProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/align-elements/AlignElementsContextPadProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/align-elements/AlignElementsMenuProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/align-elements/AlignElementsMenuProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/align-elements/BpmnAlignElementsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/align-elements/BpmnAlignElementsSpec.js -------------------------------------------------------------------------------- /test/spec/features/append-preview/AppendPreview.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/append-preview/AppendPreview.bpmn -------------------------------------------------------------------------------- /test/spec/features/append-preview/AppendPreviewSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/append-preview/AppendPreviewSpec.js -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.multi-connection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.multi-connection.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.subprocess.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.subprocess.horizontal.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.subprocess.horizontal.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.subprocess.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.subprocess.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.vertical.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.vertical.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlace.vertical.multi-connection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlace.vertical.multi-connection.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-place/BpmnAutoPlaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-place/BpmnAutoPlaceSpec.js -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.lanes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.lanes.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.multi-selection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.multi-selection.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.nested-sub-processes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.nested-sub-processes.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.participant.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.space-tool.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.space-tool.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResize.sub-processes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResize.sub-processes.bpmn -------------------------------------------------------------------------------- /test/spec/features/auto-resize/AutoResizeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/auto-resize/AutoResizeSpec.js -------------------------------------------------------------------------------- /test/spec/features/context-pad/ContextPad.activation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/context-pad/ContextPad.activation.bpmn -------------------------------------------------------------------------------- /test/spec/features/context-pad/ContextPadProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/context-pad/ContextPadProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/copy-paste/BpmnCopyPasteSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/BpmnCopyPasteSpec.js -------------------------------------------------------------------------------- /test/spec/features/copy-paste/ModdleCopySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/ModdleCopySpec.js -------------------------------------------------------------------------------- /test/spec/features/copy-paste/basic.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/basic.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/collaboration-multiple.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/collaboration-multiple.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/collapsed-subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/collapsed-subprocess.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/complex.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/complex.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/copy-properties.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/copy-properties.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/data-associations.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/data-associations.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/event-based-gateway.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/event-based-gateway.bpmn -------------------------------------------------------------------------------- /test/spec/features/copy-paste/properties.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/copy-paste/properties.bpmn -------------------------------------------------------------------------------- /test/spec/features/distribute-elements/BpmnDistributeElementsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/distribute-elements/BpmnDistributeElementsSpec.js -------------------------------------------------------------------------------- /test/spec/features/distribute-elements/DistributeElementsMenuProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/distribute-elements/DistributeElementsMenuProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/drilldown/DrilldownIntegrationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/DrilldownIntegrationSpec.js -------------------------------------------------------------------------------- /test/spec/features/drilldown/DrilldownOverlayBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/DrilldownOverlayBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/DrilldownOverlaysBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/DrilldownOverlaysBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/drilldown/DrilldownSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/DrilldownSpec.js -------------------------------------------------------------------------------- /test/spec/features/drilldown/collaboration-subprocesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/collaboration-subprocesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/diagram-missing-plane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/diagram-missing-plane.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/legacy-subprocesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/legacy-subprocesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/nested-subprocesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/nested-subprocesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/plane-missing-bpmnelement.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/plane-missing-bpmnelement.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/process-missing-bpmndiagram.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/process-missing-bpmndiagram.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/subprocess-missing-bpmndiagram.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/subprocess-missing-bpmndiagram.bpmn -------------------------------------------------------------------------------- /test/spec/features/drilldown/subprocess-missing-di.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/drilldown/subprocess-missing-di.bpmn -------------------------------------------------------------------------------- /test/spec/features/editor-actions/BpmnEditorActionsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/editor-actions/BpmnEditorActionsSpec.js -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/BpmnGridSnapping.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/BpmnGridSnapping.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/BpmnGridSnappingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/BpmnGridSnappingSpec.js -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/basic.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/basic.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/AutoPlaceBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/AutoPlaceBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/AutoPlaceBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/AutoPlaceBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/AutoResizeBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/AutoResizeBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/AutoResizeBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/AutoResizeBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/CreateParticipantBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/CreateParticipantBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/CreateParticipantBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/CreateParticipantBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/LayoutConnectionBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/LayoutConnectionBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/grid-snapping/behavior/LayoutConnectionBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/grid-snapping/behavior/LayoutConnectionBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/interaction-events/BpmnInteractionEventsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/interaction-events/BpmnInteractionEventsSpec.js -------------------------------------------------------------------------------- /test/spec/features/keyboard-move-selection/KeyboardMoveSelectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/keyboard-move-selection/KeyboardMoveSelectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/keyboard-move-selection/keyboard-move-selection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/keyboard-move-selection/keyboard-move-selection.bpmn -------------------------------------------------------------------------------- /test/spec/features/keyboard/BpmnKeyboardBindingsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/keyboard/BpmnKeyboardBindingsSpec.js -------------------------------------------------------------------------------- /test/spec/features/label-editing/LabelEditing.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/label-editing/LabelEditing.bpmn -------------------------------------------------------------------------------- /test/spec/features/label-editing/LabelEditingPreviewSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/label-editing/LabelEditingPreviewSpec.js -------------------------------------------------------------------------------- /test/spec/features/label-editing/LabelEditingProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/label-editing/LabelEditingProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/label-link/LabelLink.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/label-link/LabelLink.bpmn -------------------------------------------------------------------------------- /test/spec/features/label-link/LabelLinkSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/label-link/LabelLinkSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling-feedback/ModelingFeedback.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling-feedback/ModelingFeedback.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling-feedback/ModelingFeedbackSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling-feedback/ModelingFeedbackSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/AppendShapeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/AppendShapeSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/BendpointsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/BendpointsSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/BpmnFactorySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/BpmnFactorySpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/BpmnUpdater.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/BpmnUpdater.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/BpmnUpdater.incompleteDi.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/BpmnUpdater.incompleteDi.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/BpmnUpdaterSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/BpmnUpdaterSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/CreateConnectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/CreateConnectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/DeleteConnectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/DeleteConnectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/DeleteParticipantSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/DeleteParticipantSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/DeleteShape.cropping.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/DeleteShape.cropping.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/DeleteShapeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/DeleteShapeSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/DropSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/DropSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/ElementFactory.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/ElementFactory.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/ElementFactorySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/ElementFactorySpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/IdClaim.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/IdClaim.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/IdClaimSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/IdClaimSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelBoundsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelBoundsSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelBoundsSpec.simple.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelBoundsSpec.simple.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelLayouting.initial.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelLayouting.initial.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelLayouting.integration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelLayouting.integration.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelLayouting.move.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelLayouting.move.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/LabelLayoutingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LabelLayoutingSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/LoggingCroppingConnectionDocking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/LoggingCroppingConnectionDocking.js -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveConnectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveConnectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.boundary-connection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.boundary-connection.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.centered-connection.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.centered-connection.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.collaboration-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.collaboration-association.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.data-input-output.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.data-input-output.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.eventBasedTargets.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.eventBasedTargets.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElements.flow-collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElements.flow-collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveElementsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveElementsSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveRulesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveRulesSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveShapeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveShapeSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveStress.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveStress.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/MoveStressSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/MoveStressSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/ResizeShapeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/ResizeShapeSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/SetColor.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/SetColor.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/SetColorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/SetColorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateAttachmentSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateAttachmentSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateLabel.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateLabel.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateLabelSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateLabelSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateModdleProperties.dataObject.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateModdleProperties.dataObject.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateModdleProperties.error.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateModdleProperties.error.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateModdlePropertiesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateModdlePropertiesSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdatePropertiesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdatePropertiesSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateSemanticParent.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateSemanticParent.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/UpdateSemanticParentSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/UpdateSemanticParentSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/append/TextAnnotationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/append/TextAnnotationSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehavior.basics.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehavior.basics.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehavior.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehavior.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AdaptiveLabelPositioningBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AssociationBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AssociationBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AssociationBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AssociationBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AttachEventBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AttachEventBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/AttachEventBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/AttachEventBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/BoundaryEvent.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/BoundaryEvent.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/BoundaryEventBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/BoundaryEventBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CompensateBoundaryEventBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CompensateBoundaryEventBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CompensateBoundaryEventBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CompensateBoundaryEventBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CompensationAssociationBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CompensationAssociationBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CompensationAssociationBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CompensationAssociationBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CreateBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CreateBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CreateBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CreateBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/CreateParticipantBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/CreateParticipantBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataInputAssociationBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataInputAssociationBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataInputAssociationBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataInputAssociationBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataObjectBehavior.create-data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataObjectBehavior.create-data-association.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataObjectBehavior.data-object-reference.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataObjectBehavior.data-object-reference.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataObjectBehavior.remove-data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataObjectBehavior.remove-data-association.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataObjectBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataObjectBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.connect.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.connect.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.empty-pool.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.empty-pool.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.process.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehavior.remove-participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehavior.remove-participant.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DataStoreBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DataStoreBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DetachEventBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DetachEventBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DetachEventBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DetachEventBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DropOnFlowBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DropOnFlowBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/DropOnFlowBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/DropOnFlowBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/EventBasedGatewayBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/EventBasedGatewayBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/EventBasedGatewayBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/EventBasedGatewayBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehavior.annotation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehavior.annotation.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehavior.group.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehavior.group.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehavior.label.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehavior.label.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehavior.lane-connect.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehavior.lane-connect.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehavior.participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehavior.participant.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/FixHoverBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/FixHoverBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/GroupBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/GroupBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/GroupBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/GroupBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ImportDockingFix.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ImportDockingFix.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ImportDockingFixSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ImportDockingFixSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/IsHorizontalFix.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/IsHorizontalFix.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/IsHorizontalFixSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/IsHorizontalFixSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/LabelBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/LabelBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/LabelBehavior.copyPaste.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/LabelBehavior.copyPaste.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/LabelBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/LabelBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/LayoutConnectionBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/LayoutConnectionBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/LayoutConnectionBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/LayoutConnectionBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/MessageFlowBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/MessageFlowBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/MessageFlowBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/MessageFlowBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/NonInterruptingBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/NonInterruptingBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/NonInterruptingBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/NonInterruptingBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReconnectConnection.data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReconnectConnection.data-association.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReconnectConnectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReconnectConnectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveElementBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveElementBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveElementBehavior.diagonal.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveElementBehavior.diagonal.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveElementBehavior.perpendicular.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveElementBehavior.perpendicular.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveElementBehavior.vertical.diagonal.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveElementBehavior.vertical.diagonal.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveElementBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveElementBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveEmbeddedLabelBoundsBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RemoveParticipantBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RemoveParticipantBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReplaceConnectionBehavior.association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReplaceConnectionBehavior.association.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReplaceConnectionBehavior.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReplaceConnectionBehavior.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReplaceConnectionBehavior.message-sequence-flow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReplaceConnectionBehavior.message-sequence-flow.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReplaceConnectionBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReplaceConnectionBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ReplaceElementBehaviourSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ReplaceElementBehaviourSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.lanes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.lanes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.lanes.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.lanes.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.participant.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.participant.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.participant.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.subProcess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.subProcess.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.textAnnotation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.textAnnotation.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes-flowNodes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes-flowNodes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.vertical-flowNodes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.vertical-flowNodes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehavior.utility.lanes.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ResizeBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ResizeBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RootElementReferenceBehavior.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RootElementReferenceBehavior.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/RootElementReferenceBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/RootElementReferenceBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SetCompensationActivityAfterPasteBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SetCompensationActivityAfterPasteBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SetCompensationActivityAfterPasteBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SetCompensationActivityAfterPasteBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.group.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.group.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.participant.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.participant.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.participant.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.participant.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SpaceToolBehaviorSpec.subprocess.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessBehavior.copy-paste.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessBehavior.copy-paste.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessBehavior.multiple-planes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessBehavior.multiple-planes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessBehavior.planes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessBehavior.planes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessBehavior.start-event.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessBehavior.start-event.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessPlaneBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessPlaneBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/SubProcessStartEventBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/SubProcessStartEventBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/TextAnnotationBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/TextAnnotationBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/TextAnnotationBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/TextAnnotationBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ToggleCollapseConnectionBehaviourSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ToggleCollapseConnectionBehaviourSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ToggleCollapseConnectionBehaviourSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ToggleCollapseConnectionBehaviourSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ToggleElementCollapseBehaviour.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ToggleElementCollapseBehaviour.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/ToggleElementCollapseBehaviourSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/ToggleElementCollapseBehaviourSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/UnclaimIdBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/UnclaimIdBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/UnclaimIdBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/UnclaimIdBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/UnsetDefaultFlowBehaviorSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/UnsetDefaultFlowBehaviorSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/UnsetDefaultFlowBehaviorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/UnsetDefaultFlowBehaviorSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/util/GeometricUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/util/GeometricUtilSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/util/LabelLayoutUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/util/LabelLayoutUtilSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/util/LineAttachmentUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/util/LineAttachmentUtilSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/util/LineIntersectSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/util/LineIntersectSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/behavior/util/ResizeUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/behavior/util/ResizeUtilSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/input-output/DataInputOutput.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/input-output/DataInputOutput.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/AddLaneSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/AddLaneSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/DeleteLaneSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/DeleteLaneSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/ResizeLaneSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/ResizeLaneSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/SplitLane.nested.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/SplitLane.nested.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/SplitLane.nested.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/SplitLane.nested.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/SplitLaneSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/SplitLaneSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/UpdateFlowNodeRefs.basic.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/UpdateFlowNodeRefs.basic.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/UpdateFlowNodeRefsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/UpdateFlowNodeRefsSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes-flow-nodes-vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes-flow-nodes-vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes-flow-nodes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes-flow-nodes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes.only.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes.only.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes.only.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes.only.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/lanes.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/lanes.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/participant-lane-vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/participant-lane-vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/participant-lane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/participant-lane.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/participant-no-lane-vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/participant-no-lane-vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/participant-no-lane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/participant-no-lane.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/lanes/participant-single-lane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/lanes/participant-single-lane.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/Helper.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutAssociationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutAssociationSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutConnectionSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutConnectionSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutDataAssociationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutDataAssociationSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutMessageFlowSpec.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutMessageFlowSpec.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutMessageFlowSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutMessageFlowSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutMessageFlowSpec.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutMessageFlowSpec.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.boundaryEvents.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.boundaryEvents.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.boundaryEventsLoops.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.boundaryEventsLoops.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.flowElements.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.flowElements.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.js -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.subProcess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.subProcess.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.boundaryEvents.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.boundaryEvents.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.boundaryEventsLoops.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.boundaryEventsLoops.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.flowElements.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.flowElements.bpmn -------------------------------------------------------------------------------- /test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.subProcess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/modeling/layout/LayoutSequenceFlowSpec.vertical.subProcess.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/BpmnDiOrderingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/BpmnDiOrderingSpec.js -------------------------------------------------------------------------------- /test/spec/features/ordering/BpmnOrderingProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/BpmnOrderingProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/ordering/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/Helper.js -------------------------------------------------------------------------------- /test/spec/features/ordering/collapsed-subprocess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/collapsed-subprocess.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/data-association.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/groups.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/groups.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/ordering-start-event.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/ordering-start-event.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/ordering-subprocesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/ordering-subprocesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/ordering.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/ordering.bpmn -------------------------------------------------------------------------------- /test/spec/features/ordering/wrong-di-order.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/ordering/wrong-di-order.bpmn -------------------------------------------------------------------------------- /test/spec/features/outline/OutlineProvider.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/outline/OutlineProvider.bpmn -------------------------------------------------------------------------------- /test/spec/features/outline/OutlineProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/outline/OutlineProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/palette/PaletteProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/palette/PaletteProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.collapsedSubProcess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.collapsedSubProcess.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.compensation-activity.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.compensation-activity.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.conditionalFlows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.conditionalFlows.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlows.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlowsFromComplexGateways.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlowsFromComplexGateways.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlowsFromInclusiveGateways.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.defaultFlowsFromInclusiveGateways.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.events.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.pools.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.pools.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProvider.subProcesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProvider.subProcesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/popup-menu/ReplaceMenuProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/popup-menu/ReplaceMenuProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/replace-preview/BpmnReplacePreview.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace-preview/BpmnReplacePreview.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace-preview/BpmnReplacePreviewSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace-preview/BpmnReplacePreviewSpec.js -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.collaboration.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.collaboration.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.collapsedSubProcess.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.collapsedSubProcess.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.compensation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.compensation.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.dataObjects.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.dataObjects.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.eventSubProcesses.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.eventSubProcesses.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.poolMessageFlows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.poolMessageFlows.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplace.poolMessageFlows.vertical.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplace.poolMessageFlows.vertical.bpmn -------------------------------------------------------------------------------- /test/spec/features/replace/BpmnReplaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/BpmnReplaceSpec.js -------------------------------------------------------------------------------- /test/spec/features/replace/ReplaceRulesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/ReplaceRulesSpec.js -------------------------------------------------------------------------------- /test/spec/features/replace/SubProcess-collapsed.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/replace/SubProcess-collapsed.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.attaching.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.attaching.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.boundaryEvent.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.boundaryEvent.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.collaboration-dataAssociation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.collaboration-dataAssociation.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.collaboration-empty.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.collaboration-empty.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.collaboration-lanes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.collaboration-lanes.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.collapsedPools.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.collapsedPools.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.compensation-collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.compensation-collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.compensation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.compensation.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.connectOnCreate.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.connectOnCreate.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.dataAssociation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.dataAssociation.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.dataInputOutput.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.dataInputOutput.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.dataInputOutput.process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.dataInputOutput.process.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.detaching.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.detaching.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.eventBasedGatewayBasic.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.eventBasedGatewayBasic.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.groups.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.groups.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.insert.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.insert.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.messageFlow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.messageFlow.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.moveLane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.moveLane.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.multiSelectionPools.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.multiSelectionPools.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.process.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRules.subProcess-dataAssociation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRules.subProcess-dataAssociation.bpmn -------------------------------------------------------------------------------- /test/spec/features/rules/BpmnRulesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/BpmnRulesSpec.js -------------------------------------------------------------------------------- /test/spec/features/rules/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/rules/Helper.js -------------------------------------------------------------------------------- /test/spec/features/search/BpmnSearchProviderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/search/BpmnSearchProviderSpec.js -------------------------------------------------------------------------------- /test/spec/features/search/bpmn-search-collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/search/bpmn-search-collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/search/bpmn-search-sorting.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/search/bpmn-search-sorting.bpmn -------------------------------------------------------------------------------- /test/spec/features/search/bpmn-search.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/search/bpmn-search.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnConnectSnapping.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnConnectSnapping.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnConnectSnappingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnConnectSnappingSpec.js -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.docking-create-mode.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.docking-create-mode.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.docking-points.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.docking-points.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.process.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.sequence-flows.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.sequence-flows.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnapping.trbl-snapping.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnapping.trbl-snapping.bpmn -------------------------------------------------------------------------------- /test/spec/features/snapping/BpmnCreateMoveSnappingSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/snapping/BpmnCreateMoveSnappingSpec.js -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceTool.artifacts.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceTool.artifacts.bpmn -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceTool.basics.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceTool.basics.bpmn -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceTool.boundary-events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceTool.boundary-events.bpmn -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceTool.participants.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceTool.participants.bpmn -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceTool.text-annotations.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceTool.text-annotations.bpmn -------------------------------------------------------------------------------- /test/spec/features/space-tool/BpmnSpaceToolSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/features/space-tool/BpmnSpaceToolSpec.js -------------------------------------------------------------------------------- /test/spec/helper/InjectSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/helper/InjectSpec.js -------------------------------------------------------------------------------- /test/spec/i18n/custom-translate/custom-translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/i18n/custom-translate/custom-translate.js -------------------------------------------------------------------------------- /test/spec/i18n/custom-translate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/i18n/custom-translate/index.js -------------------------------------------------------------------------------- /test/spec/i18n/translateSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/i18n/translateSpec.js -------------------------------------------------------------------------------- /test/spec/import/BpmnTreeWalkerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/BpmnTreeWalkerSpec.js -------------------------------------------------------------------------------- /test/spec/import/ImporterSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/ImporterSpec.js -------------------------------------------------------------------------------- /test/spec/import/ModelWiringSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/ModelWiringSpec.js -------------------------------------------------------------------------------- /test/spec/import/data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/data-association.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.collaboration.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.collaboration.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.compensation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.compensation.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.data-association.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.data-association.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.data-input-output.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.data-input-output.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.events.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.events.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.js -------------------------------------------------------------------------------- /test/spec/import/elements/AssociationSpec.text-annotation.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/AssociationSpec.text-annotation.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/CollapsedSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/CollapsedSpec.js -------------------------------------------------------------------------------- /test/spec/import/elements/DataInputOutput.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/DataInputOutput.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/DataInputOutputSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/DataInputOutputSpec.js -------------------------------------------------------------------------------- /test/spec/import/elements/Groups.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/Groups.bpmn -------------------------------------------------------------------------------- /test/spec/import/elements/GroupsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/GroupsSpec.js -------------------------------------------------------------------------------- /test/spec/import/elements/LabelSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/elements/LabelSpec.js -------------------------------------------------------------------------------- /test/spec/import/lane-flowNodes.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/lane-flowNodes.bpmn -------------------------------------------------------------------------------- /test/spec/import/lane-missing-flowNodeRef.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/lane-missing-flowNodeRef.bpmn -------------------------------------------------------------------------------- /test/spec/import/missing-di-plane-root-element.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/missing-di-plane-root-element.bpmn -------------------------------------------------------------------------------- /test/spec/import/missing-di-plane.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/missing-di-plane.bpmn -------------------------------------------------------------------------------- /test/spec/import/sequenceFlow-missingWaypoints.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/sequenceFlow-missingWaypoints.bpmn -------------------------------------------------------------------------------- /test/spec/import/sequenceFlow-ordering.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/import/sequenceFlow-ordering.bpmn -------------------------------------------------------------------------------- /test/spec/util/ModelUtilSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/util/ModelUtilSpec.js -------------------------------------------------------------------------------- /test/spec/util/svgHelpersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/spec/util/svgHelpersSpec.js -------------------------------------------------------------------------------- /test/testBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/testBundle.js -------------------------------------------------------------------------------- /test/util/KeyEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/util/KeyEvents.js -------------------------------------------------------------------------------- /test/util/MockEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/util/MockEvents.js -------------------------------------------------------------------------------- /test/util/custom-rules/CustomRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/util/custom-rules/CustomRules.js -------------------------------------------------------------------------------- /test/util/custom-rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/util/custom-rules/index.js -------------------------------------------------------------------------------- /test/util/svgHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/test/util/svgHelpers.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpmn-io/bpmn-js/HEAD/tsconfig.json --------------------------------------------------------------------------------