Trotyl Yu

Results 47 issues of Trotyl Yu

## Guide https://reactjs.org/docs/code-splitting.html ## API https://reactjs.org/docs/react-api.html#reactlazy https://reactjs.org/docs/react-api.html#reactsuspense

type: feature
comp: react-compat

## Guide https://reactjs.org/docs/error-boundaries.html ## API https://reactjs.org/docs/react-component.html#static-getderivedstatefromerror https://reactjs.org/docs/react-component.html#componentdidcatch

type: feature
comp: react-compat

## Guide https://reactjs.org/docs/context.html ## API https://reactjs.org/docs/context.html#reactcreatecontext https://reactjs.org/docs/context.html#contextprovider https://reactjs.org/docs/context.html#classcontexttype https://reactjs.org/docs/context.html#contextconsumer

type: feature
comp: react-compat

## Guide https://reactjs.org/docs/fragments.html ## API https://reactjs.org/docs/react-api.html#reactfragment

type: feature
comp: react-compat

## Current When not specifying `key`, all children are tracked by non-keyed way (index of type). ## Expected Should be keyed by default, element without key should always be consider...

type: feature
comp: react-compat

## Current Angular component always contains a host element, and `Renderable` always render content in child position. ## Expected Provide an option to render content in sibling position: ```typescript import...

type: feature
comp: ng-integration

## Current `children` always be an `Array` of renderable nodes. ## Expected + `undefined` when having no nodes; + `RNode` when having single node; + `RNode[]` when having more than...

type: feature
comp: react-compat

## Current One can only mount elements in existing Angular component. ## Expected Support global bootstrap without any Angular code, like: ```typescript import { createElement, render } from 'ng-renderable' import...

type: feature
comp: react-compat

## Expected When `JSXAttributeName` contains non-alphabetic character, like: ```typescript () => ``` Should be translated to HTML Attribute rather than DOM Property, like: ```html ```

type: feature
comp: react-compat

## Expected ```typescript () => ``` Should be equivalent to: ```html ``` *Note: `%` is not valid in `JSXAttributeName`.*

type: feature
comp: ng-integration