@codingame/monaco-vscode-walkthrough-service-override 32.0.0 → 32.0.1

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 (22) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsBanner.js +1 -1
  3. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcome.js +13 -13
  4. package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcomeInput.js +1 -1
  5. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +21 -21
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +39 -39
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +2 -2
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +151 -151
  16. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  18. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
  19. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  20. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
  21. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
  22. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -12,15 +12,15 @@ var notebookProfileContent = () => `
12
12
  <checklist>
13
13
  <checkbox on-checked="${createSetProfileCommandUri("default")}" checked-on="config.notebook.cellFocusIndicator == 'border' && config.notebook.insertToolbarLocation == 'both' && config.notebook.globalToolbar == false && config.notebook.compactView == true && config.notebook.showCellStatusBar == 'visible'">
14
14
  <img width="${imageSize}" src="./notebookThemes/default.png"/>
15
- ${escape(( localize(15927, "Default")))}
15
+ ${escape(( localize(15952, "Default")))}
16
16
  </checkbox>
17
17
  <checkbox on-checked="${createSetProfileCommandUri("jupyter")}" checked-on="config.notebook.cellFocusIndicator == 'gutter' && config.notebook.insertToolbarLocation == 'notebookToolbar' && config.notebook.globalToolbar == true && config.notebook.compactView == true && config.notebook.showCellStatusBar == 'visible'">
18
18
  <img width="${imageSize}" src="./notebookThemes/jupyter.png"/>
19
- ${escape(( localize(15928, "Jupyter")))}
19
+ ${escape(( localize(15953, "Jupyter")))}
20
20
  </checkbox>
21
21
  <checkbox on-checked="${createSetProfileCommandUri("colab")}" checked-on="config.notebook.cellFocusIndicator == 'border' && config.notebook.insertToolbarLocation == 'betweenCells' && config.notebook.globalToolbar == false && config.notebook.compactView == false && config.notebook.showCellStatusBar == 'hidden'">
22
22
  <img width="${imageSize}" src="./notebookThemes/colab.png"/>
23
- ${escape(( localize(15929, "Colab")))}
23
+ ${escape(( localize(15954, "Colab")))}
24
24
  </checkbox>
25
25
  </checklist>
26
26
  </vertically-centered>
@@ -8,26 +8,26 @@ var themePickerContent = () => `
8
8
  <div class="theme-picker-row">
9
9
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_DARK}'">
10
10
  <img width="200" src="./dark.png"/>
11
- ${escape(( localize(15930, "Dark Modern")))}
11
+ ${escape(( localize(15955, "Dark Modern")))}
12
12
  </checkbox>
13
13
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_LIGHT}'">
14
14
  <img width="200" src="./light.png"/>
15
- ${escape(( localize(15931, "Light Modern")))}
15
+ ${escape(( localize(15956, "Light Modern")))}
16
16
  </checkbox>
17
17
  </div>
18
18
  <div class="theme-picker-row">
19
19
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_DARK}'">
20
20
  <img width="200" src="./dark-hc.png"/>
21
- ${escape(( localize(15932, "Dark High Contrast")))}
21
+ ${escape(( localize(15957, "Dark High Contrast")))}
22
22
  </checkbox>
23
23
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}'">
24
24
  <img width="200" src="./light-hc.png"/>
25
- ${escape(( localize(15933, "Light High Contrast")))}
25
+ ${escape(( localize(15958, "Light High Contrast")))}
26
26
  </checkbox>
27
27
  </div>
28
28
  </checklist>
29
29
  <checkbox class="theme-picker-link" when-checked="command:workbench.action.selectTheme" checked-on="false">
30
- ${escape(( localize(15934, "See More Themes...")))}
30
+ ${escape(( localize(15959, "See More Themes...")))}
31
31
  </checkbox>
32
32
  `;
33
33
 
@@ -8,21 +8,21 @@ var themePickerSmallContent = () => `
8
8
  <div class="theme-picker-row">
9
9
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_DARK}'">
10
10
  <img width="150" src="./dark.png"/>
11
- ${escape(( localize(15935, "Dark Modern")))}
11
+ ${escape(( localize(15960, "Dark Modern")))}
12
12
  </checkbox>
13
13
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_LIGHT}'">
14
14
  <img width="150" src="./light.png"/>
15
- ${escape(( localize(15936, "Light Modern")))}
15
+ ${escape(( localize(15961, "Light Modern")))}
16
16
  </checkbox>
17
17
  </div>
18
18
  <div class="theme-picker-row">
19
19
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_DARK}'">
20
20
  <img width="150" src="./dark-hc.png"/>
21
- ${escape(( localize(15937, "Dark High Contrast")))}
21
+ ${escape(( localize(15962, "Dark High Contrast")))}
22
22
  </checkbox>
23
23
  <checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}'">
24
24
  <img width="150" src="./light-hc.png"/>
25
- ${escape(( localize(15938, "Light High Contrast")))}
25
+ ${escape(( localize(15963, "Light High Contrast")))}
26
26
  </checkbox>
27
27
  </div>
28
28
  </checklist>
@@ -16,7 +16,7 @@ walkThroughContentRegistry.registerProvider(
16
16
  const typeId = "workbench.editors.walkThroughInput";
17
17
  const inputOptions = {
18
18
  typeId,
19
- name: ( localize(16034, "Editor Playground")),
19
+ name: ( localize(16059, "Editor Playground")),
20
20
  resource: ( FileAccess.asBrowserUri(
21
21
  "vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.md"
22
22
  )).with({
@@ -32,7 +32,7 @@ class EditorWalkThroughAction extends Action2 {
32
32
  this.ID = "workbench.action.showInteractivePlayground";
33
33
  }
34
34
  static {
35
- this.LABEL = ( localize2(16035, "Interactive Editor Playground"));
35
+ this.LABEL = ( localize2(16060, "Interactive Editor Playground"));
36
36
  }
37
37
  constructor() {
38
38
  super({
@@ -41,7 +41,7 @@ class EditorWalkThroughAction extends Action2 {
41
41
  category: Categories.Help,
42
42
  f1: true,
43
43
  metadata: {
44
- description: ( localize2(16036, "Opens an interactive playground for learning about the editor."))
44
+ description: ( localize2(16061, "Opens an interactive playground for learning about the editor."))
45
45
  }
46
46
  });
47
47
  }
@@ -14,7 +14,7 @@ import { EditorPaneDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/wor
14
14
  import { KeybindingsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
15
15
 
16
16
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
17
- EditorPaneDescriptor.create(WalkThroughPart, WalkThroughPart.ID, ( localize(16037, "Playground"))),
17
+ EditorPaneDescriptor.create(WalkThroughPart, WalkThroughPart.ID, ( localize(16062, "Playground"))),
18
18
  [( new SyncDescriptor(WalkThroughInput))]
19
19
  );
20
20
  registerAction2(EditorWalkThroughAction);
@@ -30,7 +30,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarHelpMenu, {
30
30
  group: "1_welcome",
31
31
  command: {
32
32
  id: "workbench.action.showInteractivePlayground",
33
- title: ( localize(16038, "Editor Playgrou&&nd"))
33
+ title: ( localize(16063, "Editor Playgrou&&nd"))
34
34
  },
35
35
  order: 3
36
36
  });
@@ -38,7 +38,7 @@ import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbe
38
38
  var WalkThroughPart_1;
39
39
  registerCss(walkThroughPart);
40
40
  const WALK_THROUGH_FOCUS = ( new RawContextKey("interactivePlaygroundFocus", false));
41
- const UNBOUND_COMMAND = ( localize(16039, "unbound"));
41
+ const UNBOUND_COMMAND = ( localize(16064, "unbound"));
42
42
  const WALK_THROUGH_EDITOR_VIEW_STATE_PREFERENCE_KEY = "walkThroughEditorViewState";
43
43
  let WalkThroughPart = class WalkThroughPart extends EditorPane {
44
44
  static {
@@ -179,7 +179,7 @@ let WalkThroughPart = class WalkThroughPart extends EditorPane {
179
179
  }
180
180
  open(uri) {
181
181
  if (uri.scheme === "command" && uri.path === "git.clone" && !CommandsRegistry.getCommand("git.clone")) {
182
- this.notificationService.info(( localize(16040, "It looks like Git is not installed on your system.")));
182
+ this.notificationService.info(( localize(16065, "It looks like Git is not installed on your system.")));
183
183
  return;
184
184
  }
185
185
  this.openerService.open(this.addFrom(uri), {
@@ -19,6 +19,6 @@ registerColor("walkThrough.embeddedEditorBackground", {
19
19
  hcDark: null,
20
20
  hcLight: null
21
21
  }, ( localize(
22
- 16041,
22
+ 16066,
23
23
  "Background color for the embedded editors on the Interactive Playground."
24
24
  )));