The single source of truth for which components ship a JS enhancer and the selector that signals their presence in the DOM. The auto-loader (and its self-contained CDN variant) are generated from this list, so adding an enhancer here is all it takes to make it auto-initialize.

interface ManifestEntry {
    name: string;
    selector: string;
}

Properties

Properties

name: string

Component name; matches the enhancer subpath export.

selector: string

Selector the auto-loader uses to detect the component.