@codingame/monaco-vscode-walkthrough-service-override 26.2.2 → 28.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 (24) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcome.d.ts +5 -7
  3. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcome.js +83 -98
  4. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcomeInput.js +1 -1
  5. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/media/agentSessionsWelcome.css +7 -7
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +22 -19
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +40 -41
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +2 -2
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedList.js +1 -1
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +5 -5
  16. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
  17. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +151 -151
  18. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
  19. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  20. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
  21. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  22. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
  23. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +4 -4
  24. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -9,7 +9,7 @@ class GettingStartedIndexList extends Disposable {
9
9
  constructor(options) {
10
10
  super();
11
11
  this.options = options;
12
- this._onDidChangeEntries = ( new Emitter());
12
+ this._onDidChangeEntries = this._register(( new Emitter()));
13
13
  this.onDidChangeEntries = this._onDidChangeEntries.event;
14
14
  this.isDisposed = false;
15
15
  this.contextKeysToWatch = ( new Set());
@@ -11,12 +11,12 @@ registerAction2(class extends Action2 {
11
11
  constructor() {
12
12
  super({
13
13
  id: "resetGettingStartedProgress",
14
- category: ( localize2(13839, "Developer")),
15
- title: ( localize2(13840, "Reset Welcome Page Walkthrough Progress")),
14
+ category: ( localize2(14963, "Developer")),
15
+ title: ( localize2(14964, "Reset Welcome Page Walkthrough Progress")),
16
16
  f1: true,
17
17
  metadata: {
18
18
  description: ( localize2(
19
- 13841,
19
+ 14965,
20
20
  "Reset the progress of all Walkthrough steps on the Welcome Page to make them appear as if they are being viewed for the first time, providing a fresh start to the getting started experience."
21
21
  ))
22
22
  }
@@ -40,7 +40,7 @@ import { GettingStartedInput } from './gettingStartedInput.js';
40
40
  const HasMultipleNewFileEntries = ( new RawContextKey("hasMultipleNewFileEntries", false));
41
41
  const hiddenEntriesConfigurationKey = "workbench.welcomePage.hiddenCategories";
42
42
  const walkthroughMetadataConfigurationKey = "workbench.welcomePage.walkthroughMetadata";
43
- const BUILT_IN_SOURCE = ( localize(13842, "Built-In"));
43
+ const BUILT_IN_SOURCE = ( localize(14966, "Built-In"));
44
44
  const DAYS = 24 * 60 * 60 * 1000;
45
45
  const NEW_WALKTHROUGH_TIME = 7 * DAYS;
46
46
  let WalkthroughsService = class WalkthroughsService extends Disposable {
@@ -75,13 +75,13 @@ let WalkthroughsService = class WalkthroughsService extends Disposable {
75
75
  this.tasExperimentService = tasExperimentService;
76
76
  this.layoutService = layoutService;
77
77
  this.editorService = editorService;
78
- this._onDidAddWalkthrough = ( new Emitter());
78
+ this._onDidAddWalkthrough = this._register(( new Emitter()));
79
79
  this.onDidAddWalkthrough = this._onDidAddWalkthrough.event;
80
- this._onDidRemoveWalkthrough = ( new Emitter());
80
+ this._onDidRemoveWalkthrough = this._register(( new Emitter()));
81
81
  this.onDidRemoveWalkthrough = this._onDidRemoveWalkthrough.event;
82
- this._onDidChangeWalkthrough = ( new Emitter());
82
+ this._onDidChangeWalkthrough = this._register(( new Emitter()));
83
83
  this.onDidChangeWalkthrough = this._onDidChangeWalkthrough.event;
84
- this._onDidProgressStep = ( new Emitter());
84
+ this._onDidProgressStep = this._register(( new Emitter()));
85
85
  this.onDidProgressStep = this._onDidProgressStep.event;
86
86
  this.sessionEvents = ( new Set());
87
87
  this.completionListeners = ( new Map());
@@ -46,7 +46,7 @@ let StartupPageEditorResolverContribution = class StartupPageEditorResolverContr
46
46
  this._register(
47
47
  editorResolverService.registerEditor(`${GettingStartedInput.RESOURCE.scheme}:/**`, {
48
48
  id: GettingStartedInput.ID,
49
- label: ( localize(13843, "Welcome Page")),
49
+ label: ( localize(14967, "Welcome Page")),
50
50
  priority: RegisteredEditorPriority.builtin
51
51
  }, {
52
52
  singlePerResource: true,
@@ -178,7 +178,7 @@ let StartupPageRunnerContribution = class StartupPageRunnerContribution extends
178
178
  locked: true
179
179
  }).catch(error => {
180
180
  this.notificationService.error(( localize(
181
- 13844,
181
+ 14968,
182
182
  "Could not open markdown preview: {0}.\n\nPlease make sure the markdown extension is enabled.",
183
183
  error.message
184
184
  )));