Trotyl Yu

Results 47 issues of Trotyl Yu

## Example ```typescript () => ``` Should be equivalent to: ```html ```

type: feature
comp: ng-integration

## Example ```typescript () => 0} /> ``` Should be equivalent to: ```html ```

type: feature
comp: ng-integration

## Current Status Only `onEventName` and `on_eventName` being supported, resulting in listener to `eventName`. ## Expected Support `on-eventName` as well which conforms to Angular template syntax.

type: feature
comp: ng-integration

Integrate [`Directive`s](https://angular.io/api/core/Directive) with `render` function. ## API Design ```typescript function directive(type: Type): (value: any, extras?: object) => never ``` + `type`: the directive class; + `value`: main input value for...

type: feature
comp: ng-integration

Integrate [`Pipe`s](https://angular.io/api/core/Pipe) with `render` function. ## API Design ```typescript function pipe(type: Type): (value: any, ...extras: any[]) => never ``` + `type`: the pipe class; + `value`: the value passed to...

type: feature
comp: ng-integration

Remove duplicate `both`.

In the Content security part of [Template Syntax](https://angular.io/docs/ts/latest/guide/template-syntax.html) chapter, there is the content: ```html "{{evilTitle}}" is the interpolated evil title. "" is the property bound evil title. ``` It says...