camunda-bpmn-js 4.3.2 → 4.3.3

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/README.md CHANGED
@@ -75,6 +75,11 @@ camunda-bpmn-js builds on top of a few powerful tools:
75
75
 
76
76
  * [bpmn-js](https://github.com/bpmn-io/bpmn-js): View and edit BPMN 2.0 diagrams in the browser
77
77
  * [diagram-js](https://github.com/bpmn-io/diagram-js): Diagram rendering and editing toolkit
78
+ * [bpmn-js-properties-panel](https://github.com/bpmn-io/bpmn-js-properties-panel): A panel for (technical) properties editing
79
+ * [bpmn-js-element-templates](https://github.com/bpmn-io/bpmn-js-element-templates): Domain specific editing for bpmn-js
80
+ * [bpmn-js-create-append-anything](bpmn-js-create-append-anything): A create/append anything extension for bpmn-js
81
+ * [bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle): A BPMN 2.0 diagram reader/writer with extensions for [Camunda 7](https://github.com/camunda/camunda-bpmn-moddle) and [Camunda 8](https://github.com/camunda/zeebe-bpmn-moddle)
82
+ * [camunda-bpmn-js-behaviors](https://github.com/camunda/camunda-bpmn-js-behaviors): Camunda specific behaviors for bpmn-js
78
83
 
79
84
  ## License
80
85
 
@@ -97451,6 +97451,7 @@
97451
97451
  function FeelEditor({
97452
97452
  extensions: editorExtensions = [],
97453
97453
  container,
97454
+ contentAttributes = {},
97454
97455
  tooltipContainer,
97455
97456
  onChange = () => {},
97456
97457
  onKeyDown = () => {},
@@ -97502,6 +97503,7 @@
97502
97503
  bracketMatching(),
97503
97504
  changeHandler,
97504
97505
  closeBrackets(),
97506
+ EditorView.contentAttributes.of(contentAttributes),
97505
97507
  indentOnInput(),
97506
97508
  keyHandler,
97507
97509
  keymap.of([
@@ -99949,6 +99951,7 @@
99949
99951
  };
99950
99952
  const CodeEditor = N((props, ref) => {
99951
99953
  const {
99954
+ contentAttributes,
99952
99955
  enableGutters,
99953
99956
  value,
99954
99957
  onInput,
@@ -99994,7 +99997,8 @@
99994
99997
  tooltipContainer: tooltipContainer,
99995
99998
  value: localValue,
99996
99999
  variables: variables,
99997
- extensions: [...(enableGutters ? [lineNumbers()] : []), EditorView.lineWrapping]
100000
+ extensions: [...(enableGutters ? [lineNumbers()] : []), EditorView.lineWrapping],
100001
+ contentAttributes
99998
100002
  });
99999
100003
  setEditor(editor);
100000
100004
  return () => {