We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current suggestion prop in the TextField component (documentation) has critical functional and accessibility issues:
suggestion
Deprecate the suggestion prop and direct users to the Polaris Autocomplete component, which:
TextField
Before (TextField with suggestion):
<TextField suggestion="Alabama" />
After (Autocomplete):
<Autocomplete options={[{value: 'alabama', label: 'Alabama'}]} onSelect={(value) => {/* Handle selection */}} />
placeholder
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
The current
suggestion
prop in the TextField component (documentation) has critical functional and accessibility issues:How to replicate the problem
Recommended Solution
Deprecate the
suggestion
prop and direct users to the Polaris Autocomplete component, which:Deprecation Plan
suggestion
prop is used, linking to the Autocomplete documentation.suggestion
prop in the next major version of Polaris.TextField
with suggestions to migrate to Autocomplete.Migration Example
Before (TextField with suggestion):
After (Autocomplete):
Additional Context
placeholder
prop instead.The text was updated successfully, but these errors were encountered: