Type Alias EditorInterfaceProps

EditorInterfaceProps: {
    controls?: Control[];
    editor?: Editor;
    editorLayout?: FieldGroupItem[];
    editors?: Editor[];
    groupControls?: GroupControl[];
    sidebar?: SidebarItem[];
    sys: MetaSysProps & {
        contentType: {
            sys: MetaLinkProps;
        };
        environment: {
            sys: MetaLinkProps;
        };
        space: {
            sys: MetaLinkProps;
        };
    };
}

Type declaration

  • Optionalcontrols?: Control[]

    Array of fields and their associated widgetId

  • Optionaleditor?: Editor

    Legacy singular editor override

  • OptionaleditorLayout?: FieldGroupItem[]

    Array of editor layout field groups

  • Optionaleditors?: Editor[]

    Array of editors. Defaults will be used if property is missing.

  • OptionalgroupControls?: GroupControl[]

    Array of field groups and their associated widgetId

  • Optionalsidebar?: SidebarItem[]

    Array of sidebar widgets. Defaults will be used if property is missing.

  • sys: MetaSysProps & {
        contentType: {
            sys: MetaLinkProps;
        };
        environment: {
            sys: MetaLinkProps;
        };
        space: {
            sys: MetaLinkProps;
        };
    }