@codingame/monaco-vscode-katex-common 25.1.2 → 26.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.d.ts +23 -2
  3. package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.js +64 -27
  4. package/vscode/src/vs/platform/actions/browser/actionWidgetDropdownActionViewItem.d.ts +3 -1
  5. package/vscode/src/vs/platform/actions/browser/actionWidgetDropdownActionViewItem.js +31 -28
  6. package/vscode/src/vs/platform/actions/browser/buttonbar.d.ts +2 -0
  7. package/vscode/src/vs/platform/actions/browser/buttonbar.js +71 -50
  8. package/vscode/src/vs/platform/editor/browser/editor.js +17 -7
  9. package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatAccessibilityProvider.js +112 -129
  10. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.d.ts +10 -1
  11. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.js +110 -85
  12. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatElicitationActions.js +5 -5
  13. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.d.ts +21 -6
  14. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.js +308 -216
  15. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.js +153 -148
  16. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionHoverWidget.d.ts +27 -0
  17. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionHoverWidget.js +247 -0
  18. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.d.ts +71 -0
  19. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.js +347 -0
  20. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsFilter.d.ts +44 -0
  21. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsFilter.js +287 -0
  22. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsOpener.d.ts +20 -0
  23. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsOpener.js +89 -0
  24. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.d.ts +188 -0
  25. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.js +677 -0
  26. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/media/agentSessionHoverWidget.css +98 -0
  27. package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/media/agentsessionsviewer.css +263 -0
  28. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentModel.js +34 -25
  29. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgets.d.ts +19 -14
  30. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgets.js +762 -359
  31. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatImplicitContext.d.ts +22 -1
  32. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatImplicitContext.js +188 -99
  33. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment.d.ts +9 -3
  34. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment.js +166 -113
  35. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions.d.ts +12 -5
  36. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions.js +279 -213
  37. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions.d.ts +46 -0
  38. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions.js +533 -0
  39. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay.d.ts +28 -0
  40. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay.js +382 -0
  41. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationWidget.d.ts +101 -0
  42. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationWidget.js +509 -0
  43. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/media/chatEditingEditorOverlay.css +130 -0
  44. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/media/chatEditingExplanationWidget.css +276 -0
  45. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem.d.ts +24 -7
  46. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem.js +128 -52
  47. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +153 -0
  48. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +1218 -0
  49. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/media/chatSessionPickerActionItem.css +14 -0
  50. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/searchableOptionPickerActionItem.d.ts +39 -0
  51. package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/searchableOptionPickerActionItem.js +193 -0
  52. package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController.d.ts +2 -0
  53. package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController.js +93 -89
  54. package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcome.js +5 -2
  55. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatAgentHover.js +42 -47
  56. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentMarkdownRenderer.js +58 -56
  57. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAgentCommandContentPart.js +18 -14
  58. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAnonymousRateLimitedPart.js +17 -15
  59. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAttachmentsContentPart.d.ts +6 -2
  60. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAttachmentsContentPart.js +132 -68
  61. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatChangesSummaryPart.d.ts +0 -2
  62. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatChangesSummaryPart.js +68 -47
  63. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCodeCitationContentPart.js +14 -13
  64. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleContentPart.d.ts +4 -4
  65. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleContentPart.js +36 -24
  66. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleMarkdownContentPart.d.ts +18 -0
  67. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleMarkdownContentPart.js +32 -0
  68. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollections.d.ts +7 -2
  69. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollections.js +15 -4
  70. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCommandContentPart.d.ts +1 -0
  71. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCommandContentPart.js +22 -14
  72. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationContentPart.d.ts +0 -2
  73. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationContentPart.js +34 -27
  74. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationWidget.d.ts +1 -5
  75. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationWidget.js +198 -135
  76. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatContentCodePools.d.ts +2 -0
  77. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatContentCodePools.js +38 -10
  78. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatDiffBlockPart.js +29 -27
  79. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatElicitationContentPart.d.ts +0 -2
  80. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatElicitationContentPart.js +41 -36
  81. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatErrorConfirmationPart.d.ts +0 -2
  82. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatErrorConfirmationPart.js +23 -18
  83. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatErrorContentPart.js +13 -13
  84. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatExtensionsContentPart.d.ts +0 -3
  85. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatExtensionsContentPart.js +20 -14
  86. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatInlineAnchorWidget.d.ts +11 -1
  87. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatInlineAnchorWidget.js +291 -152
  88. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMarkdownContentPart.d.ts +2 -3
  89. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMarkdownContentPart.js +227 -162
  90. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMarkdownDecorationsRenderer.js +68 -72
  91. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMcpServersInteractionContentPart.d.ts +2 -4
  92. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMcpServersInteractionContentPart.js +76 -75
  93. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMultiDiffContentPart.d.ts +2 -5
  94. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMultiDiffContentPart.js +96 -76
  95. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatProgressContentPart.d.ts +4 -1
  96. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatProgressContentPart.js +74 -38
  97. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatPullRequestContentPart.d.ts +0 -2
  98. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatPullRequestContentPart.js +11 -25
  99. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.d.ts +107 -0
  100. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.js +814 -0
  101. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuotaExceededPart.d.ts +0 -2
  102. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuotaExceededPart.js +34 -29
  103. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatReferencesContentPart.d.ts +8 -10
  104. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatReferencesContentPart.js +236 -197
  105. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentContentPart.d.ts +123 -0
  106. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentContentPart.js +492 -0
  107. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSuggestNextWidget.js +75 -47
  108. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTaskContentPart.d.ts +2 -4
  109. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTaskContentPart.js +31 -20
  110. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTextEditContentPart.d.ts +0 -3
  111. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTextEditContentPart.js +42 -36
  112. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatThinkingContentPart.d.ts +55 -7
  113. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatThinkingContentPart.js +714 -148
  114. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTipContentPart.d.ts +7 -0
  115. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTipContentPart.js +21 -0
  116. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTodoListWidget.d.ts +2 -7
  117. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTodoListWidget.js +143 -153
  118. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolInputOutputContentPart.d.ts +14 -5
  119. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolInputOutputContentPart.js +79 -61
  120. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolOutputContentSubPart.d.ts +10 -4
  121. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolOutputContentSubPart.js +209 -77
  122. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTreeContentPart.d.ts +9 -7
  123. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTreeContentPart.js +71 -54
  124. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatWorkspaceEditContentPart.d.ts +18 -0
  125. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatWorkspaceEditContentPart.js +83 -0
  126. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/codeBlockPart.d.ts +4 -4
  127. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/codeBlockPart.js +248 -190
  128. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatConfirmationWidget.css +1 -14
  129. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatInlineAnchorWidget.css +23 -0
  130. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatPullRequestContent.css +5 -41
  131. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatQuestionCarousel.css +493 -0
  132. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatSubagentContent.css +63 -0
  133. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatTerminalToolProgressPart.css +9 -1
  134. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatThinkingContent.css +121 -5
  135. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatTipContent.css +37 -0
  136. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart.js +51 -45
  137. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart.js +46 -42
  138. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.d.ts +4 -2
  139. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.js +99 -67
  140. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppModel.d.ts +112 -0
  141. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppModel.js +634 -0
  142. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppSubPart.d.ts +49 -0
  143. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppSubPart.js +132 -0
  144. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatResultListSubPart.js +15 -9
  145. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart.js +196 -149
  146. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.d.ts +17 -1
  147. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.js +577 -193
  148. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart.js +119 -86
  149. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationPart.d.ts +10 -2
  150. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationPart.js +165 -36
  151. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationSubPart.d.ts +0 -2
  152. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationSubPart.js +5 -8
  153. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputPart.d.ts +5 -3
  154. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputPart.js +75 -65
  155. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPartUtilities.js +30 -28
  156. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.d.ts +1 -5
  157. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.js +102 -106
  158. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolProgressPart.js +44 -20
  159. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolStreamingSubPart.d.ts +19 -0
  160. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolStreamingSubPart.js +67 -0
  161. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/terminalToolAutoExpand.d.ts +57 -0
  162. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/terminalToolAutoExpand.js +69 -0
  163. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatDragAndDrop.js +122 -82
  164. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListRenderer.d.ts +39 -12
  165. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListRenderer.js +1110 -597
  166. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListWidget.d.ts +291 -0
  167. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListWidget.js +485 -0
  168. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatOptions.js +38 -28
  169. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidget.d.ts +9 -20
  170. package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidget.js +650 -689
  171. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatFollowups.js +21 -18
  172. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPart.d.ts +102 -36
  173. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPart.js +1253 -790
  174. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPartWidgets.d.ts +0 -7
  175. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPartWidgets.js +11 -11
  176. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPickerActionItem.d.ts +34 -0
  177. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPickerActionItem.js +55 -0
  178. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatSelectedTools.d.ts +6 -2
  179. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatSelectedTools.js +51 -35
  180. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/delegationSessionPickerActionItem.d.ts +22 -0
  181. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/delegationSessionPickerActionItem.js +102 -0
  182. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modePickerActionItem.d.ts +16 -4
  183. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modePickerActionItem.js +192 -44
  184. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.d.ts +11 -12
  185. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.js +99 -66
  186. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/sessionTargetPickerActionItem.d.ts +47 -0
  187. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/sessionTargetPickerActionItem.js +188 -0
  188. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/workspacePickerActionItem.d.ts +20 -0
  189. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/workspacePickerActionItem.js +115 -0
  190. package/vscode/src/vs/workbench/contrib/chat/browser/widget/media/chat.css +129 -167
  191. package/vscode/src/vs/workbench/contrib/chat/browser/widget/media/chatViewWelcome.css +16 -3
  192. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageDetails.d.ts +37 -0
  193. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageDetails.js +143 -0
  194. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageWidget.d.ts +56 -0
  195. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageWidget.js +206 -0
  196. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/media/chatContextUsageDetails.css +152 -0
  197. package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/media/chatContextUsageWidget.css +67 -0
  198. package/vscode/src/vs/workbench/contrib/chat/common/widget/annotations.d.ts +22 -0
  199. package/vscode/src/vs/workbench/contrib/chat/common/widget/annotations.js +170 -0
  200. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatColors.d.ts +1 -0
  201. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatColors.js +80 -19
  202. package/vscode/src/vs/workbench/contrib/chat/common/widget/chatWidgetHistoryService.js +20 -28
  203. package/vscode/src/vs/workbench/contrib/chat/common/widget/codeBlockModelCollection.d.ts +2 -1
  204. package/vscode/src/vs/workbench/contrib/chat/common/widget/codeBlockModelCollection.js +22 -19
  205. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatAffordance.d.ts +15 -0
  206. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatAffordance.js +122 -0
  207. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.d.ts +19 -104
  208. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.js +316 -1040
  209. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditorAffordance.d.ts +28 -0
  210. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditorAffordance.js +162 -0
  211. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatGutterAffordance.d.ts +21 -0
  212. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatGutterAffordance.js +98 -0
  213. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatOverlayWidget.d.ts +68 -0
  214. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatOverlayWidget.js +416 -0
  215. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.d.ts +1 -6
  216. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.js +194 -215
  217. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.d.ts +0 -1
  218. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.js +74 -104
  219. package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChat.css +45 -91
  220. package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChatEditorAffordance.css +22 -0
  221. package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChatOverlayWidget.css +98 -0
  222. package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.d.ts +5 -2
  223. package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.js +96 -68
  224. package/vscode/src/vs/workbench/contrib/interactive/browser/interactiveCommon.d.ts +7 -0
  225. package/vscode/src/vs/workbench/contrib/interactive/browser/interactiveCommon.js +11 -0
  226. package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.d.ts +20 -0
  227. package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.js +150 -0
  228. package/vscode/src/vs/workbench/contrib/markdown/browser/markedKatexSupport.js +141 -147
  229. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpToolCallUI.d.ts +64 -0
  230. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpToolCallUI.js +200 -0
  231. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocolApps.d.ts +548 -0
  232. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocolApps.js +23 -0
  233. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController.d.ts +22 -0
  234. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController.js +338 -0
  235. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/notebookVisibleCellObserver.d.ts +18 -0
  236. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/notebookVisibleCellObserver.js +58 -0
  237. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.d.ts +75 -0
  238. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.js +364 -0
  239. package/vscode/src/vs/workbench/contrib/replNotebook/browser/interactiveEditor.css +21 -0
  240. package/vscode/src/vs/workbench/contrib/replNotebook/browser/media/interactive.css +36 -0
  241. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.d.ts +110 -0
  242. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.js +692 -0
  243. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.d.ts +40 -0
  244. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.js +158 -0
  245. package/vscode/src/vs/workbench/contrib/terminal/browser/chatTerminalCommandMirror.d.ts +80 -21
  246. package/vscode/src/vs/workbench/contrib/terminal/browser/chatTerminalCommandMirror.js +440 -82
  247. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatInputRelatedFilesContrib.d.ts +0 -34
  248. package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatInputRelatedFilesContrib.js +0 -139
  249. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.d.ts +0 -10
  250. package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.js +0 -1081
  251. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSession.d.ts +0 -199
  252. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSession.js +0 -482
  253. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +0 -28
  254. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.js +0 -37
  255. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.d.ts +0 -94
  256. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.js +0 -495
  257. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatStrategies.d.ts +0 -72
  258. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatStrategies.js +0 -454
  259. package/vscode/src/vs/workbench/contrib/inlineChat/browser/utils.d.ts +0 -13
  260. package/vscode/src/vs/workbench/contrib/inlineChat/browser/utils.js +0 -66
  261. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.d.ts +0 -41
  262. package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.js +0 -372
  263. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.d.ts +0 -4
  264. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.js +0 -58
  265. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.d.ts +0 -26
  266. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +0 -594
  267. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +0 -8
  268. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +0 -55
  269. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +0 -273
  270. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +0 -1746
  271. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +0 -50
  272. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +0 -269
  273. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +0 -258
  274. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +0 -806
  275. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +0 -41
  276. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +0 -116
  277. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +0 -17
  278. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +0 -62
  279. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +0 -27
  280. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +0 -40
  281. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +0 -23
  282. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +0 -295
  283. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +0 -51
  284. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +0 -241
  285. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +0 -24
  286. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +0 -146
  287. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +0 -28
  288. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +0 -90
  289. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +0 -10
  290. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +0 -41
  291. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +0 -21
  292. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +0 -42
  293. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +0 -25
  294. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +0 -77
  295. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +0 -469
  296. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +0 -149
  297. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +0 -823
  298. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +0 -180
  299. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +0 -29
  300. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +0 -102
  301. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +0 -567
  302. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +0 -30
  303. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +0 -189
  304. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +0 -75
  305. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +0 -439
  306. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor.d.ts +0 -57
  307. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor.js +0 -263
  308. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditorInput.d.ts +0 -22
  309. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditorInput.js +0 -48
  310. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +0 -13
  311. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +0 -39
  312. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +0 -19
  313. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +0 -89
  314. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +0 -26
  315. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +0 -92
  316. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiffEditorInput.d.ts +0 -33
  317. package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiffEditorInput.js +0 -108
@@ -3,7 +3,7 @@ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib
3
3
  import { $ as $$1, addDisposableListener, EventHelper } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
4
4
  import { ButtonWithIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/button/button';
5
5
  import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
6
- import { Emitter, Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
6
+ import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
7
7
  import { Disposable, DisposableStore, toDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
8
8
  import { MarshalledId } from '@codingame/monaco-vscode-api/vscode/vs/base/common/marshallingIds';
9
9
  import '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/index';
@@ -34,7 +34,14 @@ const $ = $$1;
34
34
  const ELEMENT_HEIGHT = 22;
35
35
  const MAX_ITEMS_SHOWN = 6;
36
36
  let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable {
37
- constructor(content, _element, instantiationService, editorService, themeService, contextKeyService) {
37
+ constructor(
38
+ content,
39
+ _element,
40
+ instantiationService,
41
+ editorService,
42
+ themeService,
43
+ contextKeyService
44
+ ) {
38
45
  super();
39
46
  this.content = content;
40
47
  this._element = _element;
@@ -42,33 +49,26 @@ let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable
42
49
  this.editorService = editorService;
43
50
  this.themeService = themeService;
44
51
  this.contextKeyService = contextKeyService;
45
- this._onDidChangeHeight = this._register(( new Emitter()));
46
- this.onDidChangeHeight = this._onDidChangeHeight.event;
47
52
  this.isCollapsed = false;
48
53
  this.readOnly = content.readOnly ?? false;
49
- this.diffData = isObservable(this.content.multiDiffData)
50
- ? ( this.content.multiDiffData.map(d => d))
51
- : constObservable(this.content.multiDiffData);
52
- const headerDomNode = $('.checkpoint-file-changes-summary-header');
53
- this.domNode = $('.checkpoint-file-changes-summary', undefined, headerDomNode);
54
+ this.diffData = isObservable(this.content.multiDiffData) ? ( this.content.multiDiffData.map(d => d)) : constObservable(this.content.multiDiffData);
55
+ const headerDomNode = $(".checkpoint-file-changes-summary-header");
56
+ this.domNode = $(".checkpoint-file-changes-summary", undefined, headerDomNode);
54
57
  this.domNode.tabIndex = 0;
55
58
  this.isCollapsed = content?.collapsed ?? false;
56
59
  this._register(this.renderHeader(headerDomNode));
57
60
  this._register(this.renderFilesList(this.domNode));
58
61
  }
59
62
  renderHeader(container) {
60
- const viewListButtonContainer = container.appendChild($('.chat-file-changes-label'));
63
+ const viewListButtonContainer = container.appendChild($(".chat-file-changes-label"));
61
64
  const viewListButton = ( new ButtonWithIcon(viewListButtonContainer, {}));
62
65
  this._register(autorun(reader => {
63
66
  const fileCount = this.diffData.read(reader).resources.length;
64
- viewListButton.label = fileCount === 1
65
- ? ( localize(5647, 'Changed 1 file'))
66
- : ( localize(5648, 'Changed {0} files', fileCount));
67
+ viewListButton.label = fileCount === 1 ? ( localize(5866, "Changed 1 file")) : ( localize(5867, "Changed {0} files", fileCount));
67
68
  }));
68
69
  const setExpansionState = () => {
69
70
  viewListButton.icon = this.isCollapsed ? Codicon.chevronRight : Codicon.chevronDown;
70
- this.domNode.classList.toggle('chat-file-changes-collapsed', this.isCollapsed);
71
- this._onDidChangeHeight.fire();
71
+ this.domNode.classList.toggle("chat-file-changes-collapsed", this.isCollapsed);
72
72
  };
73
73
  setExpansionState();
74
74
  const disposables = ( new DisposableStore());
@@ -84,70 +84,82 @@ let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable
84
84
  return toDisposable(() => disposables.dispose());
85
85
  }
86
86
  renderViewAllFileChangesButton(container) {
87
- const button = container.appendChild($('.chat-view-changes-icon'));
87
+ const button = container.appendChild($(".chat-view-changes-icon"));
88
88
  button.classList.add(...ThemeIcon.asClassNameArray(Codicon.diffMultiple));
89
- button.title = ( localize(5649, 'Open Changes'));
90
- return addDisposableListener(button, 'click', (e) => {
89
+ button.title = ( localize(5868, "Open Changes"));
90
+ return addDisposableListener(button, "click", e => {
91
91
  const source = ( URI.parse(`multi-diff-editor:${( ( new Date()).getMilliseconds().toString()) + ( Math.random().toString())}`));
92
- const { title, resources } = this.diffData.get();
93
- const input = this.instantiationService.createInstance(MultiDiffEditorInput, source, title || 'Multi-Diff', ( resources.map(resource => ( new MultiDiffEditorItem(resource.originalUri, resource.modifiedUri, resource.goToFileUri)))), false);
92
+ const {
93
+ title,
94
+ resources
95
+ } = this.diffData.get();
96
+ const input = this.instantiationService.createInstance(MultiDiffEditorInput, source, title || "Multi-Diff", ( resources.map(resource => ( new MultiDiffEditorItem(resource.originalUri, resource.modifiedUri, resource.goToFileUri)))), false);
94
97
  const sideBySide = e.altKey;
95
98
  this.editorService.openEditor(input, sideBySide ? SIDE_GROUP : ACTIVE_GROUP);
96
99
  EventHelper.stop(e, true);
97
100
  });
98
101
  }
99
102
  renderContributedButtons(container) {
100
- const buttonsContainer = container.appendChild($('.chat-multidiff-contributed-buttons'));
103
+ const buttonsContainer = container.appendChild($(".chat-multidiff-contributed-buttons"));
101
104
  const disposables = ( new DisposableStore());
102
105
  const type = getChatSessionType(this._element.sessionResource);
103
- const overlay = this.contextKeyService.createOverlay([
104
- [ChatContextKeys.agentSessionType.key, type]
105
- ]);
106
+ const overlay = this.contextKeyService.createOverlay([[ChatContextKeys.agentSessionType.key, type]]);
106
107
  const nestedInsta = disposables.add(this.instantiationService.createChild(( new ServiceCollection([IContextKeyService, overlay]))));
107
108
  const marshalledUri = {
108
109
  ...this._element.sessionResource,
109
110
  $mid: MarshalledId.Uri
110
111
  };
111
- const toolbar = disposables.add(nestedInsta.createInstance(MenuWorkbenchToolBar, buttonsContainer, MenuId.ChatMultiDiffContext, {
112
- menuOptions: {
113
- arg: marshalledUri,
114
- shouldForwardArgs: true,
115
- },
116
- toolbarOptions: {
117
- primaryGroup: () => true,
118
- },
119
- }));
120
- disposables.add(toolbar.onDidChangeMenuItems(() => this._onDidChangeHeight.fire()));
112
+ disposables.add(
113
+ nestedInsta.createInstance(MenuWorkbenchToolBar, buttonsContainer, MenuId.ChatMultiDiffContext, {
114
+ menuOptions: {
115
+ arg: marshalledUri,
116
+ shouldForwardArgs: true
117
+ },
118
+ toolbarOptions: {
119
+ primaryGroup: () => true
120
+ }
121
+ })
122
+ );
121
123
  return disposables;
122
124
  }
123
125
  renderFilesList(container) {
124
126
  const store = ( new DisposableStore());
125
- const listContainer = container.appendChild($('.chat-summary-list'));
127
+ const listContainer = container.appendChild($(".chat-summary-list"));
126
128
  store.add(createFileIconThemableTreeContainerScope(listContainer, this.themeService));
127
- const resourceLabels = store.add(this.instantiationService.createInstance(ResourceLabels, { onDidChangeVisibility: Event.None }));
128
- this.list = store.add(this.instantiationService.createInstance((WorkbenchList), 'ChatMultiDiffList', listContainer, ( new ChatMultiDiffListDelegate()), [this.instantiationService.createInstance(ChatMultiDiffListRenderer, resourceLabels)], {
129
- identityProvider: {
130
- getId: (element) => ( element.uri.toString())
131
- },
132
- setRowLineHeight: true,
133
- horizontalScrolling: false,
134
- supportDynamicHeights: false,
135
- mouseSupport: !this.readOnly,
136
- alwaysConsumeMouseWheel: false,
137
- accessibilityProvider: {
138
- getAriaLabel: (element) => element.uri.path,
139
- getWidgetAriaLabel: () => ( localize(5650, "File Changes"))
140
- }
129
+ const resourceLabels = store.add(this.instantiationService.createInstance(ResourceLabels, {
130
+ onDidChangeVisibility: Event.None
141
131
  }));
132
+ this.list = store.add(
133
+ this.instantiationService.createInstance(WorkbenchList, "ChatMultiDiffList", listContainer, ( new ChatMultiDiffListDelegate()), [
134
+ this.instantiationService.createInstance(ChatMultiDiffListRenderer, resourceLabels)
135
+ ], {
136
+ identityProvider: {
137
+ getId: element => ( element.uri.toString())
138
+ },
139
+ setRowLineHeight: true,
140
+ horizontalScrolling: false,
141
+ supportDynamicHeights: false,
142
+ mouseSupport: !this.readOnly,
143
+ alwaysConsumeMouseWheel: false,
144
+ accessibilityProvider: {
145
+ getAriaLabel: element => element.uri.path,
146
+ getWidgetAriaLabel: () => ( localize(5869, "File Changes"))
147
+ }
148
+ })
149
+ );
142
150
  this._register(autorun(reader => {
143
- const { resources } = this.diffData.read(reader);
151
+ const {
152
+ resources
153
+ } = this.diffData.read(reader);
144
154
  const items = [];
145
155
  for (const resource of resources) {
146
156
  const uri = resource.modifiedUri || resource.originalUri || resource.goToFileUri;
147
157
  if (!uri) {
148
158
  continue;
149
159
  }
150
- const item = { uri };
160
+ const item = {
161
+ uri
162
+ };
151
163
  if (resource.originalUri && resource.modifiedUri) {
152
164
  item.diff = {
153
165
  originalURI: resource.originalUri,
@@ -157,7 +169,7 @@ let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable
157
169
  identical: false,
158
170
  added: resource.added || 0,
159
171
  removed: resource.removed || 0,
160
- isBusy: false,
172
+ isBusy: false
161
173
  };
162
174
  }
163
175
  items.push(item);
@@ -166,24 +178,30 @@ let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable
166
178
  const height = Math.min(items.length, MAX_ITEMS_SHOWN) * ELEMENT_HEIGHT;
167
179
  this.list.layout(height);
168
180
  listContainer.style.height = `${height}px`;
169
- this._onDidChangeHeight.fire();
170
181
  }));
171
182
  if (!this.readOnly) {
172
- store.add(this.list.onDidOpen((e) => {
183
+ store.add(this.list.onDidOpen(e => {
173
184
  if (!e.element) {
174
185
  return;
175
186
  }
176
187
  if (e.element.diff) {
177
188
  this.editorService.openEditor({
178
- original: { resource: e.element.diff.originalURI },
179
- modified: { resource: e.element.diff.modifiedURI },
180
- options: { preserveFocus: true }
189
+ original: {
190
+ resource: e.element.diff.originalURI
191
+ },
192
+ modified: {
193
+ resource: e.element.diff.modifiedURI
194
+ },
195
+ options: {
196
+ preserveFocus: true
197
+ }
181
198
  });
182
- }
183
- else {
199
+ } else {
184
200
  this.editorService.openEditor({
185
201
  resource: e.element.uri,
186
- options: { preserveFocus: true }
202
+ options: {
203
+ preserveFocus: true
204
+ }
187
205
  });
188
206
  }
189
207
  }));
@@ -191,35 +209,37 @@ let ChatMultiDiffContentPart = class ChatMultiDiffContentPart extends Disposable
191
209
  return store;
192
210
  }
193
211
  hasSameContent(other) {
194
- return other.kind === 'multiDiffData' && this.diffData.get().resources.length === (isObservable(other.multiDiffData) ? other.multiDiffData.get().resources.length : other.multiDiffData.resources.length);
212
+ return other.kind === "multiDiffData" && this.diffData.get().resources.length === (isObservable(other.multiDiffData) ? other.multiDiffData.get().resources.length : other.multiDiffData.resources.length);
195
213
  }
196
214
  addDisposable(disposable) {
197
215
  this._register(disposable);
198
216
  }
199
217
  };
200
- ChatMultiDiffContentPart = ( __decorate([
201
- ( __param(2, IInstantiationService)),
202
- ( __param(3, IEditorService)),
203
- ( __param(4, IThemeService)),
204
- ( __param(5, IContextKeyService))
205
- ], ChatMultiDiffContentPart));
218
+ ChatMultiDiffContentPart = ( __decorate([( __param(2, IInstantiationService)), ( __param(3, IEditorService)), ( __param(4, IThemeService)), ( __param(5, IContextKeyService))], ChatMultiDiffContentPart));
206
219
  class ChatMultiDiffListDelegate {
207
220
  getHeight() {
208
221
  return 22;
209
222
  }
210
223
  getTemplateId() {
211
- return 'chatMultiDiffItem';
224
+ return "chatMultiDiffItem";
212
225
  }
213
226
  }
214
227
  class ChatMultiDiffListRenderer {
215
- static { this.TEMPLATE_ID = 'chatMultiDiffItem'; }
216
- static { this.CHANGES_SUMMARY_CLASS_NAME = 'insertions-and-deletions'; }
228
+ static {
229
+ this.TEMPLATE_ID = "chatMultiDiffItem";
230
+ }
231
+ static {
232
+ this.CHANGES_SUMMARY_CLASS_NAME = "insertions-and-deletions";
233
+ }
217
234
  constructor(labels) {
218
235
  this.labels = labels;
219
236
  this.templateId = ChatMultiDiffListRenderer.TEMPLATE_ID;
220
237
  }
221
238
  renderTemplate(container) {
222
- const label = this.labels.create(container, { supportHighlights: true, supportIcons: true });
239
+ const label = this.labels.create(container, {
240
+ supportHighlights: true,
241
+ supportIcons: true
242
+ });
223
243
  return {
224
244
  label,
225
245
  dispose: () => label.dispose()
@@ -234,13 +254,13 @@ class ChatMultiDiffListRenderer {
234
254
  templateData.changesElement?.remove();
235
255
  if (element.diff?.added || element.diff?.removed) {
236
256
  const changesSummary = labelElement.appendChild($(`.${ChatMultiDiffListRenderer.CHANGES_SUMMARY_CLASS_NAME}`));
237
- const addedElement = changesSummary.appendChild($('.insertions'));
257
+ const addedElement = changesSummary.appendChild($(".insertions"));
238
258
  addedElement.textContent = `+${element.diff.added}`;
239
- const removedElement = changesSummary.appendChild($('.deletions'));
259
+ const removedElement = changesSummary.appendChild($(".deletions"));
240
260
  removedElement.textContent = `-${element.diff.removed}`;
241
- changesSummary.setAttribute('aria-label', ( localize(
242
- 5651,
243
- '{0} lines added, {1} lines removed',
261
+ changesSummary.setAttribute("aria-label", ( localize(
262
+ 5870,
263
+ "{0} lines added, {1} lines removed",
244
264
  element.diff.added,
245
265
  element.diff.removed
246
266
  )));
@@ -21,7 +21,10 @@ export declare class ChatProgressContentPart extends Disposable implements IChat
21
21
  private readonly showSpinner;
22
22
  private readonly isHidden;
23
23
  private readonly renderedMessage;
24
- constructor(progress: IChatProgressMessage | IChatTask | IChatTaskSerialized, chatContentMarkdownRenderer: IMarkdownRenderer, context: IChatContentPartRenderContext, forceShowSpinner: boolean | undefined, forceShowMessage: boolean | undefined, icon: ThemeIcon | undefined, toolInvocation: IChatToolInvocation | IChatToolInvocationSerialized | undefined, instantiationService: IInstantiationService, chatMarkdownAnchorService: IChatMarkdownAnchorService, configurationService: IConfigurationService);
24
+ private currentContent;
25
+ constructor(progress: IChatProgressMessage | IChatTask | IChatTaskSerialized | {
26
+ content: IMarkdownString;
27
+ }, chatContentMarkdownRenderer: IMarkdownRenderer, context: IChatContentPartRenderContext, forceShowSpinner: boolean | undefined, forceShowMessage: boolean | undefined, icon: ThemeIcon | undefined, toolInvocation: IChatToolInvocation | IChatToolInvocationSerialized | undefined, instantiationService: IInstantiationService, chatMarkdownAnchorService: IChatMarkdownAnchorService, configurationService: IConfigurationService);
25
28
  updateMessage(content: MarkdownString): void;
26
29
  hasSameContent(other: IChatRendererContent, followingContent: IChatRendererContent[], element: ChatTreeItem): boolean;
27
30
  private createApprovalMessage;
@@ -17,9 +17,21 @@ import { AccessibilityWorkbenchSettingId } from '@codingame/monaco-vscode-api/vs
17
17
  import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
18
18
  import { HoverStyle } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hover';
19
19
  import { ILanguageModelToolsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/tools/languageModelToolsService.service';
20
+ import { isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
20
21
 
21
22
  let ChatProgressContentPart = class ChatProgressContentPart extends Disposable {
22
- constructor(progress, chatContentMarkdownRenderer, context, forceShowSpinner, forceShowMessage, icon, toolInvocation, instantiationService, chatMarkdownAnchorService, configurationService) {
23
+ constructor(
24
+ progress,
25
+ chatContentMarkdownRenderer,
26
+ context,
27
+ forceShowSpinner,
28
+ forceShowMessage,
29
+ icon,
30
+ toolInvocation,
31
+ instantiationService,
32
+ chatMarkdownAnchorService,
33
+ configurationService
34
+ ) {
23
35
  super();
24
36
  this.chatContentMarkdownRenderer = chatContentMarkdownRenderer;
25
37
  this.toolInvocation = toolInvocation;
@@ -27,22 +39,30 @@ let ChatProgressContentPart = class ChatProgressContentPart extends Disposable {
27
39
  this.chatMarkdownAnchorService = chatMarkdownAnchorService;
28
40
  this.configurationService = configurationService;
29
41
  this.renderedMessage = this._register(( new MutableDisposable()));
42
+ this.currentContent = progress.content;
30
43
  const followingContent = context.content.slice(context.contentIndex + 1);
31
44
  this.showSpinner = forceShowSpinner ?? shouldShowSpinner(followingContent, context.element);
32
- this.isHidden = forceShowMessage !== true && ( followingContent.some(part => part.kind !== 'progressMessage'));
45
+ this.isHidden = forceShowMessage !== true && ( followingContent.some(part => part.kind !== "progressMessage"));
33
46
  if (this.isHidden) {
34
- this.domNode = $('');
47
+ this.domNode = $("");
35
48
  return;
36
49
  }
37
50
  if (this.showSpinner && !this.configurationService.getValue(AccessibilityWorkbenchSettingId.VerboseChatProgressUpdates)) {
38
51
  alert(progress.content.value);
39
52
  }
40
- const codicon = icon ? icon : this.showSpinner ? ThemeIcon.modify(Codicon.loading, 'spin') : Codicon.check;
53
+ const codicon = icon ? icon : this.showSpinner ? ThemeIcon.modify(Codicon.loading, "spin") : Codicon.check;
41
54
  const result = this.chatContentMarkdownRenderer.render(progress.content);
42
- result.element.classList.add('progress-step');
43
- renderFileWidgets(result.element, this.instantiationService, this.chatMarkdownAnchorService, this._store);
55
+ result.element.classList.add("progress-step");
56
+ renderFileWidgets(
57
+ result.element,
58
+ this.instantiationService,
59
+ this.chatMarkdownAnchorService,
60
+ this._store
61
+ );
44
62
  const tooltip = this.createApprovalMessage();
45
- const progressPart = this._register(instantiationService.createInstance(ChatProgressSubPart, result.element, codicon, tooltip));
63
+ const progressPart = this._register(
64
+ instantiationService.createInstance(ChatProgressSubPart, result.element, codicon, tooltip)
65
+ );
46
66
  this.domNode = progressPart.domNode;
47
67
  this.renderedMessage.value = result;
48
68
  }
@@ -51,77 +71,93 @@ let ChatProgressContentPart = class ChatProgressContentPart extends Disposable {
51
71
  return;
52
72
  }
53
73
  const result = this._register(this.chatContentMarkdownRenderer.render(content));
54
- result.element.classList.add('progress-step');
55
- renderFileWidgets(result.element, this.instantiationService, this.chatMarkdownAnchorService, this._store);
74
+ result.element.classList.add("progress-step");
75
+ renderFileWidgets(
76
+ result.element,
77
+ this.instantiationService,
78
+ this.chatMarkdownAnchorService,
79
+ this._store
80
+ );
56
81
  if (this.renderedMessage.value) {
57
82
  this.renderedMessage.value.element.replaceWith(result.element);
58
- }
59
- else {
83
+ } else {
60
84
  this.domNode.appendChild(result.element);
61
85
  }
62
86
  this.renderedMessage.value = result;
63
87
  }
64
88
  hasSameContent(other, followingContent, element) {
65
- if (( followingContent.some(part => part.kind !== 'progressMessage')) && !this.isHidden) {
89
+ if (( followingContent.some(part => part.kind !== "progressMessage")) && !this.isHidden) {
66
90
  return false;
67
91
  }
68
92
  const showSpinner = shouldShowSpinner(followingContent, element);
69
- return other.kind === 'progressMessage' && this.showSpinner === showSpinner;
93
+ if (other.kind === "progressMessage" && other.content.value !== this.currentContent.value) {
94
+ return false;
95
+ }
96
+ return other.kind === "progressMessage" && this.showSpinner === showSpinner;
70
97
  }
71
98
  createApprovalMessage() {
72
99
  return this.toolInvocation && getToolApprovalMessage(this.toolInvocation);
73
100
  }
74
101
  };
75
- ChatProgressContentPart = ( __decorate([
76
- ( __param(7, IInstantiationService)),
77
- ( __param(8, IChatMarkdownAnchorService)),
78
- ( __param(9, IConfigurationService))
79
- ], ChatProgressContentPart));
102
+ ChatProgressContentPart = ( __decorate([( __param(7, IInstantiationService)), ( __param(8, IChatMarkdownAnchorService)), ( __param(9, IConfigurationService))], ChatProgressContentPart));
80
103
  function shouldShowSpinner(followingContent, element) {
81
104
  return isResponseVM(element) && !element.isComplete && followingContent.length === 0;
82
105
  }
83
106
  let ChatProgressSubPart = class ChatProgressSubPart extends Disposable {
84
107
  constructor(messageElement, icon, tooltip, hoverService) {
85
108
  super();
86
- this.domNode = $('.progress-container');
87
- const iconElement = $('div');
109
+ this.domNode = $(".progress-container");
110
+ const iconElement = $("div");
88
111
  iconElement.classList.add(...ThemeIcon.asClassNameArray(icon));
89
112
  if (tooltip) {
90
113
  this._register(hoverService.setupDelayedHover(iconElement, {
91
114
  content: tooltip,
92
- style: HoverStyle.Pointer,
115
+ style: HoverStyle.Pointer
93
116
  }));
94
117
  }
95
118
  append(this.domNode, iconElement);
96
- messageElement.classList.add('progress-step');
119
+ messageElement.classList.add("progress-step");
97
120
  append(this.domNode, messageElement);
98
121
  }
99
122
  };
100
- ChatProgressSubPart = ( __decorate([
101
- ( __param(3, IHoverService))
102
- ], ChatProgressSubPart));
123
+ ChatProgressSubPart = ( __decorate([( __param(3, IHoverService))], ChatProgressSubPart));
103
124
  let ChatWorkingProgressContentPart = class ChatWorkingProgressContentPart extends ChatProgressContentPart {
104
- constructor(_workingProgress, chatContentMarkdownRenderer, context, instantiationService, chatMarkdownAnchorService, configurationService, languageModelToolsService) {
125
+ constructor(
126
+ _workingProgress,
127
+ chatContentMarkdownRenderer,
128
+ context,
129
+ instantiationService,
130
+ chatMarkdownAnchorService,
131
+ configurationService,
132
+ languageModelToolsService
133
+ ) {
105
134
  const progressMessage = {
106
- kind: 'progressMessage',
107
- content: ( new MarkdownString()).appendText(( localize(5652, "Working...")))
135
+ kind: "progressMessage",
136
+ content: ( new MarkdownString()).appendText(( localize(5871, "Working...")))
108
137
  };
109
- super(progressMessage, chatContentMarkdownRenderer, context, undefined, undefined, undefined, undefined, instantiationService, chatMarkdownAnchorService, configurationService);
138
+ super(
139
+ progressMessage,
140
+ chatContentMarkdownRenderer,
141
+ context,
142
+ undefined,
143
+ undefined,
144
+ undefined,
145
+ undefined,
146
+ instantiationService,
147
+ chatMarkdownAnchorService,
148
+ configurationService
149
+ );
150
+ this.domNode.classList.add("working-progress");
110
151
  this._register(languageModelToolsService.onDidPrepareToolCallBecomeUnresponsive(e => {
111
- if (context.element.sessionId === e.sessionId) {
112
- this.updateMessage(( new MarkdownString(( localize(5653, "Waiting for tool '{0}' to respond...", e.toolData.displayName)))));
152
+ if (isEqual(context.element.sessionResource, e.sessionResource)) {
153
+ this.updateMessage(( new MarkdownString(( localize(5872, "Waiting for tool '{0}' to respond...", e.toolData.displayName)))));
113
154
  }
114
155
  }));
115
156
  }
116
157
  hasSameContent(other, followingContent, element) {
117
- return other.kind === 'working';
158
+ return other.kind === "working";
118
159
  }
119
160
  };
120
- ChatWorkingProgressContentPart = ( __decorate([
121
- ( __param(3, IInstantiationService)),
122
- ( __param(4, IChatMarkdownAnchorService)),
123
- ( __param(5, IConfigurationService)),
124
- ( __param(6, ILanguageModelToolsService))
125
- ], ChatWorkingProgressContentPart));
161
+ ChatWorkingProgressContentPart = ( __decorate([( __param(3, IInstantiationService)), ( __param(4, IChatMarkdownAnchorService)), ( __param(5, IConfigurationService)), ( __param(6, ILanguageModelToolsService))], ChatWorkingProgressContentPart));
126
162
 
127
163
  export { ChatProgressContentPart, ChatProgressSubPart, ChatWorkingProgressContentPart };
@@ -8,8 +8,6 @@ export declare class ChatPullRequestContentPart extends Disposable implements IC
8
8
  private readonly pullRequestContent;
9
9
  private readonly openerService;
10
10
  readonly domNode: HTMLElement;
11
- private _onDidChangeHeight;
12
- readonly onDidChangeHeight: import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>;
13
11
  constructor(pullRequestContent: IChatPullRequestContent, openerService: IOpenerService);
14
12
  hasSameContent(other: IChatRendererContent, followingContent: IChatRendererContent[], element: ChatTreeItem): boolean;
15
13
  addDisposable(disposable: IDisposable): void;
@@ -3,13 +3,10 @@ import { registerCss } from '@codingame/monaco-vscode-api/css';
3
3
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
4
4
  import * as chatPullRequestContent from './media/chatPullRequestContent.css';
5
5
  import { $, append, addDisposableListener } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
6
- import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
7
6
  import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
8
7
  import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
9
8
  import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
10
- import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
11
9
  import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
12
- import { renderAsPlaintext } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/markdownRenderer';
13
10
 
14
11
  registerCss(chatPullRequestContent);
15
12
  let ChatPullRequestContentPart = class ChatPullRequestContentPart extends Disposable {
@@ -17,39 +14,28 @@ let ChatPullRequestContentPart = class ChatPullRequestContentPart extends Dispos
17
14
  super();
18
15
  this.pullRequestContent = pullRequestContent;
19
16
  this.openerService = openerService;
20
- this._onDidChangeHeight = this._register(( new Emitter()));
21
- this.onDidChangeHeight = this._onDidChangeHeight.event;
22
- this.domNode = $('.chat-pull-request-content-part');
23
- const container = append(this.domNode, $('.container'));
24
- const contentContainer = append(container, $('.content-container'));
25
- const titleContainer = append(contentContainer, $('.title-container'));
26
- const icon = append(titleContainer, $('.icon'));
17
+ this.domNode = $(".chat-pull-request-content-part");
18
+ const container = append(this.domNode, $(".container"));
19
+ const contentContainer = append(container, $(".content-container"));
20
+ const titleContainer = append(contentContainer, $(".title-container"));
21
+ const icon = append(titleContainer, $(".icon"));
27
22
  icon.classList.add(...ThemeIcon.asClassNameArray(Codicon.gitPullRequest));
28
- const titleElement = append(titleContainer, $('.title'));
29
- titleElement.textContent = `${this.pullRequestContent.title} - ${this.pullRequestContent.author}`;
30
- const descriptionElement = append(contentContainer, $('.description'));
31
- const descriptionWrapper = append(descriptionElement, $('.description-wrapper'));
32
- const plainText = renderAsPlaintext({ value: this.pullRequestContent.description });
33
- descriptionWrapper.textContent = plainText;
34
- const seeMoreContainer = append(descriptionElement, $('.see-more'));
35
- const seeMore = append(seeMoreContainer, $('a'));
36
- seeMore.textContent = ( localize(5654, 'See more'));
37
- this._register(addDisposableListener(seeMore, 'click', (e) => {
23
+ const titleLink = append(titleContainer, $("a.title"));
24
+ titleLink.textContent = `${this.pullRequestContent.title} - ${this.pullRequestContent.author}`;
25
+ titleLink.href = ( this.pullRequestContent.uri.toString());
26
+ this._register(addDisposableListener(titleLink, "click", e => {
38
27
  e.preventDefault();
39
28
  e.stopPropagation();
40
29
  this.openerService.open(this.pullRequestContent.uri);
41
30
  }));
42
- seeMore.href = ( this.pullRequestContent.uri.toString());
43
31
  }
44
32
  hasSameContent(other, followingContent, element) {
45
- return other.kind === 'pullRequest';
33
+ return other.kind === "pullRequest";
46
34
  }
47
35
  addDisposable(disposable) {
48
36
  this._register(disposable);
49
37
  }
50
38
  };
51
- ChatPullRequestContentPart = ( __decorate([
52
- ( __param(1, IOpenerService))
53
- ], ChatPullRequestContentPart));
39
+ ChatPullRequestContentPart = ( __decorate([( __param(1, IOpenerService))], ChatPullRequestContentPart));
54
40
 
55
41
  export { ChatPullRequestContentPart };