@codingame/monaco-vscode-walkthrough-service-override 4.4.1 → 4.5.0-improve-code-splitting.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.
- package/package.json +10 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +14 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +30 -24
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +377 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +528 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +16 -14
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +936 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +11 -10
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +1 -1
- package/walkthrough.js +2 -1
package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'vscode/vscode/vs/base/common/platform';
|
|
2
2
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
3
3
|
import { localizeWithPath, localize2WithPath } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
4
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
5
5
|
import { WalkThroughInput } from '../walkThroughInput.js';
|
|
6
6
|
import { FileAccess, Schemas } from 'vscode/vscode/vs/base/common/network';
|
|
7
7
|
import { Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { isWeb } from 'vscode/vscode/vs/base/common/platform';
|
|
2
|
-
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
2
|
+
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService.service';
|
|
3
3
|
|
|
4
4
|
function content(accessor) {
|
|
5
5
|
const isServerless = isWeb && !accessor.get(IWorkbenchEnvironmentService).remoteAuthority;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
1
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
2
2
|
import { WALK_THROUGH_FOCUS, WalkThroughPart } from './walkThroughPart.js';
|
|
3
3
|
import { EditorContextKeys } from 'vscode/vscode/vs/editor/common/editorContextKeys';
|
|
4
4
|
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
@@ -7,27 +7,28 @@ import { escape } from 'vscode/vscode/vs/base/common/strings';
|
|
|
7
7
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
8
8
|
import { DisposableStore, toDisposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
9
9
|
import { EditorPane } from 'vscode/vscode/vs/workbench/browser/parts/editor/editorPane';
|
|
10
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
10
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
11
11
|
import { WalkThroughInput } from './walkThroughInput.js';
|
|
12
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
12
|
+
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
13
13
|
import { ITextResourceConfigurationService } from 'vscode/vscode/vs/editor/common/services/textResourceConfiguration';
|
|
14
14
|
import { CodeEditorWidget } from 'vscode/vscode/vs/editor/browser/widget/codeEditor/codeEditorWidget';
|
|
15
15
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
16
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
|
|
16
|
+
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
17
17
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
18
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
19
|
-
import { RawContextKey
|
|
20
|
-
import {
|
|
18
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
19
|
+
import { RawContextKey } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
20
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
21
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
21
22
|
import { isObject } from 'vscode/vscode/vs/base/common/types';
|
|
22
23
|
import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
23
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
24
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
24
25
|
import { UILabelProvider } from 'vscode/vscode/vs/base/common/keybindingLabels';
|
|
25
26
|
import { OS } from 'vscode/vscode/vs/base/common/platform';
|
|
26
27
|
import { deepClone } from 'vscode/vscode/vs/base/common/objects';
|
|
27
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
28
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
28
29
|
import { size, safeInnerHtml, addDisposableListener } from 'vscode/vscode/vs/base/browser/dom';
|
|
29
|
-
import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
|
|
30
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
|
|
30
|
+
import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
|
|
31
|
+
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
31
32
|
|
|
32
33
|
var WalkThroughPart_1;
|
|
33
34
|
const WALK_THROUGH_FOCUS = ( new RawContextKey('interactivePlaygroundFocus', false));
|
package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js
CHANGED
|
@@ -3,7 +3,7 @@ import { ITextModelService } from 'vscode/vscode/vs/editor/common/services/resol
|
|
|
3
3
|
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model';
|
|
4
4
|
import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
|
|
5
5
|
import marked_1 from 'vscode/external/vscode-marked/lib/marked.esm.js';
|
|
6
|
-
import {
|
|
6
|
+
import { FileAccess, Schemas } from 'vscode/vscode/vs/base/common/network';
|
|
7
7
|
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
8
8
|
import { createTextBufferFactory } from 'vscode/vscode/vs/editor/common/model/textModel';
|
|
9
9
|
import { assertIsDefined } from 'vscode/vscode/vs/base/common/types';
|
package/walkthrough.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
2
|
-
import {
|
|
2
|
+
import { WalkthroughsService } from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js';
|
|
3
|
+
import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
|
|
3
4
|
import './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js';
|
|
4
5
|
import './vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js';
|
|
5
6
|
import svgAssets from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/all.svg.js';
|