camunda-bpmn-js 4.20.1 → 5.0.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.
- package/dist/assets/diagram-js.css +17 -8
- package/dist/assets/properties-panel.css +1509 -1505
- package/dist/base-modeler.development.js +1850 -1621
- package/dist/base-modeler.production.min.js +44 -43
- package/dist/base-navigated-viewer.development.js +305 -767
- package/dist/base-navigated-viewer.production.min.js +1 -1
- package/dist/base-viewer.development.js +277 -699
- package/dist/base-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +11460 -10467
- package/dist/camunda-cloud-modeler.production.min.js +46 -45
- package/dist/camunda-cloud-navigated-viewer.development.js +306 -759
- package/dist/camunda-cloud-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-cloud-viewer.development.js +278 -691
- package/dist/camunda-cloud-viewer.production.min.js +1 -1
- package/dist/camunda-platform-modeler.development.js +2367 -2117
- package/dist/camunda-platform-modeler.production.min.js +44 -43
- package/dist/camunda-platform-navigated-viewer.development.js +305 -767
- package/dist/camunda-platform-navigated-viewer.production.min.js +1 -1
- package/dist/camunda-platform-viewer.development.js +277 -699
- package/dist/camunda-platform-viewer.production.min.js +1 -1
- package/lib/camunda-cloud/Modeler.js +21 -0
- package/package.json +14 -14
|
@@ -46,6 +46,27 @@ export default function Modeler(options = {}) {
|
|
|
46
46
|
},
|
|
47
47
|
propertiesPanel: {
|
|
48
48
|
tooltip: ZeebeTooltipProvider,
|
|
49
|
+
getFeelPopupLinks: (type) => {
|
|
50
|
+
if (type === 'feel') {
|
|
51
|
+
return [
|
|
52
|
+
{
|
|
53
|
+
title: 'Learn FEEL expressions',
|
|
54
|
+
href: 'https://docs.camunda.io/docs/components/modeler/feel/what-is-feel/'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
title: 'Try FEEL Copilot',
|
|
58
|
+
href: 'https://feel-copilot.camunda.com/'
|
|
59
|
+
}
|
|
60
|
+
];
|
|
61
|
+
} else if (type === 'feelers') {
|
|
62
|
+
return [
|
|
63
|
+
{
|
|
64
|
+
title: 'Learn templating',
|
|
65
|
+
href: 'https://docs.camunda.io/docs/components/modeler/forms/configuration/forms-config-templating-syntax/'
|
|
66
|
+
}
|
|
67
|
+
];
|
|
68
|
+
}
|
|
69
|
+
},
|
|
49
70
|
...options.propertiesPanel
|
|
50
71
|
}
|
|
51
72
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "camunda-bpmn-js",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Embeddable Camunda modeling distributions based on bpmn-js",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -56,40 +56,40 @@
|
|
|
56
56
|
"@bpmn-io/element-template-chooser": "^1.0.0",
|
|
57
57
|
"@bpmn-io/element-template-icon-renderer": "^0.5.2",
|
|
58
58
|
"@bpmn-io/form-variable-provider": "^1.3.0",
|
|
59
|
-
"@bpmn-io/properties-panel": "^3.
|
|
59
|
+
"@bpmn-io/properties-panel": "^3.25.0",
|
|
60
60
|
"@bpmn-io/variable-resolver": "^1.3.0",
|
|
61
61
|
"@camunda/example-data-properties-provider": "^1.2.1",
|
|
62
|
-
"bpmn-js": "^
|
|
62
|
+
"bpmn-js": "^18.0.0",
|
|
63
63
|
"bpmn-js-color-picker": "^0.7.1",
|
|
64
64
|
"bpmn-js-create-append-anything": "^0.5.2",
|
|
65
65
|
"bpmn-js-element-templates": "^2.3.0",
|
|
66
66
|
"bpmn-js-executable-fix": "^0.2.1",
|
|
67
67
|
"camunda-bpmn-js-behaviors": "^1.6.1",
|
|
68
68
|
"camunda-bpmn-moddle": "^7.0.1",
|
|
69
|
-
"diagram-js": "^
|
|
70
|
-
"diagram-js-grid": "^1.
|
|
71
|
-
"diagram-js-minimap": "^5.
|
|
69
|
+
"diagram-js": "^15.2.0",
|
|
70
|
+
"diagram-js-grid": "^1.1.0",
|
|
71
|
+
"diagram-js-minimap": "^5.2.0",
|
|
72
72
|
"diagram-js-origin": "^1.4.0",
|
|
73
73
|
"inherits-browser": "^0.1.0",
|
|
74
|
-
"min-dash": "^4.2.
|
|
75
|
-
"zeebe-bpmn-moddle": "^1.6.
|
|
74
|
+
"min-dash": "^4.2.2",
|
|
75
|
+
"zeebe-bpmn-moddle": "^1.6.1"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@babel/core": "^7.25.2",
|
|
79
|
-
"@rollup/plugin-commonjs": "^
|
|
79
|
+
"@rollup/plugin-commonjs": "^28.0.0",
|
|
80
80
|
"@rollup/plugin-json": "^6.1.0",
|
|
81
81
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
82
82
|
"@rollup/plugin-terser": "^0.4.4",
|
|
83
83
|
"babel-loader": "^9.2.1",
|
|
84
84
|
"babel-plugin-istanbul": "^7.0.0",
|
|
85
85
|
"bio-dts": "^0.11.0",
|
|
86
|
-
"bpmn-js-properties-panel": "^5.
|
|
86
|
+
"bpmn-js-properties-panel": "^5.26.0",
|
|
87
87
|
"chai": "^4.5.0",
|
|
88
88
|
"cross-env": "^7.0.3",
|
|
89
|
-
"del-cli": "^
|
|
89
|
+
"del-cli": "^6.0.0",
|
|
90
90
|
"downloadjs": "^1.4.7",
|
|
91
|
-
"eslint": "^
|
|
92
|
-
"eslint-plugin-bpmn-io": "^
|
|
91
|
+
"eslint": "^9.0.0",
|
|
92
|
+
"eslint-plugin-bpmn-io": "^2.0.2",
|
|
93
93
|
"execa": "^8.0.1",
|
|
94
94
|
"file-drops": "^0.5.0",
|
|
95
95
|
"karma": "^6.4.4",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"min-dom": "^4.2.1",
|
|
107
107
|
"mocha": "^10.7.3",
|
|
108
108
|
"mocha-test-container-support": "^0.2.0",
|
|
109
|
-
"npm-run-all2": "^
|
|
109
|
+
"npm-run-all2": "^7.0.0",
|
|
110
110
|
"puppeteer": "^23.4.0",
|
|
111
111
|
"raw-loader": "^4.0.2",
|
|
112
112
|
"remark-cli": "^12.0.1",
|