You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Select widget makes use of OptionList; when the user opens the Select to pick a value, OptionHighlighted messages "leak" out of the Select. This could result in unexpected messages for the developer who has an OptionList and a Select in their DOM and who doesn't expect to actually have two OptionLists that might send messages.
I think we should either stop the OptionHighlighted from bubbling outside of the Select, or we should turn them into SelectionHighlighted if it's felt necessary that they can be handled.
The
Select
widget makes use ofOptionList
; when the user opens theSelect
to pick a value,OptionHighlighted
messages "leak" out of theSelect
. This could result in unexpected messages for the developer who has anOptionList
and aSelect
in their DOM and who doesn't expect to actually have twoOptionList
s that might send messages.I think we should either stop the
OptionHighlighted
from bubbling outside of theSelect
, or we should turn them intoSelectionHighlighted
if it's felt necessary that they can be handled.To illustrate:
I think the dev would reasonably expect to only get calls to
log_some_option
from theOptionList
they composed in.The text was updated successfully, but these errors were encountered: