Member Junction
    Preparing search index...

    Abstract base for a runtime-UX driver. @Directive() (not @Component) so it can be a decorated, DI-capable base class without its own template; concrete drivers supply the @Component.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    Cancelled: EventEmitter<void> = ...

    Emit when the user dismisses the driver without completing.

    Completed: EventEmitter<EntityActionUXResult> = ...

    Emit when the driver has finished its work (applied or not — see EntityActionUXResult).

    The work context, set by the host immediately after construction (before Start).

    Methods

    • Begin the driver's flow. Called once by the host after Context is set. Implementations typically kick off an async preview/load here and drive their own template state from it.

      Returns void | Promise<void>