@codingame/monaco-vscode-api 16.1.1 → 17.1.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.
Files changed (604) hide show
  1. package/missing-services.js +105 -0
  2. package/monaco.d.ts +2 -2
  3. package/package.json +10 -9
  4. package/services.d.ts +4 -4
  5. package/services.js +3 -3
  6. package/vscode/product.json.js +3 -0
  7. package/vscode/src/vs/base/browser/dom.d.ts +1 -0
  8. package/vscode/src/vs/base/browser/dom.js +6 -1
  9. package/vscode/src/vs/base/browser/mouseEvent.d.ts +2 -0
  10. package/vscode/src/vs/base/browser/mouseEvent.js +1 -0
  11. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  12. package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +2 -3
  13. package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +1 -1
  14. package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +1 -0
  15. package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +6 -1
  16. package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +2 -1
  17. package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +1 -3
  18. package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +5 -1
  19. package/vscode/src/vs/base/browser/ui/toggle/toggle.js +17 -4
  20. package/vscode/src/vs/base/common/arrays.d.ts +1 -0
  21. package/vscode/src/vs/base/common/arrays.js +5 -2
  22. package/vscode/src/vs/base/common/async.js +9 -2
  23. package/vscode/src/vs/base/common/codicons.d.ts +5 -0
  24. package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -0
  25. package/vscode/src/vs/base/common/codiconsLibrary.js +5 -0
  26. package/vscode/src/vs/base/common/color.d.ts +1 -0
  27. package/vscode/src/vs/base/common/color.js +10 -0
  28. package/vscode/src/vs/base/common/comparers.d.ts +2 -2
  29. package/vscode/src/vs/base/common/decorators.d.ts +1 -1
  30. package/vscode/src/vs/base/common/glob.d.ts +3 -0
  31. package/vscode/src/vs/base/common/glob.js +10 -1
  32. package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
  33. package/vscode/src/vs/base/common/marshallingIds.js +1 -0
  34. package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +6 -8
  35. package/vscode/src/vs/base/common/observableInternal/autorun.js +15 -11
  36. package/vscode/src/vs/base/common/observableInternal/base.d.ts +0 -10
  37. package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +23 -0
  38. package/vscode/src/vs/base/common/observableInternal/changeTracker.js +30 -0
  39. package/vscode/src/vs/base/common/observableInternal/derived.d.ts +18 -13
  40. package/vscode/src/vs/base/common/observableInternal/derived.js +47 -18
  41. package/vscode/src/vs/base/common/observableInternal/index.d.ts +6 -5
  42. package/vscode/src/vs/base/common/observableInternal/index.js +2 -2
  43. package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +2 -2
  44. package/vscode/src/vs/base/common/observableInternal/promise.d.ts +28 -0
  45. package/vscode/src/vs/base/common/observableInternal/promise.js +65 -0
  46. package/vscode/src/vs/base/common/observableInternal/reducer.d.ts +16 -0
  47. package/vscode/src/vs/base/common/observableInternal/reducer.js +36 -0
  48. package/vscode/src/vs/base/common/observableInternal/utils.d.ts +2 -0
  49. package/vscode/src/vs/base/common/observableInternal/utils.js +19 -11
  50. package/vscode/src/vs/base/common/product.d.ts +5 -0
  51. package/vscode/src/vs/base/common/sseParser.d.ts +26 -0
  52. package/vscode/src/vs/base/common/sseParser.js +134 -0
  53. package/vscode/src/vs/base/common/stopwatch.js +2 -2
  54. package/vscode/src/vs/base/common/strings.d.ts +1 -0
  55. package/vscode/src/vs/base/common/strings.js +8 -19
  56. package/vscode/src/vs/base/common/ternarySearchTree.d.ts +1 -0
  57. package/vscode/src/vs/base/common/ternarySearchTree.js +55 -13
  58. package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +1 -0
  59. package/vscode/src/vs/editor/browser/config/editorConfiguration.js +3 -1
  60. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +1 -1
  61. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +6 -3
  62. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +86 -54
  63. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +0 -1
  64. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +12 -8
  65. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +0 -1
  66. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +9 -6
  67. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +3 -3
  68. package/vscode/src/vs/editor/browser/controller/mouseTarget.js +2 -2
  69. package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
  70. package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +1 -1
  71. package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.js +2 -0
  72. package/vscode/src/vs/editor/browser/services/hoverService/hover.css +8 -0
  73. package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -0
  74. package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +6 -1
  75. package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +1 -0
  76. package/vscode/src/vs/editor/browser/view/renderingContext.js +3 -0
  77. package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +3 -1
  78. package/vscode/src/vs/editor/browser/view/viewLayer.js +13 -6
  79. package/vscode/src/vs/editor/browser/view/viewOverlays.js +4 -1
  80. package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -5
  81. package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +4 -2
  82. package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +0 -1
  83. package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +6 -6
  84. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +3 -0
  85. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +2 -2
  86. package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +1 -1
  87. package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
  88. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +5 -2
  89. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +15 -1
  90. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +7 -5
  91. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +1 -1
  92. package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +10 -8
  93. package/vscode/src/vs/editor/browser/widget/diffEditor/utils.js +19 -15
  94. package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +5 -0
  95. package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +20 -0
  96. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +24 -23
  97. package/vscode/src/vs/editor/common/config/editorOptions.js +1 -2
  98. package/vscode/src/vs/editor/common/core/columnRange.d.ts +11 -0
  99. package/vscode/src/vs/editor/common/core/columnRange.js +32 -0
  100. package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +1 -0
  101. package/vscode/src/vs/editor/common/core/offsetEdit.js +10 -0
  102. package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
  103. package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
  104. package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +15 -3
  105. package/vscode/src/vs/editor/common/core/positionToOffset.js +45 -11
  106. package/vscode/src/vs/editor/common/core/rangeSingleLine.d.ts +9 -0
  107. package/vscode/src/vs/editor/common/core/rangeSingleLine.js +27 -0
  108. package/vscode/src/vs/editor/common/core/textEdit.d.ts +1 -0
  109. package/vscode/src/vs/editor/common/core/textEdit.js +41 -0
  110. package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -0
  111. package/vscode/src/vs/editor/common/languages/modesRegistry.d.ts +2 -2
  112. package/vscode/src/vs/editor/common/languages/modesRegistry.js +4 -2
  113. package/vscode/src/vs/editor/common/languages.d.ts +22 -1
  114. package/vscode/src/vs/editor/common/languages.js +7 -1
  115. package/vscode/src/vs/editor/common/model/textModel.d.ts +5 -1
  116. package/vscode/src/vs/editor/common/model/textModel.js +80 -18
  117. package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +1 -1
  118. package/vscode/src/vs/editor/common/model.d.ts +2 -1
  119. package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +5 -0
  120. package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +7 -1
  121. package/vscode/src/vs/editor/common/textModelEvents.d.ts +11 -0
  122. package/vscode/src/vs/editor/common/textModelEvents.js +14 -1
  123. package/vscode/src/vs/editor/common/tokens/common.d.ts +7 -0
  124. package/vscode/src/vs/editor/common/tokens/common.js +18 -0
  125. package/vscode/src/vs/editor/common/tokens/contiguousTokensEditing.d.ts +1 -1
  126. package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
  127. package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
  128. package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +2 -0
  129. package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +20 -0
  130. package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +2 -1
  131. package/vscode/src/vs/editor/common/tokens/sparseTokensStore.js +9 -4
  132. package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +1 -0
  133. package/vscode/src/vs/editor/common/tokens/tokenArray.js +4 -0
  134. package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +25 -0
  135. package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.js +73 -0
  136. package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +35 -0
  137. package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +339 -0
  138. package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +8 -6
  139. package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +42 -49
  140. package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +6 -3
  141. package/vscode/src/vs/editor/common/viewLayout/viewLayout.js +16 -5
  142. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
  143. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +44 -7
  144. package/vscode/src/vs/editor/common/viewModel.d.ts +5 -0
  145. package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +11 -3
  146. package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +14 -1
  147. package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +20 -14
  148. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -1
  149. package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +3 -1
  150. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.d.ts +1 -1
  151. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +4 -3
  152. package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +1 -3
  153. package/vscode/src/vs/editor/contrib/find/browser/findController.js +5 -11
  154. package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +1 -7
  155. package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +2 -15
  156. package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
  157. package/vscode/src/vs/editor/contrib/folding/browser/folding.js +24 -23
  158. package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  159. package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  160. package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
  161. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  162. package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
  163. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
  164. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  165. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  166. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  167. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  168. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  169. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +5 -5
  170. package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  171. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
  172. package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
  173. package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  174. package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
  175. package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +14 -12
  176. package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  177. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  178. package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +21 -21
  179. package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
  180. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +0 -4
  181. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +29 -41
  182. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
  183. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +1 -0
  184. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +11 -6
  185. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  186. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
  187. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +1 -2
  188. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +4 -4
  189. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +1 -2
  190. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +10 -0
  191. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +31 -2
  192. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
  193. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +16 -16
  194. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +156 -202
  195. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +21 -49
  196. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +135 -431
  197. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
  198. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +98 -0
  199. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +487 -0
  200. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +34 -32
  201. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +141 -132
  202. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
  203. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +2 -2
  204. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +26 -0
  205. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +2 -7
  206. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +21 -20
  207. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +19 -7
  208. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
  209. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +17 -9
  210. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +5 -13
  211. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +139 -188
  212. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +8 -6
  213. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +9 -3
  214. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +4 -4
  215. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +6 -6
  216. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.d.ts +23 -0
  217. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsNewUsers.js +157 -0
  218. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +2 -0
  219. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +37 -20
  220. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +3 -2
  221. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +3 -4
  222. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.d.ts +6 -1
  223. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +28 -5
  224. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +21 -0
  225. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +215 -0
  226. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +0 -1
  227. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +0 -1
  228. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +2 -2
  229. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +1 -3
  230. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +3 -4
  231. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +22 -21
  232. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  233. package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  234. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
  235. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  236. package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
  237. package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
  238. package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  239. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  240. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  241. package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +17 -17
  242. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  243. package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  244. package/vscode/src/vs/editor/contrib/rename/browser/rename.js +23 -49
  245. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
  246. package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  247. package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  248. package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  249. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  250. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +8 -0
  251. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +1 -1
  252. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +2 -2
  253. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +1 -0
  254. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +24 -14
  255. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
  256. package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
  257. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +19 -18
  258. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  259. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  260. package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  261. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  262. package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  263. package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  264. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +5 -10
  265. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  266. package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  267. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  268. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  269. package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
  270. package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +1 -1
  271. package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +2 -2
  272. package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -2
  273. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
  274. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +3 -0
  275. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +23 -14
  276. package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +2 -0
  277. package/vscode/src/vs/platform/actionWidget/browser/actionList.js +17 -3
  278. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +6 -1
  279. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +2 -1
  280. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -1
  281. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
  282. package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
  283. package/vscode/src/vs/platform/actions/common/actions.d.ts +3 -1
  284. package/vscode/src/vs/platform/actions/common/actions.js +2 -0
  285. package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
  286. package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
  287. package/vscode/src/vs/platform/clipboard/browser/clipboardService.d.ts +1 -0
  288. package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +3 -0
  289. package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +1 -0
  290. package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +15 -13
  291. package/vscode/src/vs/platform/configuration/common/configurations.js +1 -1
  292. package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  293. package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
  294. package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
  295. package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
  296. package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
  297. package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +5 -0
  298. package/vscode/src/vs/platform/dnd/browser/dnd.js +6 -2
  299. package/vscode/src/vs/platform/editor/common/editor.d.ts +1 -0
  300. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +8 -2
  301. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +94 -4
  302. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +3 -2
  303. package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +3 -2
  304. package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -7
  305. package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
  306. package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +1 -1
  307. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +0 -1
  308. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -11
  309. package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
  310. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
  311. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +7 -6
  312. package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +9 -8
  313. package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
  314. package/vscode/src/vs/platform/files/common/files.js +6 -6
  315. package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  316. package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.js +5 -4
  317. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
  318. package/vscode/src/vs/platform/label/common/label.service.d.ts +1 -1
  319. package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
  320. package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -1
  321. package/vscode/src/vs/platform/list/browser/listService.js +27 -27
  322. package/vscode/src/vs/platform/log/common/log.js +6 -6
  323. package/vscode/src/vs/platform/markers/common/markerService.d.ts +2 -7
  324. package/vscode/src/vs/platform/markers/common/markerService.js +5 -5
  325. package/vscode/src/vs/platform/markers/common/markers.d.ts +7 -0
  326. package/vscode/src/vs/platform/markers/common/markers.js +6 -6
  327. package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -7
  328. package/vscode/src/vs/platform/native/common/native.d.ts +168 -0
  329. package/vscode/src/vs/platform/notification/common/notification.d.ts +6 -2
  330. package/vscode/src/vs/platform/notification/common/notification.js +3 -2
  331. package/vscode/src/vs/platform/notification/common/notification.service.d.ts +2 -3
  332. package/vscode/src/vs/platform/product/common/product.js +7 -90
  333. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +4 -19
  334. package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +6 -3
  335. package/vscode/src/vs/platform/quickinput/browser/quickInput.js +33 -10
  336. package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
  337. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +2 -0
  338. package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +6 -0
  339. package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +25 -18
  340. package/vscode/src/vs/platform/quickinput/browser/quickInputTree.d.ts +5 -5
  341. package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +58 -43
  342. package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
  343. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
  344. package/vscode/src/vs/platform/registry/common/platform.js +9 -1
  345. package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
  346. package/vscode/src/vs/platform/request/common/request.js +18 -18
  347. package/vscode/src/vs/platform/request/common/request.service.d.ts +1 -1
  348. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
  349. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +14 -1
  350. package/vscode/src/vs/platform/terminal/common/terminal.js +14 -1
  351. package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -2
  352. package/vscode/src/vs/platform/theme/browser/defaultStyles.js +4 -2
  353. package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +7 -1
  354. package/vscode/src/vs/platform/theme/common/colorUtils.js +12 -4
  355. package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
  356. package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
  357. package/vscode/src/vs/platform/theme/common/colors/editorColors.js +94 -94
  358. package/vscode/src/vs/platform/theme/common/colors/inputColors.d.ts +2 -0
  359. package/vscode/src/vs/platform/theme/common/colors/inputColors.js +49 -47
  360. package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
  361. package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
  362. package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
  363. package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
  364. package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  365. package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
  366. package/vscode/src/vs/platform/theme/common/iconRegistry.js +10 -8
  367. package/vscode/src/vs/platform/theme/common/themeService.d.ts +0 -8
  368. package/vscode/src/vs/platform/theme/common/themeService.js +4 -3
  369. package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  370. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
  371. package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +1 -1
  372. package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
  373. package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -2
  374. package/vscode/src/vs/platform/window/common/window.d.ts +4 -0
  375. package/vscode/src/vs/platform/window/common/window.js +2 -1
  376. package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
  377. package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
  378. package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +27 -20
  379. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +54 -19
  380. package/vscode/src/vs/workbench/api/common/extHost.protocol.js +2 -0
  381. package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.d.ts +14 -0
  382. package/vscode/src/vs/workbench/api/common/extHostAiSettingsSearch.js +38 -0
  383. package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
  384. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -1
  385. package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +30 -17
  386. package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +2 -0
  387. package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +0 -1
  388. package/vscode/src/vs/workbench/api/common/extHostCommands.js +4 -2
  389. package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
  390. package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
  391. package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +2 -0
  392. package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +15 -4
  393. package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
  394. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +4 -0
  395. package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +31 -6
  396. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -3
  397. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +60 -14
  398. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
  399. package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +15 -9
  400. package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
  401. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -3
  402. package/vscode/src/vs/workbench/api/common/extHostMcp.js +279 -82
  403. package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
  404. package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +3 -0
  405. package/vscode/src/vs/workbench/api/common/extHostQuickDiff.d.ts +2 -1
  406. package/vscode/src/vs/workbench/api/common/extHostQuickDiff.js +4 -2
  407. package/vscode/src/vs/workbench/api/common/extHostRequireInterceptor.d.ts +1 -1
  408. package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -0
  409. package/vscode/src/vs/workbench/api/common/extHostSCM.js +21 -0
  410. package/vscode/src/vs/workbench/api/common/extHostSearch.js +1 -1
  411. package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
  412. package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
  413. package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
  414. package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
  415. package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
  416. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +27 -9
  417. package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +201 -29
  418. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -27
  419. package/vscode/src/vs/workbench/api/common/extHostTypes.js +79 -28
  420. package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
  421. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +7 -4
  422. package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +34 -9
  423. package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
  424. package/vscode/src/vs/workbench/api/worker/extHostExtensionService.d.ts +1 -0
  425. package/vscode/src/vs/workbench/api/worker/extHostExtensionService.js +3 -0
  426. package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
  427. package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
  428. package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
  429. package/vscode/src/vs/workbench/common/configuration.js +10 -16
  430. package/vscode/src/vs/workbench/common/contextkeys.d.ts +3 -0
  431. package/vscode/src/vs/workbench/common/contextkeys.js +73 -71
  432. package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
  433. package/vscode/src/vs/workbench/common/editor.d.ts +13 -9
  434. package/vscode/src/vs/workbench/common/editor.js +4 -4
  435. package/vscode/src/vs/workbench/common/theme.js +160 -160
  436. package/vscode/src/vs/workbench/common/views.js +4 -4
  437. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -147
  438. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
  439. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -2
  440. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
  441. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
  442. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +15 -14
  443. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +245 -0
  444. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +435 -0
  445. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +1 -1
  446. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +6 -9
  447. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -49
  448. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -26
  449. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +16 -23
  450. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
  451. package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +2 -2
  452. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +585 -0
  453. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +1179 -0
  454. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +116 -0
  455. package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +211 -0
  456. package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -6
  457. package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +4 -4
  458. package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +3 -1
  459. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -2
  460. package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -7
  461. package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
  462. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +2 -3
  463. package/vscode/src/vs/workbench/contrib/chat/common/constants.js +12 -4
  464. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
  465. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +14 -3
  466. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +18 -3
  467. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
  468. package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
  469. package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
  470. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +3 -1
  471. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/promptHeader/metadata/index.d.ts +3 -0
  472. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +14 -4
  473. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.d.ts +28 -1
  474. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.d.ts +10 -4
  475. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +8 -25
  476. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +11 -97
  477. package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +0 -3
  478. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
  479. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  480. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  481. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  482. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  483. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
  484. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  485. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  486. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
  487. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  488. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  489. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  490. package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
  491. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  492. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
  493. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  494. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -1
  495. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
  496. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +171 -0
  497. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
  498. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -3
  499. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +10 -0
  500. package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +127 -0
  501. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  502. package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +3 -3
  503. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  504. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  505. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  506. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  507. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  508. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
  509. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +3 -1
  510. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  511. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  512. package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +1 -0
  513. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -8
  514. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -10
  515. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
  516. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
  517. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +8 -4
  518. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +16 -1
  519. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
  520. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
  521. package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
  522. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -2
  523. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +4 -1
  524. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +11 -3
  525. package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +77 -16
  526. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  527. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  528. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  529. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  530. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  531. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  532. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -2
  533. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  534. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  535. package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
  536. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
  537. package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
  538. package/vscode/src/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation.service.d.ts +1 -1
  539. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.d.ts +17 -0
  540. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.js +10 -0
  541. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +13 -0
  542. package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js +6 -0
  543. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +2 -0
  544. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +61 -12
  545. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +3 -2
  546. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +25 -29
  547. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +4 -1
  548. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +1 -0
  549. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  550. package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
  551. package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
  552. package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
  553. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
  554. package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.d.ts +1 -1
  555. package/vscode/src/vs/workbench/services/extensions/common/extensionDescriptionRegistry.js +3 -2
  556. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
  557. package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +4 -1
  558. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  559. package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +2 -4
  560. package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
  561. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  562. package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.d.ts +1 -0
  563. package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +2 -0
  564. package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
  565. package/vscode/src/vs/workbench/services/output/common/output.js +6 -4
  566. package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
  567. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  568. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  569. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  570. package/vscode/src/vs/workbench/services/search/common/search.d.ts +2 -1
  571. package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +5 -0
  572. package/vscode/src/vs/workbench/services/search/common/searchExtTypes.js +6 -1
  573. package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +2 -2
  574. package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +31 -23
  575. package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +64 -0
  576. package/vscode/src/vs/workbench/services/textfile/common/encoding.js +560 -0
  577. package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +165 -0
  578. package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +74 -0
  579. package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +12 -2
  580. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  581. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  582. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
  583. package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
  584. package/vscode-dts/vscode.d.ts +204 -9
  585. package/vscode-dts/vscode.proposed.aiSettingsSearch.d.ts +30 -0
  586. package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +18 -16
  587. package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +84 -5
  588. package/vscode-dts/vscode.proposed.chatProvider.d.ts +18 -16
  589. package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +1 -1
  590. package/vscode-dts/vscode.proposed.commentThreadApplicability.d.ts +1 -1
  591. package/vscode-dts/vscode.proposed.contribDebugCreateConfiguration.d.ts +1 -1
  592. package/vscode-dts/vscode.proposed.d.ts +2 -2
  593. package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -2
  594. package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +46 -8
  595. package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +106 -16
  596. package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +2 -0
  597. package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +115 -21
  598. package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +7 -3
  599. package/vscode-dts/vscode.proposed.textSearchProvider2.d.ts +23 -1
  600. package/vscode-dts/vscode.proposed.toolProgress.d.ts +25 -0
  601. package/vscode-dts/vscode.proposed.tunnelFactory.d.ts +1 -1
  602. package/workbench.d.ts +1 -1
  603. package/vscode-dts/vscode.proposed.languageModelToolsForAgent.d.ts +0 -8
  604. package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +0 -170
@@ -5,135 +5,135 @@ import { registerColor, transparent, lessProminent, darken, lighten } from '../c
5
5
  import { foreground, contrastBorder, activeContrastBorder } from './baseColors.js';
6
6
  import { scrollbarShadow, badgeBackground } from './miscColors.js';
7
7
 
8
- const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, ( localize(2049, "Editor background color.")));
9
- const editorForeground = registerColor('editor.foreground', { light: '#333333', dark: '#BBBBBB', hcDark: Color.white, hcLight: foreground }, ( localize(2050, "Editor default foreground color.")));
10
- registerColor('editorStickyScroll.background', editorBackground, ( localize(2051, "Background color of sticky scroll in the editor")));
11
- registerColor('editorStickyScrollHover.background', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: null, hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.1)) }, ( localize(2052, "Background color of sticky scroll on hover in the editor")));
12
- registerColor('editorStickyScroll.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2053, "Border color of sticky scroll in the editor")));
13
- registerColor('editorStickyScroll.shadow', scrollbarShadow, ( localize(2054, " Shadow color of sticky scroll in the editor")));
14
- const editorWidgetBackground = registerColor('editorWidget.background', { dark: '#252526', light: '#F3F3F3', hcDark: '#0C141F', hcLight: Color.white }, ( localize(2055, 'Background color of editor widgets, such as find/replace.')));
15
- const editorWidgetForeground = registerColor('editorWidget.foreground', foreground, ( localize(2056, 'Foreground color of editor widgets, such as find/replace.')));
8
+ const editorBackground = registerColor('editor.background', { light: '#ffffff', dark: '#1E1E1E', hcDark: Color.black, hcLight: Color.white }, ( localize(2065, "Editor background color.")));
9
+ const editorForeground = registerColor('editor.foreground', { light: '#333333', dark: '#BBBBBB', hcDark: Color.white, hcLight: foreground }, ( localize(2066, "Editor default foreground color.")));
10
+ registerColor('editorStickyScroll.background', editorBackground, ( localize(2067, "Background color of sticky scroll in the editor")));
11
+ registerColor('editorStickyScrollHover.background', { dark: '#2A2D2E', light: '#F0F0F0', hcDark: null, hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.1)) }, ( localize(2068, "Background color of sticky scroll on hover in the editor")));
12
+ registerColor('editorStickyScroll.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2069, "Border color of sticky scroll in the editor")));
13
+ registerColor('editorStickyScroll.shadow', scrollbarShadow, ( localize(2070, " Shadow color of sticky scroll in the editor")));
14
+ const editorWidgetBackground = registerColor('editorWidget.background', { dark: '#252526', light: '#F3F3F3', hcDark: '#0C141F', hcLight: Color.white }, ( localize(2071, 'Background color of editor widgets, such as find/replace.')));
15
+ const editorWidgetForeground = registerColor('editorWidget.foreground', foreground, ( localize(2072, 'Foreground color of editor widgets, such as find/replace.')));
16
16
  const editorWidgetBorder = registerColor('editorWidget.border', { dark: '#454545', light: '#C8C8C8', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(
17
- 2057,
17
+ 2073,
18
18
  'Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.'
19
19
  )));
20
20
  registerColor('editorWidget.resizeBorder', null, ( localize(
21
- 2058,
21
+ 2074,
22
22
  "Border color of the resize bar of editor widgets. The color is only used if the widget chooses to have a resize border and if the color is not overridden by a widget."
23
23
  )));
24
24
  registerColor('editorError.background', null, ( localize(
25
- 2059,
25
+ 2075,
26
26
  'Background color of error text in the editor. The color must not be opaque so as not to hide underlying decorations.'
27
27
  )), true);
28
- const editorErrorForeground = registerColor('editorError.foreground', { dark: '#F14C4C', light: '#E51400', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(2060, 'Foreground color of error squigglies in the editor.')));
29
- const editorErrorBorder = registerColor('editorError.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#E47777')).transparent(0.8)), hcLight: '#B5200D' }, ( localize(2061, 'If set, color of double underlines for errors in the editor.')));
28
+ const editorErrorForeground = registerColor('editorError.foreground', { dark: '#F14C4C', light: '#E51400', hcDark: '#F48771', hcLight: '#B5200D' }, ( localize(2076, 'Foreground color of error squigglies in the editor.')));
29
+ const editorErrorBorder = registerColor('editorError.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#E47777')).transparent(0.8)), hcLight: '#B5200D' }, ( localize(2077, 'If set, color of double underlines for errors in the editor.')));
30
30
  const editorWarningBackground = registerColor('editorWarning.background', null, ( localize(
31
- 2062,
31
+ 2078,
32
32
  'Background color of warning text in the editor. The color must not be opaque so as not to hide underlying decorations.'
33
33
  )), true);
34
- const editorWarningForeground = registerColor('editorWarning.foreground', { dark: '#CCA700', light: '#BF8803', hcDark: '#FFD370', hcLight: '#895503' }, ( localize(2063, 'Foreground color of warning squigglies in the editor.')));
35
- const editorWarningBorder = registerColor('editorWarning.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#FFCC00')).transparent(0.8)), hcLight: ( ( Color.fromHex('#FFCC00')).transparent(0.8)) }, ( localize(2064, 'If set, color of double underlines for warnings in the editor.')));
34
+ const editorWarningForeground = registerColor('editorWarning.foreground', { dark: '#CCA700', light: '#BF8803', hcDark: '#FFD370', hcLight: '#895503' }, ( localize(2079, 'Foreground color of warning squigglies in the editor.')));
35
+ const editorWarningBorder = registerColor('editorWarning.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#FFCC00')).transparent(0.8)), hcLight: ( ( Color.fromHex('#FFCC00')).transparent(0.8)) }, ( localize(2080, 'If set, color of double underlines for warnings in the editor.')));
36
36
  registerColor('editorInfo.background', null, ( localize(
37
- 2065,
37
+ 2081,
38
38
  'Background color of info text in the editor. The color must not be opaque so as not to hide underlying decorations.'
39
39
  )), true);
40
- const editorInfoForeground = registerColor('editorInfo.foreground', { dark: '#3794FF', light: '#1a85ff', hcDark: '#3794FF', hcLight: '#1a85ff' }, ( localize(2066, 'Foreground color of info squigglies in the editor.')));
41
- const editorInfoBorder = registerColor('editorInfo.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#3794FF')).transparent(0.8)), hcLight: '#292929' }, ( localize(2067, 'If set, color of double underlines for infos in the editor.')));
42
- const editorHintForeground = registerColor('editorHint.foreground', { dark: ( ( Color.fromHex('#eeeeee')).transparent(0.7)), light: '#6c6c6c', hcDark: null, hcLight: null }, ( localize(2068, 'Foreground color of hint squigglies in the editor.')));
43
- registerColor('editorHint.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#eeeeee')).transparent(0.8)), hcLight: '#292929' }, ( localize(2069, 'If set, color of double underlines for hints in the editor.')));
44
- const editorActiveLinkForeground = registerColor('editorLink.activeForeground', { dark: '#4E94CE', light: Color.blue, hcDark: Color.cyan, hcLight: '#292929' }, ( localize(2070, 'Color of active links.')));
45
- const editorSelectionBackground = registerColor('editor.selectionBackground', { light: '#ADD6FF', dark: '#264F78', hcDark: '#f3f518', hcLight: '#0F4A85' }, ( localize(2071, "Color of the editor selection.")));
46
- const editorSelectionForeground = registerColor('editor.selectionForeground', { light: null, dark: null, hcDark: '#000000', hcLight: Color.white }, ( localize(2072, "Color of the selected text for high contrast.")));
40
+ const editorInfoForeground = registerColor('editorInfo.foreground', { dark: '#3794FF', light: '#1a85ff', hcDark: '#3794FF', hcLight: '#1a85ff' }, ( localize(2082, 'Foreground color of info squigglies in the editor.')));
41
+ const editorInfoBorder = registerColor('editorInfo.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#3794FF')).transparent(0.8)), hcLight: '#292929' }, ( localize(2083, 'If set, color of double underlines for infos in the editor.')));
42
+ const editorHintForeground = registerColor('editorHint.foreground', { dark: ( ( Color.fromHex('#eeeeee')).transparent(0.7)), light: '#6c6c6c', hcDark: null, hcLight: null }, ( localize(2084, 'Foreground color of hint squigglies in the editor.')));
43
+ registerColor('editorHint.border', { dark: null, light: null, hcDark: ( ( Color.fromHex('#eeeeee')).transparent(0.8)), hcLight: '#292929' }, ( localize(2085, 'If set, color of double underlines for hints in the editor.')));
44
+ const editorActiveLinkForeground = registerColor('editorLink.activeForeground', { dark: '#4E94CE', light: Color.blue, hcDark: Color.cyan, hcLight: '#292929' }, ( localize(2086, 'Color of active links.')));
45
+ const editorSelectionBackground = registerColor('editor.selectionBackground', { light: '#ADD6FF', dark: '#264F78', hcDark: '#f3f518', hcLight: '#0F4A85' }, ( localize(2087, "Color of the editor selection.")));
46
+ const editorSelectionForeground = registerColor('editor.selectionForeground', { light: null, dark: null, hcDark: '#000000', hcLight: Color.white }, ( localize(2088, "Color of the selected text for high contrast.")));
47
47
  const editorInactiveSelection = registerColor('editor.inactiveSelectionBackground', { light: ( transparent(editorSelectionBackground, 0.5)), dark: ( transparent(editorSelectionBackground, 0.5)), hcDark: ( transparent(editorSelectionBackground, 0.7)), hcLight: ( transparent(editorSelectionBackground, 0.5)) }, ( localize(
48
- 2073,
48
+ 2089,
49
49
  "Color of the selection in an inactive editor. The color must not be opaque so as not to hide underlying decorations."
50
50
  )), true);
51
51
  const editorSelectionHighlight = registerColor('editor.selectionHighlightBackground', { light: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), dark: lessProminent(editorSelectionBackground, editorBackground, 0.3, 0.6), hcDark: null, hcLight: null }, ( localize(
52
- 2074,
52
+ 2090,
53
53
  'Color for regions with the same content as the selection. The color must not be opaque so as not to hide underlying decorations.'
54
54
  )), true);
55
- registerColor('editor.selectionHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2075, "Border color for regions with the same content as the selection.")));
56
- registerColor('editor.compositionBorder', { light: '#000000', dark: '#ffffff', hcLight: '#000000', hcDark: '#ffffff' }, ( localize(2076, "The border color for an IME composition.")));
57
- const editorFindMatch = registerColor('editor.findMatchBackground', { light: '#A8AC94', dark: '#515C6A', hcDark: null, hcLight: null }, ( localize(2077, "Color of the current search match.")));
58
- const editorFindMatchForeground = registerColor('editor.findMatchForeground', null, ( localize(2078, "Text color of the current search match.")));
55
+ registerColor('editor.selectionHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2091, "Border color for regions with the same content as the selection.")));
56
+ registerColor('editor.compositionBorder', { light: '#000000', dark: '#ffffff', hcLight: '#000000', hcDark: '#ffffff' }, ( localize(2092, "The border color for an IME composition.")));
57
+ const editorFindMatch = registerColor('editor.findMatchBackground', { light: '#A8AC94', dark: '#515C6A', hcDark: null, hcLight: null }, ( localize(2093, "Color of the current search match.")));
58
+ const editorFindMatchForeground = registerColor('editor.findMatchForeground', null, ( localize(2094, "Text color of the current search match.")));
59
59
  const editorFindMatchHighlight = registerColor('editor.findMatchHighlightBackground', { light: '#EA5C0055', dark: '#EA5C0055', hcDark: null, hcLight: null }, ( localize(
60
- 2079,
60
+ 2095,
61
61
  "Color of the other search matches. The color must not be opaque so as not to hide underlying decorations."
62
62
  )), true);
63
- const editorFindMatchHighlightForeground = registerColor('editor.findMatchHighlightForeground', null, ( localize(2080, "Foreground color of the other search matches.")), true);
63
+ const editorFindMatchHighlightForeground = registerColor('editor.findMatchHighlightForeground', null, ( localize(2096, "Foreground color of the other search matches.")), true);
64
64
  const editorFindRangeHighlight = registerColor('editor.findRangeHighlightBackground', { dark: '#3a3d4166', light: '#b4b4b44d', hcDark: null, hcLight: null }, ( localize(
65
- 2081,
65
+ 2097,
66
66
  "Color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
67
67
  )), true);
68
- registerColor('editor.findMatchBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2082, "Border color of the current search match.")));
69
- const editorFindMatchHighlightBorder = registerColor('editor.findMatchHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2083, "Border color of the other search matches.")));
68
+ registerColor('editor.findMatchBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2098, "Border color of the current search match.")));
69
+ const editorFindMatchHighlightBorder = registerColor('editor.findMatchHighlightBorder', { light: null, dark: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2099, "Border color of the other search matches.")));
70
70
  const editorFindRangeHighlightBorder = registerColor('editor.findRangeHighlightBorder', { dark: null, light: null, hcDark: ( transparent(activeContrastBorder, 0.4)), hcLight: ( transparent(activeContrastBorder, 0.4)) }, ( localize(
71
- 2084,
71
+ 2100,
72
72
  "Border color of the range limiting the search. The color must not be opaque so as not to hide underlying decorations."
73
73
  )), true);
74
74
  const editorHoverHighlight = registerColor('editor.hoverHighlightBackground', { light: '#ADD6FF26', dark: '#264f7840', hcDark: '#ADD6FF26', hcLight: null }, ( localize(
75
- 2085,
75
+ 2101,
76
76
  'Highlight below the word for which a hover is shown. The color must not be opaque so as not to hide underlying decorations.'
77
77
  )), true);
78
- const editorHoverBackground = registerColor('editorHoverWidget.background', editorWidgetBackground, ( localize(2086, 'Background color of the editor hover.')));
79
- const editorHoverForeground = registerColor('editorHoverWidget.foreground', editorWidgetForeground, ( localize(2087, 'Foreground color of the editor hover.')));
80
- const editorHoverBorder = registerColor('editorHoverWidget.border', editorWidgetBorder, ( localize(2088, 'Border color of the editor hover.')));
81
- registerColor('editorHoverWidget.statusBarBackground', { dark: ( lighten(editorHoverBackground, 0.2)), light: ( darken(editorHoverBackground, 0.05)), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, ( localize(2089, "Background color of the editor hover status bar.")));
82
- const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: '#969696', light: '#969696', hcDark: Color.white, hcLight: Color.black }, ( localize(2090, 'Foreground color of inline hints')));
83
- const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: ( transparent(badgeBackground, .10)), light: ( transparent(badgeBackground, .10)), hcDark: ( transparent(Color.white, .10)), hcLight: ( transparent(badgeBackground, .10)) }, ( localize(2091, 'Background color of inline hints')));
84
- const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', editorInlayHintForeground, ( localize(2092, 'Foreground color of inline hints for types')));
85
- const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', editorInlayHintBackground, ( localize(2093, 'Background color of inline hints for types')));
86
- const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', editorInlayHintForeground, ( localize(2094, 'Foreground color of inline hints for parameters')));
87
- const editorInlayHintParameterBackground = registerColor('editorInlayHint.parameterBackground', editorInlayHintBackground, ( localize(2095, 'Background color of inline hints for parameters')));
88
- const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, ( localize(2096, "The color used for the lightbulb actions icon.")));
89
- registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, ( localize(2097, "The color used for the lightbulb auto fix actions icon.")));
90
- registerColor('editorLightBulbAi.foreground', editorLightBulbForeground, ( localize(2098, "The color used for the lightbulb AI icon.")));
91
- registerColor('editor.snippetTabstopHighlightBackground', { dark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), light: ( new Color(( new RGBA(10, 50, 100, 0.2)))), hcDark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), hcLight: ( new Color(( new RGBA(10, 50, 100, 0.2)))) }, ( localize(2099, "Highlight background color of a snippet tabstop.")));
92
- registerColor('editor.snippetTabstopHighlightBorder', null, ( localize(2100, "Highlight border color of a snippet tabstop.")));
93
- registerColor('editor.snippetFinalTabstopHighlightBackground', null, ( localize(2101, "Highlight background color of the final tabstop of a snippet.")));
94
- registerColor('editor.snippetFinalTabstopHighlightBorder', { dark: '#525252', light: ( new Color(( new RGBA(10, 50, 100, 0.5)))), hcDark: '#525252', hcLight: '#292929' }, ( localize(2102, "Highlight border color of the final tabstop of a snippet.")));
78
+ const editorHoverBackground = registerColor('editorHoverWidget.background', editorWidgetBackground, ( localize(2102, 'Background color of the editor hover.')));
79
+ const editorHoverForeground = registerColor('editorHoverWidget.foreground', editorWidgetForeground, ( localize(2103, 'Foreground color of the editor hover.')));
80
+ const editorHoverBorder = registerColor('editorHoverWidget.border', editorWidgetBorder, ( localize(2104, 'Border color of the editor hover.')));
81
+ registerColor('editorHoverWidget.statusBarBackground', { dark: ( lighten(editorHoverBackground, 0.2)), light: ( darken(editorHoverBackground, 0.05)), hcDark: editorWidgetBackground, hcLight: editorWidgetBackground }, ( localize(2105, "Background color of the editor hover status bar.")));
82
+ const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: '#969696', light: '#969696', hcDark: Color.white, hcLight: Color.black }, ( localize(2106, 'Foreground color of inline hints')));
83
+ const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: ( transparent(badgeBackground, .10)), light: ( transparent(badgeBackground, .10)), hcDark: ( transparent(Color.white, .10)), hcLight: ( transparent(badgeBackground, .10)) }, ( localize(2107, 'Background color of inline hints')));
84
+ const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', editorInlayHintForeground, ( localize(2108, 'Foreground color of inline hints for types')));
85
+ const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', editorInlayHintBackground, ( localize(2109, 'Background color of inline hints for types')));
86
+ const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', editorInlayHintForeground, ( localize(2110, 'Foreground color of inline hints for parameters')));
87
+ const editorInlayHintParameterBackground = registerColor('editorInlayHint.parameterBackground', editorInlayHintBackground, ( localize(2111, 'Background color of inline hints for parameters')));
88
+ const editorLightBulbForeground = registerColor('editorLightBulb.foreground', { dark: '#FFCC00', light: '#DDB100', hcDark: '#FFCC00', hcLight: '#007ACC' }, ( localize(2112, "The color used for the lightbulb actions icon.")));
89
+ registerColor('editorLightBulbAutoFix.foreground', { dark: '#75BEFF', light: '#007ACC', hcDark: '#75BEFF', hcLight: '#007ACC' }, ( localize(2113, "The color used for the lightbulb auto fix actions icon.")));
90
+ registerColor('editorLightBulbAi.foreground', editorLightBulbForeground, ( localize(2114, "The color used for the lightbulb AI icon.")));
91
+ registerColor('editor.snippetTabstopHighlightBackground', { dark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), light: ( new Color(( new RGBA(10, 50, 100, 0.2)))), hcDark: ( new Color(( new RGBA(124, 124, 124, 0.3)))), hcLight: ( new Color(( new RGBA(10, 50, 100, 0.2)))) }, ( localize(2115, "Highlight background color of a snippet tabstop.")));
92
+ registerColor('editor.snippetTabstopHighlightBorder', null, ( localize(2116, "Highlight border color of a snippet tabstop.")));
93
+ registerColor('editor.snippetFinalTabstopHighlightBackground', null, ( localize(2117, "Highlight background color of the final tabstop of a snippet.")));
94
+ registerColor('editor.snippetFinalTabstopHighlightBorder', { dark: '#525252', light: ( new Color(( new RGBA(10, 50, 100, 0.5)))), hcDark: '#525252', hcLight: '#292929' }, ( localize(2118, "Highlight border color of the final tabstop of a snippet.")));
95
95
  const defaultInsertColor = ( new Color(( new RGBA(155, 185, 85, .2))));
96
96
  const defaultRemoveColor = ( new Color(( new RGBA(255, 0, 0, .2))));
97
97
  const diffInserted = registerColor('diffEditor.insertedTextBackground', { dark: '#9ccc2c33', light: '#9ccc2c40', hcDark: null, hcLight: null }, ( localize(
98
- 2103,
98
+ 2119,
99
99
  'Background color for text that got inserted. The color must not be opaque so as not to hide underlying decorations.'
100
100
  )), true);
101
101
  const diffRemoved = registerColor('diffEditor.removedTextBackground', { dark: '#ff000033', light: '#ff000033', hcDark: null, hcLight: null }, ( localize(
102
- 2104,
102
+ 2120,
103
103
  'Background color for text that got removed. The color must not be opaque so as not to hide underlying decorations.'
104
104
  )), true);
105
105
  const diffInsertedLine = registerColor('diffEditor.insertedLineBackground', { dark: defaultInsertColor, light: defaultInsertColor, hcDark: null, hcLight: null }, ( localize(
106
- 2105,
106
+ 2121,
107
107
  'Background color for lines that got inserted. The color must not be opaque so as not to hide underlying decorations.'
108
108
  )), true);
109
109
  registerColor('diffEditor.removedLineBackground', { dark: defaultRemoveColor, light: defaultRemoveColor, hcDark: null, hcLight: null }, ( localize(
110
- 2106,
110
+ 2122,
111
111
  'Background color for lines that got removed. The color must not be opaque so as not to hide underlying decorations.'
112
112
  )), true);
113
- registerColor('diffEditorGutter.insertedLineBackground', null, ( localize(2107, 'Background color for the margin where lines got inserted.')));
114
- registerColor('diffEditorGutter.removedLineBackground', null, ( localize(2108, 'Background color for the margin where lines got removed.')));
115
- const diffOverviewRulerInserted = registerColor('diffEditorOverview.insertedForeground', null, ( localize(2109, 'Diff overview ruler foreground for inserted content.')));
116
- const diffOverviewRulerRemoved = registerColor('diffEditorOverview.removedForeground', null, ( localize(2110, 'Diff overview ruler foreground for removed content.')));
117
- registerColor('diffEditor.insertedTextBorder', { dark: null, light: null, hcDark: '#33ff2eff', hcLight: '#374E06' }, ( localize(2111, 'Outline color for the text that got inserted.')));
118
- registerColor('diffEditor.removedTextBorder', { dark: null, light: null, hcDark: '#FF008F', hcLight: '#AD0707' }, ( localize(2112, 'Outline color for text that got removed.')));
119
- registerColor('diffEditor.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2113, 'Border color between the two text editors.')));
113
+ registerColor('diffEditorGutter.insertedLineBackground', null, ( localize(2123, 'Background color for the margin where lines got inserted.')));
114
+ registerColor('diffEditorGutter.removedLineBackground', null, ( localize(2124, 'Background color for the margin where lines got removed.')));
115
+ const diffOverviewRulerInserted = registerColor('diffEditorOverview.insertedForeground', null, ( localize(2125, 'Diff overview ruler foreground for inserted content.')));
116
+ const diffOverviewRulerRemoved = registerColor('diffEditorOverview.removedForeground', null, ( localize(2126, 'Diff overview ruler foreground for removed content.')));
117
+ registerColor('diffEditor.insertedTextBorder', { dark: null, light: null, hcDark: '#33ff2eff', hcLight: '#374E06' }, ( localize(2127, 'Outline color for the text that got inserted.')));
118
+ registerColor('diffEditor.removedTextBorder', { dark: null, light: null, hcDark: '#FF008F', hcLight: '#AD0707' }, ( localize(2128, 'Outline color for text that got removed.')));
119
+ registerColor('diffEditor.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2129, 'Border color between the two text editors.')));
120
120
  const diffDiagonalFill = registerColor('diffEditor.diagonalFill', { dark: '#cccccc33', light: '#22222233', hcDark: null, hcLight: null }, ( localize(
121
- 2114,
121
+ 2130,
122
122
  "Color of the diff editor's diagonal fill. The diagonal fill is used in side-by-side diff views."
123
123
  )));
124
- registerColor('diffEditor.unchangedRegionBackground', 'sideBar.background', ( localize(2115, "The background color of unchanged blocks in the diff editor.")));
125
- registerColor('diffEditor.unchangedRegionForeground', 'foreground', ( localize(2116, "The foreground color of unchanged blocks in the diff editor.")));
126
- registerColor('diffEditor.unchangedCodeBackground', { dark: '#74747429', light: '#b8b8b829', hcDark: null, hcLight: null }, ( localize(2117, "The background color of unchanged code in the diff editor.")));
127
- const widgetShadow = registerColor('widget.shadow', { dark: ( transparent(Color.black, .36)), light: ( transparent(Color.black, .16)), hcDark: null, hcLight: null }, ( localize(2118, 'Shadow color of widgets such as find/replace inside the editor.')));
128
- const widgetBorder = registerColor('widget.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2119, 'Border color of widgets such as find/replace inside the editor.')));
129
- const toolbarHoverBackground = registerColor('toolbar.hoverBackground', { dark: '#5a5d5e50', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(2120, "Toolbar background when hovering over actions using the mouse")));
130
- registerColor('toolbar.hoverOutline', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2121, "Toolbar outline when hovering over actions using the mouse")));
131
- registerColor('toolbar.activeBackground', { dark: ( lighten(toolbarHoverBackground, 0.1)), light: ( darken(toolbarHoverBackground, 0.1)), hcDark: null, hcLight: null }, ( localize(2122, "Toolbar background when holding the mouse over actions")));
132
- const breadcrumbsForeground = registerColor('breadcrumb.foreground', ( transparent(foreground, 0.8)), ( localize(2123, "Color of focused breadcrumb items.")));
133
- const breadcrumbsBackground = registerColor('breadcrumb.background', editorBackground, ( localize(2124, "Background color of breadcrumb items.")));
134
- const breadcrumbsFocusForeground = registerColor('breadcrumb.focusForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2123, "Color of focused breadcrumb items.")));
135
- const breadcrumbsActiveSelectionForeground = registerColor('breadcrumb.activeSelectionForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2125, "Color of selected breadcrumb items.")));
136
- const breadcrumbsPickerBackground = registerColor('breadcrumbPicker.background', editorWidgetBackground, ( localize(2126, "Background color of breadcrumb item picker.")));
124
+ registerColor('diffEditor.unchangedRegionBackground', 'sideBar.background', ( localize(2131, "The background color of unchanged blocks in the diff editor.")));
125
+ registerColor('diffEditor.unchangedRegionForeground', 'foreground', ( localize(2132, "The foreground color of unchanged blocks in the diff editor.")));
126
+ registerColor('diffEditor.unchangedCodeBackground', { dark: '#74747429', light: '#b8b8b829', hcDark: null, hcLight: null }, ( localize(2133, "The background color of unchanged code in the diff editor.")));
127
+ const widgetShadow = registerColor('widget.shadow', { dark: ( transparent(Color.black, .36)), light: ( transparent(Color.black, .16)), hcDark: null, hcLight: null }, ( localize(2134, 'Shadow color of widgets such as find/replace inside the editor.')));
128
+ const widgetBorder = registerColor('widget.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2135, 'Border color of widgets such as find/replace inside the editor.')));
129
+ const toolbarHoverBackground = registerColor('toolbar.hoverBackground', { dark: '#5a5d5e50', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(2136, "Toolbar background when hovering over actions using the mouse")));
130
+ registerColor('toolbar.hoverOutline', { dark: null, light: null, hcDark: activeContrastBorder, hcLight: activeContrastBorder }, ( localize(2137, "Toolbar outline when hovering over actions using the mouse")));
131
+ registerColor('toolbar.activeBackground', { dark: ( lighten(toolbarHoverBackground, 0.1)), light: ( darken(toolbarHoverBackground, 0.1)), hcDark: null, hcLight: null }, ( localize(2138, "Toolbar background when holding the mouse over actions")));
132
+ const breadcrumbsForeground = registerColor('breadcrumb.foreground', ( transparent(foreground, 0.8)), ( localize(2139, "Color of focused breadcrumb items.")));
133
+ const breadcrumbsBackground = registerColor('breadcrumb.background', editorBackground, ( localize(2140, "Background color of breadcrumb items.")));
134
+ const breadcrumbsFocusForeground = registerColor('breadcrumb.focusForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2139, "Color of focused breadcrumb items.")));
135
+ const breadcrumbsActiveSelectionForeground = registerColor('breadcrumb.activeSelectionForeground', { light: ( darken(foreground, 0.2)), dark: ( lighten(foreground, 0.1)), hcDark: ( lighten(foreground, 0.1)), hcLight: ( lighten(foreground, 0.1)) }, ( localize(2141, "Color of selected breadcrumb items.")));
136
+ const breadcrumbsPickerBackground = registerColor('breadcrumbPicker.background', editorWidgetBackground, ( localize(2142, "Background color of breadcrumb item picker.")));
137
137
  const headerTransparency = 0.5;
138
138
  const currentBaseColor = ( ( Color.fromHex('#40C8AE')).transparent(headerTransparency));
139
139
  const incomingBaseColor = ( ( Color.fromHex('#40A6FF')).transparent(headerTransparency));
@@ -141,49 +141,49 @@ const commonBaseColor = ( ( Color.fromHex('#606060')).transparent(0.4));
141
141
  const contentTransparency = 0.4;
142
142
  const rulerTransparency = 1;
143
143
  const mergeCurrentHeaderBackground = registerColor('merge.currentHeaderBackground', { dark: currentBaseColor, light: currentBaseColor, hcDark: null, hcLight: null }, ( localize(
144
- 2127,
144
+ 2143,
145
145
  'Current header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
146
146
  )), true);
147
147
  registerColor('merge.currentContentBackground', ( transparent(mergeCurrentHeaderBackground, contentTransparency)), ( localize(
148
- 2128,
148
+ 2144,
149
149
  'Current content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
150
150
  )), true);
151
151
  const mergeIncomingHeaderBackground = registerColor('merge.incomingHeaderBackground', { dark: incomingBaseColor, light: incomingBaseColor, hcDark: null, hcLight: null }, ( localize(
152
- 2129,
152
+ 2145,
153
153
  'Incoming header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
154
154
  )), true);
155
155
  registerColor('merge.incomingContentBackground', ( transparent(mergeIncomingHeaderBackground, contentTransparency)), ( localize(
156
- 2130,
156
+ 2146,
157
157
  'Incoming content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
158
158
  )), true);
159
159
  const mergeCommonHeaderBackground = registerColor('merge.commonHeaderBackground', { dark: commonBaseColor, light: commonBaseColor, hcDark: null, hcLight: null }, ( localize(
160
- 2131,
160
+ 2147,
161
161
  'Common ancestor header background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
162
162
  )), true);
163
163
  registerColor('merge.commonContentBackground', ( transparent(mergeCommonHeaderBackground, contentTransparency)), ( localize(
164
- 2132,
164
+ 2148,
165
165
  'Common ancestor content background in inline merge-conflicts. The color must not be opaque so as not to hide underlying decorations.'
166
166
  )), true);
167
167
  const mergeBorder = registerColor('merge.border', { dark: null, light: null, hcDark: '#C3DF6F', hcLight: '#007ACC' }, ( localize(
168
- 2133,
168
+ 2149,
169
169
  'Border color on headers and the splitter in inline merge-conflicts.'
170
170
  )));
171
- registerColor('editorOverviewRuler.currentContentForeground', { dark: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), light: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2134, 'Current overview ruler foreground for inline merge-conflicts.')));
172
- registerColor('editorOverviewRuler.incomingContentForeground', { dark: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), light: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2135, 'Incoming overview ruler foreground for inline merge-conflicts.')));
171
+ registerColor('editorOverviewRuler.currentContentForeground', { dark: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), light: ( transparent(mergeCurrentHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2150, 'Current overview ruler foreground for inline merge-conflicts.')));
172
+ registerColor('editorOverviewRuler.incomingContentForeground', { dark: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), light: ( transparent(mergeIncomingHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(2151, 'Incoming overview ruler foreground for inline merge-conflicts.')));
173
173
  registerColor('editorOverviewRuler.commonContentForeground', { dark: ( transparent(mergeCommonHeaderBackground, rulerTransparency)), light: ( transparent(mergeCommonHeaderBackground, rulerTransparency)), hcDark: mergeBorder, hcLight: mergeBorder }, ( localize(
174
- 2136,
174
+ 2152,
175
175
  'Common ancestor overview ruler foreground for inline merge-conflicts.'
176
176
  )));
177
177
  const overviewRulerFindMatchForeground = registerColor('editorOverviewRuler.findMatchForeground', { dark: '#d186167e', light: '#d186167e', hcDark: '#AB5A00', hcLight: '#AB5A00' }, ( localize(
178
- 2137,
178
+ 2153,
179
179
  'Overview ruler marker color for find matches. The color must not be opaque so as not to hide underlying decorations.'
180
180
  )), true);
181
181
  const overviewRulerSelectionHighlightForeground = registerColor('editorOverviewRuler.selectionHighlightForeground', '#A0A0A0CC', ( localize(
182
- 2138,
182
+ 2154,
183
183
  'Overview ruler marker color for selection highlights. The color must not be opaque so as not to hide underlying decorations.'
184
184
  )), true);
185
- const problemsErrorIconForeground = registerColor('problemsErrorIcon.foreground', editorErrorForeground, ( localize(2139, "The color used for the problems error icon.")));
186
- const problemsWarningIconForeground = registerColor('problemsWarningIcon.foreground', editorWarningForeground, ( localize(2140, "The color used for the problems warning icon.")));
187
- const problemsInfoIconForeground = registerColor('problemsInfoIcon.foreground', editorInfoForeground, ( localize(2141, "The color used for the problems info icon.")));
185
+ const problemsErrorIconForeground = registerColor('problemsErrorIcon.foreground', editorErrorForeground, ( localize(2155, "The color used for the problems error icon.")));
186
+ const problemsWarningIconForeground = registerColor('problemsWarningIcon.foreground', editorWarningForeground, ( localize(2156, "The color used for the problems warning icon.")));
187
+ const problemsInfoIconForeground = registerColor('problemsInfoIcon.foreground', editorInfoForeground, ( localize(2157, "The color used for the problems info icon.")));
188
188
 
189
189
  export { breadcrumbsActiveSelectionForeground, breadcrumbsBackground, breadcrumbsFocusForeground, breadcrumbsForeground, breadcrumbsPickerBackground, defaultInsertColor, defaultRemoveColor, diffDiagonalFill, diffInserted, diffInsertedLine, diffOverviewRulerInserted, diffOverviewRulerRemoved, diffRemoved, editorActiveLinkForeground, editorBackground, editorErrorBorder, editorErrorForeground, editorFindMatch, editorFindMatchForeground, editorFindMatchHighlight, editorFindMatchHighlightBorder, editorFindMatchHighlightForeground, editorFindRangeHighlight, editorFindRangeHighlightBorder, editorForeground, editorHintForeground, editorHoverBackground, editorHoverBorder, editorHoverForeground, editorHoverHighlight, editorInactiveSelection, editorInfoBorder, editorInfoForeground, editorInlayHintBackground, editorInlayHintForeground, editorInlayHintParameterBackground, editorInlayHintParameterForeground, editorInlayHintTypeBackground, editorInlayHintTypeForeground, editorLightBulbForeground, editorSelectionBackground, editorSelectionForeground, editorSelectionHighlight, editorWarningBackground, editorWarningBorder, editorWarningForeground, editorWidgetBackground, editorWidgetBorder, editorWidgetForeground, mergeBorder, mergeCommonHeaderBackground, mergeCurrentHeaderBackground, mergeIncomingHeaderBackground, overviewRulerFindMatchForeground, overviewRulerSelectionHighlightForeground, problemsErrorIconForeground, problemsInfoIconForeground, problemsWarningIconForeground, toolbarHoverBackground, widgetBorder, widgetShadow };
@@ -39,6 +39,8 @@ export declare const checkboxSelectBackground: string;
39
39
  export declare const checkboxForeground: string;
40
40
  export declare const checkboxBorder: string;
41
41
  export declare const checkboxSelectBorder: string;
42
+ export declare const checkboxDisabledBackground: string;
43
+ export declare const checkboxDisabledForeground: string;
42
44
  export declare const keybindingLabelBackground: string;
43
45
  export declare const keybindingLabelForeground: string;
44
46
  export declare const keybindingLabelBorder: string;
@@ -1,72 +1,74 @@
1
1
 
2
2
  import { localize } from '../../../../nls.js';
3
3
  import { Color, RGBA } from '../../../../base/common/color.js';
4
- import { registerColor, transparent, darken, lighten } from '../colorUtils.js';
4
+ import { registerColor, transparent, darken, lighten, ColorTransformType } from '../colorUtils.js';
5
5
  import { foreground, contrastBorder, focusBorder, iconForeground } from './baseColors.js';
6
6
  import { editorWidgetBackground } from './editorColors.js';
7
7
 
8
- const inputBackground = registerColor('input.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, ( localize(2142, "Input box background.")));
9
- const inputForeground = registerColor('input.foreground', foreground, ( localize(2143, "Input box foreground.")));
10
- const inputBorder = registerColor('input.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2144, "Input box border.")));
11
- const inputActiveOptionBorder = registerColor('inputOption.activeBorder', { dark: '#007ACC', light: '#007ACC', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2145, "Border color of activated options in input fields.")));
12
- const inputActiveOptionHoverBackground = registerColor('inputOption.hoverBackground', { dark: '#5a5d5e80', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(2146, "Background color of activated options in input fields.")));
13
- const inputActiveOptionBackground = registerColor('inputOption.activeBackground', { dark: ( transparent(focusBorder, 0.4)), light: ( transparent(focusBorder, 0.2)), hcDark: Color.transparent, hcLight: Color.transparent }, ( localize(2147, "Background hover color of options in input fields.")));
14
- const inputActiveOptionForeground = registerColor('inputOption.activeForeground', { dark: Color.white, light: Color.black, hcDark: foreground, hcLight: foreground }, ( localize(2148, "Foreground color of activated options in input fields.")));
15
- const inputPlaceholderForeground = registerColor('input.placeholderForeground', { light: ( transparent(foreground, 0.5)), dark: ( transparent(foreground, 0.5)), hcDark: ( transparent(foreground, 0.7)), hcLight: ( transparent(foreground, 0.7)) }, ( localize(2149, "Input box foreground color for placeholder text.")));
16
- const inputValidationInfoBackground = registerColor('inputValidation.infoBackground', { dark: '#063B49', light: '#D6ECF2', hcDark: Color.black, hcLight: Color.white }, ( localize(2150, "Input validation background color for information severity.")));
17
- const inputValidationInfoForeground = registerColor('inputValidation.infoForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2151, "Input validation foreground color for information severity.")));
18
- const inputValidationInfoBorder = registerColor('inputValidation.infoBorder', { dark: '#007acc', light: '#007acc', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2152, "Input validation border color for information severity.")));
19
- const inputValidationWarningBackground = registerColor('inputValidation.warningBackground', { dark: '#352A05', light: '#F6F5D2', hcDark: Color.black, hcLight: Color.white }, ( localize(2153, "Input validation background color for warning severity.")));
20
- const inputValidationWarningForeground = registerColor('inputValidation.warningForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2154, "Input validation foreground color for warning severity.")));
21
- const inputValidationWarningBorder = registerColor('inputValidation.warningBorder', { dark: '#B89500', light: '#B89500', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2155, "Input validation border color for warning severity.")));
22
- const inputValidationErrorBackground = registerColor('inputValidation.errorBackground', { dark: '#5A1D1D', light: '#F2DEDE', hcDark: Color.black, hcLight: Color.white }, ( localize(2156, "Input validation background color for error severity.")));
23
- const inputValidationErrorForeground = registerColor('inputValidation.errorForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2157, "Input validation foreground color for error severity.")));
24
- const inputValidationErrorBorder = registerColor('inputValidation.errorBorder', { dark: '#BE1100', light: '#BE1100', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2158, "Input validation border color for error severity.")));
25
- const selectBackground = registerColor('dropdown.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, ( localize(2159, "Dropdown background.")));
26
- const selectListBackground = registerColor('dropdown.listBackground', { dark: null, light: null, hcDark: Color.black, hcLight: Color.white }, ( localize(2160, "Dropdown list background.")));
27
- const selectForeground = registerColor('dropdown.foreground', { dark: '#F0F0F0', light: foreground, hcDark: Color.white, hcLight: foreground }, ( localize(2161, "Dropdown foreground.")));
28
- const selectBorder = registerColor('dropdown.border', { dark: selectBackground, light: '#CECECE', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2162, "Dropdown border.")));
29
- const buttonForeground = registerColor('button.foreground', Color.white, ( localize(2163, "Button foreground color.")));
30
- const buttonSeparator = registerColor('button.separator', ( transparent(buttonForeground, .4)), ( localize(2164, "Button separator color.")));
31
- const buttonBackground = registerColor('button.background', { dark: '#0E639C', light: '#007ACC', hcDark: null, hcLight: '#0F4A85' }, ( localize(2165, "Button background color.")));
32
- const buttonHoverBackground = registerColor('button.hoverBackground', { dark: ( lighten(buttonBackground, 0.2)), light: ( darken(buttonBackground, 0.2)), hcDark: buttonBackground, hcLight: buttonBackground }, ( localize(2166, "Button background color when hovering.")));
33
- const buttonBorder = registerColor('button.border', contrastBorder, ( localize(2167, "Button border color.")));
34
- const buttonSecondaryForeground = registerColor('button.secondaryForeground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: foreground }, ( localize(2168, "Secondary button foreground color.")));
35
- const buttonSecondaryBackground = registerColor('button.secondaryBackground', { dark: '#3A3D41', light: '#5F6A79', hcDark: null, hcLight: Color.white }, ( localize(2169, "Secondary button background color.")));
36
- const buttonSecondaryHoverBackground = registerColor('button.secondaryHoverBackground', { dark: ( lighten(buttonSecondaryBackground, 0.2)), light: ( darken(buttonSecondaryBackground, 0.2)), hcDark: null, hcLight: null }, ( localize(2170, "Secondary button background color when hovering.")));
37
- const radioActiveForeground = registerColor('radio.activeForeground', inputActiveOptionForeground, ( localize(2171, "Foreground color of active radio option.")));
38
- const radioActiveBackground = registerColor('radio.activeBackground', inputActiveOptionBackground, ( localize(2172, "Background color of active radio option.")));
39
- const radioActiveBorder = registerColor('radio.activeBorder', inputActiveOptionBorder, ( localize(2173, "Border color of the active radio option.")));
40
- const radioInactiveForeground = registerColor('radio.inactiveForeground', null, ( localize(2174, "Foreground color of inactive radio option.")));
41
- const radioInactiveBackground = registerColor('radio.inactiveBackground', null, ( localize(2175, "Background color of inactive radio option.")));
42
- const radioInactiveBorder = registerColor('radio.inactiveBorder', { light: ( transparent(radioActiveForeground, .2)), dark: ( transparent(radioActiveForeground, .2)), hcDark: ( transparent(radioActiveForeground, .4)), hcLight: ( transparent(radioActiveForeground, .2)) }, ( localize(2176, "Border color of the inactive radio option.")));
43
- const radioInactiveHoverBackground = registerColor('radio.inactiveHoverBackground', inputActiveOptionHoverBackground, ( localize(2177, "Background color of inactive active radio option when hovering.")));
44
- const checkboxBackground = registerColor('checkbox.background', selectBackground, ( localize(2178, "Background color of checkbox widget.")));
8
+ const inputBackground = registerColor('input.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, ( localize(2158, "Input box background.")));
9
+ const inputForeground = registerColor('input.foreground', foreground, ( localize(2159, "Input box foreground.")));
10
+ const inputBorder = registerColor('input.border', { dark: null, light: null, hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2160, "Input box border.")));
11
+ const inputActiveOptionBorder = registerColor('inputOption.activeBorder', { dark: '#007ACC', light: '#007ACC', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2161, "Border color of activated options in input fields.")));
12
+ const inputActiveOptionHoverBackground = registerColor('inputOption.hoverBackground', { dark: '#5a5d5e80', light: '#b8b8b850', hcDark: null, hcLight: null }, ( localize(2162, "Background color of activated options in input fields.")));
13
+ const inputActiveOptionBackground = registerColor('inputOption.activeBackground', { dark: ( transparent(focusBorder, 0.4)), light: ( transparent(focusBorder, 0.2)), hcDark: Color.transparent, hcLight: Color.transparent }, ( localize(2163, "Background hover color of options in input fields.")));
14
+ const inputActiveOptionForeground = registerColor('inputOption.activeForeground', { dark: Color.white, light: Color.black, hcDark: foreground, hcLight: foreground }, ( localize(2164, "Foreground color of activated options in input fields.")));
15
+ const inputPlaceholderForeground = registerColor('input.placeholderForeground', { light: ( transparent(foreground, 0.5)), dark: ( transparent(foreground, 0.5)), hcDark: ( transparent(foreground, 0.7)), hcLight: ( transparent(foreground, 0.7)) }, ( localize(2165, "Input box foreground color for placeholder text.")));
16
+ const inputValidationInfoBackground = registerColor('inputValidation.infoBackground', { dark: '#063B49', light: '#D6ECF2', hcDark: Color.black, hcLight: Color.white }, ( localize(2166, "Input validation background color for information severity.")));
17
+ const inputValidationInfoForeground = registerColor('inputValidation.infoForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2167, "Input validation foreground color for information severity.")));
18
+ const inputValidationInfoBorder = registerColor('inputValidation.infoBorder', { dark: '#007acc', light: '#007acc', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2168, "Input validation border color for information severity.")));
19
+ const inputValidationWarningBackground = registerColor('inputValidation.warningBackground', { dark: '#352A05', light: '#F6F5D2', hcDark: Color.black, hcLight: Color.white }, ( localize(2169, "Input validation background color for warning severity.")));
20
+ const inputValidationWarningForeground = registerColor('inputValidation.warningForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2170, "Input validation foreground color for warning severity.")));
21
+ const inputValidationWarningBorder = registerColor('inputValidation.warningBorder', { dark: '#B89500', light: '#B89500', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2171, "Input validation border color for warning severity.")));
22
+ const inputValidationErrorBackground = registerColor('inputValidation.errorBackground', { dark: '#5A1D1D', light: '#F2DEDE', hcDark: Color.black, hcLight: Color.white }, ( localize(2172, "Input validation background color for error severity.")));
23
+ const inputValidationErrorForeground = registerColor('inputValidation.errorForeground', { dark: null, light: null, hcDark: null, hcLight: foreground }, ( localize(2173, "Input validation foreground color for error severity.")));
24
+ const inputValidationErrorBorder = registerColor('inputValidation.errorBorder', { dark: '#BE1100', light: '#BE1100', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2174, "Input validation border color for error severity.")));
25
+ const selectBackground = registerColor('dropdown.background', { dark: '#3C3C3C', light: Color.white, hcDark: Color.black, hcLight: Color.white }, ( localize(2175, "Dropdown background.")));
26
+ const selectListBackground = registerColor('dropdown.listBackground', { dark: null, light: null, hcDark: Color.black, hcLight: Color.white }, ( localize(2176, "Dropdown list background.")));
27
+ const selectForeground = registerColor('dropdown.foreground', { dark: '#F0F0F0', light: foreground, hcDark: Color.white, hcLight: foreground }, ( localize(2177, "Dropdown foreground.")));
28
+ const selectBorder = registerColor('dropdown.border', { dark: selectBackground, light: '#CECECE', hcDark: contrastBorder, hcLight: contrastBorder }, ( localize(2178, "Dropdown border.")));
29
+ const buttonForeground = registerColor('button.foreground', Color.white, ( localize(2179, "Button foreground color.")));
30
+ const buttonSeparator = registerColor('button.separator', ( transparent(buttonForeground, .4)), ( localize(2180, "Button separator color.")));
31
+ const buttonBackground = registerColor('button.background', { dark: '#0E639C', light: '#007ACC', hcDark: null, hcLight: '#0F4A85' }, ( localize(2181, "Button background color.")));
32
+ const buttonHoverBackground = registerColor('button.hoverBackground', { dark: ( lighten(buttonBackground, 0.2)), light: ( darken(buttonBackground, 0.2)), hcDark: buttonBackground, hcLight: buttonBackground }, ( localize(2182, "Button background color when hovering.")));
33
+ const buttonBorder = registerColor('button.border', contrastBorder, ( localize(2183, "Button border color.")));
34
+ const buttonSecondaryForeground = registerColor('button.secondaryForeground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: foreground }, ( localize(2184, "Secondary button foreground color.")));
35
+ const buttonSecondaryBackground = registerColor('button.secondaryBackground', { dark: '#3A3D41', light: '#5F6A79', hcDark: null, hcLight: Color.white }, ( localize(2185, "Secondary button background color.")));
36
+ const buttonSecondaryHoverBackground = registerColor('button.secondaryHoverBackground', { dark: ( lighten(buttonSecondaryBackground, 0.2)), light: ( darken(buttonSecondaryBackground, 0.2)), hcDark: null, hcLight: null }, ( localize(2186, "Secondary button background color when hovering.")));
37
+ const radioActiveForeground = registerColor('radio.activeForeground', inputActiveOptionForeground, ( localize(2187, "Foreground color of active radio option.")));
38
+ const radioActiveBackground = registerColor('radio.activeBackground', inputActiveOptionBackground, ( localize(2188, "Background color of active radio option.")));
39
+ const radioActiveBorder = registerColor('radio.activeBorder', inputActiveOptionBorder, ( localize(2189, "Border color of the active radio option.")));
40
+ const radioInactiveForeground = registerColor('radio.inactiveForeground', null, ( localize(2190, "Foreground color of inactive radio option.")));
41
+ const radioInactiveBackground = registerColor('radio.inactiveBackground', null, ( localize(2191, "Background color of inactive radio option.")));
42
+ const radioInactiveBorder = registerColor('radio.inactiveBorder', { light: ( transparent(radioActiveForeground, .2)), dark: ( transparent(radioActiveForeground, .2)), hcDark: ( transparent(radioActiveForeground, .4)), hcLight: ( transparent(radioActiveForeground, .2)) }, ( localize(2192, "Border color of the inactive radio option.")));
43
+ const radioInactiveHoverBackground = registerColor('radio.inactiveHoverBackground', inputActiveOptionHoverBackground, ( localize(2193, "Background color of inactive active radio option when hovering.")));
44
+ const checkboxBackground = registerColor('checkbox.background', selectBackground, ( localize(2194, "Background color of checkbox widget.")));
45
45
  registerColor('checkbox.selectBackground', editorWidgetBackground, ( localize(
46
- 2179,
46
+ 2195,
47
47
  "Background color of checkbox widget when the element it's in is selected."
48
48
  )));
49
- const checkboxForeground = registerColor('checkbox.foreground', selectForeground, ( localize(2180, "Foreground color of checkbox widget.")));
50
- const checkboxBorder = registerColor('checkbox.border', selectBorder, ( localize(2181, "Border color of checkbox widget.")));
49
+ const checkboxForeground = registerColor('checkbox.foreground', selectForeground, ( localize(2196, "Foreground color of checkbox widget.")));
50
+ const checkboxBorder = registerColor('checkbox.border', selectBorder, ( localize(2197, "Border color of checkbox widget.")));
51
51
  registerColor('checkbox.selectBorder', iconForeground, ( localize(
52
- 2182,
52
+ 2198,
53
53
  "Border color of checkbox widget when the element it's in is selected."
54
54
  )));
55
+ const checkboxDisabledBackground = registerColor('checkbox.disabled.background', { op: ColorTransformType.Mix, color: checkboxBackground, with: checkboxForeground, ratio: 0.33 }, ( localize(2199, "Background of a disabled checkbox.")));
56
+ const checkboxDisabledForeground = registerColor('checkbox.disabled.foreground', { op: ColorTransformType.Mix, color: checkboxForeground, with: checkboxBackground, ratio: 0.33 }, ( localize(2200, "Foreground of a disabled checkbox.")));
55
57
  const keybindingLabelBackground = registerColor('keybindingLabel.background', { dark: ( new Color(( new RGBA(128, 128, 128, 0.17)))), light: ( new Color(( new RGBA(221, 221, 221, 0.4)))), hcDark: Color.transparent, hcLight: Color.transparent }, ( localize(
56
- 2183,
58
+ 2201,
57
59
  "Keybinding label background color. The keybinding label is used to represent a keyboard shortcut."
58
60
  )));
59
61
  const keybindingLabelForeground = registerColor('keybindingLabel.foreground', { dark: ( Color.fromHex('#CCCCCC')), light: ( Color.fromHex('#555555')), hcDark: Color.white, hcLight: foreground }, ( localize(
60
- 2184,
62
+ 2202,
61
63
  "Keybinding label foreground color. The keybinding label is used to represent a keyboard shortcut."
62
64
  )));
63
65
  const keybindingLabelBorder = registerColor('keybindingLabel.border', { dark: ( new Color(( new RGBA(51, 51, 51, 0.6)))), light: ( new Color(( new RGBA(204, 204, 204, 0.4)))), hcDark: ( new Color(( new RGBA(111, 195, 223)))), hcLight: contrastBorder }, ( localize(
64
- 2185,
66
+ 2203,
65
67
  "Keybinding label border color. The keybinding label is used to represent a keyboard shortcut."
66
68
  )));
67
69
  const keybindingLabelBottomBorder = registerColor('keybindingLabel.bottomBorder', { dark: ( new Color(( new RGBA(68, 68, 68, 0.6)))), light: ( new Color(( new RGBA(187, 187, 187, 0.4)))), hcDark: ( new Color(( new RGBA(111, 195, 223)))), hcLight: foreground }, ( localize(
68
- 2186,
70
+ 2204,
69
71
  "Keybinding label border bottom color. The keybinding label is used to represent a keyboard shortcut."
70
72
  )));
71
73
 
72
- export { buttonBackground, buttonBorder, buttonForeground, buttonHoverBackground, buttonSecondaryBackground, buttonSecondaryForeground, buttonSecondaryHoverBackground, buttonSeparator, checkboxBackground, checkboxBorder, checkboxForeground, inputActiveOptionBackground, inputActiveOptionBorder, inputActiveOptionForeground, inputActiveOptionHoverBackground, inputBackground, inputBorder, inputForeground, inputPlaceholderForeground, inputValidationErrorBackground, inputValidationErrorBorder, inputValidationErrorForeground, inputValidationInfoBackground, inputValidationInfoBorder, inputValidationInfoForeground, inputValidationWarningBackground, inputValidationWarningBorder, inputValidationWarningForeground, keybindingLabelBackground, keybindingLabelBorder, keybindingLabelBottomBorder, keybindingLabelForeground, radioActiveBackground, radioActiveBorder, radioActiveForeground, radioInactiveBackground, radioInactiveBorder, radioInactiveForeground, radioInactiveHoverBackground, selectBackground, selectBorder, selectForeground, selectListBackground };
74
+ export { buttonBackground, buttonBorder, buttonForeground, buttonHoverBackground, buttonSecondaryBackground, buttonSecondaryForeground, buttonSecondaryHoverBackground, buttonSeparator, checkboxBackground, checkboxBorder, checkboxDisabledBackground, checkboxDisabledForeground, checkboxForeground, inputActiveOptionBackground, inputActiveOptionBorder, inputActiveOptionForeground, inputActiveOptionHoverBackground, inputBackground, inputBorder, inputForeground, inputPlaceholderForeground, inputValidationErrorBackground, inputValidationErrorBorder, inputValidationErrorForeground, inputValidationInfoBackground, inputValidationInfoBorder, inputValidationInfoForeground, inputValidationWarningBackground, inputValidationWarningBorder, inputValidationWarningForeground, keybindingLabelBackground, keybindingLabelBorder, keybindingLabelBottomBorder, keybindingLabelForeground, radioActiveBackground, radioActiveBorder, radioActiveForeground, radioInactiveBackground, radioInactiveBorder, radioInactiveForeground, radioInactiveHoverBackground, selectBackground, selectBorder, selectForeground, selectListBackground };