@codingame/monaco-vscode-walkthrough-service-override 8.0.0 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +27 -27
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +117 -117
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js
CHANGED
|
@@ -10,7 +10,7 @@ import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommon
|
|
|
10
10
|
const typeId = 'workbench.editors.walkThroughInput';
|
|
11
11
|
const inputOptions = {
|
|
12
12
|
typeId,
|
|
13
|
-
name: ( localize(
|
|
13
|
+
name: ( localize(7583, "Editor Playground")),
|
|
14
14
|
resource: ( (FileAccess.asBrowserUri(
|
|
15
15
|
'vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.md'
|
|
16
16
|
)))
|
|
@@ -22,7 +22,7 @@ const inputOptions = {
|
|
|
22
22
|
};
|
|
23
23
|
class EditorWalkThroughAction extends Action2 {
|
|
24
24
|
static { this.ID = 'workbench.action.showInteractivePlayground'; }
|
|
25
|
-
static { this.LABEL = ( localize2(
|
|
25
|
+
static { this.LABEL = ( localize2(7584, 'Interactive Editor Playground')); }
|
|
26
26
|
constructor() {
|
|
27
27
|
super({
|
|
28
28
|
id: EditorWalkThroughAction.ID,
|
|
@@ -30,7 +30,7 @@ class EditorWalkThroughAction extends Action2 {
|
|
|
30
30
|
category: Categories.Help,
|
|
31
31
|
f1: true,
|
|
32
32
|
metadata: {
|
|
33
|
-
description: ( localize2(
|
|
33
|
+
description: ( localize2(7585, "Opens an interactive playground for learning about the editor."))
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
36
|
}
|
package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js
CHANGED
|
@@ -13,7 +13,7 @@ import { EditorPaneDescriptor } from 'vscode/vscode/vs/workbench/browser/editor'
|
|
|
13
13
|
import { KeybindingsRegistry } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
14
14
|
|
|
15
15
|
( (Registry.as(EditorExtensions.EditorPane)))
|
|
16
|
-
.registerEditorPane(EditorPaneDescriptor.create(WalkThroughPart, WalkThroughPart.ID, ( localize(
|
|
16
|
+
.registerEditorPane(EditorPaneDescriptor.create(WalkThroughPart, WalkThroughPart.ID, ( localize(3241, "Playground"))), [( (new SyncDescriptor(WalkThroughInput)))]);
|
|
17
17
|
registerAction2(EditorWalkThroughAction);
|
|
18
18
|
( (Registry.as(EditorExtensions.EditorFactory))).registerEditorSerializer(EditorWalkThroughInputSerializer.ID, EditorWalkThroughInputSerializer);
|
|
19
19
|
registerWorkbenchContribution2(WalkThroughSnippetContentProvider.ID, WalkThroughSnippetContentProvider, { editorTypeId: WalkThroughPart.ID });
|
|
@@ -25,7 +25,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarHelpMenu, {
|
|
|
25
25
|
group: '1_welcome',
|
|
26
26
|
command: {
|
|
27
27
|
id: 'workbench.action.showInteractivePlayground',
|
|
28
|
-
title: ( localize(
|
|
28
|
+
title: ( localize(3242, "Editor Playgrou&&nd"))
|
|
29
29
|
},
|
|
30
30
|
order: 3
|
|
31
31
|
});
|
|
@@ -34,7 +34,7 @@ import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extension
|
|
|
34
34
|
|
|
35
35
|
var WalkThroughPart_1;
|
|
36
36
|
const WALK_THROUGH_FOCUS = ( (new RawContextKey('interactivePlaygroundFocus', false)));
|
|
37
|
-
const UNBOUND_COMMAND = ( localize(
|
|
37
|
+
const UNBOUND_COMMAND = ( localize(7581, "unbound"));
|
|
38
38
|
const WALK_THROUGH_EDITOR_VIEW_STATE_PREFERENCE_KEY = 'walkThroughEditorViewState';
|
|
39
39
|
let WalkThroughPart = class WalkThroughPart extends EditorPane {
|
|
40
40
|
static { WalkThroughPart_1 = this; }
|
|
@@ -144,7 +144,7 @@ let WalkThroughPart = class WalkThroughPart extends EditorPane {
|
|
|
144
144
|
}
|
|
145
145
|
open(uri) {
|
|
146
146
|
if (uri.scheme === 'command' && uri.path === 'git.clone' && !CommandsRegistry.getCommand('git.clone')) {
|
|
147
|
-
this.notificationService.info(( localize(
|
|
147
|
+
this.notificationService.info(( localize(7582, "It looks like Git is not installed on your system.")));
|
|
148
148
|
return;
|
|
149
149
|
}
|
|
150
150
|
this.openerService.open(this.addFrom(uri), { allowCommands: true });
|
|
@@ -13,6 +13,6 @@ import { localize } from 'vscode/vscode/vs/nls';
|
|
|
13
13
|
import { Color, RGBA } from 'vscode/vscode/vs/base/common/color';
|
|
14
14
|
|
|
15
15
|
registerColor('walkThrough.embeddedEditorBackground', { dark: ( (new Color( (new RGBA(0, 0, 0, .4))))), light: '#f4f4f4', hcDark: null, hcLight: null }, ( localize(
|
|
16
|
-
|
|
16
|
+
10614,
|
|
17
17
|
'Background color for the embedded editors on the Interactive Playground.'
|
|
18
18
|
)));
|