PolymerTS icon indicating copy to clipboard operation
PolymerTS copied to clipboard

Write Polymer 1.0 elements as TypeScript @decorated classes

Results 8 PolymerTS issues
Sort by recently updated
recently updated
newest added

Polymer has added support for TypeScript with their PolymerDecorators project (Polymer 2 only). This issue is for providing a smooth migration path for existing Polymer 1.0/PolymerTS users.

Is there any trick to using Behavior properties such as `animationConfig` and `keyBindings`?

The current use of `waitFor()` causes an infinite loop if there is any problem that occurs when registering test components. This makes it impossible to test problems with decorators during...

Could you possibly add type definitions for `Polymer.dom(Event)`? As per [this](https://www.polymer-project.org/1.0/docs/devguide/events#retargeting), you can pass an `Event` to `Polymer.dom` such that you are given a wrapped event back (which has the...

These two members are not really documented but have been there since release 1.0.7 and have been mentioned in Rob Dodson's Polycast#52. They are mentioned in the release notes for...

https://www.polymer-project.org/1.0/docs/devguide/events.html Polymer.dom(event).localTarget/path/rootTarget This needs to be added to polymer-ts.d.ts Starting line 57 ``` interface dom { (event: Event): Dom.api.Event; (node: HTMLElement): HTMLElement; (node: polymer.Base): HTMLElement; flush(): any; } ``` This...

Seems when the computed value is based on a sub-property, the `@computed` annotation style does not work. Maybe clarify in the documentation. Example: ``` @property({ type: Object, notify: true })...