Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hofstef committed Mar 7, 2025
2 parents 66b3ec4 + bf890cd commit 140c338
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.5
3.4.2
38 changes: 21 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.2.0)
activesupport (8.0.1)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
Expand All @@ -12,24 +13,27 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.9)
colorator (1.1.0)
concurrent-ruby (1.3.5)
connection_pool (2.4.1)
connection_pool (2.5.0)
csv (3.3.2)
drb (2.2.1)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
faraday (2.10.1)
faraday-net_http (>= 2.0, < 3.2)
faraday (2.12.2)
faraday-net_http (>= 2.0, < 3.5)
json
logger
faraday-net_http (3.1.1)
net-http
faraday-net_http (3.4.0)
net-http (>= 0.5.0)
ffi (1.17.1)
forwardable-extended (2.6.0)
gemoji (4.1.0)
Expand Down Expand Up @@ -78,7 +82,7 @@ GEM
gemoji (>= 3, < 5)
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
json (2.10.0)
json (2.10.1)
kramdown (2.5.1)
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
Expand All @@ -87,20 +91,20 @@ GEM
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.0)
logger (1.6.6)
mercenary (0.4.0)
mini_portile2 (2.8.7)
mini_portile2 (2.8.8)
minimal-mistakes-jekyll (4.26.2)
jekyll (>= 3.7, < 5.0)
jekyll-feed (~> 0.1)
jekyll-gist (~> 1.5)
jekyll-include-cache (~> 0.1)
jekyll-paginate (~> 1.1)
jekyll-sitemap (~> 1.3)
minitest (5.25.1)
net-http (0.4.1)
minitest (5.25.4)
net-http (0.6.0)
uri
nokogiri (1.16.7)
nokogiri (1.18.3)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
octokit (4.25.1)
Expand All @@ -114,22 +118,22 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.4.0)
rexml (3.4.1)
rouge (4.5.1)
safe_yaml (1.0.5)
sass-embedded (1.83.4)
sass-embedded (1.85.1)
google-protobuf (~> 4.29)
rake (>= 13)
sawyer (0.9.2)
addressable (>= 2.3.5)
faraday (>= 0.17.3, < 3)
securerandom (0.3.1)
securerandom (0.4.1)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)
uri (0.13.0)
uri (1.0.2)
webrick (1.9.1)

PLATFORMS
Expand All @@ -144,4 +148,4 @@ DEPENDENCIES
webrick (~> 1.9)

BUNDLED WITH
2.5.17
2.6.5
5 changes: 4 additions & 1 deletion app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10721,7 +10721,7 @@ class InitializerService {
}
}
});
// when in replay, do not allow any interaction on the canvas
// while replaying, we do not allow changes (to avoid accidentally modeling on top of hidden model elements)
eventBus.on(['element.click', 'element.dblclick', 'element.mousedown', 'drag.init', 'canvas.viewbox.changing', 'autoPlace', 'popupMenu.open'], 10000000000, event => {
if (this.replayService.getReplayOn()) {
event.stopPropagation();
Expand Down Expand Up @@ -10888,6 +10888,9 @@ class ModelerService {
container: '#canvas',
keyboard: {
bind: true
},
canvas: {
autoFocus: true // see https://github.com/bpmn-io/diagram-js/pull/956 (setting autoFocus to 'true' might cause problems with future integrations)
}
});
if (this.modeler.get) {
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit 140c338

Please sign in to comment.