@umbraco-cms/backoffice
    Preparing search index...
    interface ManifestValueSummary {
        alias: string;
        api?: ApiLoaderProperty<UmbValueSummaryApi<unknown>>;
        API_TYPE?: UmbValueSummaryApi<unknown>;
        element?: ElementLoaderProperty<UmbValueSummaryElement<unknown>>;
        ELEMENT_TYPE?: UmbValueSummaryElement<unknown>;
        elementName?: string;
        forValueType: keyof UmbValueTypeMap;
        js?: ElementAndApiLoaderProperty<
            UmbValueSummaryElement<unknown>,
            UmbValueSummaryApi<unknown>,
        >;
        kind?: unknown;
        meta?: MetaValueSummary;
        name: string;
        type: "valueSummary";
        valueResolver?: UmbValueSummaryResolverLoaderProperty;
        weight?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alias: string

    The alias of the extension, ensure it is unique

    The file location of the api javascript file to load

    string

    API_TYPE?: UmbValueSummaryApi<unknown>

    The file location of the element javascript file to load

    string

    ELEMENT_TYPE?: UmbValueSummaryElement<unknown>
    elementName?: string

    The HTML web component name to use such as 'my-dashboard' Note it is NOT , just the element name.

    forValueType: keyof UmbValueTypeMap

    The value type this summary is registered for.

    The file location of the javascript file to load

    string

    kind?: unknown

    The kind of the extension, used to group extensions together

    ["button"]

    name: string

    The friendly name of the extension

    type: "valueSummary"

    The type of extension such as dashboard etc...

    Optional resolver for batch-resolving raw values before rendering. Used by the coordinator for efficient batching across multiple elements.

    weight?: number

    Extensions such as dashboards are ordered by weight with higher numbers being first in the list