@bpmn-io/properties-panel 3.28.0 → 3.28.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 CHANGED
@@ -2664,7 +2664,7 @@ function FeelEntry(props) {
2664
2664
  setValue(newValue, newValidationError);
2665
2665
  }
2666
2666
  setValidationError(newValidationError);
2667
- }, [element]);
2667
+ }, [element, getValue, setValue, validate]);
2668
2668
  const onError = useCallback(err => {
2669
2669
  setLocalError(err);
2670
2670
  }, []);
@@ -3533,7 +3533,7 @@ function TextAreaEntry(props) {
3533
3533
  setValue(newValue, newValidationError);
3534
3534
  }
3535
3535
  setLocalError(newValidationError);
3536
- }, [element]);
3536
+ }, [element, getValue, setValue, validate]);
3537
3537
  const error = globalError || localError;
3538
3538
  return jsxs("div", {
3539
3539
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),
@@ -3703,7 +3703,7 @@ function TextfieldEntry(props) {
3703
3703
  setValue(newValue, newValidationError);
3704
3704
  }
3705
3705
  setLocalError(newValidationError);
3706
- }, [element]);
3706
+ }, [element, getValue, setValue, validate]);
3707
3707
  const error = globalError || localError;
3708
3708
  return jsxs("div", {
3709
3709
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),