camunda-bpmn-js 0.13.0-alpha.0 → 0.13.0-alpha.1

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.
@@ -13,7 +13,8 @@ import popupMenuModule from './features/popup-menu';
13
13
  import rulesModule from './features/rules';
14
14
 
15
15
  import {
16
- ZeebePropertiesProviderModule as zeebePropertiesProviderModule
16
+ ZeebePropertiesProviderModule as zeebePropertiesProviderModule,
17
+ ZeebeDescriptionProvider
17
18
  } from 'bpmn-js-properties-panel';
18
19
 
19
20
  import zeebeModdle from 'zeebe-bpmn-moddle/resources/zeebe.json';
@@ -32,6 +33,10 @@ export default function Modeler(options = {}) {
32
33
  moddleExtensions: {
33
34
  zeebe: zeebeModdle,
34
35
  ...options.moddleExtensions
36
+ },
37
+ propertiesPanel: {
38
+ description: ZeebeDescriptionProvider,
39
+ ...options.propertiesPanel
35
40
  }
36
41
  };
37
42
 
@@ -4,7 +4,7 @@ import Ids from 'ids';
4
4
  * generate a semantic id with given prefix
5
5
  */
6
6
  export function nextId(prefix) {
7
- const ids = new Ids([32,32,1]);
7
+ const ids = new Ids([ 32,32,1 ]);
8
8
 
9
9
  return ids.nextPrefixed(prefix);
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camunda-bpmn-js",
3
- "version": "0.13.0-alpha.0",
3
+ "version": "0.13.0-alpha.1",
4
4
  "description": "Embeddable Camunda modeling distributions based on bpmn-js",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -40,14 +40,14 @@
40
40
  "license": "MIT",
41
41
  "dependencies": {
42
42
  "@bpmn-io/align-to-origin": "^0.7.0",
43
- "@bpmn-io/properties-panel": "~0.10.0",
44
- "bpmn-js": "^8.8.3",
43
+ "@bpmn-io/properties-panel": "^0.10.2",
44
+ "bpmn-js": "^8.9.1",
45
45
  "bpmn-js-disable-collapsed-subprocess": "^0.1.3",
46
46
  "bpmn-js-executable-fix": "^0.1.3",
47
- "bpmn-js-properties-panel": "~1.0.0-alpha.0",
47
+ "bpmn-js-properties-panel": "~1.0.0-alpha.1",
48
48
  "bpmn-js-signavio-compat": "^1.2.3",
49
49
  "camunda-bpmn-moddle": "^6.1.1",
50
- "diagram-js": "^7.5.0",
50
+ "diagram-js": "^7.8.2",
51
51
  "diagram-js-minimap": "^2.0.4",
52
52
  "diagram-js-origin": "^1.3.2",
53
53
  "inherits": "^2.0.4",
@@ -60,8 +60,8 @@
60
60
  "@rollup/plugin-node-resolve": "^11.1.1",
61
61
  "chai": "^4.2.0",
62
62
  "cross-env": "^7.0.3",
63
- "eslint": "^7.19.0",
64
- "eslint-plugin-bpmn-io": "^0.12.0",
63
+ "eslint": "^7.32.0",
64
+ "eslint-plugin-bpmn-io": "^0.13.0",
65
65
  "execa": "^5.0.0",
66
66
  "istanbul-instrumenter-loader": "^3.0.1",
67
67
  "karma": "^6.3.0",
@@ -76,7 +76,7 @@
76
76
  "karma-sinon-chai": "^2.0.2",
77
77
  "karma-webpack": "^5.0.0",
78
78
  "min-dom": "^3.1.3",
79
- "mocha": "^9.1.3",
79
+ "mocha": "^9.2.0",
80
80
  "mocha-test-container-support": "^0.2.0",
81
81
  "npm-run-all": "^4.1.5",
82
82
  "puppeteer": "^8.0.0",