UMD Web Components Library
    Preparing search index...

    Interface ComponentConfig

    interface ComponentConfig {
        afterConnect?: (ref: Model.ElementRef, shadow: ShadowRoot) => void;
        attributes?: AttributeConfig[];
        beforeConnect?: (ref: Model.ElementRef, shadow: ShadowRoot) => void;
        createComponent: (host: HTMLElement) => Model.ElementRef;
        onReady?: (ref: Model.ElementRef, shadow: ShadowRoot) => void;
        slots?: Record<string, SlotConfig>;
        tagName: string;
    }

    Hierarchy

    • ComponentLifecycle
      • ComponentConfig
    Index

    Properties

    afterConnect?: (ref: Model.ElementRef, shadow: ShadowRoot) => void
    attributes?: AttributeConfig[]
    beforeConnect?: (ref: Model.ElementRef, shadow: ShadowRoot) => void
    createComponent: (host: HTMLElement) => Model.ElementRef
    onReady?: (ref: Model.ElementRef, shadow: ShadowRoot) => void
    slots?: Record<string, SlotConfig>
    tagName: string