Skip to content

0.34.0

Compare
Choose a tag to compare
@rmorshea rmorshea released this 17 Dec 02:53
· 341 commits to main since this release

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 at event["target"]["value"]. For a short period we will issue a DeprecationWarning when target attributes are requested at the top-level of the event dictionary. As part of this change we also add event["currentTarget"] and event["relatedTarget"] keys to the event dictionary as well as a
event[some_target]["boundingClientRect"] where some_target may be "target", "currentTarget" or "relatedTarget".

Closed Issues

  • Move target attributes to event['target'] - #548

Pull Requests

  • Correctly Handle Target Event Data - #550
  • Clean up WS console logging - #522
  • automatically infer closure arguments - #520
  • Documentation Rewrite - #519
  • add option to replace existing when creating a module - #516