shadcn-zod-formkit 1.27.0 → 1.27.2

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.cjs CHANGED
@@ -4777,9 +4777,9 @@ var FieldTextGroup = ({ form, input, isSubmitting }) => {
4777
4777
  if (isNumberField) {
4778
4778
  value = e.target.value === "" ? "" : Number(e.target.value);
4779
4779
  }
4780
- handleOnChage(value, input, field);
4781
4780
  field.onChange(value);
4782
4781
  isValidField(input, form);
4782
+ handleOnChage(value, input, field);
4783
4783
  }
4784
4784
  }
4785
4785
  ),