diff --git a/src/sql/azdata.d.ts b/src/sql/azdata.d.ts index dc5b1393da..cc5d58384c 100644 --- a/src/sql/azdata.d.ts +++ b/src/sql/azdata.d.ts @@ -108,7 +108,6 @@ declare module 'azdata' { * Namespace for connection management */ export namespace connection { - /** * Well-known Authentication types commonly supported by connection providers. */ @@ -3627,6 +3626,11 @@ declare module 'azdata' { title?: string | undefined; } + /** + * Supported values for aria-live accessibility attribute + */ + export type AriaLiveValue = 'polite' | 'assertive' | 'off'; + export interface InputBoxProperties extends ComponentProperties { value?: string | undefined; ariaLive?: AriaLiveValue | undefined; diff --git a/src/sql/azdata.proposed.d.ts b/src/sql/azdata.proposed.d.ts index 4323c86fff..c856ea7a3c 100644 --- a/src/sql/azdata.proposed.d.ts +++ b/src/sql/azdata.proposed.d.ts @@ -1768,11 +1768,6 @@ declare module 'azdata' { ariaLive?: AriaLiveValue } - /** - * Supported values for aria-live accessibility attribute - */ - export type AriaLiveValue = 'polite' | 'assertive' | 'off'; - export interface ContainerProperties extends ComponentProperties { /** * Corresponds to the aria-live accessibility attribute for this component