@codingame/monaco-vscode-theme-service-override 12.0.0 → 13.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/index.d.ts +1 -1
- package/index.js +3 -3
- package/package.json +8 -6
- package/vscode/src/vs/workbench/contrib/themes/browser/themes.contribution.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/themes/browser/themes.contribution.js +56 -56
- package/vscode/src/vs/workbench/services/themes/browser/fileIconThemeData.d.ts +4 -4
- package/vscode/src/vs/workbench/services/themes/browser/fileIconThemeData.js +9 -9
- package/vscode/src/vs/workbench/services/themes/browser/productIconThemeData.d.ts +5 -5
- package/vscode/src/vs/workbench/services/themes/browser/productIconThemeData.js +10 -10
- package/vscode/src/vs/workbench/services/themes/browser/workbenchThemeService.d.ts +15 -15
- package/vscode/src/vs/workbench/services/themes/browser/workbenchThemeService.js +44 -44
- package/vscode/src/vs/workbench/services/themes/common/colorThemeSchema.js +14 -14
- package/vscode/src/vs/workbench/services/themes/common/fileIconThemeSchema.js +4 -4
- package/vscode/src/vs/workbench/services/themes/common/themeConfiguration.d.ts +4 -4
- package/vscode/src/vs/workbench/services/themes/common/themeConfiguration.js +18 -18
- package/vscode/src/vs/workbench/services/themes/common/themeExtensionPoints.d.ts +4 -4
- package/vscode/src/vs/workbench/services/themes/common/themeExtensionPoints.js +10 -10
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IThemeExtensionPoint } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
2
|
-
import type { IEditorOverrideServices } from "vscode/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
2
|
+
import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
3
3
|
type PartialIThemeExtensionPoint = Partial<IThemeExtensionPoint> & Pick<IThemeExtensionPoint, "id" | "path">;
|
|
4
4
|
export default function getServiceOverride(): IEditorOverrideServices;
|
|
5
5
|
export type { PartialIThemeExtensionPoint as IThemeExtensionPoint };
|
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
import { WorkbenchThemeService } from './vscode/src/vs/workbench/services/themes/browser/workbenchThemeService.js';
|
|
3
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
4
|
-
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
5
|
-
import { ConfigurationTarget } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
3
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
4
|
+
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
5
|
+
import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
|
|
6
6
|
import getServiceOverride$1 from '@codingame/monaco-vscode-files-service-override';
|
|
7
7
|
import './vscode/src/vs/workbench/contrib/themes/browser/themes.contribution.js';
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-theme-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - theme service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,12 +15,14 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-
|
|
19
|
-
"@codingame/monaco-vscode-
|
|
20
|
-
"@codingame/monaco-vscode-
|
|
21
|
-
"
|
|
18
|
+
"@codingame/monaco-vscode-1d9dbcb3-6f53-58ad-b0a4-92b1ef1fd6a8-common": "13.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common": "13.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "13.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "13.0.0"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@codingame/monaco-vscode-api": "13.0.0"
|
|
22
25
|
},
|
|
23
|
-
"peerDependencies": {},
|
|
24
26
|
"peerDependenciesMeta": {},
|
|
25
27
|
"main": "index.js",
|
|
26
28
|
"module": "index.js",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ThemeIcon } from "vscode/vscode/vs/base/common/themables";
|
|
1
|
+
import { ThemeIcon } from "@codingame/monaco-vscode-api/vscode/vs/base/common/themables";
|
|
2
2
|
export declare const manageExtensionIcon: ThemeIcon;
|
|
@@ -1,65 +1,65 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { localize, localize2 } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import { KeyChord, KeyMod, KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
5
|
-
import { registerAction2, Action2, MenuId, MenuRegistry } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
6
|
-
import { equalsIgnoreCase } from 'vscode/vscode/vs/base/common/strings';
|
|
7
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
8
|
-
import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
|
+
import { KeyChord, KeyMod, KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
5
|
+
import { registerAction2, Action2, MenuId, MenuRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
6
|
+
import { equalsIgnoreCase } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
7
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
8
|
+
import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
|
|
9
9
|
import { ThemeSettings, ThemeSettingDefaults } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
10
10
|
import { IWorkbenchThemeService } from '@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/workbench/services/themes/common/workbenchThemeService.service';
|
|
11
|
-
import { IExtensionsWorkbenchService } from 'vscode/vscode/vs/workbench/contrib/extensions/common/extensions.service';
|
|
12
|
-
import { IExtensionGalleryService, IExtensionManagementService } from 'vscode/vscode/vs/platform/extensionManagement/common/extensionManagement.service';
|
|
13
|
-
import { Extensions } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
14
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
15
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
16
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
17
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
18
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
19
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
20
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
21
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
22
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
23
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
24
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
25
|
-
import { Color } from 'vscode/vscode/vs/base/common/color';
|
|
26
|
-
import { ColorScheme, isHighContrast } from 'vscode/vscode/vs/platform/theme/common/theme';
|
|
11
|
+
import { IExtensionsWorkbenchService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/extensions/common/extensions.service';
|
|
12
|
+
import { IExtensionGalleryService, IExtensionManagementService } from '@codingame/monaco-vscode-api/vscode/vs/platform/extensionManagement/common/extensionManagement.service';
|
|
13
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
14
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
15
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
16
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
17
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
18
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
19
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
20
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
21
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
22
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
23
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
24
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
25
|
+
import { Color } from '@codingame/monaco-vscode-api/vscode/vs/base/common/color';
|
|
26
|
+
import { ColorScheme, isHighContrast } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/theme';
|
|
27
27
|
import { colorThemeSchemaId } from '../../../services/themes/common/colorThemeSchema.js';
|
|
28
|
-
import { isCancellationError, onUnexpectedError } from 'vscode/vscode/vs/base/common/errors';
|
|
29
|
-
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
28
|
+
import { isCancellationError, onUnexpectedError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
29
|
+
import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
30
30
|
import { DEFAULT_PRODUCT_ICON_THEME_ID, ProductIconThemeData } from '../../../services/themes/browser/productIconThemeData.js';
|
|
31
|
-
import { ThrottledDelayer } from 'vscode/vscode/vs/base/common/async';
|
|
32
|
-
import { CancellationTokenSource } from 'vscode/vscode/vs/base/common/cancellation';
|
|
33
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
34
|
-
import { ProgressLocation } from 'vscode/vscode/vs/platform/progress/common/progress';
|
|
35
|
-
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress.service';
|
|
36
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
37
|
-
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
38
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
39
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
40
|
-
import { IExtensionResourceLoaderService } from 'vscode/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service';
|
|
41
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
42
|
-
import { KeybindingWeight } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
43
|
-
import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
44
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
31
|
+
import { ThrottledDelayer } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
32
|
+
import { CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
33
|
+
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
34
|
+
import { ProgressLocation } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress';
|
|
35
|
+
import { IProgressService } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service';
|
|
36
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
37
|
+
import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
|
|
38
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
39
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
40
|
+
import { IExtensionResourceLoaderService } from '@codingame/monaco-vscode-api/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service';
|
|
41
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
42
|
+
import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
43
|
+
import { CommandsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands';
|
|
44
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
45
45
|
import { FileIconThemeData } from '../../../services/themes/browser/fileIconThemeData.js';
|
|
46
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
47
|
-
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
48
|
-
import { Extensions as Extensions$1 } from 'vscode/vscode/vs/workbench/common/contributions';
|
|
49
|
-
import { LifecyclePhase } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
50
|
-
import 'vscode/vscode/vs/platform/notification/common/notification';
|
|
51
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
52
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
53
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
54
|
-
import { isWeb } from 'vscode/vscode/vs/base/common/platform';
|
|
55
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
56
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
57
|
-
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
58
|
-
import { IPreferencesService } from 'vscode/vscode/vs/workbench/services/preferences/common/preferences.service';
|
|
59
|
-
import { Toggle } from 'vscode/vscode/vs/base/browser/ui/toggle/toggle';
|
|
60
|
-
import { defaultToggleStyles } from 'vscode/vscode/vs/platform/theme/browser/defaultStyles';
|
|
61
|
-
import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
62
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
46
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
47
|
+
import { IDialogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
48
|
+
import { Extensions as Extensions$1 } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
|
|
49
|
+
import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
50
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification';
|
|
51
|
+
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
52
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
53
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
54
|
+
import { isWeb } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
55
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
56
|
+
import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
|
|
57
|
+
import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
|
|
58
|
+
import { IPreferencesService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/preferences/common/preferences.service';
|
|
59
|
+
import { Toggle } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/toggle/toggle';
|
|
60
|
+
import { defaultToggleStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
|
|
61
|
+
import { DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
62
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
63
63
|
|
|
64
64
|
var DefaultThemeUpdatedNotificationContribution_1;
|
|
65
65
|
const manageExtensionIcon = registerIcon('theme-selection-manage-extension', Codicon.gear, ( localize(10321, 'Icon for the \'Manage\' action in the theme selection quick pick.')));
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
1
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
2
2
|
import { ExtensionData, IThemeExtensionPoint, IWorkbenchFileIconTheme } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
3
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
4
|
-
import { IExtensionResourceLoaderService } from "vscode/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
5
|
-
import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language";
|
|
3
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
4
|
+
import { IExtensionResourceLoaderService } from "@codingame/monaco-vscode-api/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
5
|
+
import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language";
|
|
6
6
|
export declare class FileIconThemeData implements IWorkbenchFileIconTheme {
|
|
7
7
|
static readonly STORAGE_KEY = "iconThemeData";
|
|
8
8
|
id: string;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { basename } from 'vscode/vscode/vs/base/common/path';
|
|
4
|
-
import { dirname, joinPath } from 'vscode/vscode/vs/base/common/resources';
|
|
5
|
-
import { parse, getNodeType } from 'vscode/vscode/vs/base/common/json';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
4
|
+
import { dirname, joinPath } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
5
|
+
import { parse, getNodeType } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
|
|
6
6
|
import { ExtensionData } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
7
|
-
import { getParseErrorMessage } from 'vscode/vscode/vs/base/common/jsonErrorMessages';
|
|
8
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
9
|
-
import { fontColorRegex, fontSizeRegex } from 'vscode/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
10
|
-
import { Builder, inline, asCSSUrl, stringValue, identValue, sizeValue, hexColorValue, className } from 'vscode/vscode/vs/base/browser/cssValue';
|
|
11
|
-
import { fileIconSelectorEscape } from 'vscode/vscode/vs/editor/common/services/getIconClasses';
|
|
7
|
+
import { getParseErrorMessage } from '@codingame/monaco-vscode-api/vscode/vs/base/common/jsonErrorMessages';
|
|
8
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
9
|
+
import { fontColorRegex, fontSizeRegex } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
10
|
+
import { Builder, inline, asCSSUrl, stringValue, identValue, sizeValue, hexColorValue, className } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/cssValue';
|
|
11
|
+
import { fileIconSelectorEscape } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/getIconClasses';
|
|
12
12
|
|
|
13
13
|
class FileIconThemeData {
|
|
14
14
|
static { this.STORAGE_KEY = 'iconThemeData'; }
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
1
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
2
2
|
import { ExtensionData, IThemeExtensionPoint, IWorkbenchProductIconTheme } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
3
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
4
|
-
import { ILogService } from "vscode/vscode/vs/platform/log/common/log.service";
|
|
5
|
-
import { IconDefinition, IconContribution } from "vscode/vscode/vs/platform/theme/common/iconRegistry";
|
|
6
|
-
import { IExtensionResourceLoaderService } from "vscode/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
3
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
4
|
+
import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
|
|
5
|
+
import { IconDefinition, IconContribution } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry";
|
|
6
|
+
import { IExtensionResourceLoaderService } from "@codingame/monaco-vscode-api/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
7
7
|
export declare const DEFAULT_PRODUCT_ICON_THEME_ID = "";
|
|
8
8
|
export declare class ProductIconThemeData implements IWorkbenchProductIconTheme {
|
|
9
9
|
static readonly STORAGE_KEY = "productIconThemeData";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { basename } from 'vscode/vscode/vs/base/common/path';
|
|
4
|
-
import { dirname, joinPath } from 'vscode/vscode/vs/base/common/resources';
|
|
5
|
-
import { parse, getNodeType } from 'vscode/vscode/vs/base/common/json';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
4
|
+
import { dirname, joinPath } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
5
|
+
import { parse, getNodeType } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
|
|
6
6
|
import { ThemeSettingDefaults, ExtensionData } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
7
|
-
import { getParseErrorMessage } from 'vscode/vscode/vs/base/common/jsonErrorMessages';
|
|
8
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
9
|
-
import { fontIdRegex, fontWeightRegex, fontStyleRegex, fontFormatRegex } from 'vscode/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
10
|
-
import { isObject, isString } from 'vscode/vscode/vs/base/common/types';
|
|
11
|
-
import { IconFontDefinition, getIconRegistry } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
12
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
7
|
+
import { getParseErrorMessage } from '@codingame/monaco-vscode-api/vscode/vs/base/common/jsonErrorMessages';
|
|
8
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
9
|
+
import { fontIdRegex, fontWeightRegex, fontStyleRegex, fontFormatRegex } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
10
|
+
import { isObject, isString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
11
|
+
import { IconFontDefinition, getIconRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
|
|
12
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
13
13
|
|
|
14
14
|
const DEFAULT_PRODUCT_ICON_THEME_ID = '';
|
|
15
15
|
class ProductIconThemeData {
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
1
|
+
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
2
2
|
import { IWorkbenchColorTheme, IWorkbenchFileIconTheme, IWorkbenchProductIconTheme, ThemeSettingTarget } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
3
3
|
import { IWorkbenchThemeService } from "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/workbench/services/themes/common/workbenchThemeService.service";
|
|
4
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
5
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
6
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
7
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
8
|
-
import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
4
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
5
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
6
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
7
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
8
|
+
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
9
9
|
import { FileIconThemeData } from "./fileIconThemeData.js";
|
|
10
|
-
import { IBrowserWorkbenchEnvironmentService } from "vscode/vscode/vs/workbench/services/environment/browser/environmentService.service";
|
|
11
|
-
import { IFileService } from "vscode/vscode/vs/platform/files/common/files.service";
|
|
12
|
-
import { IWorkbenchLayoutService } from "vscode/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
13
|
-
import { IExtensionResourceLoaderService } from "vscode/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
10
|
+
import { IBrowserWorkbenchEnvironmentService } from "@codingame/monaco-vscode-1d9dbcb3-6f53-58ad-b0a4-92b1ef1fd6a8-common/vscode/vs/workbench/services/environment/browser/environmentService.service";
|
|
11
|
+
import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
|
|
12
|
+
import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
13
|
+
import { IExtensionResourceLoaderService } from "@codingame/monaco-vscode-api/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service";
|
|
14
14
|
import { ProductIconThemeData } from "./productIconThemeData.js";
|
|
15
|
-
import { ILogService } from "vscode/vscode/vs/platform/log/common/log.service";
|
|
16
|
-
import { ColorScheme } from "vscode/vscode/vs/platform/theme/common/theme";
|
|
17
|
-
import { IHostColorSchemeService } from "vscode/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service";
|
|
18
|
-
import { IUserDataInitializationService } from "vscode/vscode/vs/workbench/services/userData/browser/userDataInit.service";
|
|
19
|
-
import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language";
|
|
15
|
+
import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
|
|
16
|
+
import { ColorScheme } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/theme";
|
|
17
|
+
import { IHostColorSchemeService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service";
|
|
18
|
+
import { IUserDataInitializationService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/userData/browser/userDataInit.service";
|
|
19
|
+
import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language";
|
|
20
20
|
export declare class WorkbenchThemeService extends Disposable implements IWorkbenchThemeService {
|
|
21
21
|
private readonly storageService;
|
|
22
22
|
private readonly configurationService;
|
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import { isUndefined, isString } from 'vscode/vscode/vs/base/common/types';
|
|
5
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
|
+
import { isUndefined, isString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
5
|
+
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
6
6
|
import { VS_HC_LIGHT_THEME, VS_HC_THEME, VS_DARK_THEME, VS_LIGHT_THEME, ThemeSettingDefaults, COLOR_THEME_LIGHT_INITIAL_COLORS, COLOR_THEME_DARK_INITIAL_COLORS, ThemeSettings, ExtensionData } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
7
|
-
import 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
9
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
10
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
11
|
-
import { onUnexpectedError } from 'vscode/vscode/vs/base/common/errors';
|
|
12
|
-
import { ConfigurationTarget } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
13
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
7
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
9
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
10
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
11
|
+
import { onUnexpectedError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
12
|
+
import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
|
|
13
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
14
|
import { ColorThemeData } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/colorThemeData';
|
|
15
|
-
import { Extensions } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
16
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
15
|
+
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
17
|
import { registerFileIconThemeSchemas } from '../common/fileIconThemeSchema.js';
|
|
18
|
-
import { Disposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
18
|
+
import { Disposable, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
19
19
|
import { FileIconThemeData, FileIconThemeLoader } from './fileIconThemeData.js';
|
|
20
|
-
import { createStyleSheet } from 'vscode/vscode/vs/base/browser/domStylesheets';
|
|
21
|
-
import { IBrowserWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/browser/environmentService.service';
|
|
22
|
-
import { FileChangeType } from 'vscode/vscode/vs/platform/files/common/files';
|
|
23
|
-
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
|
|
24
|
-
import { joinPath, isEqual } from 'vscode/vscode/vs/base/common/resources';
|
|
20
|
+
import { createStyleSheet } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/domStylesheets';
|
|
21
|
+
import { IBrowserWorkbenchEnvironmentService } from '@codingame/monaco-vscode-1d9dbcb3-6f53-58ad-b0a4-92b1ef1fd6a8-common/vscode/vs/workbench/services/environment/browser/environmentService.service';
|
|
22
|
+
import { FileChangeType } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
|
|
23
|
+
import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
|
|
24
|
+
import { joinPath, isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
25
25
|
import { registerColorThemeSchemas } from '../common/colorThemeSchema.js';
|
|
26
|
-
import 'vscode/vscode/vs/platform/instantiation/common/extensions';
|
|
27
|
-
import { getRemoteAuthority } from 'vscode/vscode/vs/platform/remote/common/remoteHosts';
|
|
28
|
-
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
29
|
-
import { IExtensionResourceLoaderService } from 'vscode/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service';
|
|
26
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
|
|
27
|
+
import { getRemoteAuthority } from '@codingame/monaco-vscode-api/vscode/vs/platform/remote/common/remoteHosts';
|
|
28
|
+
import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
29
|
+
import { IExtensionResourceLoaderService } from '@codingame/monaco-vscode-api/vscode/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service';
|
|
30
30
|
import { registerColorThemeExtensionPoint, registerFileIconThemeExtensionPoint, registerProductIconThemeExtensionPoint, ThemeRegistry } from '../common/themeExtensionPoints.js';
|
|
31
31
|
import { ThemeConfiguration, updateColorThemeConfigurationSchemas, updateFileIconThemeConfigurationSchemas, updateProductIconThemeConfigurationSchemas } from '../common/themeConfiguration.js';
|
|
32
32
|
import { ProductIconThemeData, DEFAULT_PRODUCT_ICON_THEME_ID } from './productIconThemeData.js';
|
|
33
|
-
import { registerProductIconThemeSchemas } from 'vscode/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
34
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
35
|
-
import { isWeb } from 'vscode/vscode/vs/base/common/platform';
|
|
36
|
-
import { ColorScheme } from 'vscode/vscode/vs/platform/theme/common/theme';
|
|
37
|
-
import { IHostColorSchemeService } from 'vscode/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service';
|
|
38
|
-
import { Sequencer, RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
39
|
-
import { IUserDataInitializationService } from 'vscode/vscode/vs/workbench/services/userData/browser/userDataInit.service';
|
|
40
|
-
import { getIconsStyleSheet } from 'vscode/vscode/vs/platform/theme/browser/iconsStyleSheet';
|
|
41
|
-
import { getColorRegistry, asCssVariableName } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
42
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
43
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
44
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
45
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
46
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
47
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
48
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
49
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
50
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
51
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
52
|
-
import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
|
|
53
|
-
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
33
|
+
import { registerProductIconThemeSchemas } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
34
|
+
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
35
|
+
import { isWeb } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
36
|
+
import { ColorScheme } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/theme';
|
|
37
|
+
import { IHostColorSchemeService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service';
|
|
38
|
+
import { Sequencer, RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
39
|
+
import { IUserDataInitializationService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/userData/browser/userDataInit.service';
|
|
40
|
+
import { getIconsStyleSheet } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/iconsStyleSheet';
|
|
41
|
+
import { getColorRegistry, asCssVariableName } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
42
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
43
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
44
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
45
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
46
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
47
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
48
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
49
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
50
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
51
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
52
|
+
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
|
|
53
|
+
import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
|
|
54
54
|
|
|
55
55
|
const defaultThemeExtensionId = 'vscode-theme-defaults';
|
|
56
56
|
const DEFAULT_FILE_ICON_THEME_ID = 'vscode.vscode-theme-seti-vs-seti';
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
4
|
-
import { Extensions } from 'vscode/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
5
|
-
import { workbenchColorsSchemaId } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
6
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
7
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
8
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
9
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
10
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
11
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
12
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
13
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
14
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
15
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
4
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
5
|
+
import { workbenchColorsSchemaId } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
6
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
7
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
8
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
9
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
10
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
11
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
12
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
13
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
14
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
15
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
16
16
|
import { tokenStylingSchemaId } from '@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/platform/theme/common/tokenClassificationRegistry';
|
|
17
17
|
|
|
18
18
|
const textMateScopes = [
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
4
|
-
import { Extensions } from 'vscode/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
5
|
-
import { fontIdRegex, fontWeightRegex, fontStyleRegex, fontSizeRegex, fontCharacterRegex, fontColorRegex } from 'vscode/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
4
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
5
|
+
import { fontIdRegex, fontWeightRegex, fontStyleRegex, fontSizeRegex, fontCharacterRegex, fontColorRegex } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/productIconThemeSchema';
|
|
6
6
|
|
|
7
7
|
const schemaId = 'vscode://schemas/icon-theme';
|
|
8
8
|
const schema = {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ThemeSettings, IWorkbenchColorTheme, IWorkbenchFileIconTheme, IColorCustomizations, ITokenColorCustomizations, IWorkbenchProductIconTheme, ISemanticTokenColorCustomizations, ThemeSettingTarget } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
2
|
-
import { ConfigurationTarget } from "vscode/vscode/vs/platform/configuration/common/configuration";
|
|
3
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
-
import { ColorScheme } from "vscode/vscode/vs/platform/theme/common/theme";
|
|
5
|
-
import { IHostColorSchemeService } from "vscode/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service";
|
|
2
|
+
import { ConfigurationTarget } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration";
|
|
3
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
+
import { ColorScheme } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/theme";
|
|
5
|
+
import { IHostColorSchemeService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/themes/common/hostColorSchemeService.service";
|
|
6
6
|
export declare function formatSettingAsLink(str: string): string;
|
|
7
7
|
export declare const COLOR_THEME_CONFIGURATION_SETTINGS_TAG = "colorThemeConfiguration";
|
|
8
8
|
export declare function updateColorThemeConfigurationSchemas(themes: IWorkbenchColorTheme[]): void;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { isUndefined } from 'vscode/vscode/vs/base/common/types';
|
|
4
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
5
|
-
import { Extensions, ConfigurationScope } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { isUndefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
4
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
5
|
+
import { Extensions, ConfigurationScope } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
|
|
6
6
|
import { textmateColorGroupSchemaId, textmateColorsSchemaId } from './colorThemeSchema.js';
|
|
7
|
-
import { workbenchColorsSchemaId } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
8
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
9
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
10
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
11
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
12
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
13
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
14
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
15
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
16
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
17
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
7
|
+
import { workbenchColorsSchemaId } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
8
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
9
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
10
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
11
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
12
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
13
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
14
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
15
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
16
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
17
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
18
18
|
import { tokenStylingSchemaId } from '@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/platform/theme/common/tokenClassificationRegistry';
|
|
19
19
|
import { ThemeSettings, ThemeSettingDefaults } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
20
|
-
import { ConfigurationTarget } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
21
|
-
import { isWeb } from 'vscode/vscode/vs/base/common/platform';
|
|
22
|
-
import { ColorScheme } from 'vscode/vscode/vs/platform/theme/common/theme';
|
|
20
|
+
import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
|
|
21
|
+
import { isWeb } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
22
|
+
import { ColorScheme } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/theme';
|
|
23
23
|
|
|
24
24
|
const configurationRegistry = ( Registry.as(Extensions.Configuration));
|
|
25
25
|
const colorThemeSettingEnum = [];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { IExtensionPoint } from "vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry";
|
|
1
|
+
import { IExtensionPoint } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry";
|
|
2
2
|
import { ExtensionData, IThemeExtensionPoint } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
|
|
3
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
4
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
5
|
-
import { IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
3
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
4
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
5
|
+
import { IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
6
6
|
export declare function registerColorThemeExtensionPoint(): IExtensionPoint<IThemeExtensionPoint[]>;
|
|
7
7
|
export declare function registerFileIconThemeExtensionPoint(): IExtensionPoint<IThemeExtensionPoint[]>;
|
|
8
8
|
export declare function registerProductIconThemeExtensionPoint(): IExtensionPoint<IThemeExtensionPoint[]>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import { isString } from 'vscode/vscode/vs/base/common/types';
|
|
4
|
-
import { joinPath, isEqualOrParent } from 'vscode/vscode/vs/base/common/resources';
|
|
5
|
-
import { ExtensionsRegistry } from 'vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
|
|
2
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
3
|
+
import { isString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
4
|
+
import { joinPath, isEqualOrParent } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
5
|
+
import { ExtensionsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
|
|
6
6
|
import { VS_DARK_THEME, VS_LIGHT_THEME, VS_HC_THEME, VS_HC_LIGHT_THEME, ExtensionData } from '@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
7
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
8
|
-
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
9
|
-
import { Extensions } from 'vscode/vscode/vs/workbench/services/extensionManagement/common/extensionFeatures';
|
|
10
|
-
import { MarkdownString } from 'vscode/vscode/vs/base/common/htmlContent';
|
|
11
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
12
|
-
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
7
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
8
|
+
import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
9
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensionManagement/common/extensionFeatures';
|
|
10
|
+
import { MarkdownString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/htmlContent';
|
|
11
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
12
|
+
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
13
13
|
|
|
14
14
|
function registerColorThemeExtensionPoint() {
|
|
15
15
|
return ExtensionsRegistry.registerExtensionPoint({
|