https://github.com/angular/angular
Raw File
Tip revision: 7001ef642942e0a17594f3b9ee359011f5a6cb00 authored by Jessica Janiuk on 02 December 2020, 18:08:46 UTC
release: cut the v11.0.3 release (#39931)
Tip revision: 7001ef6
PACKAGE.md
Implements Angular's custom-element API, which enables you to package components as
[custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements).

A custom element extends HTML by allowing you to define a tag whose content is created and controlled by JavaScript code. The browser maintains a `CustomElementRegistry` of defined custom elements (also called Web Components), which maps an instantiable JavaScript class to an HTML tag.

The `createCustomElement()` function provides a bridge from Angular's component interface and change detection functionality to the built-in DOM API. 

For more information, see [Angular Elements Overview](guide/elements).
back to top