Use faster, editable dropdown for Collations in database dialogs (#23974)

* Also fixed an issue where a manually edited text field doesn't get updated when selecting the same dropdown value from before the manual edit.
---------

Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
This commit is contained in:
Cory Rivera
2023-07-26 10:04:29 -07:00
committed by GitHub
parent 5f1801d6d4
commit cc778ad69f
7 changed files with 67 additions and 32 deletions

View File

@@ -1826,14 +1826,21 @@ declare module 'azdata' {
/**
* Corresponds to the aria-live accessibility attribute for this component
*/
ariaLive?: AriaLiveValue
ariaLive?: AriaLiveValue;
}
export interface ContainerProperties extends ComponentProperties {
/**
* Corresponds to the aria-live accessibility attribute for this component
*/
ariaLive?: AriaLiveValue
ariaLive?: AriaLiveValue;
}
export interface DropDownProperties {
/**
* Whether or not an option in the list must be selected or a "new" option can be set. Only applicable when 'editable' is true. Default false.
*/
strictSelection?: boolean;
}
export interface NodeInfo {