0.34.0 #553
rmorshea
announced in
Announcements
0.34.0
#553
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This release contains a variety of minor fixes and improvements which came out of rewriting the documentation. The most significant of these changes is the remove of target element attributes from the top-level of event data dictionaries. For example,
instead of being able to find the value of an input at
event["value"]
it willinstead be found atevent["target"]["value"]
. For a short period we will issue aDeprecationWarning
when target attributes are requested at the top-level of the event dictionary. As part of this change we also addevent["currentTarget"]
andevent["relatedTarget"]
keys to the event dictionary as well as aevent[some_target]["boundingClientRect"]
wheresome_target
may be"target"
,"currentTarget"
or"relatedTarget"
.Closed Issues
event['target']
- Move target attributes to event['target'] #548Pull Requests
This discussion was created from the release 0.34.0.
Beta Was this translation helpful? Give feedback.
All reactions