@codingame/monaco-vscode-interactive-service-override 26.1.2 → 26.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-interactive-service-override",
3
- "version": "26.1.2",
3
+ "version": "26.2.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - interactive service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.1.2",
19
- "@codingame/monaco-vscode-katex-common": "26.1.2"
18
+ "@codingame/monaco-vscode-api": "26.2.0",
19
+ "@codingame/monaco-vscode-katex-common": "26.2.0"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -43,7 +43,7 @@ import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monac
43
43
  import { EditorExtensions, EditorsOrder } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
44
44
  import { PANEL_BORDER } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/theme';
45
45
  import { ResourceNotebookCellEdit } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/bulkEdit/browser/bulkCellEdits';
46
- import { INTERACTIVE_INPUT_CURSOR_BOUNDARY, ReplEditorSettings } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/interactive/browser/interactiveCommon';
46
+ import { INTERACTIVE_INPUT_CURSOR_BOUNDARY, ReplEditorSettings } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/interactive/browser/interactiveCommon';
47
47
  import '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
48
48
  import { InteractiveEditor } from './interactiveEditor.js';
49
49
  import { InteractiveEditorInput } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/interactive/browser/interactiveEditorInput';
@@ -64,7 +64,7 @@ import { IEditorResolverService } from '@codingame/monaco-vscode-api/vscode/vs/w
64
64
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
65
65
  import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
66
66
  import { IWorkingCopyEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyEditorService.service';
67
- import { isReplEditorControl } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/replNotebook/browser/replEditor';
67
+ import { isReplEditorControl } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/replNotebook/browser/replEditor';
68
68
  import { InlineChatController } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatController';
69
69
  import { IsWindowsContext, IsLinuxContext } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkeys';
70
70
 
@@ -25,7 +25,7 @@ import { ITextResourceConfigurationService } from "@codingame/monaco-vscode-api/
25
25
  import { ITextEditorOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor";
26
26
  import { INotebookExecutionStateService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service";
27
27
  import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
28
- import { ReplEditorControl } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/replNotebook/browser/replEditor";
28
+ import { ReplEditorControl } from "@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/replNotebook/browser/replEditor";
29
29
  export interface InteractiveEditorViewState {
30
30
  readonly notebook?: INotebookEditorViewState;
31
31
  readonly input?: ICodeEditorViewState | null;
@@ -21,14 +21,14 @@ import { NotebookEditorExtensionsRegistry } from '@codingame/monaco-vscode-api/v
21
21
  import { INotebookEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service';
22
22
  import { GroupsOrder } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService';
23
23
  import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
24
- import { ExecutionStateCellStatusBarContrib, TimerCellStatusBarContrib } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController';
24
+ import { ExecutionStateCellStatusBarContrib, TimerCellStatusBarContrib } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController';
25
25
  import { INotebookKernelService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
26
26
  import { PLAINTEXT_LANGUAGE_ID } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/modesRegistry';
27
27
  import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language.service';
28
28
  import { MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
29
29
  import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
30
30
  import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
31
- import { ReplEditorSettings, INTERACTIVE_INPUT_CURSOR_BOUNDARY } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/interactive/browser/interactiveCommon';
31
+ import { ReplEditorSettings, INTERACTIVE_INPUT_CURSOR_BOUNDARY } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/interactive/browser/interactiveCommon';
32
32
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
33
33
  import { NotebookOptions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookOptions';
34
34
  import { ToolBar } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/toolbar/toolbar';
@@ -50,13 +50,13 @@ import { INotebookExecutionStateService } from '@codingame/monaco-vscode-api/vsc
50
50
  import { NOTEBOOK_KERNEL } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
51
51
  import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
52
52
  import { isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
53
- import { NotebookFindContrib } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget';
53
+ import { NotebookFindContrib } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget';
54
54
  import { INTERACTIVE_WINDOW_EDITOR_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
55
55
  import * as interactiveEditor from './interactiveEditor.css';
56
56
  import { deepClone } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
57
57
  import { ContentHoverController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/contentHoverController';
58
58
  import { GlyphHoverController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/glyphHoverController';
59
- import { ReplInputHintContentWidget } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/interactive/browser/replInputHintContentWidget';
59
+ import { ReplInputHintContentWidget } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/interactive/browser/replInputHintContentWidget';
60
60
  import { ServiceCollection } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/serviceCollection';
61
61
  import { INLINE_CHAT_ID } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/inlineChat/common/inlineChat';
62
62