-+
- {this.renderTitlebar()}
- {this.state.showWelcomeFlow
- ? this.renderWelcomeFlow()
-merged
- result 100644 ffb19e643f39201e7668941e3125223f6319fdd7 app/src/ui/autocompletion/autocompleting-text-input.tsx
- our 100644 fa4fe8265157ad6e485388bac030717e2e634543 app/src/ui/autocompletion/autocompleting-text-input.tsx
-@@ -1,5 +1,10 @@
- import * as React from 'react'
--import { List, SelectionSource } from '../lib/list'
-+import {
-+ List,
-+ SelectionSource,
-+ findNextSelectableRow,
-+ SelectionDirection,
-+} from '../lib/list'
- import { IAutocompletionProvider } from './index'
- import { fatalError } from '../../lib/fatal-error'
- import * as classNames from 'classnames'
-@@ -28,6 +33,9 @@
- /** Disabled state for input field. */
- readonly disabled?: boolean
-
-+ /** Indicates if input field should be required */
-+ readonly isRequired?: boolean
-+
- /**
- * Called when the user changes the value in the input field.
- */
-@@ -96,7 +104,6 @@
- IAutocompletingTextInputState