@codingame/monaco-vscode-api 19.1.3 → 20.0.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/missing-services.js +141 -54
- package/package.json +8 -8
- package/services.d.ts +5 -5
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/dom.d.ts +7 -5
- package/vscode/src/vs/base/browser/dom.js +21 -132
- package/vscode/src/vs/base/browser/domSanitize.d.ts +28 -0
- package/vscode/src/vs/base/browser/domSanitize.js +175 -0
- package/vscode/src/vs/base/browser/formattedTextRenderer.d.ts +2 -5
- package/vscode/src/vs/base/browser/formattedTextRenderer.js +13 -20
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +23 -13
- package/vscode/src/vs/base/browser/markdownRenderer.js +155 -126
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +9 -11
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/button/button.js +24 -15
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.js +5 -10
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +9 -0
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +3 -21
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +7 -7
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/abstractScrollbar.js +9 -5
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +48 -1
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElementOptions.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +0 -3
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +22 -12
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +93 -33
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +3 -0
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +3 -1
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +19 -17
- package/vscode/src/vs/base/browser/webWorkerFactory.d.ts +1 -1
- package/vscode/src/vs/base/browser/webWorkerFactory.js +3 -2
- package/vscode/src/vs/base/common/arrays.js +4 -1
- package/vscode/src/vs/base/common/arraysFind.d.ts +1 -0
- package/vscode/src/vs/base/common/async.d.ts +26 -0
- package/vscode/src/vs/base/common/async.js +103 -1
- package/vscode/src/vs/base/common/codicons.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
- package/vscode/src/vs/base/common/lifecycle.js +4 -0
- package/vscode/src/vs/base/common/marshallingIds.d.ts +3 -1
- package/vscode/src/vs/base/common/marshallingIds.js +2 -0
- package/vscode/src/vs/base/common/network.d.ts +2 -1
- package/vscode/src/vs/base/common/network.js +2 -1
- package/vscode/src/vs/base/common/oauth.d.ts +2 -8
- package/vscode/src/vs/base/common/oauth.js +6 -27
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +10 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +33 -1
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +22 -1
- package/vscode/src/vs/base/common/observableInternal/map.d.ts +24 -0
- package/vscode/src/vs/base/common/observableInternal/map.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +8 -0
- package/vscode/src/vs/base/common/platform.js +1 -1
- package/vscode/src/vs/base/common/product.d.ts +19 -7
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +16 -1
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +4 -4
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +1 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.d.ts +48 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.js +182 -0
- package/vscode/src/vs/editor/browser/controller/editContext/clipboardUtils.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +3 -5
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +30 -73
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentRich.d.ts +35 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentRich.js +329 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentSimple.d.ts +31 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentSimple.js +176 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +12 -12
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +50 -88
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderUtils.d.ts +11 -0
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +9 -12
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +22 -11
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +5 -21
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +23 -2
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.d.ts +2 -2
- package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +31 -114
- package/vscode/src/vs/editor/browser/controller/mouseTarget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +26 -7
- package/vscode/src/vs/editor/browser/coreCommands.d.ts +3 -3
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/browser/editorExtensions.d.ts +2 -2
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +5 -2
- package/vscode/src/vs/editor/browser/gpu/taskQueue.js +11 -4
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +1 -1
- package/vscode/src/vs/editor/browser/services/bulkEditService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +33 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.js +6 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +4 -1
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +13 -2
- package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.js +1 -1
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +2 -1
- package/vscode/src/vs/editor/browser/view/viewUserInputEvents.d.ts +1 -1
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -3
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.js +2 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +8 -2
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +3 -2
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.js +44 -13
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.js +7 -2
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +9 -4
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +43 -35
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.js +2 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +21 -4
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +3 -3
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +3 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +4 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +3 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +9 -3
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +4 -4
- package/vscode/src/vs/editor/common/commands/surroundSelectionCommand.js +1 -1
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +21 -6
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +178 -162
- package/vscode/src/vs/editor/common/config/editorOptions.js +592 -495
- package/vscode/src/vs/editor/common/coordinatesConverter.d.ts +30 -0
- package/vscode/src/vs/editor/common/coordinatesConverter.js +56 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/edits/edit.d.ts +3 -3
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/edits/lineEdit.js +14 -14
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +11 -4
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +36 -12
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/edits/textEdit.js +20 -0
- package/vscode/src/vs/editor/common/core/text/abstractText.d.ts +2 -0
- package/vscode/src/vs/editor/common/core/text/abstractText.js +3 -0
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.js +2 -2
- package/vscode/src/vs/editor/common/cursor/cursor.d.ts +4 -4
- package/vscode/src/vs/editor/common/cursor/cursor.js +9 -9
- package/vscode/src/vs/editor/common/cursor/cursorContext.d.ts +1 -1
- package/vscode/src/vs/editor/common/cursor/cursorDeleteOperations.d.ts +2 -1
- package/vscode/src/vs/editor/common/cursor/cursorDeleteOperations.js +28 -13
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.js +15 -6
- package/vscode/src/vs/editor/common/cursorCommon.d.ts +1 -0
- package/vscode/src/vs/editor/common/cursorCommon.js +2 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +3 -3
- package/vscode/src/vs/editor/common/languages/linkComputer.js +1 -4
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +19 -0
- package/vscode/src/vs/editor/common/languages.js +83 -57
- package/vscode/src/vs/editor/common/model/editStack.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/editStack.js +3 -3
- package/vscode/src/vs/editor/common/model/textModel.d.ts +7 -6
- package/vscode/src/vs/editor/common/model/textModel.js +5 -4
- package/vscode/src/vs/editor/common/model.d.ts +6 -1
- package/vscode/src/vs/editor/common/model.js +6 -1
- package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/model.service.d.ts +2 -2
- package/vscode/src/vs/editor/common/services/modelService.d.ts +2 -2
- package/vscode/src/vs/editor/common/services/modelService.js +2 -2
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +172 -160
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +174 -161
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +151 -0
- package/vscode/src/vs/editor/common/{textModelEditReason.js → textModelEditSource.js} +44 -23
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +2 -2
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +1 -1
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.d.ts +1 -1
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.js +1 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +8 -5
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +29 -29
- package/vscode/src/vs/editor/common/viewLayout/viewLinesViewportData.d.ts +2 -1
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.d.ts +21 -0
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.js +30 -0
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.js +2 -1
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.d.ts +1 -1
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +11 -3
- package/vscode/src/vs/editor/common/viewModel/screenReaderSimpleModel.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecoration.d.ts +11 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecoration.js +49 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +7 -11
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.js +5 -43
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +7 -4
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +32 -9
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +4 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +5 -55
- package/vscode/src/vs/editor/common/viewModel.d.ts +8 -34
- package/vscode/src/vs/editor/common/viewModel.js +3 -35
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +44 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +8 -7
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +5 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +0 -3
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +4 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -19
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +54 -29
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +31 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.js +6 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +7 -2
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.js +6 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +18 -19
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +17 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +22 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +107 -83
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +31 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +27 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +11 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +32 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.js +145 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +2 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +14 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +42 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +105 -33
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +34 -28
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +13 -13
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +5 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +13 -13
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +6 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +30 -30
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +9 -6
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
- package/vscode/src/vs/editor/editor.worker.start.d.ts +1 -1
- package/vscode/src/vs/editor/editor.worker.start.js +26 -18
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +2 -1
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +1 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +3 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +45 -8
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +20 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/actionViewItemService.service.d.ts +5 -5
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +1 -0
- package/vscode/src/vs/platform/actions/browser/toolbar.js +6 -3
- package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -3
- package/vscode/src/vs/platform/actions/common/actions.js +4 -3
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.d.ts +1 -1
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +12 -2
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +5 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +20 -10
- package/vscode/src/vs/platform/configuration/common/configurations.js +2 -2
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/diagnostics/common/diagnostics.d.ts +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +1 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +2 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +2 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.d.ts +62 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.js +55 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +21 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +21 -0
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.d.ts +5 -0
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.js +6 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +8 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.js +2 -1
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +1 -0
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +20 -9
- package/vscode/src/vs/platform/opener/browser/link.js +1 -4
- package/vscode/src/vs/platform/policy/common/policy.d.ts +2 -2
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +81 -14
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +10 -7
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +19 -14
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +38 -11
- package/vscode/src/vs/platform/quickinput/browser/{quickInputTree.d.ts → quickInputList.d.ts} +1 -1
- package/vscode/src/vs/platform/quickinput/browser/{quickInputTree.js → quickInputList.js} +9 -9
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +6 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.js +13 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.d.ts +9 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.js +35 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +13 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +33 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +42 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +296 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.d.ts +10 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.js +39 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +33 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +148 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +53 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +189 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +46 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.js +1 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +2 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/environmentVariableShared.d.ts +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -5
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +2 -4
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +1 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +12 -2
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +14 -6
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +64 -9
- package/vscode/src/vs/workbench/api/common/extHost.common.services.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +102 -41
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +6 -0
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +4 -2
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +98 -27
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +22 -4
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +24 -5
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.js +32 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +35 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +222 -0
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDataChannels.d.ts +15 -0
- package/vscode/src/vs/workbench/api/common/extHostDataChannels.js +44 -0
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +32 -34
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +12 -15
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +127 -120
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +40 -25
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +28 -10
- package/vscode/src/vs/workbench/api/common/extHostSecretState.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostSecretState.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostSecrets.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostSecrets.js +6 -0
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTask.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHostTask.js +12 -1
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.d.ts +8 -8
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +203 -198
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +19 -8
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +211 -33
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +77 -13
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +69 -11
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.d.ts +4 -2
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +24 -10
- package/vscode/src/vs/workbench/browser/contextkeys.js +10 -5
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +87 -78
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.d.ts +32 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +180 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.d.ts +12 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.js +26 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/editorModel.d.ts +10 -0
- package/vscode/src/vs/workbench/common/editor/editorModel.js +27 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.d.ts +51 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +303 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.d.ts +18 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.js +45 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.d.ts +47 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +181 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.d.ts +2 -2
- package/vscode/src/vs/workbench/common/theme.js +161 -161
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -156
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +59 -48
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +81 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +7 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +6 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +32 -11
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +8 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +47 -17
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +147 -65
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +9 -7
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +203 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +4 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +4 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +5 -5
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +5 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +33 -9
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +28 -10
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +9 -7
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +2 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +8 -10
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.js +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +5 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.d.ts +7 -0
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.service.js +6 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +10 -13
- package/vscode/src/vs/workbench/services/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +2 -5
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +100 -84
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.d.ts +61 -0
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.js +7 -0
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.d.ts +11 -8
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.js +3 -2
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +1 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -2
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +5 -5
- package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +86 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +142 -5
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +25 -19
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +2 -103
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +129 -0
- package/vscode-dts/vscode.proposed.d.ts +7 -0
- package/vscode-dts/vscode.proposed.dataChannels.d.ts +19 -0
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +2 -0
- package/vscode-dts/vscode.proposed.languageModelToolResultAudience.d.ts +25 -0
- package/vscode-dts/vscode.proposed.scmProviderOptions.d.ts +39 -0
- package/vscode-dts/vscode.proposed.secretStorageKeys.d.ts +16 -0
- package/vscode-dts/vscode.proposed.taskExecutionTerminal.d.ts +15 -0
- package/workbench.d.ts +1 -1
- package/workers/editor.worker.js +17 -16
- package/vscode/src/vs/base/common/policy.d.ts +0 -8
- package/vscode/src/vs/editor/common/textModelEditReason.d.ts +0 -98
- package/vscode/src/vs/platform/assignment/common/assignment.d.ts +0 -33
package/missing-services.js
CHANGED
|
@@ -70,7 +70,7 @@ import { IKeyboardLayoutService } from './vscode/src/vs/platform/keyboardLayout/
|
|
|
70
70
|
import { ILanguagePackService } from './vscode/src/vs/platform/languagePacks/common/languagePacks.service.js';
|
|
71
71
|
import { AbstractLoggerService, LogLevel, NullLogger } from './vscode/src/vs/platform/log/common/log.js';
|
|
72
72
|
import { ILoggerService } from './vscode/src/vs/platform/log/common/log.service.js';
|
|
73
|
-
import { IMcpGalleryService,
|
|
73
|
+
import { IMcpGalleryService, IAllowedMcpServersService } from './vscode/src/vs/platform/mcp/common/mcpManagement.service.js';
|
|
74
74
|
import { IMcpResourceScannerService } from './vscode/src/vs/platform/mcp/common/mcpResourceScannerService.service.js';
|
|
75
75
|
import { NullPolicyService } from './vscode/src/vs/platform/policy/common/policy.js';
|
|
76
76
|
import { IPolicyService } from './vscode/src/vs/platform/policy/common/policy.service.js';
|
|
@@ -116,13 +116,16 @@ import { IQuickChatService, IChatWidgetService, IChatAccessibilityService, IChat
|
|
|
116
116
|
import { IChatAttachmentResolveService } from './vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.js';
|
|
117
117
|
import { IChatMarkdownAnchorService } from './vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.js';
|
|
118
118
|
import { IChatContextPickService } from './vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.js';
|
|
119
|
+
import { IChatOutputRendererService } from './vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.js';
|
|
119
120
|
import { IChatStatusItemService } from './vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.js';
|
|
120
121
|
import { IChatAgentService, IChatAgentNameService } from './vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.js';
|
|
121
122
|
import { ICodeMapperService } from './vscode/src/vs/workbench/contrib/chat/common/chatCodeMapperService.service.js';
|
|
122
123
|
import { IChatEditingService } from './vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.js';
|
|
123
124
|
import { IChatEntitlementService } from './vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.js';
|
|
124
125
|
import { IChatService } from './vscode/src/vs/workbench/contrib/chat/common/chatService.service.js';
|
|
126
|
+
import { IChatSessionsService } from './vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.js';
|
|
125
127
|
import { IChatSlashCommandService } from './vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.js';
|
|
128
|
+
import { IChatTodoListService } from './vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.js';
|
|
126
129
|
import { IChatTransferService } from './vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.js';
|
|
127
130
|
import { IChatVariablesService } from './vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.js';
|
|
128
131
|
import { IChatWidgetHistoryService } from './vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.js';
|
|
@@ -286,6 +289,8 @@ import { IWorkingCopyService } from './vscode/src/vs/workbench/services/workingC
|
|
|
286
289
|
import { IWorkspaceEditingService } from './vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.js';
|
|
287
290
|
import { IWorkspaceIdentityService } from './vscode/src/vs/workbench/services/workspaces/common/workspaceIdentityService.service.js';
|
|
288
291
|
import { IAiSettingsSearchService } from './vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js';
|
|
292
|
+
import { IImageResizeService } from './vscode/src/vs/platform/imageResize/common/imageResizeService.service.js';
|
|
293
|
+
import { IDataChannelService } from './vscode/src/vs/workbench/services/dataChannel/common/dataChannel.service.js';
|
|
289
294
|
import { getBuiltInExtensionTranslationsUris, getExtensionIdProvidingCurrentLocale } from './l10n.js';
|
|
290
295
|
import { unsupported } from './tools.js';
|
|
291
296
|
import { constObservable } from './vscode/src/vs/base/common/observableInternal/observables/constObservable.js';
|
|
@@ -1993,6 +1998,7 @@ class TaskService {
|
|
|
1993
1998
|
this.extensionCallbackTaskComplete = unsupported;
|
|
1994
1999
|
this.isReconnected = false;
|
|
1995
2000
|
this.onDidReconnectToTasks = Event.None;
|
|
2001
|
+
this.getTerminalForTask = () => undefined;
|
|
1996
2002
|
}
|
|
1997
2003
|
}
|
|
1998
2004
|
__decorate([
|
|
@@ -2727,9 +2733,6 @@ __decorate([
|
|
|
2727
2733
|
registerSingleton(IUntitledTextEditorService, UntitledTextEditorService, InstantiationType.Eager);
|
|
2728
2734
|
class WorkingCopyBackupService {
|
|
2729
2735
|
constructor() {
|
|
2730
|
-
this.hasBackups = async () => {
|
|
2731
|
-
return false;
|
|
2732
|
-
};
|
|
2733
2736
|
this.hasBackupSync = () => {
|
|
2734
2737
|
return false;
|
|
2735
2738
|
};
|
|
@@ -4192,7 +4195,6 @@ class WorkbenchAssignmentService {
|
|
|
4192
4195
|
registerSingleton(IWorkbenchAssignmentService, WorkbenchAssignmentService, InstantiationType.Delayed);
|
|
4193
4196
|
class ChatService {
|
|
4194
4197
|
constructor() {
|
|
4195
|
-
this.edits2Enabled = false;
|
|
4196
4198
|
this.isPersistedSessionEmpty = () => true;
|
|
4197
4199
|
this.activateDefaultAgent = unsupported;
|
|
4198
4200
|
this.getChatStorageFolder = unsupported;
|
|
@@ -4220,6 +4222,9 @@ class ChatService {
|
|
|
4220
4222
|
this.onDidPerformUserAction = Event.None;
|
|
4221
4223
|
this.notifyUserAction = unsupported;
|
|
4222
4224
|
this.onDidSubmitRequest = Event.None;
|
|
4225
|
+
this.loadSessionForResource = unsupported;
|
|
4226
|
+
this.requestInProgressObs = constObservable(false);
|
|
4227
|
+
this.edits2Enabled = false;
|
|
4223
4228
|
}
|
|
4224
4229
|
}
|
|
4225
4230
|
__decorate([
|
|
@@ -4270,6 +4275,9 @@ __decorate([
|
|
|
4270
4275
|
__decorate([
|
|
4271
4276
|
Unsupported
|
|
4272
4277
|
], ChatService.prototype, "notifyUserAction", void 0);
|
|
4278
|
+
__decorate([
|
|
4279
|
+
Unsupported
|
|
4280
|
+
], ChatService.prototype, "loadSessionForResource", void 0);
|
|
4273
4281
|
registerSingleton(IChatService, ChatService, InstantiationType.Delayed);
|
|
4274
4282
|
class ChatMarkdownAnchorService {
|
|
4275
4283
|
constructor() {
|
|
@@ -4348,9 +4356,8 @@ class QuickChatAgentService {
|
|
|
4348
4356
|
this.invokeAgent = unsupported;
|
|
4349
4357
|
this.getAgents = unsupported;
|
|
4350
4358
|
this.getAgent = unsupported;
|
|
4351
|
-
this.getChatSummary = async () =>
|
|
4352
|
-
|
|
4353
|
-
};
|
|
4359
|
+
this.getChatSummary = async () => undefined;
|
|
4360
|
+
this.setRequestTools = unsupported;
|
|
4354
4361
|
}
|
|
4355
4362
|
}
|
|
4356
4363
|
__decorate([
|
|
@@ -4398,6 +4405,9 @@ __decorate([
|
|
|
4398
4405
|
__decorate([
|
|
4399
4406
|
Unsupported
|
|
4400
4407
|
], QuickChatAgentService.prototype, "getAgent", void 0);
|
|
4408
|
+
__decorate([
|
|
4409
|
+
Unsupported
|
|
4410
|
+
], QuickChatAgentService.prototype, "setRequestTools", void 0);
|
|
4401
4411
|
registerSingleton(IChatAgentService, QuickChatAgentService, InstantiationType.Delayed);
|
|
4402
4412
|
class ChatAgentNameService {
|
|
4403
4413
|
constructor() {
|
|
@@ -5870,7 +5880,9 @@ class LanguageModelsService {
|
|
|
5870
5880
|
this.onDidChangeLanguageModels = Event.None;
|
|
5871
5881
|
this.getLanguageModelIds = () => [];
|
|
5872
5882
|
this.lookupLanguageModel = () => undefined;
|
|
5873
|
-
this.
|
|
5883
|
+
this.updateModelPickerPreference = unsupported;
|
|
5884
|
+
this.getVendors = () => [];
|
|
5885
|
+
this.registerLanguageModelProvider = () => Disposable.None;
|
|
5874
5886
|
}
|
|
5875
5887
|
}
|
|
5876
5888
|
__decorate([
|
|
@@ -5884,7 +5896,7 @@ __decorate([
|
|
|
5884
5896
|
], LanguageModelsService.prototype, "computeTokenLength", void 0);
|
|
5885
5897
|
__decorate([
|
|
5886
5898
|
Unsupported
|
|
5887
|
-
], LanguageModelsService.prototype, "
|
|
5899
|
+
], LanguageModelsService.prototype, "updateModelPickerPreference", void 0);
|
|
5888
5900
|
registerSingleton(ILanguageModelsService, LanguageModelsService, InstantiationType.Delayed);
|
|
5889
5901
|
class ChatSlashCommandService {
|
|
5890
5902
|
constructor() {
|
|
@@ -6198,6 +6210,7 @@ class ChatAccessibilityService {
|
|
|
6198
6210
|
constructor() {
|
|
6199
6211
|
this.acceptRequest = unsupported;
|
|
6200
6212
|
this.acceptResponse = unsupported;
|
|
6213
|
+
this.acceptElicitation = unsupported;
|
|
6201
6214
|
}
|
|
6202
6215
|
}
|
|
6203
6216
|
__decorate([
|
|
@@ -6206,6 +6219,9 @@ __decorate([
|
|
|
6206
6219
|
__decorate([
|
|
6207
6220
|
Unsupported
|
|
6208
6221
|
], ChatAccessibilityService.prototype, "acceptResponse", void 0);
|
|
6222
|
+
__decorate([
|
|
6223
|
+
Unsupported
|
|
6224
|
+
], ChatAccessibilityService.prototype, "acceptElicitation", void 0);
|
|
6209
6225
|
registerSingleton(IChatAccessibilityService, ChatAccessibilityService, InstantiationType.Delayed);
|
|
6210
6226
|
class ChatWidgetHistoryService {
|
|
6211
6227
|
constructor() {
|
|
@@ -6424,6 +6440,7 @@ class UserDataSyncStoreService {
|
|
|
6424
6440
|
this.deleteCollection = unsupported;
|
|
6425
6441
|
this.getActivityData = unsupported;
|
|
6426
6442
|
this.clear = unsupported;
|
|
6443
|
+
this.getLatestData = async () => null;
|
|
6427
6444
|
}
|
|
6428
6445
|
}
|
|
6429
6446
|
__decorate([
|
|
@@ -7018,6 +7035,9 @@ class LanguageModelToolsService {
|
|
|
7018
7035
|
this.toToolAndToolSetEnablementMap = () => {
|
|
7019
7036
|
unsupported();
|
|
7020
7037
|
};
|
|
7038
|
+
this.flushToolChanges = () => {
|
|
7039
|
+
unsupported();
|
|
7040
|
+
};
|
|
7021
7041
|
this.getToolSet = () => undefined;
|
|
7022
7042
|
}
|
|
7023
7043
|
get toolSets() {
|
|
@@ -7054,6 +7074,9 @@ __decorate([
|
|
|
7054
7074
|
__decorate([
|
|
7055
7075
|
Unsupported
|
|
7056
7076
|
], LanguageModelToolsService.prototype, "toToolAndToolSetEnablementMap", void 0);
|
|
7077
|
+
__decorate([
|
|
7078
|
+
Unsupported
|
|
7079
|
+
], LanguageModelToolsService.prototype, "flushToolChanges", void 0);
|
|
7057
7080
|
registerSingleton(ILanguageModelToolsService, LanguageModelToolsService, InstantiationType.Delayed);
|
|
7058
7081
|
class IssueFormService {
|
|
7059
7082
|
constructor() {
|
|
@@ -7097,6 +7120,7 @@ __decorate([
|
|
|
7097
7120
|
registerSingleton(ICodeMapperService, CodeMapperService, InstantiationType.Delayed);
|
|
7098
7121
|
class ChatEditingService {
|
|
7099
7122
|
constructor() {
|
|
7123
|
+
this.editingSessionsObs = constObservable([]);
|
|
7100
7124
|
this.hasRelatedFilesProviders = () => false;
|
|
7101
7125
|
this.registerRelatedFilesProvider = () => {
|
|
7102
7126
|
return unsupported();
|
|
@@ -7108,9 +7132,6 @@ class ChatEditingService {
|
|
|
7108
7132
|
};
|
|
7109
7133
|
this.createEditingSession = unsupported;
|
|
7110
7134
|
}
|
|
7111
|
-
get editingSessionsObs() {
|
|
7112
|
-
return constObservable([]);
|
|
7113
|
-
}
|
|
7114
7135
|
}
|
|
7115
7136
|
__decorate([
|
|
7116
7137
|
Unsupported
|
|
@@ -7211,6 +7232,7 @@ class QuickDiffModelService {
|
|
|
7211
7232
|
registerSingleton(IQuickDiffModelService, QuickDiffModelService, InstantiationType.Delayed);
|
|
7212
7233
|
class TerminalCompletionService {
|
|
7213
7234
|
constructor() {
|
|
7235
|
+
this.onDidChangeProviders = Event.None;
|
|
7214
7236
|
this.registerTerminalCompletionProvider = () => {
|
|
7215
7237
|
unsupported();
|
|
7216
7238
|
};
|
|
@@ -7288,8 +7310,6 @@ class McpRegistry {
|
|
|
7288
7310
|
this.onDidChangeInputs = Event.None;
|
|
7289
7311
|
this.discoverCollections = async () => [];
|
|
7290
7312
|
this.registerCollection = unsupported;
|
|
7291
|
-
this.resetTrust = unsupported;
|
|
7292
|
-
this.getTrust = unsupported;
|
|
7293
7313
|
this.clearSavedInputs = unsupported;
|
|
7294
7314
|
this.editSavedInput = unsupported;
|
|
7295
7315
|
this.getSavedInputs = unsupported;
|
|
@@ -7322,12 +7342,6 @@ __decorate([
|
|
|
7322
7342
|
__decorate([
|
|
7323
7343
|
Unsupported
|
|
7324
7344
|
], McpRegistry.prototype, "registerCollection", void 0);
|
|
7325
|
-
__decorate([
|
|
7326
|
-
Unsupported
|
|
7327
|
-
], McpRegistry.prototype, "resetTrust", void 0);
|
|
7328
|
-
__decorate([
|
|
7329
|
-
Unsupported
|
|
7330
|
-
], McpRegistry.prototype, "getTrust", void 0);
|
|
7331
7345
|
__decorate([
|
|
7332
7346
|
Unsupported
|
|
7333
7347
|
], McpRegistry.prototype, "clearSavedInputs", void 0);
|
|
@@ -7351,6 +7365,8 @@ class McpService {
|
|
|
7351
7365
|
constructor() {
|
|
7352
7366
|
this.resetCaches = unsupported;
|
|
7353
7367
|
this.activateCollections = unsupported;
|
|
7368
|
+
this.resetTrust = unsupported;
|
|
7369
|
+
this.autostart = unsupported;
|
|
7354
7370
|
}
|
|
7355
7371
|
get servers() {
|
|
7356
7372
|
return unsupported();
|
|
@@ -7371,22 +7387,34 @@ __decorate([
|
|
|
7371
7387
|
__decorate([
|
|
7372
7388
|
Unsupported
|
|
7373
7389
|
], McpService.prototype, "activateCollections", void 0);
|
|
7390
|
+
__decorate([
|
|
7391
|
+
Unsupported
|
|
7392
|
+
], McpService.prototype, "resetTrust", void 0);
|
|
7393
|
+
__decorate([
|
|
7394
|
+
Unsupported
|
|
7395
|
+
], McpService.prototype, "autostart", void 0);
|
|
7374
7396
|
registerSingleton(IMcpService, McpService, InstantiationType.Eager);
|
|
7375
7397
|
class ExtensionGalleryManifestService {
|
|
7376
7398
|
constructor() {
|
|
7377
7399
|
this.onDidChangeExtensionGalleryManifest = Event.None;
|
|
7378
|
-
this.
|
|
7400
|
+
this.onDidChangeExtensionGalleryManifestStatus = Event.None;
|
|
7379
7401
|
this.getExtensionGalleryManifest = async () => null;
|
|
7380
7402
|
}
|
|
7403
|
+
get extensionGalleryManifestStatus() {
|
|
7404
|
+
return unsupported();
|
|
7405
|
+
}
|
|
7381
7406
|
}
|
|
7407
|
+
__decorate([
|
|
7408
|
+
Unsupported
|
|
7409
|
+
], ExtensionGalleryManifestService.prototype, "extensionGalleryManifestStatus", null);
|
|
7382
7410
|
registerSingleton(IExtensionGalleryManifestService, ExtensionGalleryManifestService, InstantiationType.Eager);
|
|
7383
7411
|
registerSingleton(IWebContentExtractorService, NullWebContentExtractorService, InstantiationType.Delayed);
|
|
7384
7412
|
registerSingleton(ISharedWebContentExtractorService, NullSharedWebContentExtractorService, InstantiationType.Delayed);
|
|
7385
7413
|
registerSingleton(IDefaultAccountService, NullDefaultAccountService, InstantiationType.Delayed);
|
|
7386
7414
|
class DynamicAuthenticationProviderStorageService {
|
|
7387
7415
|
constructor() {
|
|
7388
|
-
this.
|
|
7389
|
-
this.
|
|
7416
|
+
this.getClientRegistration = async () => undefined;
|
|
7417
|
+
this.storeClientRegistration = unsupported;
|
|
7390
7418
|
this.getInteractedProviders = () => [];
|
|
7391
7419
|
this.removeDynamicProvider = async () => undefined;
|
|
7392
7420
|
this.getSessionsForDynamicAuthProvider = async () => undefined;
|
|
@@ -7394,6 +7422,9 @@ class DynamicAuthenticationProviderStorageService {
|
|
|
7394
7422
|
this.onDidChangeTokens = Event.None;
|
|
7395
7423
|
}
|
|
7396
7424
|
}
|
|
7425
|
+
__decorate([
|
|
7426
|
+
Unsupported
|
|
7427
|
+
], DynamicAuthenticationProviderStorageService.prototype, "storeClientRegistration", void 0);
|
|
7397
7428
|
registerSingleton(IDynamicAuthenticationProviderStorageService, DynamicAuthenticationProviderStorageService, InstantiationType.Eager);
|
|
7398
7429
|
class AuthenticationMcpService {
|
|
7399
7430
|
constructor() {
|
|
@@ -7444,6 +7475,8 @@ class McpWorkbenchService {
|
|
|
7444
7475
|
this.open = async () => undefined;
|
|
7445
7476
|
this.onReset = Event.None;
|
|
7446
7477
|
this.getMcpConfigPath = unsupported;
|
|
7478
|
+
this.getEnabledLocalMcpServers = () => [];
|
|
7479
|
+
this.canInstall = unsupported;
|
|
7447
7480
|
}
|
|
7448
7481
|
}
|
|
7449
7482
|
__decorate([
|
|
@@ -7452,6 +7485,9 @@ __decorate([
|
|
|
7452
7485
|
__decorate([
|
|
7453
7486
|
Unsupported
|
|
7454
7487
|
], McpWorkbenchService.prototype, "getMcpConfigPath", void 0);
|
|
7488
|
+
__decorate([
|
|
7489
|
+
Unsupported
|
|
7490
|
+
], McpWorkbenchService.prototype, "canInstall", void 0);
|
|
7455
7491
|
registerSingleton(IMcpWorkbenchService, McpWorkbenchService, InstantiationType.Eager);
|
|
7456
7492
|
class McpGalleryService {
|
|
7457
7493
|
constructor() {
|
|
@@ -7469,30 +7505,6 @@ __decorate([
|
|
|
7469
7505
|
Unsupported
|
|
7470
7506
|
], McpGalleryService.prototype, "getReadme", void 0);
|
|
7471
7507
|
registerSingleton(IMcpGalleryService, McpGalleryService, InstantiationType.Eager);
|
|
7472
|
-
class McpManagementService {
|
|
7473
|
-
constructor() {
|
|
7474
|
-
this.onInstallMcpServer = Event.None;
|
|
7475
|
-
this.onDidInstallMcpServers = Event.None;
|
|
7476
|
-
this.onUninstallMcpServer = Event.None;
|
|
7477
|
-
this.onDidUninstallMcpServer = Event.None;
|
|
7478
|
-
this.onDidUpdateMcpServers = Event.None;
|
|
7479
|
-
this.getInstalled = async () => [];
|
|
7480
|
-
this.installFromGallery = unsupported;
|
|
7481
|
-
this.install = unsupported;
|
|
7482
|
-
this.updateMetadata = unsupported;
|
|
7483
|
-
this.uninstall = async () => undefined;
|
|
7484
|
-
}
|
|
7485
|
-
}
|
|
7486
|
-
__decorate([
|
|
7487
|
-
Unsupported
|
|
7488
|
-
], McpManagementService.prototype, "installFromGallery", void 0);
|
|
7489
|
-
__decorate([
|
|
7490
|
-
Unsupported
|
|
7491
|
-
], McpManagementService.prototype, "install", void 0);
|
|
7492
|
-
__decorate([
|
|
7493
|
-
Unsupported
|
|
7494
|
-
], McpManagementService.prototype, "updateMetadata", void 0);
|
|
7495
|
-
registerSingleton(IMcpManagementService, McpManagementService, InstantiationType.Eager);
|
|
7496
7508
|
class McpSamplingService {
|
|
7497
7509
|
constructor() {
|
|
7498
7510
|
this.sample = unsupported;
|
|
@@ -7548,15 +7560,10 @@ class BrowserElementsService {
|
|
|
7548
7560
|
registerSingleton(IBrowserElementsService, BrowserElementsService, InstantiationType.Eager);
|
|
7549
7561
|
class TreeSitterThemeService {
|
|
7550
7562
|
constructor() {
|
|
7563
|
+
this.onChange = constObservable(undefined);
|
|
7551
7564
|
this.findMetadata = unsupported;
|
|
7552
7565
|
}
|
|
7553
|
-
get onChange() {
|
|
7554
|
-
return unsupported();
|
|
7555
|
-
}
|
|
7556
7566
|
}
|
|
7557
|
-
__decorate([
|
|
7558
|
-
Unsupported
|
|
7559
|
-
], TreeSitterThemeService.prototype, "onChange", null);
|
|
7560
7567
|
__decorate([
|
|
7561
7568
|
Unsupported
|
|
7562
7569
|
], TreeSitterThemeService.prototype, "findMetadata", void 0);
|
|
@@ -7584,6 +7591,7 @@ class ChatAttachmentResolveService {
|
|
|
7584
7591
|
this.resolveMarkerAttachContext = unsupported;
|
|
7585
7592
|
this.resolveSymbolsAttachContext = unsupported;
|
|
7586
7593
|
this.resolveNotebookOutputAttachContext = unsupported;
|
|
7594
|
+
this.resolveSourceControlHistoryItemAttachContext = unsupported;
|
|
7587
7595
|
}
|
|
7588
7596
|
}
|
|
7589
7597
|
__decorate([
|
|
@@ -7610,6 +7618,9 @@ __decorate([
|
|
|
7610
7618
|
__decorate([
|
|
7611
7619
|
Unsupported
|
|
7612
7620
|
], ChatAttachmentResolveService.prototype, "resolveNotebookOutputAttachContext", void 0);
|
|
7621
|
+
__decorate([
|
|
7622
|
+
Unsupported
|
|
7623
|
+
], ChatAttachmentResolveService.prototype, "resolveSourceControlHistoryItemAttachContext", void 0);
|
|
7613
7624
|
registerSingleton(IChatAttachmentResolveService, ChatAttachmentResolveService, InstantiationType.Eager);
|
|
7614
7625
|
class McpElicitationService {
|
|
7615
7626
|
constructor() {
|
|
@@ -7685,6 +7696,7 @@ class WorkbenchMcpManagementService {
|
|
|
7685
7696
|
this.installFromGallery = unsupported;
|
|
7686
7697
|
this.updateMetadata = unsupported;
|
|
7687
7698
|
this.uninstall = unsupported;
|
|
7699
|
+
this.canInstall = unsupported;
|
|
7688
7700
|
}
|
|
7689
7701
|
}
|
|
7690
7702
|
__decorate([
|
|
@@ -7699,4 +7711,79 @@ __decorate([
|
|
|
7699
7711
|
__decorate([
|
|
7700
7712
|
Unsupported
|
|
7701
7713
|
], WorkbenchMcpManagementService.prototype, "uninstall", void 0);
|
|
7714
|
+
__decorate([
|
|
7715
|
+
Unsupported
|
|
7716
|
+
], WorkbenchMcpManagementService.prototype, "canInstall", void 0);
|
|
7702
7717
|
registerSingleton(IWorkbenchMcpManagementService, WorkbenchMcpManagementService, InstantiationType.Eager);
|
|
7718
|
+
class ChatTodoListService {
|
|
7719
|
+
constructor() {
|
|
7720
|
+
this.getChatTodoListStorage = unsupported;
|
|
7721
|
+
}
|
|
7722
|
+
}
|
|
7723
|
+
__decorate([
|
|
7724
|
+
Unsupported
|
|
7725
|
+
], ChatTodoListService.prototype, "getChatTodoListStorage", void 0);
|
|
7726
|
+
registerSingleton(IChatTodoListService, ChatTodoListService, InstantiationType.Delayed);
|
|
7727
|
+
class ChatOutputRendererService {
|
|
7728
|
+
constructor() {
|
|
7729
|
+
this.registerRenderer = () => Disposable.None;
|
|
7730
|
+
this.renderOutputPart = unsupported;
|
|
7731
|
+
}
|
|
7732
|
+
}
|
|
7733
|
+
__decorate([
|
|
7734
|
+
Unsupported
|
|
7735
|
+
], ChatOutputRendererService.prototype, "renderOutputPart", void 0);
|
|
7736
|
+
registerSingleton(IChatOutputRendererService, ChatOutputRendererService, InstantiationType.Delayed);
|
|
7737
|
+
class ChatSessionsService {
|
|
7738
|
+
constructor() {
|
|
7739
|
+
this.onDidChangeItemsProviders = Event.None;
|
|
7740
|
+
this.onDidChangeSessionItems = Event.None;
|
|
7741
|
+
this.onDidChangeAvailability = Event.None;
|
|
7742
|
+
this.registerContribution = () => Disposable.None;
|
|
7743
|
+
this.getChatSessionContributions = () => [];
|
|
7744
|
+
this.canResolveItemProvider = async () => false;
|
|
7745
|
+
this.canResolveContentProvider = async () => false;
|
|
7746
|
+
this.getChatSessionItemProviders = () => [];
|
|
7747
|
+
this.registerChatSessionItemProvider = () => Disposable.None;
|
|
7748
|
+
this.registerChatSessionContentProvider = () => Disposable.None;
|
|
7749
|
+
this.hasChatSessionItemProviders = false;
|
|
7750
|
+
this.provideChatSessionItems = async () => [];
|
|
7751
|
+
this.notifySessionItemsChange = () => { };
|
|
7752
|
+
this.provideChatSessionContent = unsupported;
|
|
7753
|
+
}
|
|
7754
|
+
}
|
|
7755
|
+
__decorate([
|
|
7756
|
+
Unsupported
|
|
7757
|
+
], ChatSessionsService.prototype, "provideChatSessionContent", void 0);
|
|
7758
|
+
registerSingleton(IChatSessionsService, ChatSessionsService, InstantiationType.Delayed);
|
|
7759
|
+
class ImageResizeService {
|
|
7760
|
+
constructor() {
|
|
7761
|
+
this.resizeImage = unsupported;
|
|
7762
|
+
}
|
|
7763
|
+
}
|
|
7764
|
+
__decorate([
|
|
7765
|
+
Unsupported
|
|
7766
|
+
], ImageResizeService.prototype, "resizeImage", void 0);
|
|
7767
|
+
registerSingleton(IImageResizeService, ImageResizeService, InstantiationType.Delayed);
|
|
7768
|
+
class DataChannelService {
|
|
7769
|
+
constructor() {
|
|
7770
|
+
this.onDidSendData = Event.None;
|
|
7771
|
+
this.getDataChannel = () => ({
|
|
7772
|
+
sendData() { }
|
|
7773
|
+
});
|
|
7774
|
+
}
|
|
7775
|
+
}
|
|
7776
|
+
__decorate([
|
|
7777
|
+
Unsupported
|
|
7778
|
+
], DataChannelService.prototype, "getDataChannel", void 0);
|
|
7779
|
+
registerSingleton(IDataChannelService, DataChannelService, InstantiationType.Delayed);
|
|
7780
|
+
class AllowedMcpServersService {
|
|
7781
|
+
constructor() {
|
|
7782
|
+
this.onDidChangeAllowedMcpServers = Event.None;
|
|
7783
|
+
this.isAllowed = unsupported;
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
__decorate([
|
|
7787
|
+
Unsupported
|
|
7788
|
+
], AllowedMcpServersService.prototype, "isAllowed", void 0);
|
|
7789
|
+
registerSingleton(IAllowedMcpServersService, AllowedMcpServersService, InstantiationType.Delayed);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-base-service-override": "
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "20.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "20.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "20.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "20.0.0",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "20.0.0",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "20.0.0",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "20.0.0",
|
|
25
25
|
"@vscode/iconv-lite-umd": "0.7.0",
|
|
26
26
|
"dompurify": "3.2.6",
|
|
27
27
|
"jschardet": "3.1.4",
|
package/services.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { type IEditorOverrideServices } from "./vscode/src/vs/editor/standalone/
|
|
|
5
5
|
import { type GetLeadingNonServiceArgs, type ServiceIdentifier, type ServicesAccessor } from "./vscode/src/vs/platform/instantiation/common/instantiation.js";
|
|
6
6
|
import type { IAction } from "./vscode/src/vs/base/common/actions.js";
|
|
7
7
|
import { type IDisposable } from "./vscode/src/vs/base/common/lifecycle.js";
|
|
8
|
-
import type { IWorkbenchConstructionOptions, IWorkspaceProvider } from "@codingame/monaco-vscode-
|
|
8
|
+
import type { IWorkbenchConstructionOptions, IWorkspaceProvider } from "@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/browser/web.api";
|
|
9
9
|
import { type ILazyWorkbenchContributionInstantiation, type IOnEditorWorkbenchContributionInstantiation, type WorkbenchContributionInstantiation, WorkbenchPhase } from "./vscode/src/vs/workbench/common/contributions.js";
|
|
10
10
|
import { IProductService } from "./vscode/src/vs/platform/product/common/productService.service.js";
|
|
11
11
|
import type { IConfigurationChangeEvent } from "./vscode/src/vs/platform/configuration/common/configuration.js";
|
|
@@ -54,7 +54,7 @@ export { CloseDirection, EditorsOrder } from "./vscode/src/vs/workbench/common/e
|
|
|
54
54
|
export type { IEditorPane, GroupIdentifier, EditorInputWithOptions, IEditorPartOptions, IEditorPartOptionsChangeEvent, IVisibleEditorPane, IEditorCloseEvent, IUntypedEditorInput, IEditorWillMoveEvent, IEditorWillOpenEvent, IMatchEditorOptions, IActiveEditorChangeEvent, IFindEditorOptions, IEditorControl } from "./vscode/src/vs/workbench/common/editor.js";
|
|
55
55
|
export type { IEditorOptions, ITextEditorOptions, IResourceEditorInput } from "./vscode/src/vs/platform/editor/common/editor.js";
|
|
56
56
|
export { EditorInput } from "./vscode/src/vs/workbench/common/editor/editorInput.js";
|
|
57
|
-
export type { IGroupModelChangeEvent } from "@codingame/monaco-vscode-
|
|
57
|
+
export type { IGroupModelChangeEvent } from "@codingame/monaco-vscode-622c0cca-d5fa-59b6-b730-0715afcf93ee-common/vscode/vs/workbench/common/editor/editorGroupModel";
|
|
58
58
|
export { IEditorService } from "./vscode/src/vs/workbench/services/editor/common/editorService.service.js";
|
|
59
59
|
export { IEditorResolverService } from "./vscode/src/vs/workbench/services/editor/common/editorResolverService.service.js";
|
|
60
60
|
export { ITextEditorService } from "./vscode/src/vs/workbench/services/textfile/common/textEditorService.service.js";
|
|
@@ -97,11 +97,11 @@ export { ILocaleService } from "./vscode/src/vs/workbench/services/localization/
|
|
|
97
97
|
export { NoOpNotification, NoOpProgress } from "./vscode/src/vs/platform/notification/common/notification.js";
|
|
98
98
|
export { NotificationsFilter, NotificationPriority, NeverShowAgainScope } from "./vscode/src/vs/platform/notification/common/notification.js";
|
|
99
99
|
export type { NotificationMessage, INotificationProperties, INeverShowAgainOptions, INotification, INotificationActions, INotificationProgress, INotificationProgressProperties, INotificationHandle, IPromptChoice, IPromptChoiceWithMenu, IPromptOptions, IStatusMessageOptions } from "./vscode/src/vs/platform/notification/common/notification.js";
|
|
100
|
-
export type { IDialogArgs, DialogType, IDialogResult, IConfirmDialogArgs, IInputDialogArgs, IPromptDialogArgs, IBaseDialogOptions, ICheckbox, ICheckboxResult, IConfirmation, IConfirmationResult, IInput, IInputResult, IInputElement, IPrompt, IPromptResult, IPromptBaseButton, IPromptButton, IPromptCancelButton, IPromptResultWithCancel, IPromptWithCustomCancel, IPromptWithDefaultCancel } from "@codingame/monaco-vscode-
|
|
101
|
-
export type { IDialogHandler, ICustomDialogOptions, ICustomDialogMarkdown } from "@codingame/monaco-vscode-
|
|
100
|
+
export type { IDialogArgs, DialogType, IDialogResult, IConfirmDialogArgs, IInputDialogArgs, IPromptDialogArgs, IBaseDialogOptions, ICheckbox, ICheckboxResult, IConfirmation, IConfirmationResult, IInput, IInputResult, IInputElement, IPrompt, IPromptResult, IPromptBaseButton, IPromptButton, IPromptCancelButton, IPromptResultWithCancel, IPromptWithCustomCancel, IPromptWithDefaultCancel } from "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/platform/dialogs/common/dialogs";
|
|
101
|
+
export type { IDialogHandler, ICustomDialogOptions, ICustomDialogMarkdown } from "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/platform/dialogs/common/dialogs";
|
|
102
102
|
export type { IMarkdownString, MarkdownStringTrustedOptions } from "./vscode/src/vs/base/common/htmlContent.js";
|
|
103
103
|
export { IActivityService } from "./vscode/src/vs/workbench/services/activity/common/activity.service.js";
|
|
104
|
-
export type { IBadge } from "@codingame/monaco-vscode-
|
|
104
|
+
export type { IBadge } from "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/workbench/services/activity/common/activity";
|
|
105
105
|
export { IHoverService } from "./vscode/src/vs/platform/hover/browser/hover.service.js";
|
|
106
106
|
export { IExplorerService } from "./vscode/src/vs/workbench/contrib/files/browser/files.service.js";
|
|
107
107
|
export { IStatusbarService } from "./vscode/src/vs/workbench/services/statusbar/browser/statusbar.service.js";
|
package/services.js
CHANGED
|
@@ -392,10 +392,10 @@ export { IAuthenticationQueryService } from './vscode/src/vs/workbench/services/
|
|
|
392
392
|
export { ICoreExperimentationService } from './vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.js';
|
|
393
393
|
export { IWorkbenchMcpManagementService } from './vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.js';
|
|
394
394
|
|
|
395
|
-
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.
|
|
396
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.
|
|
395
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.103.0-a9c2c7ed-bbc0-46a3-abad-62d3beef5abc") {
|
|
396
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.103.0-a9c2c7ed-bbc0-46a3-abad-62d3beef5abc"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
397
397
|
}
|
|
398
|
-
window.monacoVscodeApiBuildId = "1.
|
|
398
|
+
window.monacoVscodeApiBuildId = "1.103.0-a9c2c7ed-bbc0-46a3-abad-62d3beef5abc";
|
|
399
399
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
400
400
|
checkServicesNotInitialized();
|
|
401
401
|
injectCss(container);
|
|
@@ -2,7 +2,6 @@ import { IKeyboardEvent } from "./keyboardEvent.js";
|
|
|
2
2
|
import { IMouseEvent } from "./mouseEvent.js";
|
|
3
3
|
import { AbstractIdleValue, IntervalTimer, IdleDeadline } from "../common/async.js";
|
|
4
4
|
import * as event from "../common/event.js";
|
|
5
|
-
import dompurify from "./dompurify/dompurify.js";
|
|
6
5
|
import { Disposable, DisposableStore, IDisposable } from "../common/lifecycle.js";
|
|
7
6
|
import { URI } from "../common/uri.js";
|
|
8
7
|
import { CodeWindow } from "./window.js";
|
|
@@ -242,6 +241,13 @@ export declare function windowOpenWithSuccess(url: string, noOpener?: boolean):
|
|
|
242
241
|
export declare function animate(targetWindow: Window, fn: () => void): IDisposable;
|
|
243
242
|
export declare function triggerDownload(dataOrUri: Uint8Array | URI, name: string): void;
|
|
244
243
|
export declare function triggerUpload(): Promise<FileList | undefined>;
|
|
244
|
+
export interface INotification extends IDisposable {
|
|
245
|
+
readonly onClick: event.Event<void>;
|
|
246
|
+
}
|
|
247
|
+
export declare function triggerNotification(message: string, options?: {
|
|
248
|
+
detail?: string;
|
|
249
|
+
sticky?: boolean;
|
|
250
|
+
}): Promise<INotification | undefined>;
|
|
245
251
|
export declare enum DetectedFullscreenMode {
|
|
246
252
|
DOCUMENT = 1,
|
|
247
253
|
BROWSER = 2
|
|
@@ -251,10 +257,6 @@ export interface IDetectedFullscreen {
|
|
|
251
257
|
guess: boolean;
|
|
252
258
|
}
|
|
253
259
|
export declare function detectFullscreen(targetWindow: Window, containerElement: Element): IDetectedFullscreen | null;
|
|
254
|
-
export declare function hookDomPurifyHrefAndSrcSanitizer(allowedProtocols: readonly string[], allowDataImages?: boolean): IDisposable;
|
|
255
|
-
export declare const basicMarkupHtmlTags: readonly string[];
|
|
256
|
-
export declare function safeInnerHtml(node: HTMLElement, value: string, extraDomPurifyConfig?: dompurify.Config): void;
|
|
257
|
-
export declare function multibyteAwareBtoa(str: string): string;
|
|
258
260
|
type ModifierKey = "alt" | "ctrl" | "shift" | "meta";
|
|
259
261
|
export interface IModifierKeyStatus {
|
|
260
262
|
altKey: boolean;
|