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

Support placeholders in String and Text templates properties #4330

Merged
merged 1 commit into from
Jun 4, 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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@ ___Note:__ Yet to be released changes appear here._
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `@camunda/[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `@bpmn-io/properties-panel@3.19.0`
* `DEPS`: update to `camunda-bpmn-js@4.9.0`
* `DEPS`: update to `@bpmn-io/properties-panel@3.20.0`
* `DEPS`: update to `camunda-bpmn-js@4.10.0`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`

### BPMN

* `FEAT`: support placeholders on String and Text properties ([bpmn-io/bpmn-js-element-templates#92](https://github.com/bpmn-io/bpmn-js-element-templates/issues/92))
* `FEAT`: warn about missing bpmnDi ([#4277](https://github.com/camunda/camunda-modeler/issues/4277))
* `FEAT`: add hint for the process ID field in Camunda 7 ([bpmn-io/bpmn-js-properties-panel#1038](https://github.com/bpmn-io/bpmn-js-properties-panel/issues/1038))
* `FEAT`: drop alphabetic sorting of list entries in Camunda 7 properties panel ([bpmn-io/bpmn-js-properties-panel##1047](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/1047))
Expand Down
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@bpmn-io/dmn-migrate": "^0.5.0",
"@bpmn-io/extract-process-variables": "^0.8.0",
"@bpmn-io/form-js": "^1.8.6",
"@bpmn-io/properties-panel": "^3.19.0",
"@bpmn-io/properties-panel": "^3.20.0",
"@bpmn-io/replace-ids": "^0.2.0",
"@camunda/execution-platform": "^0.3.2",
"@camunda/form-linting": "^0.16.0",
Expand All @@ -28,11 +28,11 @@
"@sentry/browser": "^8.0.0",
"@sentry/integrations": "^7.108.0",
"bpmn-js": "^17.8.1",
"bpmn-js-element-templates": "^1.15.3",
"bpmn-js-element-templates": "^1.16.0",
"bpmn-js-properties-panel": "^5.17.1",
"bpmn-js-tracking": "^0.6.0",
"bpmn-moddle": "^9.0.1",
"camunda-bpmn-js": "^4.9.0",
"camunda-bpmn-js": "^4.10.0",
"camunda-bpmn-moddle": "^7.0.1",
"camunda-cmmn-moddle": "^1.0.0",
"camunda-dmn-js": "^2.4.0",
Expand Down
120 changes: 64 additions & 56 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion resources/element-templates/cloud-samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
},
"constraints": {
"notEmpty": true
}
},
"placeholder": "message"
}
]
},
Expand Down