@bpmn-io/properties-panel 3.27.3 → 3.27.4

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
@@ -2464,7 +2464,7 @@ function FeelEntry(props) {
2464
2464
  setValue(newValue, newValidationError);
2465
2465
  }
2466
2466
  setValidationError(newValidationError);
2467
- }, [element]);
2467
+ }, [element, getValue, setValue, validate]);
2468
2468
  const onError = useCallback(err => {
2469
2469
  setLocalError(err);
2470
2470
  }, []);
@@ -4127,7 +4127,7 @@ function TextAreaEntry(props) {
4127
4127
  setValue(newValue, newValidationError);
4128
4128
  }
4129
4129
  setLocalError(newValidationError);
4130
- }, [element]);
4130
+ }, [element, getValue, setValue, validate]);
4131
4131
  const error = globalError || localError;
4132
4132
  return jsxs("div", {
4133
4133
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),
@@ -4297,7 +4297,7 @@ function TextfieldEntry(props) {
4297
4297
  setValue(newValue, newValidationError);
4298
4298
  }
4299
4299
  setLocalError(newValidationError);
4300
- }, [element]);
4300
+ }, [element, getValue, setValue, validate]);
4301
4301
  const error = globalError || localError;
4302
4302
  return jsxs("div", {
4303
4303
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),