-
- {
- if (node) {
- this.inputRef = node;
- }
- }}
- autoComplete="off"
- spellCheck={false}
- aria-label={this.props.intl.formatMessage(
- {
- id: 'data.query.queryBar.searchInputAriaLabel',
- defaultMessage:
- 'You are on search box of {previouslyTranslatedPageTitle} page. Start typing to search and filter the {pageType}',
- },
- {
- previouslyTranslatedPageTitle: this.props.screenTitle,
- pageType: this.props.appName,
- }
- )}
- type="text"
- data-test-subj="queryInput"
- aria-autocomplete="list"
- aria-controls="kbnTypeahead__items"
- aria-activedescendant={
- this.state.isSuggestionsVisible ? 'suggestion-' + this.state.index : ''
- }
- role="textbox"
- prepend={this.props.prepend}
- append={
-
- }
- />
-
-
-