From c8ef4ee47ab08118701ad23bd4fd7f39bb4aeca5 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 9 Jun 2021 12:28:12 -0700 Subject: [PATCH] Promote updated width parameter for createModelViewDialog to stable (#15648) --- src/sql/azdata.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/sql/azdata.d.ts b/src/sql/azdata.d.ts index b3aafa89d5..bc2743bb88 100644 --- a/src/sql/azdata.d.ts +++ b/src/sql/azdata.d.ts @@ -3874,6 +3874,14 @@ declare module 'azdata' { */ export function createModelViewDialog(title: string, dialogName?: string, isWide?: boolean): Dialog; + /** + * Create a dialog with the given title + * @param title Title of the dialog, displayed at the top. + * @param dialogName Name of the dialog. + * @param width Width of the dialog, default is 'narrow'. + */ + export function createModelViewDialog(title: string, dialogName?: string, width?: DialogWidth): Dialog; + /** * Create a dialog tab which can be included as part of the content of a dialog * @param title The title of the page, displayed on the tab to select the page