Merge from vscode merge-base (#22769)

* Merge from vscode merge-base

* Turn off basic checks

* Enable compilation, unit, and integration tests
This commit is contained in:
Lewis Sanchez
2023-04-18 18:28:58 -07:00
committed by GitHub
parent 6186358001
commit 6bd0a17d3c
2389 changed files with 92183 additions and 42601 deletions

5
src/sql/azdata.d.ts vendored
View File

@@ -4761,6 +4761,7 @@ declare module 'azdata' {
* @deprecated please use the method createModelViewDialog(title: string, dialogName?: string, width?: DialogWidth) instead.
* Create a dialog with the given title
* @param title The title of the dialog, displayed at the top
* @param dialogName Name of the dialog.
* @param isWide Indicates whether the dialog is wide or normal
*/
export function createModelViewDialog(title: string, dialogName?: string, isWide?: boolean): Dialog;
@@ -5391,6 +5392,7 @@ declare module 'azdata' {
*/
export function getQueryDocument(fileUri: string): Thenable<QueryDocument>;
/* eslint-disable */
/**
* Opens an untitled text document. The editor will prompt the user for a file
* path when the document is to be saved. The `options` parameter allows to
@@ -5401,6 +5403,7 @@ declare module 'azdata' {
* @return A promise that resolves to a {@link QueryDocument}.
*/
export function openQueryDocument(options?: { content?: string; }, providerId?: string): Thenable<QueryDocument>;
/* eslint-enable */
}
/**
@@ -5655,6 +5658,7 @@ declare module 'azdata' {
*/
export const onDidChangeActiveNotebookEditor: vscode.Event<NotebookEditor>;
/* eslint-disable */
/**
* Show the given document in a notebook editor. A {@link vscode.ViewColumn} can be provided
* to control where the editor is being shown. Might change the {@link nb.activeNotebookEditor}.
@@ -5674,6 +5678,7 @@ declare module 'azdata' {
* @return A promise that resolves to a {@link NotebookEditor}.
*/
export function showNotebookDocument(uri: vscode.Uri, showOptions?: NotebookShowOptions): Thenable<NotebookEditor>;
/* eslint-enable */
export interface NotebookDocument {
/**