Disable accessible autocomplete overlay comments#8042
Merged
Conversation
Contributor
|
Netlify Draft Deployment |
c8d6aa6 to
60e0eb8
Compare
Contributor
Hydration Benchmark Report (vs Baseline)✅ Top 5 Improvements (Best Speedups)
🔻 Flop 5 Regressions (Worst Slowdowns)
📋 Show all results
|
60e0eb8 to
3575581
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request focuses on enhancing accessibility by disabling browser autocomplete popups across multiple components. The changes ensure a consistent user experience and prevent interference from browser-generated autocomplete suggestions. The key updates include modifications to the
KolCombobox,KolForm, andKolSingleSelectcomponents, along with corresponding snapshot updates.Accessibility Improvements:
Combobox Component:
autoComplete="off"to theKolComboboxcomponent to disable browser autocomplete popups.KolComboboxtests to reflect the addition ofautoComplete="off". [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13]Form Component:
autoComplete="off"to theKolFormcomponent to prevent browser autocomplete popups, along with a comment explaining the change.Single Select Component:
autoComplete="off"to theKolSingleSelectcomponent to disable browser autocomplete popups.KolSingleSelecttests to reflect the addition ofautoComplete="off". [1] [2] [3] [4]