@codingame/monaco-vscode-walkthrough-service-override 12.0.1 → 13.1.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 +12 -14
  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 +48 -48
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +30 -30
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +90 -90
  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 +17 -17
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +19 -19
  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 +39 -39
  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 +5 -5
  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 +5 -5
  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 +8 -8
  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 +32 -32
  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 +29 -29
  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 +174 -174
  29. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +5 -5
  30. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +7 -7
  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 +9 -9
  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 +9 -9
  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 +8 -8
  40. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +8 -8
  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 +31 -31
  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 +14 -14
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.1",
3
+ "version": "13.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - walkthrough service-override",
6
6
  "keywords": [],
@@ -15,20 +15,18 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common": "12.0.1",
19
- "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "12.0.1",
20
- "@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common": "12.0.1",
21
- "@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": "12.0.1",
22
- "@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "12.0.1",
23
- "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "12.0.1",
24
- "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "12.0.1",
25
- "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "12.0.1",
26
- "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "12.0.1",
27
- "marked": "14.0.0",
28
- "vscode": "npm:@codingame/monaco-vscode-api@12.0.1"
18
+ "@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "13.1.0",
19
+ "@codingame/monaco-vscode-5e324391-11e3-5ceb-93ee-938e4098e4ad-common": "13.1.0",
20
+ "@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-common": "13.1.0",
21
+ "@codingame/monaco-vscode-7bbc9e7d-eeae-55fc-8bf9-dc2f66e0dc73-common": "13.1.0",
22
+ "@codingame/monaco-vscode-82e231ca-6ed7-5920-b2b8-1874ccc0be07-common": "13.1.0",
23
+ "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common": "13.1.0",
24
+ "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.0",
25
+ "@codingame/monaco-vscode-api": "13.1.0",
26
+ "@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.0",
27
+ "@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.0",
28
+ "marked": "14.0.0"
29
29
  },
30
- "peerDependencies": {},
31
- "peerDependenciesMeta": {},
32
30
  "main": "index.js",
33
31
  "module": "index.js",
34
32
  "types": "index.d.ts",
@@ -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';
@@ -40,7 +40,7 @@ registerAction2(class extends Action2 {
40
40
  constructor() {
41
41
  super({
42
42
  id: 'workbench.action.openWalkthrough',
43
- title: ( localize2(10719, 'Welcome')),
43
+ title: ( localize2(10737, 'Welcome')),
44
44
  category: Categories.Help,
45
45
  f1: true,
46
46
  menu: {
@@ -49,7 +49,7 @@ registerAction2(class extends Action2 {
49
49
  order: 1,
50
50
  },
51
51
  metadata: {
52
- description: ( localize2(10720, 'Opens a Walkthrough to help you get started in VS Code.'))
52
+ description: ( localize2(10738, 'Opens a Walkthrough to help you get started in VS Code.'))
53
53
  }
54
54
  });
55
55
  }
@@ -127,15 +127,15 @@ registerAction2(class extends Action2 {
127
127
  }
128
128
  });
129
129
  ( Registry.as(EditorExtensions.EditorFactory)).registerEditorSerializer(GettingStartedInput.ID, GettingStartedInputSerializer);
130
- ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(GettingStartedPage, GettingStartedPage.ID, ( localize(10721, "Welcome"))), [
130
+ ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(GettingStartedPage, GettingStartedPage.ID, ( localize(10739, "Welcome"))), [
131
131
  ( new SyncDescriptor(GettingStartedInput))
132
132
  ]);
133
- const category = ( localize2(10721, "Welcome"));
133
+ const category = ( localize2(10739, "Welcome"));
134
134
  registerAction2(class extends Action2 {
135
135
  constructor() {
136
136
  super({
137
137
  id: 'welcome.goBack',
138
- title: ( localize2(10722, 'Go Back')),
138
+ title: ( localize2(10740, 'Go Back')),
139
139
  category,
140
140
  keybinding: {
141
141
  weight: KeybindingWeight.EditorContrib,
@@ -171,7 +171,7 @@ registerAction2(class extends Action2 {
171
171
  constructor() {
172
172
  super({
173
173
  id: 'welcome.markStepComplete',
174
- title: ( localize(10723, "Mark Step Complete")),
174
+ title: ( localize(10741, "Mark Step Complete")),
175
175
  category,
176
176
  });
177
177
  }
@@ -187,7 +187,7 @@ registerAction2(class extends Action2 {
187
187
  constructor() {
188
188
  super({
189
189
  id: 'welcome.markStepIncomplete',
190
- title: ( localize(10724, "Mark Step Incomplete")),
190
+ title: ( localize(10742, "Mark Step Incomplete")),
191
191
  category,
192
192
  });
193
193
  }
@@ -203,7 +203,7 @@ registerAction2(class extends Action2 {
203
203
  constructor() {
204
204
  super({
205
205
  id: 'welcome.showAllWalkthroughs',
206
- title: ( localize2(10725, 'Open Walkthrough...')),
206
+ title: ( localize2(10743, 'Open Walkthrough...')),
207
207
  category,
208
208
  f1: true,
209
209
  });
@@ -230,7 +230,7 @@ registerAction2(class extends Action2 {
230
230
  quickPick.canSelectMany = false;
231
231
  quickPick.matchOnDescription = true;
232
232
  quickPick.matchOnDetail = true;
233
- quickPick.placeholder = ( localize(10726, 'Select a walkthrough to open'));
233
+ quickPick.placeholder = ( localize(10744, 'Select a walkthrough to open'));
234
234
  quickPick.items = await this.getQuickPickItems(contextService, gettingStartedService);
235
235
  quickPick.busy = true;
236
236
  disposables.add(quickPick.onDidAccept(() => {
@@ -250,7 +250,7 @@ registerAction2(class extends Action2 {
250
250
  }
251
251
  });
252
252
  const WorkspacePlatform = ( new RawContextKey('workspacePlatform', undefined, ( localize(
253
- 10727,
253
+ 10745,
254
254
  "The platform of the current workspace, which in remote or serverless contexts may be different from the platform of the UI"
255
255
  ))));
256
256
  let WorkspacePlatformContribution = class WorkspacePlatformContribution {
@@ -302,7 +302,7 @@ configurationRegistry.registerConfiguration({
302
302
  type: 'boolean',
303
303
  default: true,
304
304
  description: ( localize(
305
- 10728,
305
+ 10746,
306
306
  "When enabled, an extension's walkthrough will open upon install of the extension."
307
307
  ))
308
308
  },
@@ -311,25 +311,25 @@ configurationRegistry.registerConfiguration({
311
311
  'type': 'string',
312
312
  'enum': ['none', 'welcomePage', 'readme', 'newUntitledFile', 'welcomePageInEmptyWorkbench', 'terminal'],
313
313
  'enumDescriptions': [
314
- ( localize(10729, "Start without an editor.")),
314
+ ( localize(10747, "Start without an editor.")),
315
315
  ( localize(
316
- 10730,
316
+ 10748,
317
317
  "Open the Welcome page, with content to aid in getting started with VS Code and extensions."
318
318
  )),
319
319
  ( localize(
320
- 10731,
320
+ 10749,
321
321
  "Open the README when opening a folder that contains one, fallback to 'welcomePage' otherwise. Note: This is only observed as a global configuration, it will be ignored if set in a workspace or folder configuration."
322
322
  )),
323
323
  ( localize(
324
- 10732,
324
+ 10750,
325
325
  "Open a new untitled text file (only applies when opening an empty window)."
326
326
  )),
327
- ( localize(10733, "Open the Welcome page when opening an empty workbench.")),
328
- ( localize(10734, "Open a new terminal in the editor area.")),
327
+ ( localize(10751, "Open the Welcome page when opening an empty workbench.")),
328
+ ( localize(10752, "Open a new terminal in the editor area.")),
329
329
  ],
330
330
  'default': 'welcomePage',
331
331
  'description': ( localize(
332
- 10735,
332
+ 10753,
333
333
  "Controls which editor is shown at startup, if none are restored from the previous session."
334
334
  ))
335
335
  },
@@ -337,8 +337,8 @@ configurationRegistry.registerConfiguration({
337
337
  scope: ConfigurationScope.APPLICATION,
338
338
  type: 'boolean',
339
339
  default: false,
340
- deprecationMessage: ( localize(10736, "Deprecated, use the global `workbench.reduceMotion`.")),
341
- description: ( localize(10737, "When enabled, reduce motion in welcome page."))
340
+ deprecationMessage: ( localize(10754, "Deprecated, use the global `workbench.reduceMotion`.")),
341
+ description: ( localize(10755, "When enabled, reduce motion in welcome page."))
342
342
  }
343
343
  }
344
344
  });
@@ -1,35 +1,35 @@
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";
32
- import { IWorkbenchThemeService } from "@codingame/monaco-vscode-3dd5b442-bfbc-5b1d-8f4a-7567530c75f5-common/vscode/vs/workbench/services/themes/common/workbenchThemeService.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
+ import { IWorkbenchThemeService } from "@codingame/monaco-vscode-7443a901-21f6-577a-9674-42893b997ee0-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>;
35
35
  export interface IWelcomePageStartEntry {