We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b577cd commit 418fff6Copy full SHA for 418fff6
1 file changed
vnext/src-win/Libraries/Components/TextInput/TextInput.windows.js
@@ -609,6 +609,15 @@ type TextInputWindowsProps = $ReadOnly<{|
609
// Windows]
610
611
type TextInputBaseProps = $ReadOnly<{
612
+
613
+ /**
614
+ * String to be read by screenreaders to indicate an error state. The acceptable parameters
615
+ * of accessibilityErrorMessage is a string. Setting accessibilityInvalid to true activates
616
+ * the error message. Setting accessibilityInvalid to false removes the error message.
617
+ */
618
+ accessibilityErrorMessage?: ?Stringish,
619
+ accessibilityInvalid?: ?boolean,
620
621
/**
622
* Can tell `TextInput` to automatically capitalize certain characters.
623
*
0 commit comments