├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── archimate-font ├── LICENSE ├── README.md ├── lib │ ├── LICENSE.txt │ ├── README.txt │ ├── config.json │ ├── css │ │ ├── animation.css │ │ ├── archimate-font-codes.css │ │ ├── archimate-font-embedded.css │ │ ├── archimate-font-ie7-codes.css │ │ ├── archimate-font-ie7.css │ │ └── archimate-font.css │ ├── demo.html │ └── font │ │ ├── archimate-font.eot │ │ ├── archimate-font.svg │ │ ├── archimate-font.ttf │ │ ├── archimate-font.woff │ │ └── archimate-font.woff2 ├── package.json └── src │ ├── relations │ ├── relation-access-read.svg │ ├── relation-access-readwrite.svg │ ├── relation-access-write.svg │ ├── relation-access.svg │ ├── relation-aggregation.svg │ ├── relation-assignment.old.svg │ ├── relation-assignment.svg │ ├── relation-association-direct.svg │ ├── relation-association.svg │ ├── relation-composition.svg │ ├── relation-flow.old.svg │ ├── relation-flow.svg │ ├── relation-influence.svg │ ├── relation-junction-2.svg │ ├── relation-junction.svg │ ├── relation-line.svg │ ├── relation-multi.svg │ ├── relation-realization.svg │ ├── relation-serving.old.svg │ ├── relation-serving.svg │ ├── relation-specialization.svg │ ├── relation-triggering.old.svg │ └── relation-triggering.svg │ ├── tool-gear-thin.svg │ ├── tool-gear.svg │ ├── tool-note-2.svg │ ├── tool-note-3.svg │ └── tool-note.svg ├── assets ├── archimate-js.css ├── font-awesome-5 │ ├── 29f589f173dcc69ef6c805b711894998.eot │ ├── 29f589f173dcc69ef6c805b711894998.svg │ ├── 29f589f173dcc69ef6c805b711894998.ttf │ ├── 29f589f173dcc69ef6c805b711894998.woff │ └── 29f589f173dcc69ef6c805b711894998.woff2 ├── ibm-plex-font │ ├── IBMPlexSans-Bold.ttf │ ├── IBMPlexSans-BoldItalic.ttf │ ├── IBMPlexSans-ExtraLight.ttf │ ├── IBMPlexSans-ExtraLightItalic.ttf │ ├── IBMPlexSans-Italic.ttf │ ├── IBMPlexSans-Light.ttf │ ├── IBMPlexSans-LightItalic.ttf │ ├── IBMPlexSans-Medium.ttf │ ├── IBMPlexSans-MediumItalic.ttf │ ├── IBMPlexSans-Regular.ttf │ ├── IBMPlexSans-SemiBold.ttf │ ├── IBMPlexSans-SemiBoldItalic.ttf │ ├── IBMPlexSans-Thin.ttf │ ├── IBMPlexSans-ThinItalic.ttf │ └── OFL.txt ├── icons │ ├── application_collaboration.svg │ ├── application_component.svg │ ├── application_data_object.svg │ ├── application_event.svg │ ├── application_function.svg │ ├── application_interaction.svg │ ├── application_interface.svg │ ├── application_process.svg │ ├── application_service.svg │ ├── archive │ │ ├── application_function.svg │ │ ├── application_interface.svg │ │ ├── application_process.svg │ │ ├── business_actor.old.svg │ │ ├── business_actor_1px.svg │ │ ├── business_actor_nc.svg │ │ ├── business_collaboration.old.svg │ │ ├── business_collaboration_nc.svg │ │ ├── business_function.old.svg │ │ ├── business_function_nc.svg │ │ ├── business_interaction.old.svg │ │ ├── business_interaction_nc.svg │ │ ├── business_interface.old.svg │ │ ├── business_interface_nc.svg │ │ ├── business_process.old.svg │ │ └── business_process_nc.svg │ ├── business_actor.svg │ ├── business_collaboration.svg │ ├── business_contract.svg │ ├── business_event.svg │ ├── business_function.svg │ ├── business_interaction.svg │ ├── business_interface.svg │ ├── business_object.svg │ ├── business_process.svg │ ├── business_product.svg │ ├── business_representation.svg │ ├── business_role.svg │ ├── business_service.svg │ ├── group.svg │ ├── image.svg │ ├── note-ok.svg │ ├── note.svg │ ├── note_old.svg │ ├── relation-aggregation.svg │ ├── strategy_capability.svg │ ├── strategy_course_of_action.svg │ ├── strategy_resource.svg │ ├── strategy_value_stream.svg │ ├── technology_artifact.svg │ ├── technology_collaboration.svg │ ├── technology_communication_network.svg │ ├── technology_device.svg │ ├── technology_event.svg │ ├── technology_function.svg │ ├── technology_interaction.svg │ ├── technology_interface.svg │ ├── technology_node.svg │ ├── technology_path.svg │ ├── technology_process.svg │ ├── technology_service.svg │ ├── technology_system_software.svg │ ├── tool_hand.svg │ ├── tool_hand_r.svg │ ├── tool_select.svg │ ├── tool_select_r.svg │ └── tool_space.svg └── palette-icons.css ├── index.js ├── lib ├── .eslintrc ├── BaseModeler.js ├── BaseViewer.js ├── Modeler.js ├── NavigatedViewer.js ├── Viewer.js ├── core │ └── index.js ├── draw │ ├── ArchimateRenderer.js │ ├── ArchimateRendererUtil.js │ ├── PathMap.js │ ├── TextRenderer.js │ └── index.js ├── features │ ├── auto-place │ │ ├── ArchimateAutoPlace.js │ │ ├── ArchimateAutoPlaceUtil.js │ │ └── index.js │ ├── canvas-create │ │ ├── CanvasCreate.js │ │ └── index.js │ ├── context-pad │ │ ├── ContextPadProvider.js │ │ └── index.js │ ├── copy-paste │ │ ├── ArchimateCopyPaste.js │ │ ├── ModdleCopy.js │ │ └── index.js │ ├── editor-actions │ │ ├── ArchimateEditorActions.js │ │ └── index.js │ ├── keyboard │ │ ├── ArchimateKeyboardBindings.js │ │ └── index.js │ ├── label-editing │ │ ├── LabelEditingPreview.js │ │ ├── LabelEditingProvider.js │ │ ├── LabelUtil.js │ │ ├── cmd │ │ │ └── UpdateLabelHandler.js │ │ └── index.js │ ├── modeling │ │ ├── ArchimateFactory.js │ │ ├── ArchimateLayouter.js │ │ ├── ConnectionUpdater.js │ │ ├── ElementFactory.js │ │ ├── Modeling.js │ │ ├── NodeUpdater.js │ │ ├── behavior │ │ │ ├── AdaptiveLabelPositioningBehavior.js │ │ │ ├── AppendBehavior.js │ │ │ ├── AttachmentBehavior.js │ │ │ ├── ConnectionToConnectionBehavior.js │ │ │ ├── FixHoverBehavior.js │ │ │ ├── ImportDockingFix.js │ │ │ ├── LabelBehavior.js │ │ │ ├── ReplaceElementBehaviour.js │ │ │ ├── UnclaimIdBehavior.js │ │ │ ├── index.js │ │ │ └── util │ │ │ │ ├── ConnectionLayoutUtil.js │ │ │ │ ├── GeometricUtil.js │ │ │ │ ├── LabelLayoutUtil.js │ │ │ │ ├── LayoutUtil.js │ │ │ │ ├── LineAttachmentUtil.js │ │ │ │ └── LineIntersect.js │ │ ├── cmd │ │ │ ├── IdClaimHandler.js │ │ │ ├── ReplaceElementRefHandler.js │ │ │ ├── ReplaceRelationshipRefHandler.js │ │ │ ├── SetColorHandler.js │ │ │ ├── UpdateCanvasRootHandler.js │ │ │ ├── UpdateModdlePropertiesHandler.js │ │ │ ├── UpdatePropertiesHandler.js │ │ │ └── UpdateStyleHandler.js │ │ └── index.js │ ├── ordering │ │ ├── ArchimateOrdering.js │ │ ├── ArchimateOrderingProvider.js │ │ └── index.js │ ├── palette │ │ ├── PaletteProvider.js │ │ └── index.js │ ├── popup-menu │ │ ├── ConnectionMenuProvider.js │ │ ├── ConnectionOptions.js │ │ ├── ElementRefMenuProvider.js │ │ ├── TextMenuProvider.js │ │ └── index.js │ ├── replace-preview │ │ ├── ArchimateReplacePreview.js │ │ └── index.js │ ├── replace │ │ ├── ArchimateReplace.js │ │ ├── ReplaceOptions.js │ │ └── index.js │ ├── rules │ │ ├── ArchimateRules.js │ │ └── index.js │ └── snapping │ │ ├── ArchimateCreateMoveSnapping.js │ │ ├── SnappingUtil.js │ │ └── index.js ├── import │ ├── ArchimateImporter.js │ ├── Importer.js │ ├── Util.js │ └── index.js ├── metamodel │ ├── ApplicationRelationshipMap.js │ ├── BusinessRelationshipMap.js │ ├── Concept.js │ ├── ImpMigRelationshipMap.js │ ├── MotivationRelationshipMap.js │ ├── OtherRelationshipMap.js │ ├── PhysicalRelationshipMap.js │ ├── RelationshipRelationshipMap.js │ ├── StrategyRelationshipMap.js │ └── TechnologyRelationshipMap.js ├── moddle │ ├── Moddle.js │ ├── index.js │ └── resources │ │ └── archimate.json └── util │ ├── ColorUtil.js │ ├── ElementUtil.js │ ├── FileUtil.js │ ├── LabelUtil.js │ ├── Logger.js │ ├── ModelUtil.js │ ├── RelationshipUtil.js │ └── ScreenUtil.js └── package.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | coverage/ 4 | .idea 5 | *.iml 6 | .DS_Store -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/README.md -------------------------------------------------------------------------------- /archimate-font/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/LICENSE -------------------------------------------------------------------------------- /archimate-font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/README.md -------------------------------------------------------------------------------- /archimate-font/lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/LICENSE.txt -------------------------------------------------------------------------------- /archimate-font/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/README.txt -------------------------------------------------------------------------------- /archimate-font/lib/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/config.json -------------------------------------------------------------------------------- /archimate-font/lib/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/animation.css -------------------------------------------------------------------------------- /archimate-font/lib/css/archimate-font-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/archimate-font-codes.css -------------------------------------------------------------------------------- /archimate-font/lib/css/archimate-font-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/archimate-font-embedded.css -------------------------------------------------------------------------------- /archimate-font/lib/css/archimate-font-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/archimate-font-ie7-codes.css -------------------------------------------------------------------------------- /archimate-font/lib/css/archimate-font-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/archimate-font-ie7.css -------------------------------------------------------------------------------- /archimate-font/lib/css/archimate-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/css/archimate-font.css -------------------------------------------------------------------------------- /archimate-font/lib/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/demo.html -------------------------------------------------------------------------------- /archimate-font/lib/font/archimate-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/font/archimate-font.eot -------------------------------------------------------------------------------- /archimate-font/lib/font/archimate-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/font/archimate-font.svg -------------------------------------------------------------------------------- /archimate-font/lib/font/archimate-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/font/archimate-font.ttf -------------------------------------------------------------------------------- /archimate-font/lib/font/archimate-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/font/archimate-font.woff -------------------------------------------------------------------------------- /archimate-font/lib/font/archimate-font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/lib/font/archimate-font.woff2 -------------------------------------------------------------------------------- /archimate-font/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/package.json -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-access-read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-access-read.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-access-readwrite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-access-readwrite.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-access-write.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-access-write.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-access.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-aggregation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-aggregation.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-assignment.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-assignment.old.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-assignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-assignment.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-association-direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-association-direct.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-association.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-association.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-composition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-composition.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-flow.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-flow.old.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-flow.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-influence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-influence.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-junction-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-junction-2.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-junction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-junction.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-line.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-multi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-multi.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-realization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-realization.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-serving.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-serving.old.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-serving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-serving.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-specialization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-specialization.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-triggering.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-triggering.old.svg -------------------------------------------------------------------------------- /archimate-font/src/relations/relation-triggering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/relations/relation-triggering.svg -------------------------------------------------------------------------------- /archimate-font/src/tool-gear-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/tool-gear-thin.svg -------------------------------------------------------------------------------- /archimate-font/src/tool-gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/tool-gear.svg -------------------------------------------------------------------------------- /archimate-font/src/tool-note-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/tool-note-2.svg -------------------------------------------------------------------------------- /archimate-font/src/tool-note-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/tool-note-3.svg -------------------------------------------------------------------------------- /archimate-font/src/tool-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/archimate-font/src/tool-note.svg -------------------------------------------------------------------------------- /assets/archimate-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/archimate-js.css -------------------------------------------------------------------------------- /assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.eot -------------------------------------------------------------------------------- /assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.svg -------------------------------------------------------------------------------- /assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.ttf -------------------------------------------------------------------------------- /assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.woff -------------------------------------------------------------------------------- /assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/font-awesome-5/29f589f173dcc69ef6c805b711894998.woff2 -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/ibm-plex-font/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/ibm-plex-font/OFL.txt -------------------------------------------------------------------------------- /assets/icons/application_collaboration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_collaboration.svg -------------------------------------------------------------------------------- /assets/icons/application_component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_component.svg -------------------------------------------------------------------------------- /assets/icons/application_data_object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_data_object.svg -------------------------------------------------------------------------------- /assets/icons/application_event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_event.svg -------------------------------------------------------------------------------- /assets/icons/application_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_function.svg -------------------------------------------------------------------------------- /assets/icons/application_interaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_interaction.svg -------------------------------------------------------------------------------- /assets/icons/application_interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_interface.svg -------------------------------------------------------------------------------- /assets/icons/application_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_process.svg -------------------------------------------------------------------------------- /assets/icons/application_service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/application_service.svg -------------------------------------------------------------------------------- /assets/icons/archive/application_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/application_function.svg -------------------------------------------------------------------------------- /assets/icons/archive/application_interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/application_interface.svg -------------------------------------------------------------------------------- /assets/icons/archive/application_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/application_process.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_actor.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_actor.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_actor_1px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_actor_1px.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_actor_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_actor_nc.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_collaboration.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_collaboration.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_collaboration_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_collaboration_nc.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_function.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_function.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_function_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_function_nc.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_interaction.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_interaction.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_interaction_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_interaction_nc.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_interface.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_interface.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_interface_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_interface_nc.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_process.old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_process.old.svg -------------------------------------------------------------------------------- /assets/icons/archive/business_process_nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/archive/business_process_nc.svg -------------------------------------------------------------------------------- /assets/icons/business_actor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_actor.svg -------------------------------------------------------------------------------- /assets/icons/business_collaboration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_collaboration.svg -------------------------------------------------------------------------------- /assets/icons/business_contract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_contract.svg -------------------------------------------------------------------------------- /assets/icons/business_event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_event.svg -------------------------------------------------------------------------------- /assets/icons/business_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_function.svg -------------------------------------------------------------------------------- /assets/icons/business_interaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_interaction.svg -------------------------------------------------------------------------------- /assets/icons/business_interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_interface.svg -------------------------------------------------------------------------------- /assets/icons/business_object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_object.svg -------------------------------------------------------------------------------- /assets/icons/business_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_process.svg -------------------------------------------------------------------------------- /assets/icons/business_product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_product.svg -------------------------------------------------------------------------------- /assets/icons/business_representation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_representation.svg -------------------------------------------------------------------------------- /assets/icons/business_role.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_role.svg -------------------------------------------------------------------------------- /assets/icons/business_service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/business_service.svg -------------------------------------------------------------------------------- /assets/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/group.svg -------------------------------------------------------------------------------- /assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/image.svg -------------------------------------------------------------------------------- /assets/icons/note-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/note-ok.svg -------------------------------------------------------------------------------- /assets/icons/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/note.svg -------------------------------------------------------------------------------- /assets/icons/note_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/note_old.svg -------------------------------------------------------------------------------- /assets/icons/relation-aggregation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/relation-aggregation.svg -------------------------------------------------------------------------------- /assets/icons/strategy_capability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/strategy_capability.svg -------------------------------------------------------------------------------- /assets/icons/strategy_course_of_action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/strategy_course_of_action.svg -------------------------------------------------------------------------------- /assets/icons/strategy_resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/strategy_resource.svg -------------------------------------------------------------------------------- /assets/icons/strategy_value_stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/strategy_value_stream.svg -------------------------------------------------------------------------------- /assets/icons/technology_artifact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_artifact.svg -------------------------------------------------------------------------------- /assets/icons/technology_collaboration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_collaboration.svg -------------------------------------------------------------------------------- /assets/icons/technology_communication_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_communication_network.svg -------------------------------------------------------------------------------- /assets/icons/technology_device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_device.svg -------------------------------------------------------------------------------- /assets/icons/technology_event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_event.svg -------------------------------------------------------------------------------- /assets/icons/technology_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_function.svg -------------------------------------------------------------------------------- /assets/icons/technology_interaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_interaction.svg -------------------------------------------------------------------------------- /assets/icons/technology_interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_interface.svg -------------------------------------------------------------------------------- /assets/icons/technology_node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_node.svg -------------------------------------------------------------------------------- /assets/icons/technology_path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_path.svg -------------------------------------------------------------------------------- /assets/icons/technology_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_process.svg -------------------------------------------------------------------------------- /assets/icons/technology_service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_service.svg -------------------------------------------------------------------------------- /assets/icons/technology_system_software.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/technology_system_software.svg -------------------------------------------------------------------------------- /assets/icons/tool_hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/tool_hand.svg -------------------------------------------------------------------------------- /assets/icons/tool_hand_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/tool_hand_r.svg -------------------------------------------------------------------------------- /assets/icons/tool_select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/tool_select.svg -------------------------------------------------------------------------------- /assets/icons/tool_select_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/tool_select_r.svg -------------------------------------------------------------------------------- /assets/icons/tool_space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/icons/tool_space.svg -------------------------------------------------------------------------------- /assets/palette-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/assets/palette-icons.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export { 2 | default 3 | } from './lib/Viewer'; -------------------------------------------------------------------------------- /lib/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/.eslintrc -------------------------------------------------------------------------------- /lib/BaseModeler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/BaseModeler.js -------------------------------------------------------------------------------- /lib/BaseViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/BaseViewer.js -------------------------------------------------------------------------------- /lib/Modeler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/Modeler.js -------------------------------------------------------------------------------- /lib/NavigatedViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/NavigatedViewer.js -------------------------------------------------------------------------------- /lib/Viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/Viewer.js -------------------------------------------------------------------------------- /lib/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/core/index.js -------------------------------------------------------------------------------- /lib/draw/ArchimateRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/draw/ArchimateRenderer.js -------------------------------------------------------------------------------- /lib/draw/ArchimateRendererUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/draw/ArchimateRendererUtil.js -------------------------------------------------------------------------------- /lib/draw/PathMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/draw/PathMap.js -------------------------------------------------------------------------------- /lib/draw/TextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/draw/TextRenderer.js -------------------------------------------------------------------------------- /lib/draw/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/draw/index.js -------------------------------------------------------------------------------- /lib/features/auto-place/ArchimateAutoPlace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/auto-place/ArchimateAutoPlace.js -------------------------------------------------------------------------------- /lib/features/auto-place/ArchimateAutoPlaceUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/auto-place/ArchimateAutoPlaceUtil.js -------------------------------------------------------------------------------- /lib/features/auto-place/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/auto-place/index.js -------------------------------------------------------------------------------- /lib/features/canvas-create/CanvasCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/canvas-create/CanvasCreate.js -------------------------------------------------------------------------------- /lib/features/canvas-create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/canvas-create/index.js -------------------------------------------------------------------------------- /lib/features/context-pad/ContextPadProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/context-pad/ContextPadProvider.js -------------------------------------------------------------------------------- /lib/features/context-pad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/context-pad/index.js -------------------------------------------------------------------------------- /lib/features/copy-paste/ArchimateCopyPaste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/copy-paste/ArchimateCopyPaste.js -------------------------------------------------------------------------------- /lib/features/copy-paste/ModdleCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/copy-paste/ModdleCopy.js -------------------------------------------------------------------------------- /lib/features/copy-paste/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/copy-paste/index.js -------------------------------------------------------------------------------- /lib/features/editor-actions/ArchimateEditorActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/editor-actions/ArchimateEditorActions.js -------------------------------------------------------------------------------- /lib/features/editor-actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/editor-actions/index.js -------------------------------------------------------------------------------- /lib/features/keyboard/ArchimateKeyboardBindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/keyboard/ArchimateKeyboardBindings.js -------------------------------------------------------------------------------- /lib/features/keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/keyboard/index.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelEditingPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/label-editing/LabelEditingPreview.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelEditingProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/label-editing/LabelEditingProvider.js -------------------------------------------------------------------------------- /lib/features/label-editing/LabelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/label-editing/LabelUtil.js -------------------------------------------------------------------------------- /lib/features/label-editing/cmd/UpdateLabelHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/label-editing/cmd/UpdateLabelHandler.js -------------------------------------------------------------------------------- /lib/features/label-editing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/label-editing/index.js -------------------------------------------------------------------------------- /lib/features/modeling/ArchimateFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/ArchimateFactory.js -------------------------------------------------------------------------------- /lib/features/modeling/ArchimateLayouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/ArchimateLayouter.js -------------------------------------------------------------------------------- /lib/features/modeling/ConnectionUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/ConnectionUpdater.js -------------------------------------------------------------------------------- /lib/features/modeling/ElementFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/ElementFactory.js -------------------------------------------------------------------------------- /lib/features/modeling/Modeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/Modeling.js -------------------------------------------------------------------------------- /lib/features/modeling/NodeUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/NodeUpdater.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AdaptiveLabelPositioningBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/AdaptiveLabelPositioningBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AppendBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/AppendBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/AttachmentBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/AttachmentBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ConnectionToConnectionBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/ConnectionToConnectionBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/FixHoverBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/FixHoverBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ImportDockingFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/ImportDockingFix.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/LabelBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/LabelBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/ReplaceElementBehaviour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/ReplaceElementBehaviour.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/UnclaimIdBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/UnclaimIdBehavior.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/index.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/ConnectionLayoutUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-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/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/util/LabelLayoutUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LayoutUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/util/LayoutUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LineAttachmentUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/util/LineAttachmentUtil.js -------------------------------------------------------------------------------- /lib/features/modeling/behavior/util/LineIntersect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/behavior/util/LineIntersect.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/IdClaimHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/IdClaimHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/ReplaceElementRefHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/ReplaceElementRefHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/ReplaceRelationshipRefHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/ReplaceRelationshipRefHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/SetColorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/SetColorHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateCanvasRootHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/UpdateCanvasRootHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateModdlePropertiesHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/UpdateModdlePropertiesHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdatePropertiesHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/UpdatePropertiesHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/cmd/UpdateStyleHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/cmd/UpdateStyleHandler.js -------------------------------------------------------------------------------- /lib/features/modeling/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/modeling/index.js -------------------------------------------------------------------------------- /lib/features/ordering/ArchimateOrdering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/ordering/ArchimateOrdering.js -------------------------------------------------------------------------------- /lib/features/ordering/ArchimateOrderingProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/ordering/ArchimateOrderingProvider.js -------------------------------------------------------------------------------- /lib/features/ordering/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/ordering/index.js -------------------------------------------------------------------------------- /lib/features/palette/PaletteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/palette/PaletteProvider.js -------------------------------------------------------------------------------- /lib/features/palette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/palette/index.js -------------------------------------------------------------------------------- /lib/features/popup-menu/ConnectionMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/popup-menu/ConnectionMenuProvider.js -------------------------------------------------------------------------------- /lib/features/popup-menu/ConnectionOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/popup-menu/ConnectionOptions.js -------------------------------------------------------------------------------- /lib/features/popup-menu/ElementRefMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/popup-menu/ElementRefMenuProvider.js -------------------------------------------------------------------------------- /lib/features/popup-menu/TextMenuProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/popup-menu/TextMenuProvider.js -------------------------------------------------------------------------------- /lib/features/popup-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/popup-menu/index.js -------------------------------------------------------------------------------- /lib/features/replace-preview/ArchimateReplacePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/replace-preview/ArchimateReplacePreview.js -------------------------------------------------------------------------------- /lib/features/replace-preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/replace-preview/index.js -------------------------------------------------------------------------------- /lib/features/replace/ArchimateReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/replace/ArchimateReplace.js -------------------------------------------------------------------------------- /lib/features/replace/ReplaceOptions.js: -------------------------------------------------------------------------------- 1 | export var POST_IT = [ 2 | 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/features/replace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/replace/index.js -------------------------------------------------------------------------------- /lib/features/rules/ArchimateRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/rules/ArchimateRules.js -------------------------------------------------------------------------------- /lib/features/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/rules/index.js -------------------------------------------------------------------------------- /lib/features/snapping/ArchimateCreateMoveSnapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/snapping/ArchimateCreateMoveSnapping.js -------------------------------------------------------------------------------- /lib/features/snapping/SnappingUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/snapping/SnappingUtil.js -------------------------------------------------------------------------------- /lib/features/snapping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/features/snapping/index.js -------------------------------------------------------------------------------- /lib/import/ArchimateImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/import/ArchimateImporter.js -------------------------------------------------------------------------------- /lib/import/Importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/import/Importer.js -------------------------------------------------------------------------------- /lib/import/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/import/Util.js -------------------------------------------------------------------------------- /lib/import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/import/index.js -------------------------------------------------------------------------------- /lib/metamodel/ApplicationRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/ApplicationRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/BusinessRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/BusinessRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/Concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/Concept.js -------------------------------------------------------------------------------- /lib/metamodel/ImpMigRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/ImpMigRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/MotivationRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/MotivationRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/OtherRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/OtherRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/PhysicalRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/PhysicalRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/RelationshipRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/RelationshipRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/StrategyRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/StrategyRelationshipMap.js -------------------------------------------------------------------------------- /lib/metamodel/TechnologyRelationshipMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/metamodel/TechnologyRelationshipMap.js -------------------------------------------------------------------------------- /lib/moddle/Moddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/moddle/Moddle.js -------------------------------------------------------------------------------- /lib/moddle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/moddle/index.js -------------------------------------------------------------------------------- /lib/moddle/resources/archimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/moddle/resources/archimate.json -------------------------------------------------------------------------------- /lib/util/ColorUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/ColorUtil.js -------------------------------------------------------------------------------- /lib/util/ElementUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/ElementUtil.js -------------------------------------------------------------------------------- /lib/util/FileUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/FileUtil.js -------------------------------------------------------------------------------- /lib/util/LabelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/LabelUtil.js -------------------------------------------------------------------------------- /lib/util/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/Logger.js -------------------------------------------------------------------------------- /lib/util/ModelUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/ModelUtil.js -------------------------------------------------------------------------------- /lib/util/RelationshipUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/RelationshipUtil.js -------------------------------------------------------------------------------- /lib/util/ScreenUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/lib/util/ScreenUtil.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archimodel/archimate-js/HEAD/package.json --------------------------------------------------------------------------------