@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface InputPopupPanel<T>

    Interface that popup panel components must implement to be used with a PopupTextAdapter inside UIInput.

    The panel communicates back to the input through two outputs:

    • valueSelected — the user picked a value (e.g. a date)
    • closeRequested — the popup should close (e.g. Escape key)

    UIInput subscribes to both and handles text/value sync and popup lifecycle automatically.

    interface InputPopupPanel<T = any> {
        closeRequested: OutputEmitterRef<void>;
        valueSelected: OutputEmitterRef<T>;
    }

    Type Parameters

    • T = any

    Implemented by

    Index

    Properties

    closeRequested: OutputEmitterRef<void>

    Emitted when the popup should close without a selection.

    valueSelected: OutputEmitterRef<T>

    Emitted when the user selects a value from the popup.