Merge from vscode 892353d48e17303de203bb5071f21ea69573367d

This commit is contained in:
ADS Merger
2020-09-05 03:17:42 +00:00
parent b8d0e2a9e3
commit 6718c7565d
40 changed files with 330 additions and 130 deletions

View File

@@ -148,10 +148,14 @@ interface IWindowIndicator {
}
interface IInitialColorTheme {
/**
* Initial color theme type.
*/
themeType: 'light' | 'dark' | 'hc';
/**
* a list of workbench colors
* A list of workbench colors to apply initially.
*/
colors?: { [colorId: string]: string };
}
@@ -241,6 +245,8 @@ interface IWorkbenchConstructionOptions {
/**
* Session id of the current authenticated user
*
* @deprecated Instead pass current authenticated user info through [credentialsProvider](#credentialsProvider)
*/
readonly authenticationSessionId?: string;
@@ -293,7 +299,9 @@ interface IWorkbenchConstructionOptions {
userDataProvider?: IFileSystemProvider;
/**
* Enables user data sync by default and syncs into the current authenticated user account using the provided [authenticationSessionId}(#authenticationSessionId).
* Enables Settings Sync by default.
*
* Syncs with the current authenticated user account (provided in [credentialsProvider](#credentialsProvider)) by default.
*/
readonly enableSyncByDefault?: boolean;
@@ -554,6 +562,7 @@ export {
IHomeIndicator,
IProductConfiguration,
IWindowIndicator,
IInitialColorTheme,
// Default layout
IDefaultView,