ListItem onValidate not getting called

When I paste an email into an email ListInput the onValidate callback is not called (which I use to set a Button disable property).

 <ListInput
      type="email"
      name="email"
      label={intl.formatMessage({ id: 'login.friendemail', defaultMessage: "Friend's email" })}
      floatingLabel
      clearButton
      outline
      validate
      onValidate={(isValid: boolean) => {
        console.log(`onvalidate ${isValid}`);
        setValidation(isValid);
      }}
      value={email}
      onInputClear={() => setEmail('')}
      onChange={(e): void => setEmail(e.target.value)}
    />

Shouldn’t paste cause a validate event?

Yeah, it is the issue in core, it doesn’t pass event on initial paste when pasting valid value. Will be fixed in future updates