Member Junction
    Preparing search index...

    Implements

    • OnInit
    • OnDestroy
    Index

    Constructors

    Properties

    DebounceMs: number = 400

    Debounce time in milliseconds before QueryChange emits

    InputBlurred: EventEmitter<void> = ...

    Emitted when the input loses focus

    InputCleared: EventEmitter<void> = ...

    Emitted when the user clears the input via the clear button

    InputEscaped: EventEmitter<void> = ...

    Emitted when the user presses Escape in the input

    InputFocused: EventEmitter<void> = ...

    Emitted when the input receives focus

    inputRef: ElementRef<HTMLInputElement>
    IsFocused: boolean = false

    Whether the input currently has focus

    Placeholder: string = 'Search...'

    Placeholder text shown in the input

    QueryChange: EventEmitter<string> = ...

    Emitted after debounce when query text changes

    QuerySubmit: EventEmitter<string> = ...

    Emitted immediately when the user presses Enter

    ShortcutHint: string = ...

    Text to display in the shortcut hint badge. Defaults platform-aware: "⌘K" on macOS, "Ctrl+K" elsewhere (matching the actual chord, which hosts bind with metaKey on Mac). Set explicitly only to advertise a different chord.

    ShowShortcutHint: boolean = true

    Whether to show the keyboard shortcut hint badge

    Accessors

    Methods

    • A callback method that performs custom clean-up, invoked immediately before a directive, pipe, or service instance is destroyed.

      Returns void

    • A callback method that is invoked immediately after the default change detector has checked the directive's data-bound properties for the first time, and before any of the view or content children have been checked. It is invoked only once when the directive is instantiated.

      Returns void