@umbraco-cms/backoffice

    Interface ManifestWorkspaceDefaultKind

    interface ManifestWorkspaceDefaultKind {
        alias: string;
        api?: ApiLoaderProperty<UmbDefaultWorkspaceContext>;
        API_TYPE?: UmbDefaultWorkspaceContext;
        element?: ElementLoaderProperty<UmbControllerHostElement>;
        ELEMENT_TYPE?: UmbControllerHostElement;
        elementName?: string;
        js?: ElementAndApiLoaderProperty<
            UmbControllerHostElement,
            UmbDefaultWorkspaceContext,
        >;
        kind: "default";
        meta: MetaWorkspaceDefaultKind;
        name: string;
        type: "workspace";
        weight?: number;
    }

    Hierarchy (View Summary, Expand)

    Index

    Properties

    alias: string

    The alias of the extension, ensure it is unique

    api?: ApiLoaderProperty<UmbDefaultWorkspaceContext>

    The file location of the api javascript file to load @TJS-type string

    API_TYPE?: UmbDefaultWorkspaceContext

    @TJS-ignore

    The file location of the element javascript file to load @TJS-type string

    @TJS-ignore

    elementName?: string

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

    js?: ElementAndApiLoaderProperty<
        UmbControllerHostElement,
        UmbDefaultWorkspaceContext,
    >

    The file location of the javascript file to load @TJS-type string

    kind: "default"

    The kind of the extension, used to group extensions together

    ["button"]

    name: string

    The friendly name of the extension

    type: "workspace"

    The type of extension such as dashboard etc...

    weight?: number

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

    MMNEPVFCICPMFPCPTTAAATR