> let's see later if something useful on this will happen (if not on call all > validators, at least on the ability to attach a validator on any input > element).
Validators are designed to validate text. Only TextInput and TextArea allow users to enter text, so they are the only components that make sense to attach validators to. However, validating the text of a TextArea is not a common use case and would most likely incur a large performance penalty (the content of a TextArea is generally much longer than that of a TextInput). So validators (as currently implemented, anyways) are not likely to be a good basis for any sort of generic validation framework.
