Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-coding committed Sep 17, 2024
1 parent 63b1ac0 commit 7424797
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gropius-backend
2 changes: 1 addition & 1 deletion gropius-frontend
Submodule gropius-frontend updated 89 files
+23 −0 LICENSE
+4 −3 package-lock.json
+277 −0 packages/graph-editor/LICENSE
+103 −0 packages/graph-editor/README.md
+8 −1 packages/graph-editor/package.json
+2 −2 packages/graph-editor/src/base/commandStack.ts
+5 −3 packages/graph-editor/src/base/layoutEngine.ts
+18 −18 packages/graph-editor/src/base/modelSource.ts
+36 −36 packages/graph-editor/src/di.config.ts
+2 −2 packages/graph-editor/src/features/animation/cancelableAnimation.ts
+2 −2 packages/graph-editor/src/features/animation/linearInterpolationAnimation.ts
+1 −1 packages/graph-editor/src/features/bounds/di.config.ts
+5 −5 packages/graph-editor/src/features/connect/connectMouseListener.ts
+3 −3 packages/graph-editor/src/features/connect/di.config.ts
+3 −3 packages/graph-editor/src/features/connect/updateRelationEndCommand.ts
+1 −1 packages/graph-editor/src/features/issueRelationHighlight/IssueRelationHighlightable.ts
+2 −2 packages/graph-editor/src/features/issueRelationHighlight/di.config.ts
+3 −3 packages/graph-editor/src/features/issueRelationHighlight/highlightMouseListener.ts
+2 −2 packages/graph-editor/src/features/issueRelationHighlight/hoverHighlightCommand.ts
+1 −1 packages/graph-editor/src/features/issueRelationHighlight/issueHighlightableFeature.ts
+1 −1 packages/graph-editor/src/features/move/di.config.ts
+77 −12 packages/graph-editor/src/features/move/elementMoveHandler.ts
+87 −3 packages/graph-editor/src/features/move/moveHandler.ts
+59 −14 packages/graph-editor/src/features/move/moveMouseListener.ts
+15 −88 packages/graph-editor/src/features/move/relationMoveHandler.ts
+1 −1 packages/graph-editor/src/features/move/updateLayoutAction.ts
+1 −1 packages/graph-editor/src/features/update/di.config.ts
+3 −3 packages/graph-editor/src/features/update/updateModel.ts
+1 −1 packages/graph-editor/src/features/zorder/di.config.ts
+0 −16 packages/graph-editor/src/gropiusModel.ts
+4 −4 packages/graph-editor/src/index.ts
+4 −4 packages/graph-editor/src/line/engine/arcSegmentEngine.ts
+11 −11 packages/graph-editor/src/line/engine/lineEngine.ts
+3 −3 packages/graph-editor/src/line/engine/lineSegmentEngine.ts
+1 −1 packages/graph-editor/src/line/engine/segmentEngine.ts
+1 −1 packages/graph-editor/src/line/model/arcSegment.ts
+1 −1 packages/graph-editor/src/line/model/line.ts
+1 −1 packages/graph-editor/src/line/model/lineSegment.ts
+16 −0 packages/graph-editor/src/line/model/segmentLayout.ts
+1 −1 packages/graph-editor/src/marker/engines/arrowEngine.ts
+1 −1 packages/graph-editor/src/marker/engines/circleEngine.ts
+1 −1 packages/graph-editor/src/marker/engines/diamondEngine.ts
+1 −1 packages/graph-editor/src/marker/engines/triangleEngine.ts
+6 −6 packages/graph-editor/src/marker/markerGenerator.ts
+1 −1 packages/graph-editor/src/model/chip.ts
+2 −2 packages/graph-editor/src/model/component.ts
+1 −1 packages/graph-editor/src/model/contextMenu.ts
+2 −2 packages/graph-editor/src/model/interface.ts
+2 −2 packages/graph-editor/src/model/issueAffected.ts
+1 −1 packages/graph-editor/src/model/issueRelation.ts
+1 −1 packages/graph-editor/src/model/issueType.ts
+1 −1 packages/graph-editor/src/model/label.ts
+4 −3 packages/graph-editor/src/model/relation.ts
+1 −1 packages/graph-editor/src/model/root.ts
+1 −1 packages/graph-editor/src/model/selectable.ts
+4 −4 packages/graph-editor/src/shape/engines/circleEngine.ts
+6 −6 packages/graph-editor/src/shape/engines/ellipseEngine.ts
+3 −3 packages/graph-editor/src/shape/engines/hexagonEngine.ts
+8 −8 packages/graph-editor/src/shape/engines/polygonEngine.ts
+3 −3 packages/graph-editor/src/shape/engines/rectEngine.ts
+3 −3 packages/graph-editor/src/shape/engines/rhombusEngine.ts
+2 −2 packages/graph-editor/src/shape/engines/shapeEngine.ts
+2 −2 packages/graph-editor/src/shape/shape.ts
+8 −8 packages/graph-editor/src/shape/shapeGenerator.ts
+6 −6 packages/graph-editor/src/smodel/relationPath.ts
+2 −2 packages/graph-editor/src/smodel/sChip.ts
+5 −5 packages/graph-editor/src/smodel/sComponent.ts
+3 −3 packages/graph-editor/src/smodel/sContextMenu.ts
+2 −2 packages/graph-editor/src/smodel/sElement.ts
+1 −1 packages/graph-editor/src/smodel/sHtmlElement.ts
+7 −7 packages/graph-editor/src/smodel/sInterface.ts
+10 −10 packages/graph-editor/src/smodel/sIssueAffected.ts
+3 −3 packages/graph-editor/src/smodel/sIssueRelation.ts
+3 −3 packages/graph-editor/src/smodel/sIssueType.ts
+2 −2 packages/graph-editor/src/smodel/sLabel.ts
+4 −4 packages/graph-editor/src/smodel/sRelation.ts
+4 −4 packages/graph-editor/src/smodel/sRoot.ts
+3 −3 packages/graph-editor/src/smodel/sSelectable.ts
+1 −1 packages/graph-editor/src/views/chipView.ts
+5 −5 packages/graph-editor/src/views/componentView.ts
+1 −1 packages/graph-editor/src/views/contextMenuView.ts
+7 −7 packages/graph-editor/src/views/interfaceView.ts
+3 −3 packages/graph-editor/src/views/issueRelationView.ts
+3 −3 packages/graph-editor/src/views/issueTypeView.ts
+1 −1 packages/graph-editor/src/views/labelView.ts
+5 −5 packages/graph-editor/src/views/relationView.ts
+1 −1 packages/graph-editor/src/views/rootView.ts
+3 −3 packages/graph-editor/tsconfig.json
+1 −1 src/views/project/Home.vue
2 changes: 1 addition & 1 deletion gropius-login-service

0 comments on commit 7424797

Please sign in to comment.