@3dsource/metabox-front-api
    Preparing search index...

    Interface IntegrateMetaboxConfig

    Configuration options for integrating the Metabox Basic Configurator iframe into a host page. Passed as the config parameter to integrateMetabox.

    Configuration interface for initializing the configurator. Passed to integrateMetabox function with settings like domain, host, and standalone mode.

    Config interface for integrateMetabox() initialization. Supports: standalone (boolean — disables all built-in UI), introImage/introVideo (URLs), loadingImage (URL), state (initial state), domain (HTTPS override).

    Pass as 4th parameter to integrateMetabox(). Key: standalone:true for custom UI builds. loadingImage for branded loading. domain only if overriding the default MetaBox server. All URLs must be HTTPS. The state field lets you restore a previously saved configuration.

    interface IntegrateMetaboxConfig {
        domain?: string;
        introImage?: string;
        introVideo?: string;
        loadingImage?: string;
        standalone?: boolean;
        state?: string;
    }
    Index

    Properties

    domain?: string

    Custom domain for testing purposes. Defaults to metabox.3dsource.com. HTTPS is enforced.

    introImage?: string

    URL to an image shown on the intro screen (added as ?introImage=...).

    introVideo?: string

    URL to a video shown on the intro screen (added as ?introVideo=...).

    loadingImage?: string

    URL to an image displayed while the configurator is loading (added as ?loadingImage=...).

    standalone?: boolean

    If true, disables Metabox custom template and all related logic.

    state?: string

    Predefined state for the configurator on initial loading in rison format (see https://github.com/Nanonid/rison) (added as ?state=...).