Represents a configuration needed for the chip focus events

interface IChipTrackFocusConfig {
    closeOnContentClick: boolean;
    closeOnEnterKey: boolean;
    closeOnEscape: boolean;
    focusSubscription: BehaviorSubject<boolean>;
}

Properties

closeOnContentClick: boolean

Whether to close/focus out on click

closeOnEnterKey: boolean

Whether to close/focus out on pressing of Enter key

closeOnEscape: boolean

Whether to close/focus out on pressing of Escape key

focusSubscription: BehaviorSubject<boolean>

The subscription that is emitted when document click and window keydown event listeners should be added/removed

Generated using TypeDoc