@codingame/monaco-vscode-api 29.1.0 → 30.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 +39 -16
- package/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +5 -5
- package/vscode/src/vs/base/browser/ui/dialog/dialog.js +6 -2
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +19 -7
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +81 -15
- package/vscode/src/vs/base/common/codicons.d.ts +4 -0
- package/vscode/src/vs/base/common/codicons.js +3 -1
- package/vscode/src/vs/base/common/glob.js +5 -1
- package/vscode/src/vs/base/common/performance.d.ts +4 -0
- package/vscode/src/vs/base/common/performance.js +40 -17
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +4 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +13 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +106 -74
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +14 -11
- package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -0
- package/vscode/src/vs/platform/actions/common/actions.js +9 -0
- package/vscode/src/vs/platform/browserView/common/browserView.d.ts +34 -7
- package/vscode/src/vs/platform/editor/common/editor.d.ts +29 -4
- package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environmentService.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +3 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +3 -0
- package/vscode/src/vs/platform/keyboardLayout/common/keyboardLayout.js +2 -2
- package/vscode/src/vs/platform/label/common/label.d.ts +6 -0
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/pickerQuickAccess.d.ts +11 -2
- package/vscode/src/vs/platform/quickinput/browser/pickerQuickAccess.js +6 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +14 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +6 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +5 -3
- package/vscode/src/vs/platform/quickinput/common/quickInput.js +6 -2
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.d.ts +4 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.service.d.ts +6 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperService.service.js +6 -0
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +3 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +5 -2
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +4 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.js +9 -0
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +21 -1
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +5 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +57 -4
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +5 -3
- package/vscode/src/vs/workbench/api/common/extHostFileSystemEventService.js +34 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +5 -1
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +32 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +11 -1
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +24 -2
- package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +35 -5
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +70 -4
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +8 -1
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +156 -167
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +77 -77
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +161 -161
- package/vscode/src/vs/workbench/common/views.d.ts +0 -6
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +154 -154
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/browserView/common/browserView.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +65 -64
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +26 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +21 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +21 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.js +8 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionDescription.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +165 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +1409 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +87 -83
- package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +12 -2
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +5 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +13 -12
- package/vscode/src/vs/workbench/contrib/chat/common/chatPerf.d.ts +75 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatPerf.js +30 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +9 -12
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.js +1 -13
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +1 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +45 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +17 -4
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.d.ts +48 -5
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.js +46 -18
- package/vscode/src/vs/workbench/contrib/chat/common/customizationHarnessService.service.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.service.d.ts +9 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +23 -23
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +11 -8
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +54 -20
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.d.ts +3 -5
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatViewModel.js +3 -7
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +5 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +10 -6
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +36 -6
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +3 -29
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +2 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +18 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +20 -20
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +78 -88
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +16 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +28 -23
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +1 -7
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/setArtifactsTool.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.service.d.ts +2 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
- 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/find/simpleFindWidget.js +10 -10
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +41 -8
- 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 +3 -3
- 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/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
- package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
- package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
- 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/debug/common/debugModel.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +41 -41
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +148 -148
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +170 -170
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +25 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +47 -47
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +30 -30
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
- package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
- package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +17 -17
- package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
- 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/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/browser/mcpCommandsAddConfiguration.js +66 -66
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +34 -34
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +40 -40
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +16 -16
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/textModelDiffs.js +20 -9
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +4 -4
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +27 -27
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModelImpl.js +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +60 -60
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +30 -13
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +11 -11
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +32 -5
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
- 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.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +43 -45
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +13 -10
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +10 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +10 -6
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +134 -91
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.service.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
- package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +30 -30
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +4 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +27 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.d.ts +1 -0
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +9 -0
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
- package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
- package/vscode/src/vs/workbench/services/preferences/common/preferencesModels.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/common/preferencesValidation.js +30 -30
- 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/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +2 -2
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +8 -4
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +0 -4
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +19 -1
- package/vscode-dts/vscode.proposed.chatSessionCustomizationProvider.d.ts +168 -0
- package/vscode-dts/vscode.proposed.d.ts +1 -0
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.d.ts +0 -26
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +0 -746
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +0 -13
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +0 -300
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +0 -55
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +0 -273
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +0 -1963
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +0 -50
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +0 -314
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +0 -258
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +0 -886
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +0 -41
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +0 -118
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +0 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +0 -71
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +0 -27
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +0 -40
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +0 -23
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +0 -313
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +0 -51
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +0 -265
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +0 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +0 -185
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +0 -28
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +0 -104
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +0 -43
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +0 -21
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +0 -41
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +0 -25
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +0 -69
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +0 -469
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +0 -149
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +0 -933
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +0 -180
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +0 -32
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +0 -102
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +0 -643
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +0 -30
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +0 -197
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +0 -75
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +0 -539
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +0 -13
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +0 -39
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +0 -19
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +0 -90
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +0 -26
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +0 -92
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { Disposable, DisposableStore, toDisposable } from '../../../../../../base/common/lifecycle.js';
|
|
3
|
-
import { NotebookOverviewRulerLane } from '../../notebookBrowser.js';
|
|
4
|
-
import { overviewRulerAddedForeground } from '../../../../scm/common/quickDiff.js';
|
|
5
|
-
|
|
6
|
-
class NotebookInsertedCellDecorator extends Disposable {
|
|
7
|
-
constructor(notebookEditor) {
|
|
8
|
-
super();
|
|
9
|
-
this.notebookEditor = notebookEditor;
|
|
10
|
-
this.decorators = this._register(( new DisposableStore()));
|
|
11
|
-
}
|
|
12
|
-
apply(diffInfo) {
|
|
13
|
-
const model = this.notebookEditor.textModel;
|
|
14
|
-
if (!model) {
|
|
15
|
-
return;
|
|
16
|
-
}
|
|
17
|
-
const cells = ( diffInfo.filter(diff => diff.type === "insert").map(diff => model.cells[diff.modifiedCellIndex]));
|
|
18
|
-
const ids = this.notebookEditor.deltaCellDecorations([], ( cells.map(cell => ({
|
|
19
|
-
handle: cell.handle,
|
|
20
|
-
options: {
|
|
21
|
-
className: "nb-insertHighlight",
|
|
22
|
-
outputClassName: "nb-insertHighlight",
|
|
23
|
-
overviewRuler: {
|
|
24
|
-
color: overviewRulerAddedForeground,
|
|
25
|
-
modelRanges: [],
|
|
26
|
-
includeOutput: true,
|
|
27
|
-
position: NotebookOverviewRulerLane.Full
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}))));
|
|
31
|
-
this.clear();
|
|
32
|
-
this.decorators.add(toDisposable(() => {
|
|
33
|
-
if (!this.notebookEditor.isDisposed) {
|
|
34
|
-
this.notebookEditor.deltaCellDecorations(ids, []);
|
|
35
|
-
}
|
|
36
|
-
}));
|
|
37
|
-
}
|
|
38
|
-
clear() {
|
|
39
|
-
this.decorators.clear();
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export { NotebookInsertedCellDecorator };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { IReference, ReferenceCollection } from "../../../../../../base/common/lifecycle.js";
|
|
2
|
-
import { IInstantiationService } from "../../../../../../platform/instantiation/common/instantiation.js";
|
|
3
|
-
import { ITextModel } from "../../../../../../editor/common/model.js";
|
|
4
|
-
import { CellKind } from "../../../common/notebookCommon.js";
|
|
5
|
-
import { URI } from "../../../../../../base/common/uri.js";
|
|
6
|
-
import { ILanguageService } from "../../../../../../editor/common/languages/language.service.js";
|
|
7
|
-
import { IModelService } from "../../../../../../editor/common/services/model.service.js";
|
|
8
|
-
import { INotebookOriginalCellModelFactory } from "./notebookOriginalCellModelFactory.service.js";
|
|
9
|
-
export declare class OriginalNotebookCellModelReferenceCollection extends ReferenceCollection<ITextModel> {
|
|
10
|
-
private readonly modelService;
|
|
11
|
-
private readonly _languageService;
|
|
12
|
-
constructor(modelService: IModelService, _languageService: ILanguageService);
|
|
13
|
-
protected createReferencedObject(_key: string, uri: URI, cellValue: string, language: string, cellKind: CellKind): ITextModel;
|
|
14
|
-
protected destroyReferencedObject(_key: string, model: ITextModel): void;
|
|
15
|
-
}
|
|
16
|
-
export declare class OriginalNotebookCellModelFactory implements INotebookOriginalCellModelFactory {
|
|
17
|
-
readonly _serviceBrand: undefined;
|
|
18
|
-
private readonly _data;
|
|
19
|
-
constructor(instantiationService: IInstantiationService);
|
|
20
|
-
getOrCreate(uri: URI, cellValue: string, language: string, cellKind: CellKind): IReference<ITextModel>;
|
|
21
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { __decorate, __param } from '../../../../../../../../../external/tslib/tslib.es6.js';
|
|
3
|
-
import { ReferenceCollection } from '../../../../../../base/common/lifecycle.js';
|
|
4
|
-
import { IInstantiationService } from '../../../../../../platform/instantiation/common/instantiation.js';
|
|
5
|
-
import { CellKind } from '../../../common/notebookCommon.js';
|
|
6
|
-
import { URI } from '../../../../../../base/common/uri.js';
|
|
7
|
-
import { ILanguageService } from '../../../../../../editor/common/languages/language.service.js';
|
|
8
|
-
import { IModelService } from '../../../../../../editor/common/services/model.service.js';
|
|
9
|
-
|
|
10
|
-
let OriginalNotebookCellModelReferenceCollection = class OriginalNotebookCellModelReferenceCollection extends ReferenceCollection {
|
|
11
|
-
constructor(modelService, _languageService) {
|
|
12
|
-
super();
|
|
13
|
-
this.modelService = modelService;
|
|
14
|
-
this._languageService = _languageService;
|
|
15
|
-
}
|
|
16
|
-
createReferencedObject(_key, uri, cellValue, language, cellKind) {
|
|
17
|
-
const scheme = `${uri.scheme}-chat-edit`;
|
|
18
|
-
const originalCellUri = ( URI.from({
|
|
19
|
-
scheme,
|
|
20
|
-
fragment: uri.fragment,
|
|
21
|
-
path: uri.path
|
|
22
|
-
}));
|
|
23
|
-
const languageSelection = this._languageService.getLanguageIdByLanguageName(language) ? this._languageService.createById(language) : cellKind === CellKind.Markup ? this._languageService.createById("markdown") : null;
|
|
24
|
-
return this.modelService.createModel(cellValue, languageSelection, originalCellUri);
|
|
25
|
-
}
|
|
26
|
-
destroyReferencedObject(_key, model) {
|
|
27
|
-
model.dispose();
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
OriginalNotebookCellModelReferenceCollection = ( __decorate([( __param(0, IModelService)), ( __param(1, ILanguageService))], OriginalNotebookCellModelReferenceCollection));
|
|
31
|
-
let OriginalNotebookCellModelFactory = class OriginalNotebookCellModelFactory {
|
|
32
|
-
constructor(instantiationService) {
|
|
33
|
-
this._data = instantiationService.createInstance(OriginalNotebookCellModelReferenceCollection);
|
|
34
|
-
}
|
|
35
|
-
getOrCreate(uri, cellValue, language, cellKind) {
|
|
36
|
-
return this._data.acquire(( uri.toString()), uri, cellValue, language, cellKind);
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
OriginalNotebookCellModelFactory = ( __decorate([( __param(0, IInstantiationService))], OriginalNotebookCellModelFactory));
|
|
40
|
-
|
|
41
|
-
export { OriginalNotebookCellModelFactory, OriginalNotebookCellModelReferenceCollection };
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { IReference, ReferenceCollection } from "../../../../../../base/common/lifecycle.js";
|
|
2
|
-
import { IModifiedFileEntry } from "../../../../chat/common/editing/chatEditingService.js";
|
|
3
|
-
import { INotebookService } from "../../../common/notebookService.service.js";
|
|
4
|
-
import { NotebookTextModel } from "@codingame/monaco-vscode-notebook-service-override/vscode/vs/workbench/contrib/notebook/common/model/notebookTextModel";
|
|
5
|
-
import { IInstantiationService } from "../../../../../../platform/instantiation/common/instantiation.js";
|
|
6
|
-
import { ITextModelService } from "../../../../../../editor/common/services/resolverService.service.js";
|
|
7
|
-
import { INotebookOriginalModelReferenceFactory } from "./notebookOriginalModelRefFactory.service.js";
|
|
8
|
-
export declare class OriginalNotebookModelReferenceCollection extends ReferenceCollection<Promise<NotebookTextModel>> {
|
|
9
|
-
private readonly notebookService;
|
|
10
|
-
private readonly modelService;
|
|
11
|
-
private readonly modelsToDispose;
|
|
12
|
-
constructor(notebookService: INotebookService, modelService: ITextModelService);
|
|
13
|
-
protected createReferencedObject(key: string, fileEntry: IModifiedFileEntry, viewType: string): Promise<NotebookTextModel>;
|
|
14
|
-
protected destroyReferencedObject(key: string, modelPromise: Promise<NotebookTextModel>): void;
|
|
15
|
-
}
|
|
16
|
-
export declare class NotebookOriginalModelReferenceFactory implements INotebookOriginalModelReferenceFactory {
|
|
17
|
-
private readonly instantiationService;
|
|
18
|
-
readonly _serviceBrand: undefined;
|
|
19
|
-
private _resourceModelCollection;
|
|
20
|
-
private get resourceModelCollection();
|
|
21
|
-
private _asyncModelCollection;
|
|
22
|
-
private get asyncModelCollection();
|
|
23
|
-
constructor(instantiationService: IInstantiationService);
|
|
24
|
-
getOrCreate(fileEntry: IModifiedFileEntry, viewType: string): Promise<IReference<NotebookTextModel>>;
|
|
25
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { __decorate, __param } from '../../../../../../../../../external/tslib/tslib.es6.js';
|
|
3
|
-
import { ReferenceCollection, AsyncReferenceCollection } from '../../../../../../base/common/lifecycle.js';
|
|
4
|
-
import { INotebookService } from '../../../common/notebookService.service.js';
|
|
5
|
-
import { VSBuffer, bufferToStream } from '../../../../../../base/common/buffer.js';
|
|
6
|
-
import { IInstantiationService } from '../../../../../../platform/instantiation/common/instantiation.js';
|
|
7
|
-
import { ITextModelService } from '../../../../../../editor/common/services/resolverService.service.js';
|
|
8
|
-
|
|
9
|
-
let OriginalNotebookModelReferenceCollection = class OriginalNotebookModelReferenceCollection extends ReferenceCollection {
|
|
10
|
-
constructor(notebookService, modelService) {
|
|
11
|
-
super();
|
|
12
|
-
this.notebookService = notebookService;
|
|
13
|
-
this.modelService = modelService;
|
|
14
|
-
this.modelsToDispose = ( new Set());
|
|
15
|
-
}
|
|
16
|
-
async createReferencedObject(key, fileEntry, viewType) {
|
|
17
|
-
this.modelsToDispose.delete(key);
|
|
18
|
-
const uri = fileEntry.originalURI;
|
|
19
|
-
const model = this.notebookService.getNotebookTextModel(uri);
|
|
20
|
-
if (model) {
|
|
21
|
-
return model;
|
|
22
|
-
}
|
|
23
|
-
const modelRef = await this.modelService.createModelReference(uri);
|
|
24
|
-
const bytes = VSBuffer.fromString(modelRef.object.textEditorModel.getValue());
|
|
25
|
-
const stream = bufferToStream(bytes);
|
|
26
|
-
modelRef.dispose();
|
|
27
|
-
return this.notebookService.createNotebookTextModel(viewType, uri, stream);
|
|
28
|
-
}
|
|
29
|
-
destroyReferencedObject(key, modelPromise) {
|
|
30
|
-
this.modelsToDispose.add(key);
|
|
31
|
-
(async () => {
|
|
32
|
-
try {
|
|
33
|
-
const model = await modelPromise;
|
|
34
|
-
if (!( this.modelsToDispose.has(key))) {
|
|
35
|
-
return;
|
|
36
|
-
}
|
|
37
|
-
model.dispose();
|
|
38
|
-
} catch (error) {} finally {
|
|
39
|
-
this.modelsToDispose.delete(key);
|
|
40
|
-
}
|
|
41
|
-
})();
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
OriginalNotebookModelReferenceCollection = ( __decorate([( __param(0, INotebookService)), ( __param(1, ITextModelService))], OriginalNotebookModelReferenceCollection));
|
|
45
|
-
let NotebookOriginalModelReferenceFactory = class NotebookOriginalModelReferenceFactory {
|
|
46
|
-
get resourceModelCollection() {
|
|
47
|
-
if (!this._resourceModelCollection) {
|
|
48
|
-
this._resourceModelCollection = this.instantiationService.createInstance(OriginalNotebookModelReferenceCollection);
|
|
49
|
-
}
|
|
50
|
-
return this._resourceModelCollection;
|
|
51
|
-
}
|
|
52
|
-
get asyncModelCollection() {
|
|
53
|
-
if (!this._asyncModelCollection) {
|
|
54
|
-
this._asyncModelCollection = ( new AsyncReferenceCollection(this.resourceModelCollection));
|
|
55
|
-
}
|
|
56
|
-
return this._asyncModelCollection;
|
|
57
|
-
}
|
|
58
|
-
constructor(instantiationService) {
|
|
59
|
-
this.instantiationService = instantiationService;
|
|
60
|
-
this._resourceModelCollection = undefined;
|
|
61
|
-
this._asyncModelCollection = undefined;
|
|
62
|
-
}
|
|
63
|
-
getOrCreate(fileEntry, viewType) {
|
|
64
|
-
return this.asyncModelCollection.acquire(( fileEntry.originalURI.toString()), fileEntry, viewType);
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
NotebookOriginalModelReferenceFactory = ( __decorate([( __param(0, IInstantiationService))], NotebookOriginalModelReferenceFactory));
|
|
68
|
-
|
|
69
|
-
export { NotebookOriginalModelReferenceFactory, OriginalNotebookModelReferenceCollection };
|
|
@@ -1,469 +0,0 @@
|
|
|
1
|
-
/*---------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
-
*--------------------------------------------------------------------------------------------*/
|
|
5
|
-
|
|
6
|
-
/* .notebook-diff-editor {
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: row;
|
|
9
|
-
height: 100%;
|
|
10
|
-
width: 100%;
|
|
11
|
-
}
|
|
12
|
-
.notebook-diff-editor-modified,
|
|
13
|
-
.notebook-diff-editor-original {
|
|
14
|
-
display: flex;
|
|
15
|
-
height: 100%;
|
|
16
|
-
width: 50%;
|
|
17
|
-
} */
|
|
18
|
-
|
|
19
|
-
.notebook-text-diff-editor {
|
|
20
|
-
position: relative;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.notebook-text-diff-editor .cell-body {
|
|
24
|
-
display: flex;
|
|
25
|
-
flex-direction: row;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.notebook-text-diff-editor .cell-placeholder-body {
|
|
29
|
-
display: flex;
|
|
30
|
-
flex-direction: row;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.notebook-text-diff-editor .webview-cover {
|
|
34
|
-
user-select: initial;
|
|
35
|
-
-webkit-user-select: initial;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.notebook-text-diff-editor .cell-body .border-container {
|
|
39
|
-
position: absolute;
|
|
40
|
-
width: calc(100% - 32px);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.notebook-text-diff-editor .cell-body .border-container .top-border,
|
|
44
|
-
.notebook-text-diff-editor .cell-body .border-container .bottom-border {
|
|
45
|
-
position: absolute;
|
|
46
|
-
width: 100%;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.notebook-text-diff-editor .cell-body .border-container .left-border,
|
|
50
|
-
.notebook-text-diff-editor .cell-body .border-container .right-border {
|
|
51
|
-
position: absolute;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.notebook-text-diff-editor .cell-body .border-container .right-border {
|
|
55
|
-
left: 100%;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.notebook-text-diff-editor .cell-body.right {
|
|
59
|
-
flex-direction: row-reverse;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.notebook-text-diff-editor .cell-body .diagonal-fill {
|
|
63
|
-
display: none;
|
|
64
|
-
width: 50%;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container {
|
|
68
|
-
width: 100%;
|
|
69
|
-
/* why we overflow hidden at the beginning?*/
|
|
70
|
-
/* overflow: hidden; */
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row {
|
|
74
|
-
cursor: default;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container.diff,
|
|
78
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .output-editor-container.diff,
|
|
79
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container.diff {
|
|
80
|
-
/** 100% + diffOverviewWidth */
|
|
81
|
-
width: calc(100%);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container .monaco-diff-editor .diffOverview,
|
|
85
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container.diff .monaco-diff-editor .diffOverview,
|
|
86
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .output-editor-container.diff .monaco-diff-editor .diffOverview {
|
|
87
|
-
display: none;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container,
|
|
91
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container {
|
|
92
|
-
box-sizing: border-box;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.notebook-text-diff-editor .cell-body.left .cell-diff-editor-container,
|
|
96
|
-
.notebook-text-diff-editor .cell-body.right .cell-diff-editor-container {
|
|
97
|
-
display: inline-block;
|
|
98
|
-
width: 50%;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.notebook-text-diff-editor .cell-body.left .diagonal-fill,
|
|
102
|
-
.notebook-text-diff-editor .cell-body.right .diagonal-fill {
|
|
103
|
-
display: inline-block;
|
|
104
|
-
width: 50%;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
|
|
108
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
|
|
109
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
|
|
110
|
-
display: flex;
|
|
111
|
-
height: 24px;
|
|
112
|
-
align-items: center;
|
|
113
|
-
cursor: default;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-folding-indicator .codicon,
|
|
117
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-folding-indicator .codicon,
|
|
118
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-folding-indicator .codicon {
|
|
119
|
-
visibility: visible;
|
|
120
|
-
padding: 4px 0 0 6px;
|
|
121
|
-
cursor: pointer;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
|
|
125
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
|
|
126
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
|
|
127
|
-
display: flex;
|
|
128
|
-
flex-direction: row;
|
|
129
|
-
align-items: center;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
|
|
133
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
|
|
134
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
|
|
135
|
-
cursor: pointer;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-toolbar,
|
|
139
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-toolbar,
|
|
140
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-toolbar {
|
|
141
|
-
margin-left: auto;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status,
|
|
145
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status,
|
|
146
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status {
|
|
147
|
-
font-size: 12px;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status span,
|
|
151
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status span,
|
|
152
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status span {
|
|
153
|
-
margin: 0 0 0 5px;
|
|
154
|
-
line-height: 21px;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status span.property-description,
|
|
158
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status span.property-description,
|
|
159
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status span.property-description {
|
|
160
|
-
font-style: italic;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.notebook-text-diff-editor {
|
|
164
|
-
overflow: hidden;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row {
|
|
168
|
-
overflow: visible !important;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row,
|
|
172
|
-
.monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row:hover,
|
|
173
|
-
.monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused {
|
|
174
|
-
outline: none !important;
|
|
175
|
-
background-color: transparent !important;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.notebook-text-diff-editor .cell-diff-editor-container .editor-input-toolbar-container {
|
|
179
|
-
position: absolute;
|
|
180
|
-
right: 16px;
|
|
181
|
-
top: 16px;
|
|
182
|
-
margin: 1px 2px;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body {
|
|
186
|
-
height: 0;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body .output-view-container {
|
|
190
|
-
user-select: text;
|
|
191
|
-
-webkit-user-select: text;
|
|
192
|
-
white-space: initial;
|
|
193
|
-
cursor: auto;
|
|
194
|
-
position: relative;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.left .output-view-container .output-inner-container,
|
|
198
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.right .output-view-container .output-inner-container {
|
|
199
|
-
width: 100%;
|
|
200
|
-
padding: 0px 8px;
|
|
201
|
-
box-sizing: border-box;
|
|
202
|
-
overflow-x: hidden;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.left .output-view-container .output-inner-container {
|
|
206
|
-
padding: 0px 8px 0px 32px;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.right .output-view-container .output-inner-container {
|
|
210
|
-
padding: 0px 8px 0px 32px;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-view-container .output-inner-container {
|
|
214
|
-
width: 100%;
|
|
215
|
-
padding: 4px 8px 4px 32px;
|
|
216
|
-
box-sizing: border-box;
|
|
217
|
-
overflow: hidden;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left {
|
|
221
|
-
top: 0;
|
|
222
|
-
position: absolute;
|
|
223
|
-
left: 0;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right {
|
|
227
|
-
position: absolute;
|
|
228
|
-
top: 0;
|
|
229
|
-
left: 50%;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left,
|
|
233
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right {
|
|
234
|
-
width: 50%;
|
|
235
|
-
display: inline-block;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left div.foreground,
|
|
239
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right div.foreground {
|
|
240
|
-
width: 100%;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container > div.foreground {
|
|
244
|
-
width: 100%;
|
|
245
|
-
min-height: 24px;
|
|
246
|
-
box-sizing: border-box;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .error_message {
|
|
250
|
-
color: red;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .error > div {
|
|
254
|
-
white-space: normal;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .error pre.traceback {
|
|
258
|
-
box-sizing: border-box;
|
|
259
|
-
padding: 8px 0;
|
|
260
|
-
margin: 0px;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .error .traceback > span {
|
|
264
|
-
display: block;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .display img {
|
|
268
|
-
max-width: 100%;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .multi-mimetype-output {
|
|
272
|
-
position: absolute;
|
|
273
|
-
top: 4px;
|
|
274
|
-
left: 8px;
|
|
275
|
-
width: 16px;
|
|
276
|
-
height: 16px;
|
|
277
|
-
cursor: pointer;
|
|
278
|
-
padding: 2px 4px 4px 2px;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .output-empty-view span {
|
|
282
|
-
opacity: 0.7;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .output-empty-view {
|
|
286
|
-
font-style: italic;
|
|
287
|
-
height: 24px;
|
|
288
|
-
margin: auto;
|
|
289
|
-
padding-left: 12px;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container pre {
|
|
293
|
-
margin: 4px 0;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
.monaco-workbench .notebook-text-diff-edito .monaco-list:focus-within .monaco-list-row.focused .codicon,
|
|
297
|
-
.monaco-workbench .notebook-text-diff-editor .monaco-list:focus-within .monaco-list-row.selected .codicon {
|
|
298
|
-
color: inherit;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.monaco-workbench .notebook-text-diff-editor .output-view-container .output-view-container-metadata {
|
|
302
|
-
position: relative;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
/* Diff decorations */
|
|
306
|
-
|
|
307
|
-
.notebook-text-diff-editor .cell-body .codicon-diff-remove,
|
|
308
|
-
.notebook-text-diff-editor .cell-body .codicon-diff-insert {
|
|
309
|
-
left: 4px !important;
|
|
310
|
-
width: 15px !important;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.monaco-workbench .notebook-text-diff-editor > .monaco-list > .monaco-scrollable-element > .scrollbar.visible {
|
|
314
|
-
z-index: var(--z-index-notebook-scrollbar);
|
|
315
|
-
cursor: default;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.notebook-text-diff-editor .notebook-overview-ruler-container {
|
|
319
|
-
position: absolute;
|
|
320
|
-
top: 0;
|
|
321
|
-
right: 0;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
.notebook-text-diff-editor .notebook-overview-ruler-container .diffViewport {
|
|
325
|
-
z-index: var(--notebook-diff-view-viewport-slider);
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.notebook-text-diff-editor .diffViewport {
|
|
329
|
-
background: var(--vscode-scrollbarSlider-background);
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.notebook-text-diff-editor .diffViewport:hover {
|
|
333
|
-
background: var(--vscode-scrollbarSlider-hoverBackground);
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.notebook-text-diff-editor .diffViewport:active {
|
|
337
|
-
background: var(--vscode-scrollbarSlider-activeBackground);
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/** Diff cell borders */
|
|
341
|
-
.notebook-text-diff-editor .cell-body .border-container .top-border,
|
|
342
|
-
.notebook-text-diff-editor .cell-body .border-container .bottom-border,
|
|
343
|
-
.notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
|
|
344
|
-
.notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
|
|
345
|
-
border-top: 1px solid var(--vscode-notebook-cellBorderColor);
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.notebook-text-diff-editor .cell-body .border-container .left-border {
|
|
349
|
-
border-left: 1px solid var(--vscode-notebook-cellBorderColor);
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.notebook-text-diff-editor .cell-body .border-container .right-border {
|
|
353
|
-
border-right: 1px solid var(--vscode-notebook-cellBorderColor);
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
/** Diff cell active borders */
|
|
357
|
-
.notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .top-border,
|
|
358
|
-
.notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .bottom-border {
|
|
359
|
-
border-top: 1px solid var(--vscode-notebook-focusedEditorBorder);
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .left-border {
|
|
363
|
-
border-left: 1px solid var(--vscode-notebook-focusedEditorBorder);
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .right-border {
|
|
367
|
-
border-right: 1px solid var(--vscode-notebook-focusedEditorBorder);
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
/** Diff cell diff background */
|
|
371
|
-
|
|
372
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container.modified .output-view-container .output-view-container-right div.foreground,
|
|
373
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.right .output-info-container .output-view-container div.foreground,
|
|
374
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.right .output-info-container .output-view-container div.output-empty-view,
|
|
375
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container,
|
|
376
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container .monaco-editor .margin,
|
|
377
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container .monaco-editor .monaco-editor-background,
|
|
378
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .input-header-container,
|
|
379
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container,
|
|
380
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container .monaco-editor .margin,
|
|
381
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container .monaco-editor .monaco-editor-background,
|
|
382
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container,
|
|
383
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container .monaco-editor .margin,
|
|
384
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container .monaco-editor .monaco-editor-background,
|
|
385
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-header-container,
|
|
386
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-header-container {
|
|
387
|
-
background-color: var(--vscode-diffEditor-insertedTextBackground);
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container.modified .output-view-container .output-view-container-left div.foreground,
|
|
391
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.left .output-info-container .output-view-container div.foreground,
|
|
392
|
-
.monaco-workbench .notebook-text-diff-editor .cell-body.left .output-info-container .output-view-container div.output-empty-view,
|
|
393
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container,
|
|
394
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container .monaco-editor .margin,
|
|
395
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container .monaco-editor .monaco-editor-background,
|
|
396
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .input-header-container,
|
|
397
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container,
|
|
398
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container .monaco-editor .margin,
|
|
399
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container .monaco-editor .monaco-editor-background,
|
|
400
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container,
|
|
401
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container .monaco-editor .margin,
|
|
402
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container .monaco-editor .monaco-editor-background,
|
|
403
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-header-container,
|
|
404
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-header-container {
|
|
405
|
-
background-color: var(--vscode-diffEditor-removedTextBackground);
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
/** Diff cell editor background */
|
|
409
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .source-container .monaco-editor .margin,
|
|
410
|
-
.notebook-text-diff-editor .cell-body .cell-diff-editor-container .source-container .monaco-editor .monaco-editor-background {
|
|
411
|
-
background: var(--vscode-notebook-cellEditorBackground, var(--vscode-editor-background));
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
/** Overlay to hide the unchanged cells */
|
|
415
|
-
.notebook-text-diff-editor .cell-body.full div.diff-hidden-cells {
|
|
416
|
-
position: absolute;
|
|
417
|
-
left: 0;
|
|
418
|
-
|
|
419
|
-
font-size: 13px;
|
|
420
|
-
line-height: 14px;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center {
|
|
424
|
-
color: var(--vscode-diffEditor-unchangedRegionForeground);
|
|
425
|
-
overflow: hidden;
|
|
426
|
-
display: block;
|
|
427
|
-
white-space: nowrap;
|
|
428
|
-
|
|
429
|
-
height: 24px;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center span.codicon {
|
|
433
|
-
vertical-align: middle;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center a:hover .codicon {
|
|
437
|
-
cursor: pointer;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
/** Overlay to unhide the unchanged cells */
|
|
441
|
-
.notebook-text-diff-editor .cell-placeholder-body {
|
|
442
|
-
background: var(--vscode-diffEditor-unchangedRegionBackground);
|
|
443
|
-
color: var(--vscode-diffEditor-unchangedRegionForeground);
|
|
444
|
-
min-height: 24px;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center {
|
|
448
|
-
overflow: hidden;
|
|
449
|
-
display: block;
|
|
450
|
-
text-overflow: ellipsis;
|
|
451
|
-
white-space: nowrap;
|
|
452
|
-
|
|
453
|
-
height: 24px;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.notebook-text-diff-editor .cell-placeholder-body .text {
|
|
457
|
-
/** Add a gap between text and the unfold icon */
|
|
458
|
-
padding-left: 2px;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center span.codicon,
|
|
462
|
-
.notebook-text-diff-editor .cell-placeholder-body .text {
|
|
463
|
-
vertical-align: middle;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center a:hover .codicon {
|
|
467
|
-
cursor: pointer;
|
|
468
|
-
color: var(--vscode-editorLink-activeForeground) !important;
|
|
469
|
-
}
|