feat(elements): rename API to createCustomElement (#22413)

PR Close #22413
This commit is contained in:
Andrew Seguin
2018-03-14 13:24:27 -07:00
committed by Miško Hevery
parent 39a12d2c3d
commit 167fdf745c
5 changed files with 12 additions and 12 deletions

View File

@ -71,13 +71,13 @@ export interface NgElementConfig {
* @description Builds a class that encapsulates the functionality of the provided component and
* uses the config's information to provide more context to the class. Takes the component factory's
* inputs and outputs to convert them to the proper custom element API and add hooks to input
* changes. Passes the config's injector to each created instance (may be overriden with the
* changes. Passes the config's injector to each created instance (may be overridden with the
* static property to affect all newly created instances, or as a constructor argument for
* one-off creations).
*
* @experimental
*/
export function createNgElementConstructor<P>(
export function createCustomElement<P>(
component: Type<any>, config: NgElementConfig): NgElementConstructor<P> {
const inputs = getComponentInputs(component, config.injector);