ProtecteddisposableProtectedexpectingAn event signaling when the active items have changed.
An event signaling when the selected items have changed.
An event signaling when a button in a particular QuickPickItem was triggered.
This event does not fire for buttons in the title bar which are part of buttons.
ReadonlypluginReadonlyquickReadonlyquickProtectedvisibleActive items. This can be read and updated by the extension.
Determines if the UI should show a progress indicator. Defaults to false.
Change this to true, for example, while loading more data or validating user input.
Determines if the UI should show a progress indicator. Defaults to false.
Change this to true, for example, while loading more data or validating user input.
Buttons for actions in the UI.
Determines if multiple items can be selected at the same time. Defaults to false.
Determines if multiple items can be selected at the same time. Defaults to false.
Determines if the UI should allow for user input. Defaults to true.
Change this to false, for example, while validating user input or loading data for the next
step in user input.
Determines if the UI should allow for user input. Defaults to true.
Change this to false, for example, while validating user input or loading data for the next
step in user input.
Determines if the UI should stay open even when losing UI focus. Defaults to false.
This setting is ignored on iPad and is always false.
Determines if the UI should stay open even when losing UI focus. Defaults to false.
This setting is ignored on iPad and is always false.
Items to pick from. This can be read and updated by the extension.
Determines if the scroll position is maintained when the quick pick items are updated. Defaults to false.
Determines if the scroll position is maintained when the quick pick items are updated. Defaults to false.
Determines if the filter text should also be matched against the description of the items. Defaults to false.
Determines if the filter text should also be matched against the description of the items. Defaults to false.
Determines if the filter text should also be matched against the detail of the items. Defaults to false.
Determines if the filter text should also be matched against the detail of the items. Defaults to false.
An event signaling when the user indicated acceptance of the selected item(s).
An event signaling when the value of the filter text has changed.
An event signaling when a button was triggered.
This event fires for buttons stored in the buttons array. This event does not fire for buttons on a QuickPickItem.
Optional placeholder text displayed in the filter text box when no value has been entered.
Optional placeholder text displayed in the filter text box when no value has been entered.
Optional text that provides instructions or context to the user.
The prompt is displayed below the input box and above the list of items.
Optional text that provides instructions or context to the user.
The prompt is displayed below the input box and above the list of items.
An optional current step count for multi-step input flows.
An optional current step count for multi-step input flows.
An optional title for the input UI.
An optional title for the input UI.
An optional total step count for multi-step input flows.
An optional total step count for multi-step input flows.
The current value of the filter text.
The current value of the filter text.
ProtectedconvertDispose of this input UI and any associated resources.
If it is still visible, it is first hidden. After this call the input UI is no longer functional and no additional methods or properties on it should be accessed. Instead a new input UI should be created.
Hides this input UI.
This will also fire an onDidHide event.
Makes the input UI visible in its current configuration.
Any other input UI will first fire an onDidHide event.
Protectedupdateeslint-disable-next-line @typescript-eslint/no-explicit-any
Base implementation of QuickPick that uses QuickOpenExt. Missing functionality is going to be implemented in the scope of https://github.com/eclipse-theia/theia/issues/5059