@bpmn-io/feel-editor 1.4.0 → 1.6.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/README.md +10 -1
- package/dist/index.es.js +555 -354
- package/dist/index.js +567 -366
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -14,7 +14,16 @@ const editor = new FeelEditor({
|
|
|
14
14
|
});
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Configure the FEEL dialect (expression or unary tests):
|
|
18
|
+
|
|
19
|
+
```JavaScript
|
|
20
|
+
const editor = new FeelEditor({
|
|
21
|
+
container,
|
|
22
|
+
dialect: 'unaryTests' // defaults to 'expression'
|
|
23
|
+
});
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
You can provide a starting document and listen for changes:
|
|
18
27
|
|
|
19
28
|
```JavaScript
|
|
20
29
|
const editor = new FeelEditor({
|