-
Notifications
You must be signed in to change notification settings - Fork 981
Fixed issue of scrollbar being hidden on Autocomplete and Dropdown components #1885
New issue
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
base: dev
Are you sure you want to change the base?
Fixed issue of scrollbar being hidden on Autocomplete and Dropdown components #1885
Conversation
…ut based on Material Spec. (react-toolbox#1187) https://material.io/guidelines/components/text-fields.html#text-fields-s ingle-line-text-field
* Fixed react-toolbox#894 by adding a disableScrolling prop * Fixing scroll style
…ops are changed, instead of in shouldComponentUpdate (react-toolbox#1327)
Without type="button", the tab buttons default to submitting any html form which contains them.
…milar as other components react-toolbox#1544
Adding Event to be passed for Radio Group for handleClick function similar as other components react-toolbox#1544
Replaced tab label with button element for keyboard accessibility. (v1.3.4)
… consistent with the arguments passed to onChange handlers by the DOM
…ts-passed-to-onchange-handlers document the arguments passed to onChange props, because they are not consistent with the arguments passed to onChange handlers by the DOM
Hello @paddotk! Thank you for your contribution! There are some conflicts with the css files, since we've renamed them to |
@rubenmoya Pushed an update. I got many merge conflicts, but not with the css files though. |
Done |
Dropdown and Autocomplete components had a
width: 0
andheight: 0
css rules. These don't serve any purpose and make users not know it's scrollable/there is more content, hence is bad user experience.This fix takes out the two css lines to show scrollbar whenever necessary.