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
For correctness, bind listeners must use a property's current value rather than its passed value. (commit)
Explicitly making an element's _template falsy is now considered an allowable setting. This means the element stamps no content, doesn't collect any styles, and avoids looking up a dom-module. This helps address #2708 and the 5 elements Polymer registers that have no template have been set with _template: null. (commit)
In _notifyListener, only use e.detail if the event has a detail. This is necessary for ::eventName compatibility where eventName is a native event like change. (commit)
change after render method to Polymer.RenderStatus.afterNextRender (commit)
When effect values are applied via bindings, use fromAbove gambit to avoid unnecessary wheel spinning. (This is now possible since we have fast lookup for readOnly where we want to avoid doing the set at all). (commit)
do readOnly check for configured properties where they are handed down, rather than when they are consumed. (commit)
Added support for short unicode escape sequences, fixes #2650 (commit)
Fix for BEM-like CSS selectors under media queries, fixes #2639. Small optimization for produced CSS (empty rules produced semicolon before, now empty string). (commit)
Fix parsing of custom properties with 'var' in value (commit)