@rolster/react-components 19.4.5 → 19.4.7

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.
@@ -2102,6 +2102,9 @@ function RlsFieldAutocompleteTemplate(props) {
2102
2102
  setListInputPlaceholder(reactI18n('listInputPlaceholder'));
2103
2103
  });
2104
2104
  }, []);
2105
+ require$$0.useEffect(() => {
2106
+ props.onInput?.(autocomplete.pattern);
2107
+ }, [autocomplete.pattern, props.onInput]);
2105
2108
  const disabled = require$$0.useMemo(() => {
2106
2109
  return formControl?.disabled || props.disabled;
2107
2110
  }, [formControl?.disabled, props.disabled]);