@bpmn-io/properties-panel 3.27.0 → 3.27.2
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 +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -2463,7 +2463,7 @@ function FeelEntry(props) {
|
|
|
2463
2463
|
setValue(newValue, newValidationError);
|
|
2464
2464
|
}
|
|
2465
2465
|
setValidationError(newValidationError);
|
|
2466
|
-
}, [
|
|
2466
|
+
}, [setValidationError, setValue, validate, value]);
|
|
2467
2467
|
const onError = useCallback(err => {
|
|
2468
2468
|
setLocalError(err);
|
|
2469
2469
|
}, []);
|
|
@@ -4125,7 +4125,7 @@ function TextAreaEntry(props) {
|
|
|
4125
4125
|
setValue(newValue, newValidationError);
|
|
4126
4126
|
}
|
|
4127
4127
|
setLocalError(newValidationError);
|
|
4128
|
-
}, [
|
|
4128
|
+
}, [setLocalError, setValue, validate, value]);
|
|
4129
4129
|
const error = globalError || localError;
|
|
4130
4130
|
return jsxs("div", {
|
|
4131
4131
|
class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),
|
|
@@ -4294,7 +4294,7 @@ function TextfieldEntry(props) {
|
|
|
4294
4294
|
setValue(newValue, newValidationError);
|
|
4295
4295
|
}
|
|
4296
4296
|
setLocalError(newValidationError);
|
|
4297
|
-
}, [
|
|
4297
|
+
}, [setValue, validate, value]);
|
|
4298
4298
|
const error = globalError || localError;
|
|
4299
4299
|
return jsxs("div", {
|
|
4300
4300
|
class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),
|