Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update to [email protected] #4773

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading