@material/select: 0.23.0
Please be specific, e.g. _major.minor.patch_
Mobile Safari
iOS 11
Tapping out of the select area should close the select menu
You are locked in once opening the select menu and the only way to close it is to select an option
Interesting that this only seems to happen in iOS Safari, but yup this looks like a bug, repro'd on a 10.3 simulator as well. Thanks for reporting.
Actually, this sounds like it might be a duplicate of #693?
No change in 0.26.0.
This is only happening on temporary drawer https://material-components-web.appspot.com/drawer/temporary-drawer.html
It works as expected here https://material.io/guidelines/patterns/navigation-drawer.html
Is material.io site using MDC?
Interestingly with 0.26.0 on both chrome and safari in iOS the temporary drawer does shut for me but takes ages and is really jittery.
Looks like Firefox on iOS may have same issues too.
Found out this is because iOS doesn't emit a click event if the element you are tapping on isn't considered "clickable".
Workaround is setting all elements as "clickable"
@supports (-webkit-overflow-scrolling: touch) {
/* CSS specific to iOS devices */
* {
cursor: pointer;
}
}
Closing this as duplicate of #693 RE menu behavior, and as obsolete since MDC Select uses a native input now.
Most helpful comment
Found out this is because iOS doesn't emit a
clickevent if the element you are tapping on isn't considered "clickable".Workaround is setting all elements as "clickable"