Skip to content

Commit

Permalink
deps: update to [email protected]
Browse files Browse the repository at this point in the history
deps: update to [email protected]

  No user facing changes.
  • Loading branch information
nikku authored and barmac committed Dec 20, 2024
1 parent 2449785 commit 51b35bb
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 35 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to the [Camunda Modeler](https://github.com/camunda/camunda-

___Note:__ Yet to be released changes appear here._

* `DEPS`: update to `[email protected]`

## 5.31.0

### General
Expand Down
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"@ibm/plex": "^6.4.1",
"@sentry/browser": "^8.0.0",
"@sentry/integrations": "^7.108.0",
"bpmn-js": "^18.1.1",
"bpmn-js": "^18.1.2",
"bpmn-js-element-templates": "^2.4.0",
"bpmn-js-properties-panel": "^5.30.0",
"bpmn-js-tracking": "^0.6.0",
"bpmn-moddle": "^9.0.1",
"camunda-bpmn-js": "^5.4.1",
"camunda-bpmn-js": "^5.4.2",
"camunda-bpmn-moddle": "^7.0.1",
"camunda-cmmn-moddle": "^1.0.0",
"camunda-dmn-js": "^3.0.0",
Expand All @@ -44,7 +44,7 @@
"cmmn-js-properties-panel": "^0.9.0",
"codemirror": "^6.0.1",
"debug": "^4.1.1",
"diagram-js": "^15.2.3",
"diagram-js": "^15.2.4",
"diagram-js-direct-editing": "^3.2.0",
"diagram-js-origin": "^1.4.0",
"dmn-js": "^17.0.3",
Expand Down
5 changes: 4 additions & 1 deletion client/src/app/tabs/bpmn/modeler/BpmnModeler.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ export default class PlatformBpmnModeler extends BpmnModeler {
...otherOptions,
additionalModules,
moddleExtensions,
disableAdjustOrigin: Flags.get(DISABLE_ADJUST_ORIGIN)
disableAdjustOrigin: Flags.get(DISABLE_ADJUST_ORIGIN),
canvas: {
autoFocus: true
}
});
}
}
Expand Down
5 changes: 4 additions & 1 deletion client/src/app/tabs/cloud-bpmn/modeler/BpmnModeler.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ export default class CloudBpmnModeler extends BpmnModeler {
...otherOptions,
additionalModules,
moddleExtensions,
disableAdjustOrigin: Flags.get(DISABLE_ADJUST_ORIGIN)
disableAdjustOrigin: Flags.get(DISABLE_ADJUST_ORIGIN),
canvas: {
autoFocus: true
}
});
}
}
Expand Down
3 changes: 3 additions & 0 deletions client/src/app/tabs/cloud-dmn/modeler/DmnModeler.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export default class CamundaDmnModeler extends DmnModeler {
moddleExtensions: {
...moddleExtensions,
modeler: modelerModdle
},
canvas: {
autoFocus: true
}
});

Expand Down
3 changes: 3 additions & 0 deletions client/src/app/tabs/dmn/modeler/DmnModeler.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export default class CamundaDmnModeler extends DmnModeler {
moddleExtensions: {
...moddleExtensions,
modeler: modelerModdle
},
canvas: {
autoFocus: true
}
});

Expand Down
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 51b35bb

Please sign in to comment.