@bpmn-io/properties-panel 3.27.0 → 3.27.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.js CHANGED
@@ -2484,7 +2484,7 @@ function FeelEntry(props) {
2484
2484
  setValue(newValue, newValidationError);
2485
2485
  }
2486
2486
  setValidationError(newValidationError);
2487
- }, [element]);
2487
+ }, [setValidationError, setValue, validate, value]);
2488
2488
  const onError = hooks.useCallback(err => {
2489
2489
  setLocalError(err);
2490
2490
  }, []);
@@ -4146,7 +4146,7 @@ function TextAreaEntry(props) {
4146
4146
  setValue(newValue, newValidationError);
4147
4147
  }
4148
4148
  setLocalError(newValidationError);
4149
- }, [element]);
4149
+ }, [setLocalError, setValue, validate, value]);
4150
4150
  const error = globalError || localError;
4151
4151
  return jsxRuntime.jsxs("div", {
4152
4152
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),
@@ -4315,7 +4315,7 @@ function TextfieldEntry(props) {
4315
4315
  setValue(newValue, newValidationError);
4316
4316
  }
4317
4317
  setLocalError(newValidationError);
4318
- }, [element]);
4318
+ }, [setValue, validate, value]);
4319
4319
  const error = globalError || localError;
4320
4320
  return jsxRuntime.jsxs("div", {
4321
4321
  class: classnames('bio-properties-panel-entry', error ? 'has-error' : ''),