From 2d25c8626ff2d8de0f6d7edfc1d86566cdfa284a Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Sun, 16 Apr 2023 16:36:47 -0700 Subject: [PATCH] Fix typings (#22747) --- src/sql/azdata.d.ts | 6 +++++- src/sql/azdata.proposed.d.ts | 5 ----- 2 files changed, 5 insertions(+), 6 deletions(-) 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