ng-xtend API documentation
    Preparing search index...

    Type Alias DcWorkflowModel

    Core configuration model for dc-workflow components. Defines the entity to manage, workflow type, and optional behaviors for sorting, display filtering, and automatic selection.

    type DcWorkflowModel = {
        data?: { sort?: DcWorkflowSortModel };
        display?: DcWorkflowDisplayModel;
        entity: string;
        selection?: DcWorkflowSelectionModel;
        workflow: "list-detail" | "carousel";
    }
    Index

    Properties

    data?: { sort?: DcWorkflowSortModel }

    Data configuration including sorting rules

    Type Declaration

    Display filtering rules applied to fetched entities

    entity: string

    Entity name to manage (resolved via XtResolverService)

    Automatic selection rules for pre-selecting an entity

    workflow: "list-detail" | "carousel"

    Workflow display type: 'list-detail' for tabbed list/edit, 'carousel' for card-based navigation