camunda-bpmn-js 0.18.0 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ export const REPLACE_OPTIONS = [
24
24
  'replace-with-manual-task',
25
25
  'replace-with-message-start',
26
26
  'replace-with-message-end',
27
+ 'replace-with-terminate-end',
27
28
  'replace-with-timer-start',
28
29
  'replace-with-none-intermediate-throw',
29
30
  'replace-with-none-intermediate-throwing', // only for StartEvent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camunda-bpmn-js",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "Embeddable Camunda modeling distributions based on bpmn-js",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -50,7 +50,7 @@
50
50
  "bpmn-js": "^9.4.1",
51
51
  "bpmn-js-disable-collapsed-subprocess": "^0.1.5",
52
52
  "bpmn-js-executable-fix": "^0.1.4",
53
- "camunda-bpmn-js-behaviors": "^0.2.0",
53
+ "camunda-bpmn-js-behaviors": "^0.2.1",
54
54
  "camunda-bpmn-moddle": "^7.0.1",
55
55
  "diagram-js": "^8.9.0",
56
56
  "diagram-js-minimap": "^2.1.1",
@@ -62,35 +62,35 @@
62
62
  "devDependencies": {
63
63
  "@babel/core": "^7.18.13",
64
64
  "@bpmn-io/element-template-chooser": "0.0.5",
65
- "@bpmn-io/properties-panel": "^0.20.1",
66
- "@rollup/plugin-commonjs": "^17.1.0",
65
+ "@bpmn-io/properties-panel": "^0.22.0",
66
+ "@rollup/plugin-commonjs": "^22.0.0",
67
67
  "@rollup/plugin-json": "^4.1.0",
68
- "@rollup/plugin-node-resolve": "^11.1.1",
68
+ "@rollup/plugin-node-resolve": "^14.0.0",
69
69
  "babel-loader": "^8.2.5",
70
70
  "babel-plugin-istanbul": "^6.1.1",
71
- "bpmn-js-properties-panel": "^1.6.1",
71
+ "bpmn-js-properties-panel": "^1.8.1",
72
72
  "chai": "^4.2.0",
73
73
  "cross-env": "^7.0.3",
74
- "del-cli": "^4.0.1",
75
- "eslint": "^7.32.0",
76
- "eslint-plugin-bpmn-io": "^0.14.1",
74
+ "del-cli": "^5.0.0",
75
+ "eslint": "^8.24.0",
76
+ "eslint-plugin-bpmn-io": "^0.16.0",
77
77
  "execa": "^5.0.0",
78
78
  "karma": "^6.3.16",
79
79
  "karma-chai": "^0.1.0",
80
80
  "karma-chrome-launcher": "^3.1.0",
81
81
  "karma-coverage": "^2.0.3",
82
- "karma-debug-launcher": "0.0.4",
82
+ "karma-debug-launcher": "0.0.5",
83
83
  "karma-env-preprocessor": "^0.1.1",
84
84
  "karma-firefox-launcher": "^2.1.0",
85
85
  "karma-mocha": "^2.0.1",
86
86
  "karma-safari-launcher": "^1.0.0",
87
87
  "karma-sinon-chai": "^2.0.2",
88
88
  "karma-webpack": "^5.0.0",
89
- "min-dom": "^3.2.1",
89
+ "min-dom": "^4.0.0",
90
90
  "mocha": "^9.2.0",
91
91
  "mocha-test-container-support": "^0.2.0",
92
92
  "npm-run-all": "^4.1.5",
93
- "puppeteer": "^8.0.0",
93
+ "puppeteer": "^18.0.5",
94
94
  "raw-loader": "^4.0.2",
95
95
  "rollup": "^2.38.4",
96
96
  "rollup-plugin-copy": "^3.3.0",
package/util/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ /* eslint-env node */
2
+
1
3
  /**
2
4
  * Generates all possible combinations of the items in the given arrays.
3
5
  *