events: rename [polymer], @PolymerProperty, and polymer-template (7d91f89), closes #7
BREAKING CHANGES
events: the [polymer] selector has changed to [emitChanges], and [polymer-template] selector has changed to [polymer] to better reflect their purposes. The @PolymerProperty decorator has also changed to @PolymerChanges
events: PolymerProperty now works automatically with getters and setters (6081552), closes #6
templates: add input to polymer templates to call Angular methods (79004ec)
BREAKING CHANGES
events: This allows Angular to set intial property values, which is more natural for when the decorator is used. It does mean that undefined decorated properties may remain undefined even if their Polymer counterpart has a value. The solution is to always set an initial value in Angular for @PolymerProperty properties.
events: PolymerProperty.unwrap() has been removed. Decorate setters with @PolymerProperty() instead of unwrapping the value.