@codingame/monaco-vscode-theme-service-override 28.4.0 → 29.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/vscode/src/vs/workbench/contrib/themes/browser/themes.contribution.js +136 -44
- package/vscode/src/vs/workbench/services/themes/browser/fileIconThemeData.js +2 -2
- package/vscode/src/vs/workbench/services/themes/browser/productIconThemeData.js +12 -12
- package/vscode/src/vs/workbench/services/themes/browser/workbenchThemeService.d.ts +17 -1
- package/vscode/src/vs/workbench/services/themes/browser/workbenchThemeService.js +90 -8
- package/vscode/src/vs/workbench/services/themes/common/colorThemeSchema.js +16 -16
- package/vscode/src/vs/workbench/services/themes/common/fileIconThemeSchema.js +38 -38
- package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.js +7 -7
- package/vscode/src/vs/workbench/services/themes/common/themeConfiguration.d.ts +3 -1
- package/vscode/src/vs/workbench/services/themes/common/themeConfiguration.js +56 -39
- package/vscode/src/vs/workbench/services/themes/common/themeExtensionPoints.js +29 -28
|
@@ -3,8 +3,9 @@ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib
|
|
|
3
3
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
4
|
import { isUndefined, isString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
5
5
|
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
6
|
-
import { ThemeSettingDefaults, COLOR_THEME_LIGHT_INITIAL_COLORS, COLOR_THEME_DARK_INITIAL_COLORS, ThemeSettings, ExtensionData } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
6
|
+
import { ThemeSettingDefaults, COLOR_THEME_LIGHT_INITIAL_COLORS, COLOR_THEME_DARK_INITIAL_COLORS, ThemeSettings, migrateThemeSettingsId, ExtensionData } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
7
7
|
import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
8
9
|
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
9
10
|
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
10
11
|
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
@@ -13,7 +14,7 @@ import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/plat
|
|
|
13
14
|
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
15
|
import { ColorThemeData } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/colorThemeData';
|
|
15
16
|
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService';
|
|
16
|
-
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
17
|
+
import { Emitter, Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
17
18
|
import { registerFileIconThemeSchemas } from '../common/fileIconThemeSchema.js';
|
|
18
19
|
import { Disposable, DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
19
20
|
import { FileIconThemeData, FileIconThemeLoader } from './fileIconThemeData.js';
|
|
@@ -52,7 +53,12 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/sear
|
|
|
52
53
|
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language.service';
|
|
53
54
|
import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
|
|
54
55
|
import { generateColorThemeCSS } from './colorThemeCss.js';
|
|
56
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification';
|
|
57
|
+
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
58
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
59
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
55
60
|
|
|
61
|
+
var WorkbenchThemeService_1;
|
|
56
62
|
const defaultThemeExtensionId = "vscode-theme-defaults";
|
|
57
63
|
const DEFAULT_FILE_ICON_THEME_ID = "vscode.vscode-theme-seti-vs-seti";
|
|
58
64
|
const fileIconsEnabledClass = "file-icons-enabled";
|
|
@@ -77,6 +83,9 @@ const colorThemesExtPoint = registerColorThemeExtensionPoint();
|
|
|
77
83
|
const fileIconThemesExtPoint = registerFileIconThemeExtensionPoint();
|
|
78
84
|
const productIconThemesExtPoint = registerProductIconThemeExtensionPoint();
|
|
79
85
|
let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
86
|
+
static {
|
|
87
|
+
WorkbenchThemeService_1 = this;
|
|
88
|
+
}
|
|
80
89
|
constructor(
|
|
81
90
|
extensionService,
|
|
82
91
|
storageService,
|
|
@@ -89,7 +98,9 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
89
98
|
logService,
|
|
90
99
|
hostColorService,
|
|
91
100
|
userDataInitializationService,
|
|
92
|
-
languageService
|
|
101
|
+
languageService,
|
|
102
|
+
notificationService,
|
|
103
|
+
commandService
|
|
93
104
|
) {
|
|
94
105
|
super();
|
|
95
106
|
this.storageService = storageService;
|
|
@@ -101,9 +112,12 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
101
112
|
this.hostColorService = hostColorService;
|
|
102
113
|
this.userDataInitializationService = userDataInitializationService;
|
|
103
114
|
this.languageService = languageService;
|
|
115
|
+
this.notificationService = notificationService;
|
|
116
|
+
this.commandService = commandService;
|
|
104
117
|
this.themeExtensionsActivated = ( new Map());
|
|
105
118
|
this.container = layoutService.mainContainer;
|
|
106
|
-
|
|
119
|
+
const isNewUser = this.storageService.isNew(StorageScope.APPLICATION);
|
|
120
|
+
this.settings = ( new ThemeConfiguration(configurationService, hostColorService, isNewUser));
|
|
107
121
|
this.colorThemeRegistry = this._register(( new ThemeRegistry(colorThemesExtPoint, ColorThemeData.fromExtensionTheme)));
|
|
108
122
|
this.colorThemeWatcher = this._register(( new ThemeFileWatcher(fileService, environmentService, this.reloadCurrentColorTheme.bind(this))));
|
|
109
123
|
this.onColorThemeChange = this._register(( new Emitter({
|
|
@@ -187,7 +201,7 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
187
201
|
this._register(iconsStyleSheet.onDidChange(() => delayer.schedule()));
|
|
188
202
|
delayer.schedule();
|
|
189
203
|
}
|
|
190
|
-
initialize() {
|
|
204
|
+
async initialize() {
|
|
191
205
|
const extDevLocs = this.environmentService.extensionDevelopmentLocationURI;
|
|
192
206
|
const extDevLoc = extDevLocs && extDevLocs.length === 1 ? extDevLocs[0] : undefined;
|
|
193
207
|
const initializeColorTheme = async () => {
|
|
@@ -228,11 +242,79 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
228
242
|
}
|
|
229
243
|
return this.setProductIconTheme(theme ? theme.id : DEFAULT_PRODUCT_ICON_THEME_ID, undefined);
|
|
230
244
|
};
|
|
231
|
-
|
|
245
|
+
this.migrateColorThemeSettings();
|
|
246
|
+
await this.migrateAutoDetectColorScheme();
|
|
247
|
+
const result = await Promise.all([
|
|
232
248
|
initializeColorTheme(),
|
|
233
249
|
initializeFileIconTheme(),
|
|
234
250
|
initializeProductIconTheme()
|
|
235
251
|
]);
|
|
252
|
+
this.showNewDefaultThemeNotification();
|
|
253
|
+
return result;
|
|
254
|
+
}
|
|
255
|
+
static {
|
|
256
|
+
this.NEW_THEME_NOTIFICATION_KEY = "workbench.newDefaultThemeNotification";
|
|
257
|
+
}
|
|
258
|
+
showNewDefaultThemeNotification() {
|
|
259
|
+
const newDefaultThemes = ( new Set([
|
|
260
|
+
ThemeSettingDefaults.COLOR_THEME_DARK,
|
|
261
|
+
ThemeSettingDefaults.COLOR_THEME_LIGHT
|
|
262
|
+
]));
|
|
263
|
+
if (( newDefaultThemes.has(this.currentColorTheme.settingsId))) {
|
|
264
|
+
return;
|
|
265
|
+
}
|
|
266
|
+
if (this.storageService.getBoolean(
|
|
267
|
+
WorkbenchThemeService_1.NEW_THEME_NOTIFICATION_KEY,
|
|
268
|
+
StorageScope.APPLICATION
|
|
269
|
+
)) {
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
const handle = this.notificationService.prompt(Severity.Info, ( localize(16339, "New default themes are available for VS Code.")), [{
|
|
273
|
+
label: ( localize(16340, "Try Them Out")),
|
|
274
|
+
run: () => this.commandService.executeCommand("workbench.action.tryNewDefaultThemes")
|
|
275
|
+
}]);
|
|
276
|
+
this._register(Event.once(handle.onDidClose)(() => {
|
|
277
|
+
this.storageService.store(
|
|
278
|
+
WorkbenchThemeService_1.NEW_THEME_NOTIFICATION_KEY,
|
|
279
|
+
true,
|
|
280
|
+
StorageScope.APPLICATION,
|
|
281
|
+
StorageTarget.USER
|
|
282
|
+
);
|
|
283
|
+
}));
|
|
284
|
+
}
|
|
285
|
+
migrateColorThemeSettings() {
|
|
286
|
+
const themeSettings = [
|
|
287
|
+
ThemeSettings.COLOR_THEME,
|
|
288
|
+
ThemeSettings.PREFERRED_DARK_THEME,
|
|
289
|
+
ThemeSettings.PREFERRED_LIGHT_THEME,
|
|
290
|
+
ThemeSettings.PREFERRED_HC_DARK_THEME,
|
|
291
|
+
ThemeSettings.PREFERRED_HC_LIGHT_THEME
|
|
292
|
+
];
|
|
293
|
+
for (const key of themeSettings) {
|
|
294
|
+
const inspection = this.configurationService.inspect(key);
|
|
295
|
+
for (const [target, value] of [
|
|
296
|
+
[ConfigurationTarget.USER, inspection.userValue],
|
|
297
|
+
[ConfigurationTarget.USER_REMOTE, inspection.userRemoteValue],
|
|
298
|
+
[ConfigurationTarget.WORKSPACE, inspection.workspaceValue]
|
|
299
|
+
]) {
|
|
300
|
+
if (value) {
|
|
301
|
+
const migrated = migrateThemeSettingsId(value);
|
|
302
|
+
if (migrated !== value) {
|
|
303
|
+
this.configurationService.updateValue(key, migrated, target);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
async migrateAutoDetectColorScheme() {
|
|
310
|
+
if (!this.storageService.isNew(StorageScope.APPLICATION)) {
|
|
311
|
+
return;
|
|
312
|
+
}
|
|
313
|
+
await this.userDataInitializationService.whenInitializationFinished();
|
|
314
|
+
const inspection = this.configurationService.inspect(ThemeSettings.DETECT_COLOR_SCHEME);
|
|
315
|
+
if (inspection.userValue === undefined && inspection.userLocalValue === undefined && inspection.userRemoteValue === undefined) {
|
|
316
|
+
await this.configurationService.updateValue(ThemeSettings.DETECT_COLOR_SCHEME, true, ConfigurationTarget.USER);
|
|
317
|
+
}
|
|
236
318
|
}
|
|
237
319
|
installConfigurationListener() {
|
|
238
320
|
this._register(this.configurationService.onDidChangeConfiguration(e => {
|
|
@@ -393,7 +475,7 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
393
475
|
return this.applyTheme(themeData, settingsTarget);
|
|
394
476
|
} catch (error) {
|
|
395
477
|
throw ( new Error(( localize(
|
|
396
|
-
|
|
478
|
+
16341,
|
|
397
479
|
"Unable to load {0}: {1}",
|
|
398
480
|
themeData.location?.toString(),
|
|
399
481
|
error.message
|
|
@@ -668,7 +750,7 @@ let WorkbenchThemeService = class WorkbenchThemeService extends Disposable {
|
|
|
668
750
|
}
|
|
669
751
|
}
|
|
670
752
|
};
|
|
671
|
-
WorkbenchThemeService = ( __decorate([( __param(0, IExtensionService)), ( __param(1, IStorageService)), ( __param(2, IConfigurationService)), ( __param(3, ITelemetryService)), ( __param(4, IBrowserWorkbenchEnvironmentService)), ( __param(5, IFileService)), ( __param(6, IExtensionResourceLoaderService)), ( __param(7, IWorkbenchLayoutService)), ( __param(8, ILogService)), ( __param(9, IHostColorSchemeService)), ( __param(10, IUserDataInitializationService)), ( __param(11, ILanguageService))], WorkbenchThemeService));
|
|
753
|
+
WorkbenchThemeService = WorkbenchThemeService_1 = ( __decorate([( __param(0, IExtensionService)), ( __param(1, IStorageService)), ( __param(2, IConfigurationService)), ( __param(3, ITelemetryService)), ( __param(4, IBrowserWorkbenchEnvironmentService)), ( __param(5, IFileService)), ( __param(6, IExtensionResourceLoaderService)), ( __param(7, IWorkbenchLayoutService)), ( __param(8, ILogService)), ( __param(9, IHostColorSchemeService)), ( __param(10, IUserDataInitializationService)), ( __param(11, ILanguageService)), ( __param(12, INotificationService)), ( __param(13, ICommandService))], WorkbenchThemeService));
|
|
672
754
|
class ThemeFileWatcher {
|
|
673
755
|
constructor(fileService, environmentService, onUpdate) {
|
|
674
756
|
this.fileService = fileService;
|
|
@@ -133,31 +133,31 @@ const textmateColorSchema = {
|
|
|
133
133
|
},
|
|
134
134
|
settings: {
|
|
135
135
|
type: "object",
|
|
136
|
-
description: ( localize(
|
|
136
|
+
description: ( localize(16372, "Colors and styles for the token.")),
|
|
137
137
|
properties: {
|
|
138
138
|
foreground: {
|
|
139
139
|
type: "string",
|
|
140
|
-
description: ( localize(
|
|
140
|
+
description: ( localize(16373, "Foreground color for the token.")),
|
|
141
141
|
format: "color-hex",
|
|
142
142
|
default: "#ff0000"
|
|
143
143
|
},
|
|
144
144
|
background: {
|
|
145
145
|
type: "string",
|
|
146
|
-
deprecationMessage: ( localize(
|
|
146
|
+
deprecationMessage: ( localize(16374, "Token background colors are currently not supported."))
|
|
147
147
|
},
|
|
148
148
|
fontStyle: {
|
|
149
149
|
type: "string",
|
|
150
150
|
description: ( localize(
|
|
151
|
-
|
|
151
|
+
16375,
|
|
152
152
|
"Font style of the rule: 'italic', 'bold', 'underline', 'strikethrough' or a combination. The empty string unsets inherited settings."
|
|
153
153
|
)),
|
|
154
154
|
pattern: "^(\\s*\\b(italic|bold|underline|strikethrough))*\\s*$",
|
|
155
155
|
patternErrorMessage: ( localize(
|
|
156
|
-
|
|
156
|
+
16376,
|
|
157
157
|
"Font style must be 'italic', 'bold', 'underline', 'strikethrough' or a combination or the empty string."
|
|
158
158
|
)),
|
|
159
159
|
defaultSnippets: [{
|
|
160
|
-
label: ( localize(
|
|
160
|
+
label: ( localize(16377, "None (clear inherited style)")),
|
|
161
161
|
bodyText: "\"\""
|
|
162
162
|
}, {
|
|
163
163
|
body: "italic"
|
|
@@ -194,21 +194,21 @@ const textmateColorSchema = {
|
|
|
194
194
|
fontFamily: {
|
|
195
195
|
type: "string",
|
|
196
196
|
description: ( localize(
|
|
197
|
-
|
|
197
|
+
16378,
|
|
198
198
|
"Font family for the token (e.g., \"Fira Code\", \"JetBrains Mono\")."
|
|
199
199
|
))
|
|
200
200
|
},
|
|
201
201
|
fontSize: {
|
|
202
202
|
type: "number",
|
|
203
203
|
description: ( localize(
|
|
204
|
-
|
|
204
|
+
16379,
|
|
205
205
|
"Font size multiplier for the token (e.g., 1.2 will use 1.2 times the default font size)."
|
|
206
206
|
))
|
|
207
207
|
},
|
|
208
208
|
lineHeight: {
|
|
209
209
|
type: "number",
|
|
210
210
|
description: ( localize(
|
|
211
|
-
|
|
211
|
+
16380,
|
|
212
212
|
"Line height multiplier for the token (e.g., 1.2 will use 1.2 times the default height). If the font size is set and the line height is not explicitly set, the line height will be computed based on the font size."
|
|
213
213
|
))
|
|
214
214
|
}
|
|
@@ -235,10 +235,10 @@ const textmateColorSchema = {
|
|
|
235
235
|
properties: {
|
|
236
236
|
name: {
|
|
237
237
|
type: "string",
|
|
238
|
-
description: ( localize(
|
|
238
|
+
description: ( localize(16381, "Description of the rule."))
|
|
239
239
|
},
|
|
240
240
|
scope: {
|
|
241
|
-
description: ( localize(
|
|
241
|
+
description: ( localize(16382, "Scope selector against which this rule matches.")),
|
|
242
242
|
anyOf: [{
|
|
243
243
|
enum: textMateScopes
|
|
244
244
|
}, {
|
|
@@ -270,26 +270,26 @@ const colorThemeSchema = {
|
|
|
270
270
|
allowTrailingCommas: true,
|
|
271
271
|
properties: {
|
|
272
272
|
colors: {
|
|
273
|
-
description: ( localize(
|
|
273
|
+
description: ( localize(16383, "Colors in the workbench")),
|
|
274
274
|
$ref: workbenchColorsSchemaId,
|
|
275
275
|
additionalProperties: false
|
|
276
276
|
},
|
|
277
277
|
tokenColors: {
|
|
278
278
|
anyOf: [{
|
|
279
279
|
type: "string",
|
|
280
|
-
description: ( localize(
|
|
280
|
+
description: ( localize(16384, "Path to a tmTheme file (relative to the current file)."))
|
|
281
281
|
}, {
|
|
282
|
-
description: ( localize(
|
|
282
|
+
description: ( localize(16385, "Colors for syntax highlighting")),
|
|
283
283
|
$ref: textmateColorsSchemaId
|
|
284
284
|
}]
|
|
285
285
|
},
|
|
286
286
|
semanticHighlighting: {
|
|
287
287
|
type: "boolean",
|
|
288
|
-
description: ( localize(
|
|
288
|
+
description: ( localize(16386, "Whether semantic highlighting should be enabled for this theme."))
|
|
289
289
|
},
|
|
290
290
|
semanticTokenColors: {
|
|
291
291
|
type: "object",
|
|
292
|
-
description: ( localize(
|
|
292
|
+
description: ( localize(16387, "Colors for semantic tokens")),
|
|
293
293
|
$ref: tokenStylingSchemaId
|
|
294
294
|
}
|
|
295
295
|
}
|
|
@@ -13,113 +13,113 @@ const schema = {
|
|
|
13
13
|
folderExpanded: {
|
|
14
14
|
type: "string",
|
|
15
15
|
description: ( localize(
|
|
16
|
-
|
|
16
|
+
16388,
|
|
17
17
|
"The folder icon for expanded folders. The expanded folder icon is optional. If not set, the icon defined for folder will be shown."
|
|
18
18
|
))
|
|
19
19
|
},
|
|
20
20
|
folder: {
|
|
21
21
|
type: "string",
|
|
22
22
|
description: ( localize(
|
|
23
|
-
|
|
23
|
+
16389,
|
|
24
24
|
"The folder icon for collapsed folders, and if folderExpanded is not set, also for expanded folders."
|
|
25
25
|
))
|
|
26
26
|
},
|
|
27
27
|
file: {
|
|
28
28
|
type: "string",
|
|
29
29
|
description: ( localize(
|
|
30
|
-
|
|
30
|
+
16390,
|
|
31
31
|
"The default file icon, shown for all files that don't match any extension, filename or language id."
|
|
32
32
|
))
|
|
33
33
|
},
|
|
34
34
|
rootFolder: {
|
|
35
35
|
type: "string",
|
|
36
36
|
description: ( localize(
|
|
37
|
-
|
|
37
|
+
16391,
|
|
38
38
|
"The folder icon for collapsed root folders, and if rootFolderExpanded is not set, also for expanded root folders."
|
|
39
39
|
))
|
|
40
40
|
},
|
|
41
41
|
rootFolderExpanded: {
|
|
42
42
|
type: "string",
|
|
43
43
|
description: ( localize(
|
|
44
|
-
|
|
44
|
+
16392,
|
|
45
45
|
"The folder icon for expanded root folders. The expanded root folder icon is optional. If not set, the icon defined for root folder will be shown."
|
|
46
46
|
))
|
|
47
47
|
},
|
|
48
48
|
rootFolderNames: {
|
|
49
49
|
type: "object",
|
|
50
50
|
description: ( localize(
|
|
51
|
-
|
|
51
|
+
16393,
|
|
52
52
|
"Associates root folder names to icons. The object key is the root folder name. No patterns or wildcards are allowed. Root folder name matching is case insensitive."
|
|
53
53
|
)),
|
|
54
54
|
additionalProperties: {
|
|
55
55
|
type: "string",
|
|
56
|
-
description: ( localize(
|
|
56
|
+
description: ( localize(16394, "The ID of the icon definition for the association."))
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
rootFolderNamesExpanded: {
|
|
60
60
|
type: "object",
|
|
61
61
|
description: ( localize(
|
|
62
|
-
|
|
62
|
+
16395,
|
|
63
63
|
"Associates root folder names to icons for expanded root folders. The object key is the root folder name. No patterns or wildcards are allowed. Root folder name matching is case insensitive."
|
|
64
64
|
)),
|
|
65
65
|
additionalProperties: {
|
|
66
66
|
type: "string",
|
|
67
|
-
description: ( localize(
|
|
67
|
+
description: ( localize(16396, "The ID of the icon definition for the association."))
|
|
68
68
|
}
|
|
69
69
|
},
|
|
70
70
|
folderNames: {
|
|
71
71
|
type: "object",
|
|
72
72
|
description: ( localize(
|
|
73
|
-
|
|
73
|
+
16397,
|
|
74
74
|
"Associates folder names to icons. The object key is the folder name, not including any path segments. No patterns or wildcards are allowed. Folder name matching is case insensitive."
|
|
75
75
|
)),
|
|
76
76
|
additionalProperties: {
|
|
77
77
|
type: "string",
|
|
78
|
-
description: ( localize(
|
|
78
|
+
description: ( localize(16394, "The ID of the icon definition for the association."))
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
folderNamesExpanded: {
|
|
82
82
|
type: "object",
|
|
83
83
|
description: ( localize(
|
|
84
|
-
|
|
84
|
+
16398,
|
|
85
85
|
"Associates folder names to icons for expanded folders. The object key is the folder name, not including any path segments. No patterns or wildcards are allowed. Folder name matching is case insensitive."
|
|
86
86
|
)),
|
|
87
87
|
additionalProperties: {
|
|
88
88
|
type: "string",
|
|
89
|
-
description: ( localize(
|
|
89
|
+
description: ( localize(16399, "The ID of the icon definition for the association."))
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
fileExtensions: {
|
|
93
93
|
type: "object",
|
|
94
94
|
description: ( localize(
|
|
95
|
-
|
|
95
|
+
16400,
|
|
96
96
|
"Associates file extensions to icons. The object key is the file extension name. The extension name is the last segment of a file name after the last dot (not including the dot). Extensions are compared case insensitive."
|
|
97
97
|
)),
|
|
98
98
|
additionalProperties: {
|
|
99
99
|
type: "string",
|
|
100
|
-
description: ( localize(
|
|
100
|
+
description: ( localize(16401, "The ID of the icon definition for the association."))
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
fileNames: {
|
|
104
104
|
type: "object",
|
|
105
105
|
description: ( localize(
|
|
106
|
-
|
|
106
|
+
16402,
|
|
107
107
|
"Associates file names to icons. The object key is the full file name, but not including any path segments. File name can include dots and a possible file extension. No patterns or wildcards are allowed. File name matching is case insensitive."
|
|
108
108
|
)),
|
|
109
109
|
additionalProperties: {
|
|
110
110
|
type: "string",
|
|
111
|
-
description: ( localize(
|
|
111
|
+
description: ( localize(16403, "The ID of the icon definition for the association."))
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
languageIds: {
|
|
115
115
|
type: "object",
|
|
116
116
|
description: ( localize(
|
|
117
|
-
|
|
117
|
+
16404,
|
|
118
118
|
"Associates languages to icons. The object key is the language id as defined in the language contribution point."
|
|
119
119
|
)),
|
|
120
120
|
additionalProperties: {
|
|
121
121
|
type: "string",
|
|
122
|
-
description: ( localize(
|
|
122
|
+
description: ( localize(16405, "The ID of the icon definition for the association."))
|
|
123
123
|
}
|
|
124
124
|
},
|
|
125
125
|
associations: {
|
|
@@ -167,29 +167,29 @@ const schema = {
|
|
|
167
167
|
properties: {
|
|
168
168
|
fonts: {
|
|
169
169
|
type: "array",
|
|
170
|
-
description: ( localize(
|
|
170
|
+
description: ( localize(16406, "Fonts that are used in the icon definitions.")),
|
|
171
171
|
items: {
|
|
172
172
|
type: "object",
|
|
173
173
|
properties: {
|
|
174
174
|
id: {
|
|
175
175
|
type: "string",
|
|
176
|
-
description: ( localize(
|
|
176
|
+
description: ( localize(16407, "The ID of the font.")),
|
|
177
177
|
pattern: fontIdRegex.source,
|
|
178
178
|
patternErrorMessage: fontIdErrorMessage
|
|
179
179
|
},
|
|
180
180
|
src: {
|
|
181
181
|
type: "array",
|
|
182
|
-
description: ( localize(
|
|
182
|
+
description: ( localize(16408, "The location of the font.")),
|
|
183
183
|
items: {
|
|
184
184
|
type: "object",
|
|
185
185
|
properties: {
|
|
186
186
|
path: {
|
|
187
187
|
type: "string",
|
|
188
|
-
description: ( localize(
|
|
188
|
+
description: ( localize(16409, "The font path, relative to the current file icon theme file."))
|
|
189
189
|
},
|
|
190
190
|
format: {
|
|
191
191
|
type: "string",
|
|
192
|
-
description: ( localize(
|
|
192
|
+
description: ( localize(16410, "The format of the font.")),
|
|
193
193
|
enum: ["woff", "woff2", "truetype", "opentype", "embedded-opentype", "svg"]
|
|
194
194
|
}
|
|
195
195
|
},
|
|
@@ -199,7 +199,7 @@ const schema = {
|
|
|
199
199
|
weight: {
|
|
200
200
|
type: "string",
|
|
201
201
|
description: ( localize(
|
|
202
|
-
|
|
202
|
+
16411,
|
|
203
203
|
"The weight of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight for valid values."
|
|
204
204
|
)),
|
|
205
205
|
pattern: fontWeightRegex.source
|
|
@@ -207,7 +207,7 @@ const schema = {
|
|
|
207
207
|
style: {
|
|
208
208
|
type: "string",
|
|
209
209
|
description: ( localize(
|
|
210
|
-
|
|
210
|
+
16412,
|
|
211
211
|
"The style of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-style for valid values."
|
|
212
212
|
)),
|
|
213
213
|
pattern: fontStyleRegex.source
|
|
@@ -215,7 +215,7 @@ const schema = {
|
|
|
215
215
|
size: {
|
|
216
216
|
type: "string",
|
|
217
217
|
description: ( localize(
|
|
218
|
-
|
|
218
|
+
16413,
|
|
219
219
|
"The default size of the font. We strongly recommend using a percentage value, for example: 125%."
|
|
220
220
|
)),
|
|
221
221
|
pattern: fontSizeRegex.source
|
|
@@ -227,34 +227,34 @@ const schema = {
|
|
|
227
227
|
iconDefinitions: {
|
|
228
228
|
type: "object",
|
|
229
229
|
description: ( localize(
|
|
230
|
-
|
|
230
|
+
16414,
|
|
231
231
|
"Description of all icons that can be used when associating files to icons."
|
|
232
232
|
)),
|
|
233
233
|
additionalProperties: {
|
|
234
234
|
type: "object",
|
|
235
|
-
description: ( localize(
|
|
235
|
+
description: ( localize(16415, "An icon definition. The object key is the ID of the definition.")),
|
|
236
236
|
properties: {
|
|
237
237
|
iconPath: {
|
|
238
238
|
type: "string",
|
|
239
239
|
description: ( localize(
|
|
240
|
-
|
|
240
|
+
16416,
|
|
241
241
|
"When using a SVG or PNG: The path to the image. The path is relative to the icon set file."
|
|
242
242
|
))
|
|
243
243
|
},
|
|
244
244
|
fontCharacter: {
|
|
245
245
|
type: "string",
|
|
246
|
-
description: ( localize(
|
|
246
|
+
description: ( localize(16417, "When using a glyph font: The character in the font to use."))
|
|
247
247
|
},
|
|
248
248
|
fontColor: {
|
|
249
249
|
type: "string",
|
|
250
250
|
format: "color-hex",
|
|
251
|
-
description: ( localize(
|
|
251
|
+
description: ( localize(16418, "When using a glyph font: The color to use.")),
|
|
252
252
|
pattern: fontColorRegex.source
|
|
253
253
|
},
|
|
254
254
|
fontSize: {
|
|
255
255
|
type: "string",
|
|
256
256
|
description: ( localize(
|
|
257
|
-
|
|
257
|
+
16419,
|
|
258
258
|
"When using a font: The font size in percentage to the text font. If not set, defaults to the size in the font definition."
|
|
259
259
|
)),
|
|
260
260
|
pattern: fontSizeRegex.source
|
|
@@ -262,7 +262,7 @@ const schema = {
|
|
|
262
262
|
fontId: {
|
|
263
263
|
type: "string",
|
|
264
264
|
description: ( localize(
|
|
265
|
-
|
|
265
|
+
16420,
|
|
266
266
|
"When using a font: The id of the font. If not set, defaults to the first font definition."
|
|
267
267
|
)),
|
|
268
268
|
pattern: fontIdRegex.source,
|
|
@@ -309,26 +309,26 @@ const schema = {
|
|
|
309
309
|
},
|
|
310
310
|
light: {
|
|
311
311
|
$ref: "#/definitions/associations",
|
|
312
|
-
description: ( localize(
|
|
312
|
+
description: ( localize(16421, "Optional associations for file icons in light color themes."))
|
|
313
313
|
},
|
|
314
314
|
highContrast: {
|
|
315
315
|
$ref: "#/definitions/associations",
|
|
316
316
|
description: ( localize(
|
|
317
|
-
|
|
317
|
+
16422,
|
|
318
318
|
"Optional associations for file icons in high contrast color themes."
|
|
319
319
|
))
|
|
320
320
|
},
|
|
321
321
|
hidesExplorerArrows: {
|
|
322
322
|
type: "boolean",
|
|
323
323
|
description: ( localize(
|
|
324
|
-
|
|
324
|
+
16423,
|
|
325
325
|
"Configures whether the file explorer's arrows should be hidden when this theme is active."
|
|
326
326
|
))
|
|
327
327
|
},
|
|
328
328
|
showLanguageModeIcons: {
|
|
329
329
|
type: "boolean",
|
|
330
330
|
description: ( localize(
|
|
331
|
-
|
|
331
|
+
16424,
|
|
332
332
|
"Configures whether the default language icons should be used if the theme does not define an icon for a language."
|
|
333
333
|
))
|
|
334
334
|
}
|
|
@@ -17,23 +17,23 @@ const schema = {
|
|
|
17
17
|
properties: {
|
|
18
18
|
id: {
|
|
19
19
|
type: "string",
|
|
20
|
-
description: ( localize(
|
|
20
|
+
description: ( localize(16438, "The ID of the font.")),
|
|
21
21
|
pattern: fontIdRegex.source,
|
|
22
22
|
patternErrorMessage: fontIdErrorMessage
|
|
23
23
|
},
|
|
24
24
|
src: {
|
|
25
25
|
type: "array",
|
|
26
|
-
description: ( localize(
|
|
26
|
+
description: ( localize(16439, "The location of the font.")),
|
|
27
27
|
items: {
|
|
28
28
|
type: "object",
|
|
29
29
|
properties: {
|
|
30
30
|
path: {
|
|
31
31
|
type: "string",
|
|
32
|
-
description: ( localize(
|
|
32
|
+
description: ( localize(16440, "The font path, relative to the current product icon theme file."))
|
|
33
33
|
},
|
|
34
34
|
format: {
|
|
35
35
|
type: "string",
|
|
36
|
-
description: ( localize(
|
|
36
|
+
description: ( localize(16441, "The format of the font.")),
|
|
37
37
|
enum: ["woff", "woff2", "truetype", "opentype", "embedded-opentype", "svg"]
|
|
38
38
|
}
|
|
39
39
|
},
|
|
@@ -43,7 +43,7 @@ const schema = {
|
|
|
43
43
|
weight: {
|
|
44
44
|
type: "string",
|
|
45
45
|
description: ( localize(
|
|
46
|
-
|
|
46
|
+
16442,
|
|
47
47
|
"The weight of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight for valid values."
|
|
48
48
|
)),
|
|
49
49
|
anyOf: [{
|
|
@@ -56,7 +56,7 @@ const schema = {
|
|
|
56
56
|
style: {
|
|
57
57
|
type: "string",
|
|
58
58
|
description: ( localize(
|
|
59
|
-
|
|
59
|
+
16443,
|
|
60
60
|
"The style of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-style for valid values."
|
|
61
61
|
)),
|
|
62
62
|
anyOf: [{
|
|
@@ -71,7 +71,7 @@ const schema = {
|
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
iconDefinitions: {
|
|
74
|
-
description: ( localize(
|
|
74
|
+
description: ( localize(16444, "Association of icon name to a font character.")),
|
|
75
75
|
$ref: iconsSchemaId
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -11,7 +11,9 @@ export declare function updateProductIconThemeConfigurationSchemas(themes: IWork
|
|
|
11
11
|
export declare class ThemeConfiguration {
|
|
12
12
|
private configurationService;
|
|
13
13
|
private hostColorService;
|
|
14
|
-
|
|
14
|
+
private readonly isNewUser;
|
|
15
|
+
constructor(configurationService: IConfigurationService, hostColorService: IHostColorSchemeService, isNewUser?: boolean);
|
|
16
|
+
private shouldAutoDetectColorScheme;
|
|
15
17
|
get colorTheme(): string;
|
|
16
18
|
get fileIconTheme(): string | null;
|
|
17
19
|
get productIconTheme(): string;
|