mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 17:23:56 -05:00
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:
11
src/sql/azdata.proposed.d.ts
vendored
11
src/sql/azdata.proposed.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user