Trotyl Yu

Results 47 issues of Trotyl Yu

The current test of class & property decorator is still based on the proposal in stage 1, and currently there is no implementation that fullfils the proposal in Stage 2,...

ESnext
test code bug

`VDOM` has severe problem in casing: + `vdom/Vdom`: incorrect; + `vDom/VDom`: weird for consecutive upper case; + `VDOM/VDOM`: ugly; `ng-render` provides a more meaningful concepts, which integrates Angular with `render`...

type: rfc
type: maintenance

## API Design ```typescript @Component({ template: ` {{ date | date:'yyyyMMdd' }} ` }) class MyComp {} ``` Corresponding util function: ```typescript import { asRenderable, Renderable } from 'ng-render' @Component({...

## API Design ```typescript @Component({ template: ` Hello {{name}}! ` }) class MyComp extends Renderable { @Input() name: string @ViewChild('myTemplate') myTemplate: TemplateRef render() { const MyTemplate = this.myTemplate return (...

type: feature

## API Design ```typescript import { Migration } from 'ng-renderable' import { Calendar } from 'some-lib' @Directive({ selector: 'my-calendar', }) class CalendarComponent extends Migration { @Input() set date(value: Date) {...

type: feature
comp: ng-integration

## Current ```jsx @Component({ template: ` ` }) class MyComp { myDef = Foo } ``` ## Expected ```typescript @Component({ template: ` Foo ` }) class MyComp { myType =...

type: feature

## Current Patching properties on DOM nodes. ## Expected Using `WeakMap` instead.

type: refactor

## Current All children are projected to default slot. ## Expected ```html Start Middle End ``` Can be used with: ```jsx function render() { return ( Foo Bar ) }...

type: feature
comp: ng-integration