@bigbinary/neetoui 5.2.6 → 5.2.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.
package/formik.cjs.js CHANGED
@@ -25550,11 +25550,13 @@ var SelectField = /*#__PURE__*/React.forwardRef(function (props, ref) {
25550
25550
  name: field.name,
25551
25551
  options: options,
25552
25552
  value: either(isNil, isEmpty)(field.value) ? null : buildValueObj(field.value, options),
25553
- onBlur: function onBlur() {
25554
- return setTouched(true);
25555
- },
25556
25553
  onChange: function onChange(value) {
25557
25554
  return setValue(value);
25555
+ },
25556
+ onBlur: function onBlur() {
25557
+ return React.startTransition(function () {
25558
+ setTouched(true);
25559
+ });
25558
25560
  }
25559
25561
  }, otherProps, {
25560
25562
  onKeyDown: function onKeyDown(event) {