@codingame/monaco-vscode-api 15.0.2 → 16.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 +245 -43
- package/package.json +11 -8
- package/services.js +7 -7
- package/vscode/src/vs/amdX.d.ts +3 -0
- package/vscode/src/vs/amdX.js +188 -0
- package/vscode/src/vs/base/browser/contextmenu.d.ts +1 -0
- package/vscode/src/vs/base/browser/dnd.d.ts +0 -1
- package/vscode/src/vs/base/browser/dnd.js +2 -19
- package/vscode/src/vs/base/browser/fonts.d.ts +3 -0
- package/vscode/src/vs/base/browser/fonts.js +27 -2
- package/vscode/src/vs/base/browser/markdownRenderer.js +2 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +1 -1
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +97 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/aria/aria.css +4 -0
- package/vscode/src/vs/base/browser/ui/aria/aria.js +1 -1
- package/vscode/src/vs/base/browser/ui/button/button.css +139 -0
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +3 -2
- package/vscode/src/vs/base/browser/ui/button/button.js +16 -13
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +22 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css +17 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css +10 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +1 -1
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +18 -0
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.js +1 -1
- package/vscode/src/vs/base/browser/ui/dnd/dnd.css +16 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.js +24 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +35 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +6 -2
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css +50 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +84 -0
- package/vscode/src/vs/base/browser/ui/hover/hover.js +12 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +157 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.js +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +87 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +81 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +2 -2
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +27 -0
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/list.css +60 -0
- package/vscode/src/vs/base/browser/ui/list/listPaging.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/listView.js +16 -24
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +5 -5
- package/vscode/src/vs/base/browser/ui/menu/menu.js +1 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css +3 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.js +1 -1
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css +33 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/sash/sash.css +118 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.js +1 -1
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +56 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +1 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +23 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +1 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +98 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +1 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +25 -0
- package/vscode/src/vs/{platform/severityIcon/browser → base/browser/ui/severityIcon}/severityIcon.d.ts +1 -1
- package/vscode/src/vs/{platform/severityIcon/browser → base/browser/ui/severityIcon}/severityIcon.js +4 -4
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css +54 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.js +1 -1
- package/vscode/src/vs/base/browser/ui/table/table.css +45 -0
- package/vscode/src/vs/base/browser/ui/table/tableWidget.js +1 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +58 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +1 -1
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +7 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css +128 -0
- package/vscode/src/vs/base/browser/webWorkerFactory.d.ts +14 -0
- package/vscode/src/vs/base/browser/{defaultWorkerFactory.js → webWorkerFactory.js} +35 -45
- package/vscode/src/vs/base/common/arrays.d.ts +1 -0
- package/vscode/src/vs/base/common/arrays.js +6 -1
- package/vscode/src/vs/base/common/diff/diff.d.ts +1 -0
- package/vscode/src/vs/base/common/diff/diff.js +126 -1
- package/vscode/src/vs/base/common/history.d.ts +2 -0
- package/vscode/src/vs/base/common/history.js +7 -1
- package/vscode/src/vs/base/common/hotReload.js +80 -0
- package/vscode/src/vs/base/common/hotReloadHelpers.js +33 -4
- package/vscode/src/vs/base/common/htmlContent.d.ts +5 -0
- package/vscode/src/vs/base/common/htmlContent.js +10 -4
- package/vscode/src/vs/base/common/iterator.d.ts +1 -0
- package/vscode/src/vs/base/common/iterator.js +8 -0
- package/vscode/src/vs/base/common/json.js +36 -1
- package/vscode/src/vs/base/common/lifecycle.d.ts +1 -0
- package/vscode/src/vs/base/common/lifecycle.js +13 -1
- package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -0
- package/vscode/src/vs/base/common/mime.d.ts +1 -0
- package/vscode/src/vs/base/common/mime.js +1 -0
- package/vscode/src/vs/base/common/network.d.ts +1 -0
- package/vscode/src/vs/base/common/network.js +4 -4
- package/vscode/src/vs/base/common/objects.d.ts +0 -3
- package/vscode/src/vs/base/common/objects.js +1 -31
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +14 -7
- package/vscode/src/vs/base/common/observableInternal/autorun.js +37 -21
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +11 -5
- package/vscode/src/vs/base/common/observableInternal/base.js +31 -0
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +15 -7
- package/vscode/src/vs/base/common/observableInternal/derived.js +32 -20
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +1 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +6 -1
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/debuggerRpc.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/debuggerRpc.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +41 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +436 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/rpc.d.ts +41 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/rpc.js +57 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.d.ts +20 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.js +79 -0
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/utils.js +19 -16
- package/vscode/src/vs/base/common/policy.d.ts +8 -0
- package/vscode/src/vs/base/common/product.d.ts +26 -5
- package/vscode/src/vs/base/common/strings.js +11 -18
- package/vscode/src/vs/base/common/worker/{simpleWorker.d.ts → webWorker.d.ts} +16 -27
- package/vscode/src/vs/base/common/worker/{simpleWorker.js → webWorker.js} +18 -46
- package/vscode/src/vs/base/common/worker/webWorkerBootstrap.d.ts +3 -0
- package/vscode/src/vs/base/common/worker/webWorkerBootstrap.js +27 -0
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +6 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +39 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +3 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +30 -11
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.d.ts +3 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.js +25 -5
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +16 -14
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +19 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +4 -0
- package/vscode/src/vs/editor/browser/rect.d.ts +11 -0
- package/vscode/src/vs/editor/browser/rect.js +39 -11
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +9 -8
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +7 -7
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +97 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +23 -13
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.js +22 -10
- package/vscode/src/vs/editor/browser/view.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view.js +57 -3
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +21 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +16 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css +14 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +24 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css +3 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +46 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +7 -0
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css +21 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css +66 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +53 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +0 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +18 -55
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +92 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +54 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +16 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +7 -11
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +9 -9
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.service.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +337 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +1 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +15 -0
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.d.ts +2 -0
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +58 -31
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +1 -4
- package/vscode/src/vs/editor/common/config/editorOptions.js +391 -396
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +9 -3
- package/vscode/src/vs/editor/common/languages.js +61 -27
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.service.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/treeSitterTokens.js +18 -6
- package/vscode/src/vs/editor/common/services/{editorSimpleWorker.d.ts → editorWebWorker.d.ts} +7 -18
- package/vscode/src/vs/editor/common/services/{editorSimpleWorker.js → editorWebWorker.js} +12 -38
- package/vscode/src/vs/editor/common/services/editorWebWorkerMain.d.ts +1 -0
- package/vscode/src/vs/editor/common/services/editorWebWorkerMain.js +5 -0
- package/vscode/src/vs/editor/common/services/editorWorker.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWorkerHost.d.ts +3 -3
- package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +4 -4
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/treeSitterParserService.service.d.ts +2 -2
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +5 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +6 -3
- package/vscode/src/vs/editor/common/viewModel.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +21 -12
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +29 -12
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +4 -0
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +7 -7
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +5 -0
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +7 -7
- 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 +18 -23
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- 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 +10 -10
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +49 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +10 -10
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.js +5 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css +54 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +171 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerBody.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +4 -4
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerInsertButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerStrip.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/images/opacity-background.png +0 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css +25 -0
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- 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.css +19 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +6 -0
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +223 -0
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +28 -28
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css +42 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +21 -21
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/folding/browser/syntaxRangeProvider.js +3 -0
- 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.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +17 -20
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +55 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +5 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +2 -2
- 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.css +64 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +5 -8
- 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.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverController.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +61 -0
- 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 +25 -25
- package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +3 -0
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +3 -3
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +10 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +35 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +22 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +85 -14
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +10 -29
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +115 -101
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.js +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +7 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +23 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.js +41 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +62 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +18 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +62 -36
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +22 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +310 -61
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +35 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +58 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +10 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +103 -130
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +18 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.js +10 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{viewAndDiffProducer.d.ts → inlineEditsViewProducer.d.ts} +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{viewAndDiffProducer.js → inlineEditsViewProducer.js} +56 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.d.ts +17 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +107 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +8 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +77 -51
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +7 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +88 -69
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +10 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +55 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +6 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +182 -150
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +5 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +40 -119
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +13 -56
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.d.ts +9 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +85 -54
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.d.ts +2 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +11 -75
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +156 -0
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgress.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +21 -0
- 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.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +4 -0
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +3 -3
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.js +2 -1
- package/vscode/src/vs/editor/contrib/links/browser/links.css +9 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/links/browser/links.js +11 -14
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css +67 -0
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +2 -2
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +23 -23
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +120 -0
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +64 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +12 -0
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +42 -0
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +8 -8
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css +13 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +1 -1
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +58 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +12 -15
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +13 -10
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +5 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +35 -25
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +348 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +3 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +26 -21
- 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.css +68 -0
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +39 -39
- 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.css +66 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +5 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +6 -5
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +51 -43
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +32 -0
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +10 -10
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +11 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +2 -2
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +18 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-dark.svg +10 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-light.svg +10 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +49 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +0 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +1 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.d.ts +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +6 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +4 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +68 -54
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +5 -5
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +138 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +8 -8
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css +49 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +7 -7
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -0
- package/vscode/src/vs/platform/actions/common/actions.js +1 -0
- 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/configuration/common/configuration.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configuration.js +24 -1
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +4 -4
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +2 -6
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +24 -18
- package/vscode/src/vs/platform/configuration/common/configurations.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurations.js +18 -9
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.d.ts +1 -0
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +14 -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/contextview/browser/contextMenuHandler.js +1 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +3 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.d.ts +9 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.js +6 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +33 -9
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +23 -11
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +8 -7
- package/vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.d.ts +3 -3
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +5 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +15 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +17 -8
- 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/hover/browser/hover.d.ts +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.service.d.ts +1 -1
- package/vscode/src/vs/platform/ipc/common/services.d.ts +1 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.d.ts +7 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.js +40 -3
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +2 -1
- package/vscode/src/vs/platform/log/common/log.js +13 -9
- package/vscode/src/vs/platform/log/common/log.service.d.ts +1 -1
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +4 -0
- package/vscode/src/vs/platform/markers/common/markerService.js +79 -29
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -0
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.js +28 -3
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.js +42 -4
- package/vscode/src/vs/platform/opener/browser/link.css +6 -0
- package/vscode/src/vs/platform/opener/browser/link.js +1 -1
- package/vscode/src/vs/platform/policy/common/policy.d.ts +7 -4
- package/vscode/src/vs/platform/policy/common/policy.js +1 -0
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +3 -1
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +311 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +12 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +16 -18
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +5 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +2 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -0
- package/vscode/src/vs/platform/remote/common/remoteSocketFactoryService.service.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/storage/common/storage.d.ts +0 -1
- package/vscode/src/vs/platform/storage/common/storage.js +1 -2
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -2
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -0
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +3 -3
- 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 +45 -45
- 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/theme/common/themeService.d.ts +0 -3
- package/vscode/src/vs/platform/theme/common/themeService.js +1 -1
- package/vscode/src/vs/platform/theme/common/themeService.service.d.ts +2 -2
- package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +1 -1
- package/vscode/src/vs/platform/tunnel/common/tunnel.service.d.ts +1 -1
- 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.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -1
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +12 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.js +14 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.d.ts +13 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.js +7 -0
- package/vscode/src/vs/platform/window/common/window.d.ts +7 -0
- package/vscode/src/vs/platform/window/common/window.js +24 -1
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +4 -4
- package/vscode/src/vs/platform/workspace/common/workspace.js +13 -15
- package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +41 -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 +34 -5
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +5 -2
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +3 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +10 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +37 -45
- package/vscode/src/vs/workbench/api/common/extHostChatStatus.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostChatStatus.js +77 -0
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +1 -1
- 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/extHostFileSystemEventService.js +4 -4
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +4 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +34 -7
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +8 -7
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +23 -0
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +193 -0
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTask.d.ts +10 -1
- package/vscode/src/vs/workbench/api/common/extHostTask.js +28 -0
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +6 -48
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +44 -2
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +121 -29
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +9 -4
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +131 -11
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +97 -3
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extensionHostMain.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/media/actions.css +45 -0
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/common/configuration.js +10 -10
- package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +162 -162
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +176 -141
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +16 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -36
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +1 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +15 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +12 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.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 +24 -0
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +27 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +21 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +20 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +19 -11
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +53 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.js +27 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +23 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +27 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.d.ts +0 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +7 -9
- 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 -0
- 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.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -35
- 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/common/mcpConfigPathsService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +29 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +205 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +164 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +7 -8
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +20 -20
- 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/scm/common/scm.service.d.ts +1 -0
- 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/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +22 -15
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +18 -15
- 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/url/browser/trustedDomainService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +67 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +183 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +2 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +7 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +40 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +149 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +9 -20
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +94 -129
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +9 -8
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.js +9 -8
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.js +1 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +91 -83
- package/vscode/src/vs/workbench/services/extensions/common/rpcProtocol.d.ts +1 -1
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.d.ts +2 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.js +2 -0
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.d.ts +8 -0
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +34 -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 +2 -2
- 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 +12 -12
- package/vscode-dts/vscode.d.ts +22 -5
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +21 -2
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +9 -1
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +4 -4
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +61 -0
- package/vscode-dts/vscode.proposed.d.ts +5 -2
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -8
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +1 -1
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +98 -0
- package/vscode-dts/{vscode.proposed.chatReadonlyPromptReference.d.ts → vscode.proposed.languageModelToolsForAgent.d.ts} +1 -10
- package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +45 -0
- package/vscode-dts/vscode.proposed.taskProblemMatcherStatus.d.ts +42 -0
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +1 -1
- package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +16 -1
- package/workers/editor.worker.d.ts +1 -1
- package/workers/editor.worker.js +1 -1
- package/external/rollup-plugin-styles/dist/runtime/inject-css.js +0 -3
- package/vscode/src/vs/base/browser/defaultWorkerFactory.d.ts +0 -11
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/aria/aria.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/button/button.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/list/list.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/sash/sash.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/table/table.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css.js +0 -6
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css.js +0 -6
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css.js +0 -6
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css.js +0 -6
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css.js +0 -6
- package/vscode/src/vs/editor/common/services/editorWorkerBootstrap.d.ts +0 -2
- package/vscode/src/vs/editor/common/services/editorWorkerBootstrap.js +0 -25
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css.js +0 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css.js +0 -6
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css.js +0 -6
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css.js +0 -6
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/indicatorView.d.ts +0 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/indicatorView.js +0 -77
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css.js +0 -6
- package/vscode/src/vs/editor/contrib/links/browser/links.css.js +0 -6
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css.js +0 -6
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css.js +0 -6
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css.js +0 -6
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css.js +0 -6
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css.js +0 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css.js +0 -6
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css.js +0 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css.js +0 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css.js +0 -6
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css.js +0 -6
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css.js +0 -6
- package/vscode/src/vs/editor/editor.worker.d.ts +0 -1
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css.js +0 -6
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css.js +0 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css.js +0 -6
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css.js +0 -6
- package/vscode/src/vs/platform/opener/browser/link.css.js +0 -6
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css.js +0 -6
- package/vscode/src/vs/platform/severityIcon/browser/media/severityIcon.css.js +0 -6
- package/vscode/src/vs/workbench/api/common/shared/tasks.d.ts +0 -114
- package/vscode/src/vs/workbench/browser/actions/media/actions.css.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +0 -254
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +0 -469
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementsService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementsService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatQuotasService.service.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatQuotasService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css.js +0 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.js +0 -6
- package/vscode-dts/vscode.proposed.terminalShellType.d.ts +0 -40
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalCellModelFactory.service.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalCellModelFactory.service.js +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalModelRefFactory.service.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalModelRefFactory.service.js +0 -0
|
@@ -12,7 +12,7 @@ import { Disposable, DisposableStore } from '../../../base/common/lifecycle.js';
|
|
|
12
12
|
import { isIOS } from '../../../base/common/platform.js';
|
|
13
13
|
import Severity$1 from '../../../base/common/severity.js';
|
|
14
14
|
import { ThemeIcon } from '../../../base/common/themables.js';
|
|
15
|
-
import './media/quickInput.css
|
|
15
|
+
import './media/quickInput.css';
|
|
16
16
|
import { localize } from '../../../nls.js';
|
|
17
17
|
import { QuickInputButtonLocation, QuickInputHideReason, ItemActivation, QuickInputType, NO_KEY_MODS, QuickPickFocus } from '../common/quickInput.js';
|
|
18
18
|
import { quickInputButtonToAction, renderQuickInputDescription } from './quickInputUtils.js';
|
|
@@ -22,25 +22,25 @@ import { IHoverService } from '../../hover/browser/hover.service.js';
|
|
|
22
22
|
import { RawContextKey, ContextKeyExpr } from '../../contextkey/common/contextkey.js';
|
|
23
23
|
|
|
24
24
|
const inQuickInputContextKeyValue = 'inQuickInput';
|
|
25
|
-
const InQuickInputContextKey = ( new RawContextKey(inQuickInputContextKeyValue, false, ( localize(
|
|
25
|
+
const InQuickInputContextKey = ( new RawContextKey(inQuickInputContextKeyValue, false, ( localize(1928, "Whether keyboard focus is inside the quick input control"))));
|
|
26
26
|
const inQuickInputContext = ( ContextKeyExpr.has(inQuickInputContextKeyValue));
|
|
27
27
|
const quickInputAlignmentContextKeyValue = 'quickInputAlignment';
|
|
28
|
-
const QuickInputAlignmentContextKey = ( new RawContextKey(quickInputAlignmentContextKeyValue, 'top', ( localize(
|
|
28
|
+
const QuickInputAlignmentContextKey = ( new RawContextKey(quickInputAlignmentContextKeyValue, 'top', ( localize(1929, "The alignment of the quick input"))));
|
|
29
29
|
const quickInputTypeContextKeyValue = 'quickInputType';
|
|
30
|
-
const QuickInputTypeContextKey = ( new RawContextKey(quickInputTypeContextKeyValue, undefined, ( localize(
|
|
30
|
+
const QuickInputTypeContextKey = ( new RawContextKey(quickInputTypeContextKeyValue, undefined, ( localize(1930, "The type of the currently visible quick input"))));
|
|
31
31
|
const endOfQuickInputBoxContextKeyValue = 'cursorAtEndOfQuickInputBox';
|
|
32
32
|
const EndOfQuickInputBoxContextKey = ( new RawContextKey(endOfQuickInputBoxContextKeyValue, false, ( localize(
|
|
33
|
-
|
|
33
|
+
1931,
|
|
34
34
|
"Whether the cursor in the quick input is at the end of the input box"
|
|
35
35
|
))));
|
|
36
36
|
const endOfQuickInputBoxContext = ( ContextKeyExpr.has(endOfQuickInputBoxContextKeyValue));
|
|
37
37
|
const backButton = {
|
|
38
38
|
iconClass: ThemeIcon.asClassName(Codicon.quickInputBack),
|
|
39
|
-
tooltip: ( localize(
|
|
39
|
+
tooltip: ( localize(1932, "Back")),
|
|
40
40
|
handle: -1
|
|
41
41
|
};
|
|
42
42
|
class QuickInput extends Disposable {
|
|
43
|
-
static { this.noPromptMessage = ( localize(
|
|
43
|
+
static { this.noPromptMessage = ( localize(1933, "Press 'Enter' to confirm your input or 'Escape' to cancel")); }
|
|
44
44
|
constructor(ui) {
|
|
45
45
|
super();
|
|
46
46
|
this.ui = ui;
|
|
@@ -317,7 +317,7 @@ class QuickInput extends Disposable {
|
|
|
317
317
|
}
|
|
318
318
|
getSteps() {
|
|
319
319
|
if (this.step && this.totalSteps) {
|
|
320
|
-
return localize(
|
|
320
|
+
return localize(1934, "{0}/{1}", this.step, this.totalSteps);
|
|
321
321
|
}
|
|
322
322
|
if (this.step) {
|
|
323
323
|
return String(this.step);
|
|
@@ -390,7 +390,7 @@ class QuickPick extends QuickInput {
|
|
|
390
390
|
this.onDidTriggerItemButton = this.onDidTriggerItemButtonEmitter.event;
|
|
391
391
|
this.onDidTriggerSeparatorButton = this.onDidTriggerSeparatorButtonEmitter.event;
|
|
392
392
|
}
|
|
393
|
-
static { this.DEFAULT_ARIA_LABEL = ( localize(
|
|
393
|
+
static { this.DEFAULT_ARIA_LABEL = ( localize(1935, "Type to narrow down results.")); }
|
|
394
394
|
get quickNavigate() {
|
|
395
395
|
return this._quickNavigate;
|
|
396
396
|
}
|
|
@@ -570,7 +570,7 @@ class QuickPick extends QuickInput {
|
|
|
570
570
|
this.update();
|
|
571
571
|
}
|
|
572
572
|
get okLabel() {
|
|
573
|
-
return this._okLabel ?? ( localize(
|
|
573
|
+
return this._okLabel ?? ( localize(1936, "OK"));
|
|
574
574
|
}
|
|
575
575
|
set okLabel(okLabel) {
|
|
576
576
|
this._okLabel = okLabel;
|
|
@@ -641,7 +641,7 @@ class QuickPick extends QuickInput {
|
|
|
641
641
|
this.onDidChangeActiveEmitter.fire(focusedItems);
|
|
642
642
|
}));
|
|
643
643
|
this.visibleDisposables.add(this.ui.list.onDidChangeSelection(({ items: selectedItems, event }) => {
|
|
644
|
-
if (this.canSelectMany) {
|
|
644
|
+
if (this.canSelectMany && !( selectedItems.some(i => i.pickable === false))) {
|
|
645
645
|
if (selectedItems.length) {
|
|
646
646
|
this.ui.list.setSelectedElements([]);
|
|
647
647
|
}
|
|
@@ -901,7 +901,7 @@ class InputBox extends QuickInput {
|
|
|
901
901
|
set prompt(prompt) {
|
|
902
902
|
this._prompt = prompt;
|
|
903
903
|
this.noValidationMessage = prompt
|
|
904
|
-
? ( localize(
|
|
904
|
+
? ( localize(1937, "{0} (Press 'Enter' to confirm or 'Escape' to cancel)", prompt))
|
|
905
905
|
: QuickInput.noPromptMessage;
|
|
906
906
|
this.update();
|
|
907
907
|
}
|
|
@@ -13,7 +13,7 @@ const defaultCommandAndKeybindingRule = {
|
|
|
13
13
|
weight: KeybindingWeight.WorkbenchContrib,
|
|
14
14
|
when: ( ContextKeyExpr.and(( ContextKeyExpr.equals(quickInputTypeContextKeyValue, QuickInputType.QuickPick)), inQuickInputContext)),
|
|
15
15
|
metadata: { description: ( localize(
|
|
16
|
-
|
|
16
|
+
1938,
|
|
17
17
|
"Used while in the context of the quick pick. If you change one keybinding for this command, you should change all of the other keybindings (modifier variants) of this command as well."
|
|
18
18
|
)) }
|
|
19
19
|
};
|
|
@@ -68,11 +68,11 @@ registerQuickPickCommandAndKeybindingRule({ id: 'quickInput.last', primary: ctrl
|
|
|
68
68
|
registerQuickPickCommandAndKeybindingRule({ id: 'quickInput.next', primary: KeyCode.DownArrow, handler: focusHandler(QuickPickFocus.Next) }, { withCtrlMod: true });
|
|
69
69
|
registerQuickPickCommandAndKeybindingRule({ id: 'quickInput.previous', primary: KeyCode.UpArrow, handler: focusHandler(QuickPickFocus.Previous) }, { withCtrlMod: true });
|
|
70
70
|
const nextSeparatorFallbackDesc = ( localize(
|
|
71
|
-
|
|
71
|
+
1939,
|
|
72
72
|
"If we're in quick access mode, this will navigate to the next item. If we are not in quick access mode, this will navigate to the next separator."
|
|
73
73
|
));
|
|
74
74
|
const prevSeparatorFallbackDesc = ( localize(
|
|
75
|
-
|
|
75
|
+
1940,
|
|
76
76
|
"If we're in quick access mode, this will navigate to the previous item. If we are not in quick access mode, this will navigate to the previous separator."
|
|
77
77
|
));
|
|
78
78
|
if (isMacintosh) {
|
|
@@ -4,7 +4,7 @@ import { FindInput } from '../../../base/browser/ui/findinput/findInput.js';
|
|
|
4
4
|
import { MessageType } from '../../../base/browser/ui/inputbox/inputBox.js';
|
|
5
5
|
import { Disposable } from '../../../base/common/lifecycle.js';
|
|
6
6
|
import Severity$1 from '../../../base/common/severity.js';
|
|
7
|
-
import './media/quickInput.css
|
|
7
|
+
import './media/quickInput.css';
|
|
8
8
|
|
|
9
9
|
const $ = $$1;
|
|
10
10
|
class QuickInputBox extends Disposable {
|
|
@@ -12,7 +12,6 @@ export declare class QuickInputController extends Disposable {
|
|
|
12
12
|
private options;
|
|
13
13
|
private readonly layoutService;
|
|
14
14
|
private readonly instantiationService;
|
|
15
|
-
private readonly contextKeyService;
|
|
16
15
|
private readonly storageService;
|
|
17
16
|
private static readonly MAX_WIDTH;
|
|
18
17
|
private idPrefix;
|
|
@@ -15,7 +15,7 @@ import { isString } from '../../../base/common/types.js';
|
|
|
15
15
|
import { localize } from '../../../nls.js';
|
|
16
16
|
import { QuickInputHideReason, QuickPickFocus } from '../common/quickInput.js';
|
|
17
17
|
import { QuickInputBox } from './quickInputBox.js';
|
|
18
|
-
import { InQuickInputContextKey, QuickInputTypeContextKey, EndOfQuickInputBoxContextKey,
|
|
18
|
+
import { backButton, InQuickInputContextKey, QuickInputTypeContextKey, EndOfQuickInputBoxContextKey, QuickPick, InputBox, QuickWidget, QuickInputAlignmentContextKey } from './quickInput.js';
|
|
19
19
|
import { ILayoutService } from '../../layout/browser/layoutService.service.js';
|
|
20
20
|
import { mainWindow } from '../../../base/browser/window.js';
|
|
21
21
|
import { IInstantiationService } from '../../instantiation/common/instantiation.js';
|
|
@@ -28,7 +28,7 @@ import { StorageScope, StorageTarget } from '../../storage/common/storage.js';
|
|
|
28
28
|
import { IStorageService } from '../../storage/common/storage.service.js';
|
|
29
29
|
import { IConfigurationService } from '../../configuration/common/configuration.service.js';
|
|
30
30
|
import { platform, Platform } from '../../../base/common/platform.js';
|
|
31
|
-
import {
|
|
31
|
+
import { getWindowControlsStyle, WindowControlsStyle } from '../../window/common/window.js';
|
|
32
32
|
import { getZoomFactor } from '../../../base/browser/browser.js';
|
|
33
33
|
import { autorun } from '../../../base/common/observableInternal/autorun.js';
|
|
34
34
|
import { observableValue } from '../../../base/common/observableInternal/base.js';
|
|
@@ -46,7 +46,6 @@ let QuickInputController = class QuickInputController extends Disposable {
|
|
|
46
46
|
this.options = options;
|
|
47
47
|
this.layoutService = layoutService;
|
|
48
48
|
this.instantiationService = instantiationService;
|
|
49
|
-
this.contextKeyService = contextKeyService;
|
|
50
49
|
this.storageService = storageService;
|
|
51
50
|
this.enabled = true;
|
|
52
51
|
this.onDidAcceptEmitter = this._register(( new Emitter()));
|
|
@@ -58,10 +57,10 @@ let QuickInputController = class QuickInputController extends Disposable {
|
|
|
58
57
|
this.onShow = this.onShowEmitter.event;
|
|
59
58
|
this.onHideEmitter = this._register(( new Emitter()));
|
|
60
59
|
this.onHide = this.onHideEmitter.event;
|
|
61
|
-
this.inQuickInputContext = InQuickInputContextKey.bindTo(this.contextKeyService);
|
|
62
|
-
this.quickInputTypeContext = QuickInputTypeContextKey.bindTo(this.contextKeyService);
|
|
63
|
-
this.endOfQuickInputBoxContext = EndOfQuickInputBoxContextKey.bindTo(this.contextKeyService);
|
|
64
60
|
this.backButton = backButton;
|
|
61
|
+
this.inQuickInputContext = InQuickInputContextKey.bindTo(contextKeyService);
|
|
62
|
+
this.quickInputTypeContext = QuickInputTypeContextKey.bindTo(contextKeyService);
|
|
63
|
+
this.endOfQuickInputBoxContext = EndOfQuickInputBoxContextKey.bindTo(contextKeyService);
|
|
65
64
|
this.idPrefix = options.idPrefix;
|
|
66
65
|
this._container = options.container;
|
|
67
66
|
this.styles = options.styles;
|
|
@@ -106,7 +105,7 @@ let QuickInputController = class QuickInputController extends Disposable {
|
|
|
106
105
|
const headerContainer = append(container, $('.quick-input-header'));
|
|
107
106
|
const checkAll = append(headerContainer, $('input.quick-input-check-all'));
|
|
108
107
|
checkAll.type = 'checkbox';
|
|
109
|
-
checkAll.setAttribute('aria-label', ( localize(
|
|
108
|
+
checkAll.setAttribute('aria-label', ( localize(1941, "Toggle all checkboxes")));
|
|
110
109
|
this._register(addStandardDisposableListener(checkAll, EventType.CHANGE, e => {
|
|
111
110
|
const checked = checkAll.checked;
|
|
112
111
|
list.setAllVisibleChecked(checked);
|
|
@@ -124,21 +123,21 @@ let QuickInputController = class QuickInputController extends Disposable {
|
|
|
124
123
|
const visibleCountContainer = append(filterContainer, $('.quick-input-visible-count'));
|
|
125
124
|
visibleCountContainer.setAttribute('aria-live', 'polite');
|
|
126
125
|
visibleCountContainer.setAttribute('aria-atomic', 'true');
|
|
127
|
-
const visibleCount = this._register(( new CountBadge(visibleCountContainer, { countFormat: ( localize(
|
|
126
|
+
const visibleCount = this._register(( new CountBadge(visibleCountContainer, { countFormat: ( localize(1942, "{0} Results")) }, this.styles.countBadge)));
|
|
128
127
|
const countContainer = append(filterContainer, $('.quick-input-count'));
|
|
129
128
|
countContainer.setAttribute('aria-live', 'polite');
|
|
130
|
-
const count = this._register(( new CountBadge(countContainer, { countFormat: ( localize(
|
|
129
|
+
const count = this._register(( new CountBadge(countContainer, { countFormat: ( localize(1943, "{0} Selected")) }, this.styles.countBadge)));
|
|
131
130
|
const inlineActionBar = this._register(( new ActionBar(headerContainer, { hoverDelegate: this.options.hoverDelegate })));
|
|
132
131
|
inlineActionBar.domNode.classList.add('quick-input-inline-action-bar');
|
|
133
132
|
const okContainer = append(headerContainer, $('.quick-input-action'));
|
|
134
133
|
const ok = this._register(( new Button(okContainer, this.styles.button)));
|
|
135
|
-
ok.label = ( localize(
|
|
134
|
+
ok.label = ( localize(1944, "OK"));
|
|
136
135
|
this._register(ok.onDidClick(e => {
|
|
137
136
|
this.onDidAcceptEmitter.fire();
|
|
138
137
|
}));
|
|
139
138
|
const customButtonContainer = append(headerContainer, $('.quick-input-action'));
|
|
140
139
|
const customButton = this._register(( new Button(customButtonContainer, { ...this.styles.button, supportIcons: true })));
|
|
141
|
-
customButton.label = ( localize(
|
|
140
|
+
customButton.label = ( localize(1945, "Custom"));
|
|
142
141
|
this._register(customButton.onDidClick(e => {
|
|
143
142
|
this.onDidCustomEmitter.fire();
|
|
144
143
|
}));
|
|
@@ -564,7 +563,7 @@ let QuickInputController = class QuickInputController extends Disposable {
|
|
|
564
563
|
ui.ignoreFocusOut = false;
|
|
565
564
|
ui.inputBox.toggles = undefined;
|
|
566
565
|
const backKeybindingLabel = this.options.backKeybindingLabel();
|
|
567
|
-
backButton.tooltip = backKeybindingLabel ? ( localize(
|
|
566
|
+
backButton.tooltip = backKeybindingLabel ? ( localize(1946, "Back ({0})", backKeybindingLabel)) : ( localize(1947, "Back"));
|
|
568
567
|
ui.container.style.display = '';
|
|
569
568
|
this.updateLayout();
|
|
570
569
|
this.dndController?.layoutContainer();
|
|
@@ -774,21 +773,20 @@ QuickInputController = QuickInputController_1 = ( __decorate([
|
|
|
774
773
|
( __param(4, IStorageService))
|
|
775
774
|
], QuickInputController));
|
|
776
775
|
let QuickInputDragAndDropController = class QuickInputDragAndDropController extends Disposable {
|
|
777
|
-
constructor(_container, _quickInputContainer, _quickInputDragAreas, initialViewState, _layoutService,
|
|
776
|
+
constructor(_container, _quickInputContainer, _quickInputDragAreas, initialViewState, _layoutService, contextKeyService, configurationService) {
|
|
778
777
|
super();
|
|
779
778
|
this._container = _container;
|
|
780
779
|
this._quickInputContainer = _quickInputContainer;
|
|
781
780
|
this._quickInputDragAreas = _quickInputDragAreas;
|
|
782
781
|
this._layoutService = _layoutService;
|
|
783
|
-
this._contextKeyService = _contextKeyService;
|
|
784
782
|
this.configurationService = configurationService;
|
|
785
783
|
this.dndViewState = observableValue(this, undefined);
|
|
786
784
|
this._snapThreshold = 20;
|
|
787
785
|
this._snapLineHorizontalRatio = 0.25;
|
|
788
|
-
this._quickInputAlignmentContext = QuickInputAlignmentContextKey.bindTo(
|
|
789
|
-
const
|
|
790
|
-
this._controlsOnLeft =
|
|
791
|
-
this._controlsOnRight =
|
|
786
|
+
this._quickInputAlignmentContext = QuickInputAlignmentContextKey.bindTo(contextKeyService);
|
|
787
|
+
const customWindowControls = getWindowControlsStyle(this.configurationService) === WindowControlsStyle.CUSTOM;
|
|
788
|
+
this._controlsOnLeft = customWindowControls && platform === Platform.Mac;
|
|
789
|
+
this._controlsOnRight = customWindowControls && (platform === Platform.Windows || platform === Platform.Linux);
|
|
792
790
|
this._registerLayoutListener();
|
|
793
791
|
this.registerMouseListeners();
|
|
794
792
|
this.dndViewState.set({ ...initialViewState, done: true }, undefined);
|
|
@@ -186,7 +186,7 @@ class QuickInputItemDelegate {
|
|
|
186
186
|
}
|
|
187
187
|
class QuickInputAccessibilityProvider {
|
|
188
188
|
getWidgetAriaLabel() {
|
|
189
|
-
return localize(
|
|
189
|
+
return localize(1948, "Quick Input");
|
|
190
190
|
}
|
|
191
191
|
getAriaLabel(element) {
|
|
192
192
|
return element.separator?.label
|
|
@@ -285,6 +285,8 @@ let QuickPickItemElementRenderer = class QuickPickItemElementRenderer extends Ba
|
|
|
285
285
|
data.element = element;
|
|
286
286
|
element.element = data.entry ?? undefined;
|
|
287
287
|
const mainItem = element.item;
|
|
288
|
+
element.element.classList.toggle('indented', Boolean(mainItem.indented));
|
|
289
|
+
element.element.classList.toggle('not-pickable', element.item.pickable === false);
|
|
288
290
|
data.checkbox.checked = element.checked;
|
|
289
291
|
data.toDisposeElement.add(element.onChecked(checked => data.checkbox.checked = checked));
|
|
290
292
|
data.checkbox.disabled = element.checkboxDisabled;
|
|
@@ -766,7 +768,7 @@ let QuickInputTree = class QuickInputTree extends Disposable {
|
|
|
766
768
|
setAllVisibleChecked(checked) {
|
|
767
769
|
this._elementCheckedEventBufferer.bufferEvents(() => {
|
|
768
770
|
this._itemElements.forEach(element => {
|
|
769
|
-
if (!element.hidden && !element.checkboxDisabled) {
|
|
771
|
+
if (!element.hidden && !element.checkboxDisabled && element.item.pickable !== false) {
|
|
770
772
|
element.checked = checked;
|
|
771
773
|
}
|
|
772
774
|
});
|
|
@@ -1181,7 +1183,7 @@ let QuickInputTree = class QuickInputTree extends Disposable {
|
|
|
1181
1183
|
_allVisibleChecked(elements, whenNoneVisible = true) {
|
|
1182
1184
|
for (let i = 0, n = elements.length; i < n; i++) {
|
|
1183
1185
|
const element = elements[i];
|
|
1184
|
-
if (!element.hidden) {
|
|
1186
|
+
if (!element.hidden && element.item.pickable !== false) {
|
|
1185
1187
|
if (!element.checked) {
|
|
1186
1188
|
return false;
|
|
1187
1189
|
}
|
|
@@ -10,7 +10,7 @@ import { renderLabelWithIcons } from '../../../base/browser/ui/iconLabel/iconLab
|
|
|
10
10
|
import { IdGenerator } from '../../../base/common/idGenerator.js';
|
|
11
11
|
import { KeyCode } from '../../../base/common/keyCodes.js';
|
|
12
12
|
import { parseLinkedText } from '../../../base/common/linkedText.js';
|
|
13
|
-
import './media/quickInput.css
|
|
13
|
+
import './media/quickInput.css';
|
|
14
14
|
import { localize } from '../../../nls.js';
|
|
15
15
|
|
|
16
16
|
const iconPathToClass = {};
|
|
@@ -58,7 +58,7 @@ function renderQuickInputDescription(description, container, actionHandler) {
|
|
|
58
58
|
let title = node.title;
|
|
59
59
|
if (!title && node.href.startsWith('command:')) {
|
|
60
60
|
title = ( localize(
|
|
61
|
-
|
|
61
|
+
1949,
|
|
62
62
|
"Click to execute command '{0}'",
|
|
63
63
|
node.href.substring('command:'.length)
|
|
64
64
|
));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IDisposable } from "../../../base/common/lifecycle.js";
|
|
2
|
-
import { ISocket } from "@codingame/monaco-vscode-
|
|
2
|
+
import { ISocket } from "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common/vscode/vs/base/parts/ipc/common/ipc.net";
|
|
3
3
|
import { RemoteConnectionType, RemoteConnection } from "./remoteAuthorityResolver.js";
|
|
4
4
|
import { ISocketFactory } from "@codingame/monaco-vscode-remote-agent-service-override/vscode/vs/platform/remote/common/remoteSocketFactoryService";
|
|
5
5
|
export declare const IRemoteSocketFactoryService: import("../../instantiation/common/instantiation.js").ServiceIdentifier<IRemoteSocketFactoryService>;
|
|
@@ -108,7 +108,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
108
108
|
{
|
|
109
109
|
id: 'http',
|
|
110
110
|
order: 15,
|
|
111
|
-
title: ( localize(
|
|
111
|
+
title: ( localize(1953, "HTTP")),
|
|
112
112
|
type: 'object',
|
|
113
113
|
scope: ConfigurationScope.MACHINE,
|
|
114
114
|
properties: {
|
|
@@ -116,7 +116,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
116
116
|
type: 'boolean',
|
|
117
117
|
default: useHostProxyDefault,
|
|
118
118
|
markdownDescription: ( localize(
|
|
119
|
-
|
|
119
|
+
1954,
|
|
120
120
|
"Controls whether in the remote extension host the local proxy configuration should be used. This setting only applies as a remote setting during [remote development](https://aka.ms/vscode-remote)."
|
|
121
121
|
)),
|
|
122
122
|
restricted: true
|
|
@@ -126,7 +126,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
126
126
|
{
|
|
127
127
|
id: 'http',
|
|
128
128
|
order: 15,
|
|
129
|
-
title: ( localize(
|
|
129
|
+
title: ( localize(1953, "HTTP")),
|
|
130
130
|
type: 'object',
|
|
131
131
|
scope: ConfigurationScope.APPLICATION,
|
|
132
132
|
properties: {
|
|
@@ -134,7 +134,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
134
134
|
type: 'boolean',
|
|
135
135
|
default: false,
|
|
136
136
|
description: ( localize(
|
|
137
|
-
|
|
137
|
+
1955,
|
|
138
138
|
"Controls whether use of Electron's fetch implementation instead of Node.js' should be enabled. All local extensions will get Electron's fetch implementation for the global fetch API."
|
|
139
139
|
)),
|
|
140
140
|
restricted: true
|
|
@@ -144,7 +144,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
144
144
|
{
|
|
145
145
|
id: 'http',
|
|
146
146
|
order: 15,
|
|
147
|
-
title: ( localize(
|
|
147
|
+
title: ( localize(1953, "HTTP")),
|
|
148
148
|
type: 'object',
|
|
149
149
|
scope: useHostProxy ? ConfigurationScope.APPLICATION : ConfigurationScope.MACHINE,
|
|
150
150
|
properties: {
|
|
@@ -152,7 +152,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
152
152
|
type: 'string',
|
|
153
153
|
pattern: '^(https?|socks|socks4a?|socks5h?)://([^:]*(:[^@]*)?@)?([^:]+|\\[[:0-9a-fA-F]+\\])(:\\d+)?/?$|^$',
|
|
154
154
|
markdownDescription: ( localize(
|
|
155
|
-
|
|
155
|
+
1956,
|
|
156
156
|
"The proxy setting to use. If not set, will be inherited from the `http_proxy` and `https_proxy` environment variables. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
157
157
|
'`#http.useLocalProxyConfiguration#`'
|
|
158
158
|
)),
|
|
@@ -162,7 +162,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
162
162
|
type: 'boolean',
|
|
163
163
|
default: true,
|
|
164
164
|
markdownDescription: ( localize(
|
|
165
|
-
|
|
165
|
+
1957,
|
|
166
166
|
"Controls whether the proxy server certificate should be verified against the list of supplied CAs. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
167
167
|
'`#http.useLocalProxyConfiguration#`'
|
|
168
168
|
)),
|
|
@@ -171,7 +171,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
171
171
|
'http.proxyKerberosServicePrincipal': {
|
|
172
172
|
type: 'string',
|
|
173
173
|
markdownDescription: ( localize(
|
|
174
|
-
|
|
174
|
+
1958,
|
|
175
175
|
"Overrides the principal service name for Kerberos authentication with the HTTP proxy. A default based on the proxy hostname is used when this is not set. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
176
176
|
'`#http.useLocalProxyConfiguration#`'
|
|
177
177
|
)),
|
|
@@ -181,7 +181,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
181
181
|
type: 'array',
|
|
182
182
|
items: { type: 'string' },
|
|
183
183
|
markdownDescription: ( localize(
|
|
184
|
-
|
|
184
|
+
1959,
|
|
185
185
|
"Specifies domain names for which proxy settings should be ignored for HTTP/HTTPS requests. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
186
186
|
'`#http.useLocalProxyConfiguration#`'
|
|
187
187
|
)),
|
|
@@ -191,7 +191,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
191
191
|
type: ['null', 'string'],
|
|
192
192
|
default: null,
|
|
193
193
|
markdownDescription: ( localize(
|
|
194
|
-
|
|
194
|
+
1960,
|
|
195
195
|
"The value to send as the `Proxy-Authorization` header for every network request. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
196
196
|
'`#http.useLocalProxyConfiguration#`'
|
|
197
197
|
)),
|
|
@@ -201,17 +201,17 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
201
201
|
type: 'string',
|
|
202
202
|
enum: ['off', 'on', 'fallback', 'override'],
|
|
203
203
|
enumDescriptions: [
|
|
204
|
-
( localize(
|
|
205
|
-
( localize(
|
|
204
|
+
( localize(1961, "Disable proxy support for extensions.")),
|
|
205
|
+
( localize(1962, "Enable proxy support for extensions.")),
|
|
206
206
|
( localize(
|
|
207
|
-
|
|
207
|
+
1963,
|
|
208
208
|
"Enable proxy support for extensions, fall back to request options, when no proxy found."
|
|
209
209
|
)),
|
|
210
|
-
( localize(
|
|
210
|
+
( localize(1964, "Enable proxy support for extensions, override request options.")),
|
|
211
211
|
],
|
|
212
212
|
default: 'override',
|
|
213
213
|
markdownDescription: ( localize(
|
|
214
|
-
|
|
214
|
+
1965,
|
|
215
215
|
"Use the proxy support for extensions. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
216
216
|
'`#http.useLocalProxyConfiguration#`'
|
|
217
217
|
)),
|
|
@@ -221,7 +221,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
221
221
|
type: 'boolean',
|
|
222
222
|
default: true,
|
|
223
223
|
markdownDescription: ( localize(
|
|
224
|
-
|
|
224
|
+
1966,
|
|
225
225
|
"Controls whether CA certificates should be loaded from the OS. On Windows and macOS, a reload of the window is required after turning this off. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
226
226
|
'`#http.useLocalProxyConfiguration#`'
|
|
227
227
|
)),
|
|
@@ -232,7 +232,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
232
232
|
tags: ['experimental'],
|
|
233
233
|
default: false,
|
|
234
234
|
markdownDescription: ( localize(
|
|
235
|
-
|
|
235
|
+
1967,
|
|
236
236
|
"Controls whether experimental loading of CA certificates from the OS should be enabled. This uses a more general approach than the default implementation. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
237
237
|
'`#http.useLocalProxyConfiguration#`'
|
|
238
238
|
)),
|
|
@@ -242,7 +242,7 @@ function registerProxyConfigurations(useHostProxy = true, useHostProxyDefault =
|
|
|
242
242
|
type: 'boolean',
|
|
243
243
|
default: true,
|
|
244
244
|
markdownDescription: ( localize(
|
|
245
|
-
|
|
245
|
+
1968,
|
|
246
246
|
"Controls whether Node.js' fetch implementation should be extended with additional support. Currently proxy support ({1}) and system certificates ({2}) are added when the corresponding settings are enabled. When during [remote development](https://aka.ms/vscode-remote) the {0} setting is disabled this setting can be configured in the local and the remote settings separately.",
|
|
247
247
|
'`#http.useLocalProxyConfiguration#`',
|
|
248
248
|
'`#http.proxySupport#`',
|
|
@@ -54,7 +54,6 @@ export interface IStorageServiceOptions {
|
|
|
54
54
|
}
|
|
55
55
|
export declare function loadKeyTargets(storage: IStorage): IKeyTargets;
|
|
56
56
|
export declare abstract class AbstractStorageService extends Disposable implements IStorageService {
|
|
57
|
-
private readonly options;
|
|
58
57
|
readonly _serviceBrand: undefined;
|
|
59
58
|
private static DEFAULT_FLUSH_INTERVAL;
|
|
60
59
|
private readonly _onDidChangeValue;
|
|
@@ -40,17 +40,16 @@ class AbstractStorageService extends Disposable {
|
|
|
40
40
|
static { this.DEFAULT_FLUSH_INTERVAL = 60 * 1000; }
|
|
41
41
|
constructor(options = { flushInterval: AbstractStorageService.DEFAULT_FLUSH_INTERVAL }) {
|
|
42
42
|
super();
|
|
43
|
-
this.options = options;
|
|
44
43
|
this._onDidChangeValue = this._register(( new PauseableEmitter()));
|
|
45
44
|
this._onDidChangeTarget = this._register(( new PauseableEmitter()));
|
|
46
45
|
this.onDidChangeTarget = this._onDidChangeTarget.event;
|
|
47
46
|
this._onWillSaveState = this._register(( new Emitter()));
|
|
48
47
|
this.onWillSaveState = this._onWillSaveState.event;
|
|
49
|
-
this.flushWhenIdleScheduler = this._register(( new RunOnceScheduler(() => this.doFlushWhenIdle(), this.options.flushInterval)));
|
|
50
48
|
this.runFlushWhenIdle = this._register(( new MutableDisposable()));
|
|
51
49
|
this._workspaceKeyTargets = undefined;
|
|
52
50
|
this._profileKeyTargets = undefined;
|
|
53
51
|
this._applicationKeyTargets = undefined;
|
|
52
|
+
this.flushWhenIdleScheduler = this._register(( new RunOnceScheduler(() => this.doFlushWhenIdle(), options.flushInterval)));
|
|
54
53
|
}
|
|
55
54
|
onDidChangeValue(scope, key, disposable) {
|
|
56
55
|
return Event.filter(this._onDidChangeValue.event, e => e.scope === scope && (key === undefined || e.key === key), disposable);
|
|
@@ -36,7 +36,7 @@ class NullEndpointTelemetryService {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
const telemetryLogId = 'telemetry';
|
|
39
|
-
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(
|
|
39
|
+
const TelemetryLogGroup = { id: telemetryLogId, name: ( localize(1989, "Telemetry")) };
|
|
40
40
|
function supportsTelemetry(productService, environmentService) {
|
|
41
41
|
if (!environmentService.isBuilt && !environmentService.disableTelemetry) {
|
|
42
42
|
return true;
|
|
@@ -192,7 +192,7 @@ function removePropertiesWithPossibleUserInfo(property) {
|
|
|
192
192
|
{ label: 'Generic Secret', regex: /(key|token|sig|secret|signature|password|passwd|pwd|android:value)[^a-zA-Z0-9]/i },
|
|
193
193
|
{ label: 'CLI Credentials', regex: /((login|psexec|(certutil|psexec)\.exe).{1,50}(\s-u(ser(name)?)?\s+.{3,100})?\s-(admin|user|vm|root)?p(ass(word)?)?\s+["']?[^$\-\/\s]|(^|[\s\r\n\\])net(\.exe)?.{1,5}(user\s+|share\s+\/user:| user -? secrets ? set) \s + [^ $\s \/])/ },
|
|
194
194
|
{ label: 'Microsoft Entra ID', regex: /eyJ(?:0eXAiOiJKV1Qi|hbGci|[a-zA-Z0-9\-_]+\.[a-zA-Z0-9\-_]+\.)/ },
|
|
195
|
-
{ label: 'Email', regex:
|
|
195
|
+
{ label: 'Email', regex: /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/ }
|
|
196
196
|
];
|
|
197
197
|
for (const secretRegex of userDataRegexes) {
|
|
198
198
|
if (secretRegex.regex.test(property)) {
|
|
@@ -517,8 +517,10 @@ export interface IExtensionTerminalProfile extends ITerminalProfileContribution
|
|
|
517
517
|
export type ITerminalProfileObject = ITerminalExecutable | ITerminalProfileSource | IExtensionTerminalProfile | null;
|
|
518
518
|
export interface IShellIntegration {
|
|
519
519
|
readonly capabilities: ITerminalCapabilityStore;
|
|
520
|
+
readonly seenSequences: ReadonlySet<string>;
|
|
520
521
|
readonly status: ShellIntegrationStatus;
|
|
521
522
|
readonly onDidChangeStatus: Event<ShellIntegrationStatus>;
|
|
523
|
+
readonly onDidChangeSeenSequences: Event<ReadonlySet<string>>;
|
|
522
524
|
deserialize(serialized: ISerializedCommandDetectionCapability): void;
|
|
523
525
|
}
|
|
524
526
|
export interface IDecorationAddon {
|
|
@@ -3,7 +3,7 @@ import { IKeybindingLabelStyles } from "../../../base/browser/ui/keybindingLabel
|
|
|
3
3
|
import { ColorIdentifier } from "../common/colorRegistry.js";
|
|
4
4
|
import { IProgressBarStyles } from "../../../base/browser/ui/progressbar/progressbar.js";
|
|
5
5
|
import { ICheckboxStyles, IToggleStyles } from "../../../base/browser/ui/toggle/toggle.js";
|
|
6
|
-
import { IDialogStyles } from "@codingame/monaco-vscode-
|
|
6
|
+
import { IDialogStyles } from "@codingame/monaco-vscode-f1bbc6d3-6129-583c-a2ba-c80b832993d2-common/vscode/vs/base/browser/ui/dialog/dialog";
|
|
7
7
|
import { IInputBoxStyles } from "../../../base/browser/ui/inputbox/inputBox.js";
|
|
8
8
|
import { IFindWidgetStyles } from "../../../base/browser/ui/tree/abstractTree.js";
|
|
9
9
|
import { ICountBadgeStyles } from "../../../base/browser/ui/countBadge/countBadge.js";
|
|
@@ -45,7 +45,7 @@ class ColorRegistry {
|
|
|
45
45
|
for (const key of ( Object.keys(this.colorsById))) {
|
|
46
46
|
const color = colorThemeData.getColor(key);
|
|
47
47
|
if (color) {
|
|
48
|
-
this.colorSchema.properties[key].oneOf[0].defaultSnippets[0].body = `\${1:${(
|
|
48
|
+
this.colorSchema.properties[key].oneOf[0].defaultSnippets[0].body = `\${1:${Color.Format.CSS.formatHexA(color, true)}}`;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
this._onDidChangeSchema.fire();
|
|
@@ -59,13 +59,13 @@ class ColorRegistry {
|
|
|
59
59
|
}
|
|
60
60
|
if (needsTransparency) {
|
|
61
61
|
propertySchema.pattern = '^#(?:(?<rgba>[0-9a-fA-f]{3}[0-9a-eA-E])|(?:[0-9a-fA-F]{6}(?:(?![fF]{2})(?:[0-9a-fA-F]{2}))))?$';
|
|
62
|
-
propertySchema.patternErrorMessage = ( localize(
|
|
62
|
+
propertySchema.patternErrorMessage = ( localize(2022, 'This color must be transparent or it will obscure content'));
|
|
63
63
|
}
|
|
64
64
|
this.colorSchema.properties[id] = {
|
|
65
65
|
description,
|
|
66
66
|
oneOf: [
|
|
67
67
|
propertySchema,
|
|
68
|
-
{ type: 'string', const: DEFAULT_COLOR_CONFIG_VALUE, description: ( localize(
|
|
68
|
+
{ type: 'string', const: DEFAULT_COLOR_CONFIG_VALUE, description: ( localize(2023, 'Use the default color.')) }
|
|
69
69
|
]
|
|
70
70
|
};
|
|
71
71
|
this.colorReferenceSchema.enum.push(id);
|
|
@@ -4,48 +4,48 @@ import { Color } from '../../../../base/common/color.js';
|
|
|
4
4
|
import { registerColor, transparent } from '../colorUtils.js';
|
|
5
5
|
|
|
6
6
|
const foreground = registerColor('foreground', { dark: '#CCCCCC', light: '#616161', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(
|
|
7
|
-
|
|
7
|
+
2024,
|
|
8
8
|
"Overall foreground color. This color is only used if not overridden by a component."
|
|
9
9
|
)));
|
|
10
10
|
const disabledForeground = registerColor('disabledForeground', { dark: '#CCCCCC80', light: '#61616180', hcDark: '#A5A5A5', hcLight: '#7F7F7F' }, ( localize(
|
|
11
|
-
|
|
11
|
+
2025,
|
|
12
12
|
"Overall foreground for disabled elements. This color is only used if not overridden by a component."
|
|
13
13
|
)));
|
|
14
14
|
const errorForeground = registerColor('errorForeground', { dark: '#F48771', light: '#A1260D', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(
|
|
15
|
-
|
|
15
|
+
2026,
|
|
16
16
|
"Overall foreground color for error messages. This color is only used if not overridden by a component."
|
|
17
17
|
)));
|
|
18
18
|
const descriptionForeground = registerColor('descriptionForeground', { light: '#717171', dark: ( transparent(foreground, 0.7)), hcDark: ( transparent(foreground, 0.7)), hcLight: ( transparent(foreground, 0.7)) }, ( localize(
|
|
19
|
-
|
|
19
|
+
2027,
|
|
20
20
|
"Foreground color for description text providing additional information, for example for a label."
|
|
21
21
|
)));
|
|
22
|
-
const iconForeground = registerColor('icon.foreground', { dark: '#C5C5C5', light: '#424242', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(
|
|
22
|
+
const iconForeground = registerColor('icon.foreground', { dark: '#C5C5C5', light: '#424242', hcDark: '#FFFFFF', hcLight: '#292929' }, ( localize(2028, "The default color for icons in the workbench.")));
|
|
23
23
|
const focusBorder = registerColor('focusBorder', { dark: '#007FD4', light: '#0090F1', hcDark: '#F38518', hcLight: '#006BBD' }, ( localize(
|
|
24
|
-
|
|
24
|
+
2029,
|
|
25
25
|
"Overall border color for focused elements. This color is only used if not overridden by a component."
|
|
26
26
|
)));
|
|
27
27
|
const contrastBorder = registerColor('contrastBorder', { light: null, dark: null, hcDark: '#6FC3DF', hcLight: '#0F4A85' }, ( localize(
|
|
28
|
-
|
|
28
|
+
2030,
|
|
29
29
|
"An extra border around elements to separate them from others for greater contrast."
|
|
30
30
|
)));
|
|
31
31
|
const activeContrastBorder = registerColor('contrastActiveBorder', { light: null, dark: null, hcDark: focusBorder, hcLight: focusBorder }, ( localize(
|
|
32
|
-
|
|
32
|
+
2031,
|
|
33
33
|
"An extra border around active elements to separate them from others for greater contrast."
|
|
34
34
|
)));
|
|
35
35
|
const selectionBackground = registerColor('selection.background', null, ( localize(
|
|
36
|
-
|
|
36
|
+
2032,
|
|
37
37
|
"The background color of text selections in the workbench (e.g. for input fields or text areas). Note that this does not apply to selections within the editor."
|
|
38
38
|
)));
|
|
39
|
-
const textLinkForeground = registerColor('textLink.foreground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(
|
|
39
|
+
const textLinkForeground = registerColor('textLink.foreground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(2033, "Foreground color for links in text.")));
|
|
40
40
|
const textLinkActiveForeground = registerColor('textLink.activeForeground', { light: '#006AB1', dark: '#3794FF', hcDark: '#21A6FF', hcLight: '#0F4A85' }, ( localize(
|
|
41
|
-
|
|
41
|
+
2034,
|
|
42
42
|
"Foreground color for links in text when clicked on and on mouse hover."
|
|
43
43
|
)));
|
|
44
|
-
registerColor('textSeparator.foreground', { light: '#0000002e', dark: '#ffffff2e', hcDark: Color.black, hcLight: '#292929' }, ( localize(
|
|
45
|
-
registerColor('textPreformat.foreground', { light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' }, ( localize(
|
|
46
|
-
registerColor('textPreformat.background', { light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' }, ( localize(
|
|
47
|
-
const textBlockQuoteBackground = registerColor('textBlockQuote.background', { light: '#f2f2f2', dark: '#222222', hcDark: null, hcLight: '#F2F2F2' }, ( localize(
|
|
48
|
-
const textBlockQuoteBorder = registerColor('textBlockQuote.border', { light: '#007acc80', dark: '#007acc80', hcDark: Color.white, hcLight: '#292929' }, ( localize(
|
|
49
|
-
registerColor('textCodeBlock.background', { light: '#dcdcdc66', dark: '#0a0a0a66', hcDark: Color.black, hcLight: '#F2F2F2' }, ( localize(
|
|
44
|
+
registerColor('textSeparator.foreground', { light: '#0000002e', dark: '#ffffff2e', hcDark: Color.black, hcLight: '#292929' }, ( localize(2035, "Color for text separators.")));
|
|
45
|
+
registerColor('textPreformat.foreground', { light: '#A31515', dark: '#D7BA7D', hcDark: '#000000', hcLight: '#FFFFFF' }, ( localize(2036, "Foreground color for preformatted text segments.")));
|
|
46
|
+
registerColor('textPreformat.background', { light: '#0000001A', dark: '#FFFFFF1A', hcDark: '#FFFFFF', hcLight: '#09345f' }, ( localize(2037, "Background color for preformatted text segments.")));
|
|
47
|
+
const textBlockQuoteBackground = registerColor('textBlockQuote.background', { light: '#f2f2f2', dark: '#222222', hcDark: null, hcLight: '#F2F2F2' }, ( localize(2038, "Background color for block quotes in text.")));
|
|
48
|
+
const textBlockQuoteBorder = registerColor('textBlockQuote.border', { light: '#007acc80', dark: '#007acc80', hcDark: Color.white, hcLight: '#292929' }, ( localize(2039, "Border color for block quotes in text.")));
|
|
49
|
+
registerColor('textCodeBlock.background', { light: '#dcdcdc66', dark: '#0a0a0a66', hcDark: Color.black, hcLight: '#F2F2F2' }, ( localize(2040, "Background color for code blocks in text.")));
|
|
50
50
|
|
|
51
51
|
export { activeContrastBorder, contrastBorder, descriptionForeground, disabledForeground, errorForeground, focusBorder, foreground, iconForeground, selectionBackground, textBlockQuoteBackground, textBlockQuoteBorder, textLinkActiveForeground, textLinkForeground };
|