Merge vscode source through 1.62 release (#19981)

* Build breaks 1

* Build breaks

* Build breaks

* Build breaks

* More build breaks

* Build breaks (#2512)

* Runtime breaks

* Build breaks

* Fix dialog location break

* Update typescript

* Fix ASAR break issue

* Unit test breaks

* Update distro

* Fix breaks in ADO builds (#2513)

* Bump to node 16

* Fix hygiene errors

* Bump distro

* Remove reference to node type

* Delete vscode specific extension

* Bump to node 16 in CI yaml

* Skip integration tests in CI builds (while fixing)

* yarn.lock update

* Bump moment dependency in remote yarn

* Fix drop-down chevron style

* Bump to node 16

* Remove playwrite from ci.yaml

* Skip building build scripts in hygine check
This commit is contained in:
Karl Burtram
2022-07-11 14:09:32 -07:00
committed by GitHub
parent fa0fcef303
commit 26455e9113
1876 changed files with 72050 additions and 37997 deletions

View File

@@ -45,7 +45,7 @@ import { IProductService } from 'vs/platform/product/common/productService';
import { joinPath } from 'vs/base/common/resources';
import { clearNode } from 'vs/base/browser/dom';
import { GuidedTour } from 'sql/workbench/contrib/welcome/page/browser/gettingStartedTour';
import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';
import { IWorkbenchLayoutService, Parts } from 'vs/workbench/services/layout/browser/layoutService';
import { ILayoutService } from 'vs/platform/layout/browser/layoutService';
import { Button } from 'sql/base/browser/ui/button/button';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
@@ -448,7 +448,6 @@ class WelcomePage extends Disposable {
p.innerText = localize('WelcomePage.TakeATour', "Would you like to take a quick tour of Azure Data Studio?");
b.innerText = localize('WelcomePage.welcome', "Welcome!");
containerLeft.appendChild(icon);
containerLeft.appendChild(p);
containerRight.appendChild(removeTourBtn);
@@ -458,11 +457,10 @@ class WelcomePage extends Disposable {
startTourBtn.onDidClick((e) => {
this.configurationService.updateValue(configurationKey, 'welcomePageWithTour', ConfigurationTarget.USER);
this.layoutService.setSideBarHidden(true);
this.layoutService.setPartHidden(true, Parts.SIDEBAR_PART);
guidedTour.create();
});
removeTourBtn.addEventListener('click', (e: MouseEvent) => {
this.configurationService.updateValue(configurationKey, 'welcomePage', ConfigurationTarget.USER);
guidedTourNotificationContainer.classList.add('hide');