interface DetailRendererContextValue {
    config: DetailViewConfig;
    containedEntityComponents?: Partial<
        Record<ViewSize, ComponentType<ContainedEntityComponentProps>>,
    >;
    registry: DetailRendererRegistryEntry[];
    rootData?: unknown;
    rootSchema: JSONSchema7;
    uiSchema?: UISchemaElement;
}

Properties

containedEntityComponents?: Partial<
    Record<ViewSize, ComponentType<ContainedEntityComponentProps>>,
>

Injected by @graviola/semantic-views for nested entity refs.

rootData?: unknown
rootSchema: JSONSchema7
uiSchema?: UISchemaElement