ng-xtend API documentation
    Preparing search index...

    Class WfwRender<T>

    Dynamic workflow renderer component. Resolves and renders the appropriate workflow component (carousel or list-detail) based on either an explicit type input or a configuration model.

    Usage:

    • Provide workflowType to force a specific component
    • Or provide workflowConfig to let the resolver pick the best workflow

    Type Parameters

    • T
    Index

    Constructors

    Properties

    resolverService: WfwResolverService = ...

    Service for resolving workflow components from the plugin registry

    type: Signal<Type<{ config: InputSignal<DcWorkflowModel> }> | null> = ...

    Computed signal that resolves the workflow component class. Priority: workflowType input > workflowConfig-based resolution > null

    workflowConfig: InputSignal<DcWorkflowModel | undefined> = ...

    Workflow configuration model used to resolve the appropriate component via WfwResolverService when workflowType is not provided.

    workflowType: InputSignal<
        Type<{ config: InputSignal<DcWorkflowModel> }>
        | undefined,
    > = ...

    Explicit workflow component class to render. When set, takes precedence over workflowConfig-based resolution.