@bpmn-io/properties-panel 1.0.0 → 1.0.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.
- package/dist/index.esm.js +4 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1643,7 +1643,8 @@ const OptionalFeelTextArea = forwardRef((props, ref) => {
|
|
|
1643
1643
|
onInput: e => onInput(e.target.value),
|
|
1644
1644
|
onFocus: onFocus,
|
|
1645
1645
|
onBlur: onBlur,
|
|
1646
|
-
value: value || ''
|
|
1646
|
+
value: value || '',
|
|
1647
|
+
"data-gramm": "false"
|
|
1647
1648
|
});
|
|
1648
1649
|
});
|
|
1649
1650
|
|
|
@@ -2301,7 +2302,8 @@ function TextArea(props) {
|
|
|
2301
2302
|
onBlur: onBlur,
|
|
2302
2303
|
rows: rows,
|
|
2303
2304
|
value: localValue,
|
|
2304
|
-
disabled: disabled
|
|
2305
|
+
disabled: disabled,
|
|
2306
|
+
"data-gramm": "false"
|
|
2305
2307
|
})]
|
|
2306
2308
|
});
|
|
2307
2309
|
}
|