@codingame/monaco-vscode-walkthrough-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.
Files changed (45) hide show
  1. package/index.d.ts +1 -1
  2. package/index.js +3 -3
  3. package/package.json +14 -13
  4. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.d.ts +1 -1
  5. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +28 -28
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +29 -29
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +59 -59
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.d.ts +4 -4
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +14 -14
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +12 -12
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.d.ts +5 -5
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.js +14 -14
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.d.ts +2 -2
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +2 -2
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.d.ts +2 -2
  16. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.d.ts +4 -4
  18. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +4 -4
  19. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedList.d.ts +4 -4
  20. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedList.js +5 -5
  21. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +5 -5
  22. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.d.ts +20 -20
  23. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +31 -31
  24. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css.js +1 -1
  25. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.d.ts +17 -17
  26. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +27 -27
  27. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts +2 -2
  28. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +6 -6
  29. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +2 -2
  30. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +2 -2
  31. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.d.ts +5 -5
  32. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +6 -6
  33. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.d.ts +1 -1
  34. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.js +2 -2
  35. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/media/walkThroughPart.css.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +7 -7
  37. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.d.ts +1 -1
  38. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.js +5 -5
  39. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.d.ts +7 -7
  40. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +7 -7
  41. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +18 -18
  42. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +29 -29
  43. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.d.ts +7 -7
  44. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +10 -10
  45. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +13 -13
package/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import type { IEditorOverrideServices } from "vscode/vscode/vs/editor/standalone/browser/standaloneServices";
1
+ import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
2
2
  export default function getServiceOverride(): IEditorOverrideServices;
package/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
 
2
- import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
2
+ import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
3
3
  import { WalkthroughsService } from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js';
4
- import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
4
+ import { IWalkthroughsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
5
5
  import './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js';
6
6
  import './vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js';
7
7
  import svgAssets from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/all.svg.js';
8
8
  import pngAssets from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/all.png.js';
9
- import { registerAssets } from 'vscode/assets';
9
+ import { registerAssets } from '@codingame/monaco-vscode-api/assets';
10
10
 
11
11
  registerAssets(svgAssets);
12
12
  registerAssets(pngAssets);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-walkthrough-service-override",
3
- "version": "12.0.0",
3
+ "version": "13.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - walkthrough service-override",
6
6
  "keywords": [],
@@ -15,19 +15,20 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common": "12.0.0",
19
- "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "12.0.0",
20
- "@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common": "12.0.0",
21
- "@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": "12.0.0",
22
- "@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "12.0.0",
23
- "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "12.0.0",
24
- "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "12.0.0",
25
- "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "12.0.0",
26
- "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "12.0.0",
27
- "marked": "12.0.0",
28
- "vscode": "npm:@codingame/monaco-vscode-api@12.0.0"
18
+ "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common": "13.0.0",
19
+ "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "13.0.0",
20
+ "@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common": "13.0.0",
21
+ "@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": "13.0.0",
22
+ "@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "13.0.0",
23
+ "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "13.0.0",
24
+ "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.0.0",
25
+ "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.0.0",
26
+ "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "13.0.0",
27
+ "marked": "14.0.0"
28
+ },
29
+ "peerDependencies": {
30
+ "@codingame/monaco-vscode-api": "13.0.0"
29
31
  },
30
- "peerDependencies": {},
31
32
  "peerDependenciesMeta": {},
32
33
  "main": "index.js",
33
34
  "module": "index.js",
@@ -1,3 +1,3 @@
1
- import { RawContextKey } from "vscode/vscode/vs/platform/contextkey/common/contextkey";
1
+ import { RawContextKey } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey";
2
2
  export * as icons from "./gettingStartedIcons.js";
3
3
  export declare const WorkspacePlatform: RawContextKey<"linux" | "mac" | "windows" | "webworker" | undefined>;
@@ -1,37 +1,37 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { localize2, localize } from 'vscode/vscode/vs/nls';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { localize2, localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
4
  import { GettingStartedInputSerializer, GettingStartedPage, inWelcomeContext } from './gettingStarted.js';
5
- import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
6
- import { EditorExtensions } from 'vscode/vscode/vs/workbench/common/editor';
7
- import { registerAction2, Action2, MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
8
- import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
9
- import { ContextKeyExpr, RawContextKey } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
10
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
11
- import { SIDE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
12
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
13
- import { KeybindingWeight } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
14
- import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
5
+ import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
6
+ import { EditorExtensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
7
+ import { registerAction2, Action2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
8
+ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
9
+ import { ContextKeyExpr, RawContextKey } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
10
+ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
11
+ import { SIDE_GROUP } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService';
12
+ import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
13
+ import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
14
+ import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
15
15
  import { EditorPaneDescriptor } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/editor';
16
- import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
17
- import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
16
+ import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
17
+ import { IWalkthroughsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
18
18
  import { GettingStartedInput } from './gettingStartedInput.js';
19
- import { registerWorkbenchContribution2, WorkbenchPhase } from 'vscode/vscode/vs/workbench/common/contributions';
20
- import { Extensions, ConfigurationScope } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
21
- import { workbenchConfigurationNodeBase } from 'vscode/vscode/vs/workbench/common/configuration';
22
- import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
23
- import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
24
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
25
- import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
26
- import { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService.service';
27
- import { OperatingSystem, isMacintosh, isLinux, isWindows } from 'vscode/vscode/vs/base/common/platform';
28
- import { IExtensionManagementServerService } from 'vscode/vscode/vs/workbench/services/extensionManagement/common/extensionManagement.service';
29
- import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
19
+ import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
20
+ import { Extensions, ConfigurationScope } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
21
+ import { workbenchConfigurationNodeBase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/configuration';
22
+ import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
23
+ import { CommandsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands';
24
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
25
+ import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
26
+ import { IRemoteAgentService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/remote/common/remoteAgentService.service';
27
+ import { OperatingSystem, isMacintosh, isLinux, isWindows } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
28
+ import { IExtensionManagementServerService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensionManagement/common/extensionManagement.service';
29
+ import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
30
30
  import { StartupPageEditorResolverContribution, StartupPageRunnerContribution } from './startupPage.js';
31
31
  import { ExtensionsInput } from '@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common/vscode/vs/workbench/contrib/extensions/common/extensionsInput';
32
- import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
33
- import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
34
- import { AccessibleViewRegistry } from 'vscode/vscode/vs/platform/accessibility/browser/accessibleViewRegistry';
32
+ import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
33
+ import { DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
34
+ import { AccessibleViewRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry';
35
35
  import { GettingStartedAccessibleView } from './gettingStartedAccessibleView.js';
36
36
  import './gettingStartedService._contribution.js';
37
37
  import './gettingStartedIcons.js';
@@ -1,34 +1,34 @@
1
- import { Dimension } from "vscode/vscode/vs/base/browser/dom";
2
- import { CancellationToken } from "vscode/vscode/vs/base/common/cancellation";
3
- import { ThemeIcon } from "vscode/vscode/vs/base/common/themables";
4
- import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language";
5
- import { IAccessibilityService } from "vscode/vscode/vs/platform/accessibility/common/accessibility.service";
6
- import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
7
- import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
8
- import { ContextKeyExpression, RawContextKey } from "vscode/vscode/vs/platform/contextkey/common/contextkey";
9
- import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
10
- import { IEditorOptions } from "vscode/vscode/vs/platform/editor/common/editor";
11
- import { IFileService } from "vscode/vscode/vs/platform/files/common/files.service";
12
- import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
13
- import { IKeybindingService } from "vscode/vscode/vs/platform/keybinding/common/keybinding.service";
14
- import { ILabelService } from "vscode/vscode/vs/platform/label/common/label.service";
15
- import { INotificationService } from "vscode/vscode/vs/platform/notification/common/notification.service";
16
- import { IOpenerService } from "vscode/vscode/vs/platform/opener/common/opener.service";
17
- import { IProductService } from "vscode/vscode/vs/platform/product/common/productService.service";
18
- import { IQuickInputService } from "vscode/vscode/vs/platform/quickinput/common/quickInput.service";
19
- import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
20
- import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
21
- import { IWorkspaceContextService } from "vscode/vscode/vs/platform/workspace/common/workspace.service";
22
- import { IWorkspacesService } from "vscode/vscode/vs/platform/workspaces/common/workspaces.service";
1
+ import { Dimension } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/dom";
2
+ import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation";
3
+ import { ThemeIcon } from "@codingame/monaco-vscode-api/vscode/vs/base/common/themables";
4
+ import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language";
5
+ import { IAccessibilityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service";
6
+ import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
7
+ import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
8
+ import { ContextKeyExpression, RawContextKey } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey";
9
+ import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
10
+ import { IEditorOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor";
11
+ import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
12
+ import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
13
+ import { IKeybindingService } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service";
14
+ import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service";
15
+ import { INotificationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service";
16
+ import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
17
+ import { IProductService } from "@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service";
18
+ import { IQuickInputService } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service";
19
+ import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
20
+ import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
21
+ import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
22
+ import { IWorkspacesService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspaces/common/workspaces.service";
23
23
  import { EditorPane } from "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/editor/editorPane";
24
- import { IEditorOpenContext, IEditorSerializer } from "vscode/vscode/vs/workbench/common/editor";
25
- import { IWebviewService } from "vscode/vscode/vs/workbench/contrib/webview/browser/webview.service";
24
+ import { IEditorOpenContext, IEditorSerializer } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor";
25
+ import { IWebviewService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/webview/browser/webview.service";
26
26
  import { GettingStartedInput } from "./gettingStartedInput.js";
27
- import { IWalkthroughsService } from "vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service";
28
- import { IEditorGroup } from "vscode/vscode/vs/workbench/services/editor/common/editorGroupsService";
29
- import { IEditorGroupsService } from "vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
30
- import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
31
- import { IHostService } from "vscode/vscode/vs/workbench/services/host/browser/host.service";
27
+ import { IWalkthroughsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service";
28
+ import { IEditorGroup } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
29
+ import { IEditorGroupsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
30
+ import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
31
+ import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
32
32
  import { IWorkbenchThemeService } from "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/workbench/services/themes/common/workbenchThemeService.service";
33
33
  export declare const allWalkthroughsHiddenContext: RawContextKey<boolean>;
34
34
  export declare const inWelcomeContext: RawContextKey<boolean>;
@@ -1,78 +1,78 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { $, addDisposableListener, clearNode, reset, append } from 'vscode/vscode/vs/base/browser/dom';
4
- import { renderFormattedText } from 'vscode/vscode/vs/base/browser/formattedTextRenderer';
5
- import { StandardKeyboardEvent } from 'vscode/vscode/vs/base/browser/keyboardEvent';
6
- import { Button } from 'vscode/vscode/vs/base/browser/ui/button/button';
7
- import { renderLabelWithIcons } from 'vscode/vscode/vs/base/browser/ui/iconLabel/iconLabels';
8
- import { DomScrollableElement } from 'vscode/vscode/vs/base/browser/ui/scrollbar/scrollableElement';
9
- import { Toggle } from 'vscode/vscode/vs/base/browser/ui/toggle/toggle';
10
- import { equals, coalesce } from 'vscode/vscode/vs/base/common/arrays';
11
- import { Throttler, Delayer } from 'vscode/vscode/vs/base/common/async';
12
- import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
13
- import { onUnexpectedError } from 'vscode/vscode/vs/base/common/errors';
14
- import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
15
- import { splitRecentLabel } from 'vscode/vscode/vs/base/common/labels';
16
- import { DisposableStore, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
17
- import { parse } from 'vscode/vscode/vs/base/common/marshalling';
18
- import { matchesScheme, Schemas } from 'vscode/vscode/vs/base/common/network';
19
- import { isMacintosh, OS } from 'vscode/vscode/vs/base/common/platform';
20
- import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
21
- import { assertIsDefined } from 'vscode/vscode/vs/base/common/types';
22
- import { URI } from 'vscode/vscode/vs/base/common/uri';
23
- import { generateUuid } from 'vscode/vscode/vs/base/common/uuid';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { $, addDisposableListener, clearNode, reset, append } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
4
+ import { renderFormattedText } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/formattedTextRenderer';
5
+ import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
6
+ import { Button } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/button/button';
7
+ import { renderLabelWithIcons } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/iconLabel/iconLabels';
8
+ import { DomScrollableElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/scrollbar/scrollableElement';
9
+ import { Toggle } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/toggle/toggle';
10
+ import { equals, coalesce } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
11
+ import { Throttler, Delayer } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
12
+ import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
13
+ import { onUnexpectedError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
14
+ import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
15
+ import { splitRecentLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/common/labels';
16
+ import { DisposableStore, toDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
17
+ import { parse } from '@codingame/monaco-vscode-api/vscode/vs/base/common/marshalling';
18
+ import { matchesScheme, Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
19
+ import { isMacintosh, OS } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
20
+ import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
21
+ import { assertIsDefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
22
+ import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
23
+ import { generateUuid } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uuid';
24
24
  import './media/gettingStarted.css.js';
25
- import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
26
- import { MarkdownRenderer } from 'vscode/vscode/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer';
27
- import { localize } from 'vscode/vscode/vs/nls';
28
- import { IAccessibilityService } from 'vscode/vscode/vs/platform/accessibility/common/accessibility.service';
29
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
30
- import { ConfigurationTarget } from 'vscode/vscode/vs/platform/configuration/common/configuration';
31
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
32
- import { RawContextKey, ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
33
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
34
- import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
35
- import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
36
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
25
+ import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
26
+ import { MarkdownRenderer } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer';
27
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
28
+ import { IAccessibilityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service';
29
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
30
+ import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
31
+ import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
32
+ import { RawContextKey, ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
33
+ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
34
+ import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
35
+ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
36
+ import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
37
37
  import { Verbosity } from '@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common/vscode/vs/platform/label/common/label';
38
- import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
39
- import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
40
- import { Link } from 'vscode/vscode/vs/platform/opener/browser/link';
41
- import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
42
- import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService.service';
43
- import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
44
- import { WillSaveStateReason, StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
45
- import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
46
- import { firstSessionDateStorageKey, TelemetryLevel } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
47
- import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
48
- import { getTelemetryLevel } from 'vscode/vscode/vs/platform/telemetry/common/telemetryUtils';
49
- import { defaultToggleStyles, defaultButtonStyles, defaultKeybindingLabelStyles } from 'vscode/vscode/vs/platform/theme/browser/defaultStyles';
50
- import { UNKNOWN_EMPTY_WINDOW_WORKSPACE } from 'vscode/vscode/vs/platform/workspace/common/workspace';
51
- import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
38
+ import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
39
+ import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
40
+ import { Link } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/browser/link';
41
+ import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
42
+ import { IProductService } from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service';
43
+ import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
44
+ import { WillSaveStateReason, StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
45
+ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
46
+ import { firstSessionDateStorageKey, TelemetryLevel } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry';
47
+ import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
48
+ import { getTelemetryLevel } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetryUtils';
49
+ import { defaultToggleStyles, defaultButtonStyles, defaultKeybindingLabelStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
50
+ import { UNKNOWN_EMPTY_WINDOW_WORKSPACE } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
51
+ import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
52
52
  import { isRecentFolder, isRecentWorkspace } from '@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common/vscode/vs/platform/workspaces/common/workspaces';
53
- import { IWorkspacesService } from 'vscode/vscode/vs/platform/workspaces/common/workspaces.service';
53
+ import { IWorkspacesService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspaces/common/workspaces.service';
54
54
  import { OpenRecentAction } from '@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common/vscode/vs/workbench/browser/actions/windowActions';
55
55
  import { OpenFolderViaWorkspaceAction, OpenFileFolderAction, OpenFolderAction } from '@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common/vscode/vs/workbench/browser/actions/workspaceActions';
56
56
  import { EditorPane } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/editor/editorPane';
57
- import { WorkbenchStateContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
58
- import { IWebviewService } from 'vscode/vscode/vs/workbench/contrib/webview/browser/webview.service';
57
+ import { WorkbenchStateContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
58
+ import { IWebviewService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/webview/browser/webview.service';
59
59
  import './gettingStartedColors.js';
60
60
  import { GettingStartedDetailsRenderer } from './gettingStartedDetailsRenderer.js';
61
61
  import { gettingStartedUncheckedCodicon, gettingStartedCheckedCodicon } from './gettingStartedIcons.js';
62
62
  import { GettingStartedInput } from './gettingStartedInput.js';
63
63
  import { hiddenEntriesConfigurationKey, parseDescription } from './gettingStartedService.js';
64
- import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
64
+ import { IWalkthroughsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
65
65
  import { restoreWalkthroughsConfigurationKey } from './startupPage.js';
66
66
  import { startEntries } from '../common/gettingStartedContent.js';
67
- import { GroupDirection, GroupsOrder } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
68
- import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
69
- import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
70
- import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
67
+ import { GroupDirection, GroupsOrder } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService';
68
+ import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
69
+ import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
70
+ import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
71
71
  import { IWorkbenchThemeService } from '@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/workbench/services/themes/common/workbenchThemeService.service';
72
72
  import { GettingStartedIndexList } from './gettingStartedList.js';
73
- import { AccessibilityVerbositySettingId } from 'vscode/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
74
- import { AccessibleViewAction } from 'vscode/vscode/vs/workbench/contrib/accessibility/browser/accessibleViewActions';
75
- import { KeybindingLabel } from 'vscode/vscode/vs/base/browser/ui/keybindingLabel/keybindingLabel';
73
+ import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
74
+ import { AccessibleViewAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibleViewActions';
75
+ import { KeybindingLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/keybindingLabel/keybindingLabel';
76
76
 
77
77
  var GettingStartedPage_1;
78
78
  const SLIDE_TRANSITION_TIME_MS = 250;
@@ -1,10 +1,10 @@
1
- import { AccessibleViewType, AccessibleContentProvider, ExtensionContentProvider } from "vscode/vscode/vs/platform/accessibility/browser/accessibleView";
2
- import { IAccessibleViewImplentation } from "vscode/vscode/vs/platform/accessibility/browser/accessibleViewRegistry";
3
- import { ServicesAccessor } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
1
+ import { AccessibleViewType, AccessibleContentProvider, ExtensionContentProvider } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView";
2
+ import { IAccessibleViewImplentation } from "@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry";
3
+ import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
4
4
  export declare class GettingStartedAccessibleView implements IAccessibleViewImplentation {
5
5
  readonly type = AccessibleViewType.View;
6
6
  readonly priority = 110;
7
7
  readonly name = "walkthroughs";
8
- readonly when: import("vscode/vscode/vs/platform/contextkey/common/contextkey").RawContextKey<boolean>;
8
+ readonly when: import("@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey").RawContextKey<boolean>;
9
9
  getProvider: (accessor: ServicesAccessor) => AccessibleContentProvider | ExtensionContentProvider | undefined;
10
10
  }
@@ -1,20 +1,20 @@
1
1
 
2
- import { AccessibleViewType, AccessibleViewProviderId } from 'vscode/vscode/vs/platform/accessibility/browser/accessibleView';
3
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
2
+ import { AccessibleViewType, AccessibleViewProviderId } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView';
3
+ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
4
4
  import { inWelcomeContext, GettingStartedPage } from './gettingStarted.js';
5
- import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
6
- import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
7
- import { AccessibilityVerbositySettingId } from 'vscode/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
8
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
5
+ import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
6
+ import { IWalkthroughsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
7
+ import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
8
+ import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
9
9
  import { GettingStartedInput } from './gettingStartedInput.js';
10
- import { localize } from 'vscode/vscode/vs/nls';
11
- import { Action } from 'vscode/vscode/vs/base/common/actions';
12
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
13
- import { URI } from 'vscode/vscode/vs/base/common/uri';
14
- import { parse } from 'vscode/vscode/vs/base/common/marshalling';
15
- import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
16
- import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
17
- import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
10
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
11
+ import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
12
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
13
+ import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
14
+ import { parse } from '@codingame/monaco-vscode-api/vscode/vs/base/common/marshalling';
15
+ import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
16
+ import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
17
+ import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
18
18
 
19
19
  class GettingStartedAccessibleView {
20
20
  constructor() {
@@ -1,16 +1,16 @@
1
1
 
2
- import { registerColor, lighten, darken } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
3
- import { contrastBorder, textLinkForeground } from 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
4
- import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
5
- import { editorWidgetBackground } from 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
6
- import { inputBackground } from 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
7
- import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
8
- import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
9
- import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
10
- import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
11
- import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
12
- import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
13
- import { localize } from 'vscode/vscode/vs/nls';
2
+ import { registerColor, lighten, darken } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
3
+ import { contrastBorder, textLinkForeground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
4
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
5
+ import { editorWidgetBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
6
+ import { inputBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
7
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
8
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
9
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
10
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
11
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
12
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
13
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
14
14
 
15
15
  registerColor('welcomePage.background', null, ( localize(10772, 'Background color for the Welcome page.')));
16
16
  registerColor('welcomePage.tileBackground', { dark: editorWidgetBackground, light: editorWidgetBackground, hcDark: '#000', hcLight: editorWidgetBackground }, ( localize(10773, 'Background color for the tiles on the Welcome page.')));
@@ -1,8 +1,8 @@
1
- import { URI } from "vscode/vscode/vs/base/common/uri";
2
- import { IFileService } from "vscode/vscode/vs/platform/files/common/files.service";
3
- import { INotificationService } from "vscode/vscode/vs/platform/notification/common/notification.service";
4
- import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language";
5
- import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
1
+ import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
2
+ import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
3
+ import { INotificationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service";
4
+ import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language";
5
+ import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
6
6
  export declare class GettingStartedDetailsRenderer {
7
7
  private readonly fileService;
8
8
  private readonly notificationService;
@@ -1,20 +1,20 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { generateUuid } from 'vscode/vscode/vs/base/common/uuid';
4
- import { generateTokensCSSForColorMap } from 'vscode/vscode/vs/editor/common/languages/supports/tokenization';
5
- import { TokenizationRegistry } from 'vscode/vscode/vs/editor/common/languages';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { generateUuid } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uuid';
4
+ import { generateTokensCSSForColorMap } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/supports/tokenization';
5
+ import { TokenizationRegistry } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages';
6
6
  import { DEFAULT_MARKDOWN_STYLES, renderMarkdownDocument } from '@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common/vscode/vs/workbench/contrib/markdown/browser/markdownDocumentRenderer';
7
- import { language } from 'vscode/vscode/vs/base/common/platform';
8
- import { joinPath } from 'vscode/vscode/vs/base/common/resources';
9
- import { assertIsDefined } from 'vscode/vscode/vs/base/common/types';
10
- import { asWebviewUri } from 'vscode/vscode/vs/workbench/contrib/webview/common/webview';
11
- import { ResourceMap } from 'vscode/vscode/vs/base/common/map';
12
- import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
13
- import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
14
- import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
15
- import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
7
+ import { language } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
8
+ import { joinPath } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
9
+ import { assertIsDefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
10
+ import { asWebviewUri } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/webview/common/webview';
11
+ import { ResourceMap } from '@codingame/monaco-vscode-api/vscode/vs/base/common/map';
12
+ import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
13
+ import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
14
+ import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
15
+ import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
16
16
  import { gettingStartedContentRegistry } from '../common/gettingStartedContent.js';
17
- import { FileAccess } from 'vscode/vscode/vs/base/common/network';
17
+ import { FileAccess } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
18
18
 
19
19
  let GettingStartedDetailsRenderer = class GettingStartedDetailsRenderer {
20
20
  constructor(fileService, notificationService, extensionService, languageService) {
@@ -1,2 +1,2 @@
1
- import { IWalkthrough } from "vscode/vscode/vs/platform/extensions/common/extensions";
2
- export declare const walkthroughsExtensionPoint: import("vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry").IExtensionPoint<IWalkthrough[]>;
1
+ import { IWalkthrough } from "@codingame/monaco-vscode-api/vscode/vs/platform/extensions/common/extensions";
2
+ export declare const walkthroughsExtensionPoint: import("@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry").IExtensionPoint<IWalkthrough[]>;
@@ -1,6 +1,6 @@
1
1
 
2
- import { localize } from 'vscode/vscode/vs/nls';
3
- import { ExtensionsRegistry } from 'vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
2
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
+ import { ExtensionsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
4
4
 
5
5
  const titleTranslated = ( localize(10779, "Title"));
6
6
  const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
@@ -1,2 +1,2 @@
1
- export declare const gettingStartedUncheckedCodicon: import("vscode/vscode/vs/base/common/themables").ThemeIcon;
2
- export declare const gettingStartedCheckedCodicon: import("vscode/vscode/vs/base/common/themables").ThemeIcon;
1
+ export declare const gettingStartedUncheckedCodicon: import("@codingame/monaco-vscode-api/vscode/vs/base/common/themables").ThemeIcon;
2
+ export declare const gettingStartedCheckedCodicon: import("@codingame/monaco-vscode-api/vscode/vs/base/common/themables").ThemeIcon;
@@ -1,7 +1,7 @@
1
1
 
2
- import { localize } from 'vscode/vscode/vs/nls';
3
- import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
4
- import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
2
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
+ import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
4
+ import { registerIcon } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/iconRegistry';
5
5
 
6
6
  const gettingStartedUncheckedCodicon = registerIcon('getting-started-step-unchecked', Codicon.circleLargeOutline, ( localize(10814, "Used to represent walkthrough steps which have not been completed")));
7
7
  const gettingStartedCheckedCodicon = registerIcon('getting-started-step-checked', Codicon.passFilled, ( localize(10815, "Used to represent walkthrough steps which have been completed")));
@@ -1,7 +1,7 @@
1
- import { EditorInput } from "vscode/vscode/vs/workbench/common/editor/editorInput";
2
- import { URI } from "vscode/vscode/vs/base/common/uri";
3
- import { IUntypedEditorInput } from "vscode/vscode/vs/workbench/common/editor";
4
- import { IEditorOptions } from "vscode/vscode/vs/platform/editor/common/editor";
1
+ import { EditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor/editorInput";
2
+ import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
3
+ import { IUntypedEditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor";
4
+ import { IEditorOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor";
5
5
  export declare const gettingStartedInputTypeId = "workbench.editors.gettingStartedInput";
6
6
  export interface GettingStartedEditorOptions extends IEditorOptions {
7
7
  selectedCategory?: string;