@3dsource/metabox-modular-configurator-api
    Preparing search index...

    Interface ComponentWithParent

    Defines the structure for a component tree where every component has id and parent.

    Describes a component with its parent relationship. Used in component hierarchy representation.

    Read-only array entries showing parent-child relationships in the component tree. Returned in configurationTree of ModularConfiguratorEnvelope. Each entry includes the component and its parent reference for building hierarchy UIs.

    Access via envelope.configurationTree from configuratorDataUpdated event. Use to render nested UIs (tree views, accordions, breadcrumbs) mirroring the modular assembly hierarchy. The root component will have no parent reference (parentId is null).

    interface ComponentWithParent {
        componentTypeId: string;
        id: string;
        parentId: string | null;
    }
    Index

    Properties

    componentTypeId: string
    id: string
    parentId: string | null