@react-types/shared
Advanced tools
Comparing version 3.0.0-nightly-835f0aa1b-250107 to 3.0.0-nightly-873f6fe9a-250125
{ | ||
"name": "@react-types/shared", | ||
"version": "3.0.0-nightly-835f0aa1b-250107", | ||
"version": "3.0.0-nightly-873f6fe9a-250125", | ||
"description": "Spectrum UI components in React", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -169,3 +169,13 @@ /* | ||
*/ | ||
inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | ||
inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search', | ||
/** | ||
* An attribute that takes as its value a space-separated string that describes what, if any, type of autocomplete functionality the input should provide. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#autocomplete). | ||
*/ | ||
autoCorrect?: string, | ||
/** | ||
* An enumerated attribute that defines whether the element may be checked for spelling errors. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck). | ||
*/ | ||
spellCheck?: string | ||
} | ||
@@ -172,0 +182,0 @@ |
75499
1813