@codingame/monaco-vscode-notebook-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.
Files changed (61) hide show
  1. package/notebook.js +14 -13
  2. package/package.json +7 -4
  3. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +10 -10
  4. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/contributedStatusBarItemController.js +1 -1
  5. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +6 -6
  6. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +5 -5
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookBreakpoints.js +3 -3
  8. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookCellPausing.js +2 -2
  9. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookDebugDecorations.js +5 -4
  10. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorHint/emptyCellEditorHint.js +9 -9
  11. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +6 -6
  12. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/execute/executionEditorProgress.js +2 -2
  13. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +2 -2
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +4 -4
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +6 -5
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/kernelDetection/notebookKernelDetection.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +2 -2
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/marker/markerProvider.js +3 -2
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +6 -6
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.js +1 -1
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +15 -14
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +11 -8
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +6 -6
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +2 -2
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/undoRedo/notebookUndoRedo.js +1 -1
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/viewportWarmup/viewportWarmup.js +2 -2
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/apiActions.js +2 -2
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +7 -7
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +7 -7
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +1 -1
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +12 -11
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +2 -2
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +1 -1
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +2 -2
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +10 -9
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +11 -9
  39. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +2 -1
  40. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +10 -12
  41. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibility.js +2 -2
  42. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.js +3 -3
  43. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +5 -5
  44. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.js +9 -6
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +3 -3
  46. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelServiceImpl.js +5 -4
  47. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +8 -6
  48. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  49. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookRendererMessagingServiceImpl.js +1 -1
  50. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +12 -10
  51. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookWorkerServiceImpl.js +1 -1
  52. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookTextModel.js +2 -2
  53. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiffEditorInput.js +1 -1
  54. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverServiceImpl.js +5 -5
  55. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookSimpleWorker.js +2 -2
  56. package/vscode/src/vs/workbench/services/workingCopy/common/abstractFileWorkingCopyManager.js +3 -3
  57. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +17 -18
  58. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +13 -13
  59. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.js +3 -3
  60. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopyManager.js +5 -5
  61. package/override/vs/platform/dialogs/common/dialogs.js +0 -10
package/notebook.js CHANGED
@@ -1,31 +1,32 @@
1
1
  import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
2
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
2
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
3
3
  import { NotebookService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js';
4
- import { INotebookEditorModelResolverService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService';
5
- import { INotebookEditorWorkerService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/services/notebookWorkerService';
4
+ import { INotebookEditorModelResolverService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService.service';
5
+ import { INotebookEditorWorkerService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/services/notebookWorkerService.service';
6
6
  import { NotebookEditorWorkerServiceImpl } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookWorkerServiceImpl.js';
7
- import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService';
7
+ import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService.service';
8
8
  import { NotebookCellStatusBarService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookCellStatusBarServiceImpl.js';
9
- import { INotebookEditorService } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/services/notebookEditorService';
9
+ import { INotebookEditorService } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service';
10
10
  import { NotebookEditorWidgetService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.js';
11
11
  import { NotebookModelResolverServiceImpl } from './vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverServiceImpl.js';
12
- import { INotebookKernelService, INotebookKernelHistoryService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
12
+ import { INotebookKernelService, INotebookKernelHistoryService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
13
13
  import { NotebookKernelService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelServiceImpl.js';
14
14
  import { NotebookRendererMessagingService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookRendererMessagingServiceImpl.js';
15
- import { INotebookRendererMessagingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookRendererMessagingService';
15
+ import { INotebookRendererMessagingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service';
16
16
  import { NotebookExecutionStateService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.js';
17
17
  import { NotebookExecutionService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js';
18
- import { INotebookExecutionService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService';
19
- import { INotebookKeymapService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKeymapService';
18
+ import { INotebookExecutionService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService.service';
19
+ import { INotebookKeymapService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKeymapService.service';
20
20
  import { NotebookKeymapService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js';
21
- import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
21
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
22
22
  import { NotebookKernelHistoryService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js';
23
- import { INotebookLoggingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookLoggingService';
23
+ import { INotebookLoggingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookLoggingService.service';
24
24
  import { NotebookLoggingService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js';
25
- import { INotebookSearchService } from 'vscode/vscode/vs/workbench/contrib/search/common/notebookSearch';
25
+ import { INotebookSearchService } from 'vscode/vscode/vs/workbench/contrib/search/common/notebookSearch.service';
26
26
  import { NotebookSearchService } from 'vscode/vscode/vs/workbench/contrib/search/browser/notebookSearch/notebookSearchService';
27
+ import { NotebookDocumentWorkbenchService } from 'vscode/vscode/vs/workbench/services/notebook/common/notebookDocumentService';
28
+ import { INotebookDocumentService } from 'vscode/vscode/vs/workbench/services/notebook/common/notebookDocumentService.service';
27
29
  import './vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js';
28
- import { INotebookDocumentService, NotebookDocumentWorkbenchService } from 'vscode/vscode/vs/workbench/services/notebook/common/notebookDocumentService';
29
30
 
30
31
  function getServiceOverride() {
31
32
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-notebook-service-override",
3
- "version": "4.4.1",
3
+ "version": "4.5.0-improve-code-splitting.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -17,15 +17,18 @@
17
17
  "main": "index.js",
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
- "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@4.4.1"
22
- },
23
20
  "exports": {
24
21
  ".": {
25
22
  "default": "./index.js"
26
23
  },
24
+ "./vscode/*": {
25
+ "default": "./vscode/src/*.js"
26
+ },
27
27
  "./worker": {
28
28
  "default": "./worker.js"
29
29
  }
30
+ },
31
+ "dependencies": {
32
+ "vscode": "npm:@codingame/monaco-vscode-api@4.5.0-improve-code-splitting.1"
30
33
  }
31
34
  }
@@ -1,23 +1,23 @@
1
1
  import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import './emptyTextEditorHint.css.js';
3
- import { addDisposableListener, EventType, $ as $$1 } from 'vscode/vscode/vs/base/browser/dom';
4
- import { DisposableStore, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
3
+ import { $ as $$1, addDisposableListener, EventType } from 'vscode/vscode/vs/base/browser/dom';
4
+ import { dispose, DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
5
5
  import { localizeWithPath } from 'vscode/vscode/vs/nls';
6
6
  import { ChangeLanguageAction } from 'vscode/vscode/vs/workbench/browser/parts/editor/editorStatus';
7
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
7
+ import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
8
8
  import { PLAINTEXT_LANGUAGE_ID } from 'vscode/vscode/vs/editor/common/languages/modesRegistry';
9
9
  import { Schemas } from 'vscode/vscode/vs/base/common/network';
10
10
  import { Event } from 'vscode/vscode/vs/base/common/event';
11
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
11
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
12
12
  import { registerEditorContribution } from 'vscode/vscode/vs/editor/browser/editorExtensions';
13
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
14
- import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
13
+ import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
14
+ import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
15
15
  import { renderFormattedText } from 'vscode/vscode/vs/base/browser/formattedTextRenderer';
16
16
  import { ApplyFileSnippetAction } from 'vscode/vscode/vs/workbench/contrib/snippets/browser/commands/fileTemplateSnippets';
17
- import { IInlineChatSessionService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService';
18
- import { IInlineChatService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChat';
19
- import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
20
- import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService';
17
+ import { IInlineChatSessionService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service';
18
+ import { IInlineChatService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChat.service';
19
+ import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
20
+ import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService.service';
21
21
  import { KeybindingLabel } from 'vscode/vscode/vs/base/browser/ui/keybindingLabel/keybindingLabel';
22
22
  import { OS } from 'vscode/vscode/vs/base/common/platform';
23
23
  import { status } from 'vscode/vscode/vs/base/browser/ui/aria/aria';
@@ -4,7 +4,7 @@ import { CancellationTokenSource } from 'vscode/vscode/vs/base/common/cancellati
4
4
  import { Disposable, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
5
5
  import { NotebookVisibleCellObserver } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/notebookVisibleCellObserver';
6
6
  import { registerNotebookContribution } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
7
- import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService';
7
+ import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService.service';
8
8
 
9
9
  let ContributedStatusBarItemController = class ContributedStatusBarItemController extends Disposable {
10
10
  static { this.id = 'workbench.notebook.statusBar.contributed'; }
@@ -3,17 +3,17 @@ import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
3
3
  import { ResourceMap } from 'vscode/vscode/vs/base/common/map';
4
4
  import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
5
5
  import { localizeWithPath } from 'vscode/vscode/vs/nls';
6
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
6
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
7
7
  import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
8
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
8
+ import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
9
9
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
10
10
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
11
11
  import { CHANGE_CELL_LANGUAGE, DETECT_CELL_LANGUAGE } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
12
- import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService';
12
+ import { INotebookCellStatusBarService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCellStatusBarService.service';
13
13
  import { CellKind } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
14
- import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
15
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
16
- import { ILanguageDetectionService } from 'vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService';
14
+ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
15
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
16
+ import { ILanguageDetectionService } from 'vscode/vscode/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service';
17
17
 
18
18
  let CellStatusBarLanguagePickerProvider = class CellStatusBarLanguagePickerProvider {
19
19
  constructor(_notebookService, _languageService) {
@@ -2,14 +2,14 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { localizeWithPath, localize2WithPath } from 'vscode/vscode/vs/nls';
3
3
  import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
4
4
  import { registerWorkbenchContribution2 } from 'vscode/vscode/vs/workbench/common/contributions';
5
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
5
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
6
6
  import { NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE, NOTEBOOK_OUTPUT_FOCUSED } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
7
7
  import { getNotebookEditorFromEditorPane, expandCellRangesWithHiddenCells, cellRangeToViewCells } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
8
8
  import { CopyAction, PasteAction, CutAction } from 'vscode/vscode/vs/editor/contrib/clipboard/browser/clipboard';
9
- import { IClipboardService } from 'vscode/vscode/vs/platform/clipboard/common/clipboardService';
9
+ import { IClipboardService } from 'vscode/vscode/vs/platform/clipboard/common/clipboardService.service';
10
10
  import { cloneNotebookCellTextModel } from 'vscode/vscode/vs/workbench/contrib/notebook/common/model/notebookCellTextModel';
11
11
  import { SelectionStateType } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
12
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
12
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
13
13
  import { isNative } from 'vscode/vscode/vs/base/common/platform';
14
14
  import { registerAction2, MenuId, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
15
15
  import { NotebookCellAction, NotebookAction, NOTEBOOK_EDITOR_WIDGET_ACTION_WEIGHT, NOTEBOOK_OUTPUT_WEBVIEW_ACTION_WEIGHT } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
@@ -17,8 +17,8 @@ import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/cont
17
17
  import { InputFocusedContextKey } from 'vscode/vscode/vs/platform/contextkey/common/contextkeys';
18
18
  import { UndoCommand, RedoCommand } from 'vscode/vscode/vs/editor/browser/editorExtensions';
19
19
  import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
20
- import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
21
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
20
+ import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
21
+ import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
22
22
  import { showWindowLogActionId } from 'vscode/vscode/vs/workbench/services/log/common/logConstants';
23
23
  import { getWindow, getActiveElement, isAncestor } from 'vscode/vscode/vs/base/browser/dom';
24
24
 
@@ -5,11 +5,11 @@ import { Schemas } from 'vscode/vscode/vs/base/common/network';
5
5
  import { isEqual } from 'vscode/vscode/vs/base/common/resources';
6
6
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
7
7
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
8
- import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
8
+ import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
9
9
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
10
10
  import { NotebookCellsChangeType, CellUri } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
11
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
12
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
11
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
12
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
13
13
 
14
14
  let NotebookBreakpoints = class NotebookBreakpoints extends Disposable {
15
15
  constructor(_debugService, _notebookService, _editorService) {
@@ -4,10 +4,10 @@ import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
4
4
  import { URI } from 'vscode/vscode/vs/base/common/uri';
5
5
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
6
6
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
7
- import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
7
+ import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
8
8
  import { CellUri } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
9
9
  import { CellExecutionUpdateType } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService';
10
- import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
10
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
11
11
 
12
12
  let NotebookCellPausing = class NotebookCellPausing extends Disposable {
13
13
  constructor(_debugService, _notebookExecutionStateService) {
@@ -1,15 +1,16 @@
1
1
  import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
3
3
  import { Range } from 'vscode/vscode/vs/editor/common/core/range';
4
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
4
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
5
5
  import { debugIconBreakpointForeground } from 'vscode/vscode/vs/workbench/contrib/debug/browser/breakpointEditorContribution';
6
6
  import { topStackFrameColor, focusedStackFrameColor } from 'vscode/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
7
- import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
7
+ import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
8
8
  import { NotebookOverviewRulerLane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
9
9
  import { registerNotebookContribution } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
10
10
  import { runningCellRulerDecorationColor } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorWidget';
11
- import { NotebookCellExecutionState, CellUri } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
12
- import { NotebookExecutionType, INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
11
+ import { CellUri, NotebookCellExecutionState } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
12
+ import { NotebookExecutionType } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
13
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
13
14
 
14
15
  let PausedCellDecorationContribution = class PausedCellDecorationContribution extends Disposable {
15
16
  static { this.id = 'workbench.notebook.debug.pausedCellDecorations'; }
@@ -1,17 +1,17 @@
1
1
  import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { Schemas } from 'vscode/vscode/vs/base/common/network';
3
3
  import { registerEditorContribution } from 'vscode/vscode/vs/editor/browser/editorExtensions';
4
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
5
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
6
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
7
- import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService';
8
- import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
4
+ import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
5
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
6
+ import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
7
+ import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService.service';
8
+ import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
9
9
  import { EmptyTextEditorHintContribution } from '../../../../codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js';
10
- import { IInlineChatSessionService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService';
11
- import { IInlineChatService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChat';
10
+ import { IInlineChatSessionService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service';
11
+ import { IInlineChatService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChat.service';
12
12
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
13
- import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
14
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
13
+ import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
14
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
15
15
 
16
16
  let EmptyCellEditorHintContribution = class EmptyCellEditorHintContribution extends EmptyTextEditorHintContribution {
17
17
  static { this.CONTRIB_ID = 'notebook.editor.contrib.emptyCellEditorHint'; }
@@ -1,11 +1,11 @@
1
1
  import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { localizeWithPath } from 'vscode/vscode/vs/nls';
3
- import { Disposable, DisposableStore, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
3
+ import { DisposableStore, Disposable, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
4
4
  import { Schemas } from 'vscode/vscode/vs/base/common/network';
5
5
  import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
6
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
6
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
7
7
  import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
8
- import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
8
+ import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
9
9
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
10
10
  import { Extensions, registerWorkbenchContribution2 } from 'vscode/vscode/vs/workbench/common/contributions';
11
11
  import { CENTER_ACTIVE_CELL } from '../navigation/arrow.js';
@@ -13,9 +13,9 @@ import { SELECT_KERNEL_ID } from 'vscode/vscode/vs/workbench/contrib/notebook/br
13
13
  import { SELECT_NOTEBOOK_INDENTATION_ID } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/controller/editActions';
14
14
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
15
15
  import { NotebookCellsChangeType } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
16
- import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
17
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
18
- import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
16
+ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
17
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
18
+ import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
19
19
 
20
20
  let ImplictKernelSelector = class ImplictKernelSelector {
21
21
  constructor(notebook, suggested, notebookKernelService, languageFeaturesService, logService) {
@@ -3,8 +3,8 @@ import { throttle } from 'vscode/vscode/vs/base/common/decorators';
3
3
  import { Disposable, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
4
4
  import { registerNotebookContribution } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
5
5
  import { NotebookCellExecutionState } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
6
- import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
7
- import { IUserActivityService } from 'vscode/vscode/vs/workbench/services/userActivity/common/userActivityService';
6
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
7
+ import { IUserActivityService } from 'vscode/vscode/vs/workbench/services/userActivity/common/userActivityService.service';
8
8
 
9
9
  let ExecutionEditorProgressController = class ExecutionEditorProgressController extends Disposable {
10
10
  static { this.id = 'workbench.notebook.executionEditorProgress'; }
@@ -3,7 +3,7 @@ import { Schemas } from 'vscode/vscode/vs/base/common/network';
3
3
  import { isEqual } from 'vscode/vscode/vs/base/common/resources';
4
4
  import { ICodeEditorService } from 'vscode/vscode/vs/editor/browser/services/codeEditorService';
5
5
  import { EditorContextKeys } from 'vscode/vscode/vs/editor/common/editorContextKeys';
6
- import { StartFindAction, StartFindReplaceAction, getSelectionSearchString } from 'vscode/vscode/vs/editor/contrib/find/browser/findController';
6
+ import { getSelectionSearchString, StartFindAction, StartFindReplaceAction } from 'vscode/vscode/vs/editor/contrib/find/browser/findController';
7
7
  import { localize2WithPath } from 'vscode/vscode/vs/nls';
8
8
  import { registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
9
9
  import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
@@ -12,7 +12,7 @@ import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/cont
12
12
  import { registerNotebookContribution } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
13
13
  import { CellUri } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
14
14
  import { NOTEBOOK_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED, NOTEBOOK_IS_ACTIVE_EDITOR, INTERACTIVE_WINDOW_IS_ACTIVE_EDITOR } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
15
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
15
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
16
16
 
17
17
  registerNotebookContribution(NotebookFindContrib.id, NotebookFindContrib);
18
18
  registerAction2(class extends Action2 {
@@ -16,13 +16,13 @@ import { Progress } from 'vscode/vscode/vs/platform/progress/common/progress';
16
16
  import { NOTEBOOK_ACTIONS_CATEGORY } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
17
17
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
18
18
  import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
19
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
20
- import { INotebookExecutionService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService';
19
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
20
+ import { INotebookExecutionService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService.service';
21
21
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
22
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
22
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
23
23
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
24
24
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
25
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
25
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
26
26
 
27
27
  registerAction2(class extends Action2 {
28
28
  constructor() {
@@ -3,17 +3,18 @@ import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
3
3
  import { localize2WithPath } from 'vscode/vscode/vs/nls';
4
4
  import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
5
5
  import { registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
6
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
7
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
8
- import { IContextKeyService, ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
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 { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
9
+ import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
9
10
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
10
- import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
11
+ import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
11
12
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
12
13
  import { Memento } from 'vscode/vscode/vs/workbench/common/memento';
13
14
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
14
15
  import { HAS_OPENED_NOTEBOOK } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
15
16
  import { NotebookEditorInput } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
16
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
17
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
17
18
 
18
19
  const hasOpenedNotebookKey = 'hasOpenedNotebook';
19
20
  const hasShownGettingStartedKey = 'hasShownNotebookGettingStarted';
@@ -2,9 +2,9 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { Disposable, DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
3
3
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
4
4
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
5
- import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
6
- import { INotebookLoggingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookLoggingService';
7
- import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
5
+ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
6
+ import { INotebookLoggingService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookLoggingService.service';
7
+ import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
8
8
 
9
9
  let NotebookKernelDetection = class NotebookKernelDetection extends Disposable {
10
10
  constructor(_notebookKernelService, _extensionService, _notebookLoggingService) {
@@ -1,6 +1,6 @@
1
1
  import { localize2WithPath } from 'vscode/vscode/vs/nls';
2
- import { registerAction2, Action2, MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
3
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
2
+ import { Action2, MenuId, registerAction2 } from 'vscode/vscode/vs/platform/actions/common/actions';
3
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
4
4
  import { NOTEBOOK_ACTIONS_CATEGORY } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
5
5
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
6
6
 
@@ -2,8 +2,9 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { registerWorkbenchContribution2 } from 'vscode/vscode/vs/workbench/common/contributions';
3
3
  import { MarkerList, IMarkerNavigationService } from 'vscode/vscode/vs/editor/contrib/gotoError/browser/markerNavigationService';
4
4
  import { CellUri } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
5
- import { IMarkerService, MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
6
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
5
+ import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
6
+ import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
7
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
7
8
  import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
8
9
  import { NotebookOverviewRulerLane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
9
10
  import { registerNotebookContribution } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
@@ -1,8 +1,8 @@
1
1
  import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
3
3
  import { localize2WithPath } from 'vscode/vscode/vs/nls';
4
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
5
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
4
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
5
+ import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
6
6
  import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
7
7
  import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
8
8
  import { Extensions } from 'vscode/vscode/vs/workbench/common/views';
@@ -12,10 +12,10 @@ import { NotebookVariablesView } from './notebookVariablesView.js';
12
12
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
13
13
  import { variablesViewIcon } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookIcons';
14
14
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
15
- import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
16
- import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
17
- import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService';
18
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
15
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
16
+ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
17
+ import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
18
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
19
19
 
20
20
  let NotebookVariables = class NotebookVariables extends Disposable {
21
21
  constructor(contextKeyService, configurationService, editorService, notebookExecutionStateService, notebookKernelService, notebookDocumentService) {
@@ -1,4 +1,4 @@
1
- import { append, $ as $$1 } from 'vscode/vscode/vs/base/browser/dom';
1
+ import { $ as $$1, append } from 'vscode/vscode/vs/base/browser/dom';
2
2
  import { localizeWithPath } from 'vscode/vscode/vs/nls';
3
3
  import 'vscode/vscode/vs/platform/list/browser/listService';
4
4
  import { renderExpressionValue } from 'vscode/vscode/vs/workbench/contrib/debug/browser/baseDebugView';
@@ -2,27 +2,28 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
2
2
  import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
3
3
  import { localize2WithPath } from 'vscode/vscode/vs/nls';
4
4
  import { createAndFillInContextMenuActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
5
- import { MenuId, IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions';
6
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
7
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
8
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
9
- import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
5
+ import { MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
6
+ import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
7
+ import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
8
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
9
+ import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
10
+ import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
10
11
  import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
11
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
12
+ import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
12
13
  import { WorkbenchAsyncDataTree } from 'vscode/vscode/vs/platform/list/browser/listService';
13
- import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
14
- import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput';
15
- import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
16
- import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
14
+ import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
15
+ import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
16
+ import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
17
+ import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
17
18
  import { ViewPane } from 'vscode/vscode/vs/workbench/browser/parts/views/viewPane';
18
- import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
19
+ import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
19
20
  import { CONTEXT_VARIABLE_NAME, CONTEXT_VARIABLE_VALUE, CONTEXT_VARIABLE_TYPE, CONTEXT_VARIABLE_INTERFACES, CONTEXT_VARIABLE_LANGUAGE, CONTEXT_VARIABLE_EXTENSIONID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
20
21
  import { NotebookVariableDataSource } from './notebookVariablesDataSource.js';
21
22
  import { NotebookVariablesDelegate, NotebookVariableRenderer, NotebookVariableAccessibilityProvider } from './notebookVariablesTree.js';
22
23
  import { getNotebookEditorFromEditorPane } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
23
- import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
24
- import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService';
25
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
24
+ import { INotebookExecutionStateService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service';
25
+ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
26
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
26
27
 
27
28
  let NotebookVariablesView = class NotebookVariablesView extends ViewPane {
28
29
  static { this.ID = 'notebookVariablesView'; }
@@ -8,7 +8,7 @@ import { createMatches } from 'vscode/vscode/vs/base/common/filters';
8
8
  import { DisposableStore, Disposable, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
9
9
  import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
10
10
  import { getIconClassesForLanguageId } from 'vscode/vscode/vs/editor/common/services/getIconClasses';
11
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
11
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
12
12
  import { Extensions as Extensions$1 } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
13
13
  import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
14
14
  import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
@@ -24,18 +24,21 @@ import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
24
24
  import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
25
25
  import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
26
26
  import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
27
- import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
27
+ import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
28
28
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
29
29
  import { NotebookEditor } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/notebookEditor';
30
30
  import { NotebookCellOutlineProvider } from 'vscode/vscode/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineProvider';
31
- import { NotebookSetting, CellKind } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
32
- import { IEditorService, SIDE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
33
- import { IOutlineService } from 'vscode/vscode/vs/workbench/services/outline/browser/outline';
31
+ import { CellKind, NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
32
+ import { SIDE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
33
+ import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
34
+ import { IOutlineService } from 'vscode/vscode/vs/workbench/services/outline/browser/outline.service';
34
35
  import { Range } from 'vscode/vscode/vs/editor/common/core/range';
35
36
  import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
36
- import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
37
- import { IMenuService, MenuRegistry, MenuId, registerAction2, Action2, MenuItemAction } from 'vscode/vscode/vs/platform/actions/common/actions';
38
- import { IContextKeyService, RawContextKey, ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
37
+ import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
38
+ import { MenuItemAction, MenuId, MenuRegistry, registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
39
+ import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
40
+ import { RawContextKey, ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
41
+ import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
39
42
  import { MenuEntryActionViewItem, createAndFillInActionBarActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
40
43
  import { disposableTimeout } from 'vscode/vscode/vs/base/common/async';
41
44
  import { IOutlinePane } from 'vscode/vscode/vs/workbench/contrib/outline/browser/outline';
@@ -1,6 +1,6 @@
1
1
  import { localizeWithPath } from 'vscode/vscode/vs/nls';
2
2
  import { registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
3
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
3
+ import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
4
4
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
5
5
 
6
6
  var NotebookProfileType;