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

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
@@ -1,21 +0,0 @@
1
- import { IReference, ReferenceCollection } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
2
- import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
3
- import { ITextModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/model";
4
- import { CellKind } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon";
5
- import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
6
- import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language.service";
7
- import { IModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model.service";
8
- import { INotebookOriginalCellModelFactory } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.service";
9
- export declare class OriginalNotebookCellModelReferenceCollection extends ReferenceCollection<ITextModel> {
10
- private readonly modelService;
11
- private readonly _languageService;
12
- constructor(modelService: IModelService, _languageService: ILanguageService);
13
- protected createReferencedObject(_key: string, uri: URI, cellValue: string, language: string, cellKind: CellKind): ITextModel;
14
- protected destroyReferencedObject(_key: string, model: ITextModel): void;
15
- }
16
- export declare class OriginalNotebookCellModelFactory implements INotebookOriginalCellModelFactory {
17
- readonly _serviceBrand: undefined;
18
- private readonly _data;
19
- constructor(instantiationService: IInstantiationService);
20
- getOrCreate(uri: URI, cellValue: string, language: string, cellKind: CellKind): IReference<ITextModel>;
21
- }
@@ -1,42 +0,0 @@
1
-
2
- import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
- import { ReferenceCollection } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
4
- import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
5
- import { CellKind } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
6
- import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
7
- import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language.service';
8
- import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model.service';
9
-
10
- let OriginalNotebookCellModelReferenceCollection = class OriginalNotebookCellModelReferenceCollection extends ReferenceCollection {
11
- constructor(modelService, _languageService) {
12
- super();
13
- this.modelService = modelService;
14
- this._languageService = _languageService;
15
- }
16
- createReferencedObject(_key, uri, cellValue, language, cellKind) {
17
- const scheme = `${uri.scheme}-chat-edit`;
18
- const originalCellUri = ( URI.from({ scheme, fragment: uri.fragment, path: uri.path }));
19
- const languageSelection = this._languageService.getLanguageIdByLanguageName(language) ? this._languageService.createById(language) : cellKind === CellKind.Markup ? this._languageService.createById('markdown') : null;
20
- return this.modelService.createModel(cellValue, languageSelection, originalCellUri);
21
- }
22
- destroyReferencedObject(_key, model) {
23
- model.dispose();
24
- }
25
- };
26
- OriginalNotebookCellModelReferenceCollection = ( __decorate([
27
- ( __param(0, IModelService)),
28
- ( __param(1, ILanguageService))
29
- ], OriginalNotebookCellModelReferenceCollection));
30
- let OriginalNotebookCellModelFactory = class OriginalNotebookCellModelFactory {
31
- constructor(instantiationService) {
32
- this._data = instantiationService.createInstance(OriginalNotebookCellModelReferenceCollection);
33
- }
34
- getOrCreate(uri, cellValue, language, cellKind) {
35
- return this._data.acquire(( uri.toString()), uri, cellValue, language, cellKind);
36
- }
37
- };
38
- OriginalNotebookCellModelFactory = ( __decorate([
39
- ( __param(0, IInstantiationService))
40
- ], OriginalNotebookCellModelFactory));
41
-
42
- export { OriginalNotebookCellModelFactory, OriginalNotebookCellModelReferenceCollection };
@@ -1,25 +0,0 @@
1
- import { IReference, ReferenceCollection } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
2
- import { IModifiedFileEntry } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/editing/chatEditingService";
3
- import { INotebookService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service";
4
- import { NotebookTextModel } from "@codingame/monaco-vscode-notebook-service-override/vscode/vs/workbench/contrib/notebook/common/model/notebookTextModel";
5
- import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
6
- import { ITextModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService.service";
7
- import { INotebookOriginalModelReferenceFactory } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.service";
8
- export declare class OriginalNotebookModelReferenceCollection extends ReferenceCollection<Promise<NotebookTextModel>> {
9
- private readonly notebookService;
10
- private readonly modelService;
11
- private readonly modelsToDispose;
12
- constructor(notebookService: INotebookService, modelService: ITextModelService);
13
- protected createReferencedObject(key: string, fileEntry: IModifiedFileEntry, viewType: string): Promise<NotebookTextModel>;
14
- protected destroyReferencedObject(key: string, modelPromise: Promise<NotebookTextModel>): void;
15
- }
16
- export declare class NotebookOriginalModelReferenceFactory implements INotebookOriginalModelReferenceFactory {
17
- private readonly instantiationService;
18
- readonly _serviceBrand: undefined;
19
- private _resourceModelCollection;
20
- private get resourceModelCollection();
21
- private _asyncModelCollection;
22
- private get asyncModelCollection();
23
- constructor(instantiationService: IInstantiationService);
24
- getOrCreate(fileEntry: IModifiedFileEntry, viewType: string): Promise<IReference<NotebookTextModel>>;
25
- }
@@ -1,77 +0,0 @@
1
-
2
- import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
- import { ReferenceCollection, AsyncReferenceCollection } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
4
- import { INotebookService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
5
- import { VSBuffer, bufferToStream } from '@codingame/monaco-vscode-api/vscode/vs/base/common/buffer';
6
- import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
7
- import { ITextModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService.service';
8
-
9
- let OriginalNotebookModelReferenceCollection = class OriginalNotebookModelReferenceCollection extends ReferenceCollection {
10
- constructor(notebookService, modelService) {
11
- super();
12
- this.notebookService = notebookService;
13
- this.modelService = modelService;
14
- this.modelsToDispose = ( new Set());
15
- }
16
- async createReferencedObject(key, fileEntry, viewType) {
17
- this.modelsToDispose.delete(key);
18
- const uri = fileEntry.originalURI;
19
- const model = this.notebookService.getNotebookTextModel(uri);
20
- if (model) {
21
- return model;
22
- }
23
- const modelRef = await this.modelService.createModelReference(uri);
24
- const bytes = VSBuffer.fromString(modelRef.object.textEditorModel.getValue());
25
- const stream = bufferToStream(bytes);
26
- modelRef.dispose();
27
- return this.notebookService.createNotebookTextModel(viewType, uri, stream);
28
- }
29
- destroyReferencedObject(key, modelPromise) {
30
- this.modelsToDispose.add(key);
31
- (async () => {
32
- try {
33
- const model = await modelPromise;
34
- if (!( this.modelsToDispose.has(key))) {
35
- return;
36
- }
37
- model.dispose();
38
- }
39
- catch (error) {
40
- }
41
- finally {
42
- this.modelsToDispose.delete(key);
43
- }
44
- })();
45
- }
46
- };
47
- OriginalNotebookModelReferenceCollection = ( __decorate([
48
- ( __param(0, INotebookService)),
49
- ( __param(1, ITextModelService))
50
- ], OriginalNotebookModelReferenceCollection));
51
- let NotebookOriginalModelReferenceFactory = class NotebookOriginalModelReferenceFactory {
52
- get resourceModelCollection() {
53
- if (!this._resourceModelCollection) {
54
- this._resourceModelCollection = this.instantiationService.createInstance(OriginalNotebookModelReferenceCollection);
55
- }
56
- return this._resourceModelCollection;
57
- }
58
- get asyncModelCollection() {
59
- if (!this._asyncModelCollection) {
60
- this._asyncModelCollection = ( new AsyncReferenceCollection(this.resourceModelCollection));
61
- }
62
- return this._asyncModelCollection;
63
- }
64
- constructor(instantiationService) {
65
- this.instantiationService = instantiationService;
66
- this._resourceModelCollection = undefined;
67
- this._asyncModelCollection = undefined;
68
- }
69
- getOrCreate(fileEntry, viewType) {
70
- return this.asyncModelCollection.acquire(( fileEntry.originalURI.toString()), fileEntry, viewType);
71
- }
72
- };
73
- NotebookOriginalModelReferenceFactory = ( __decorate([
74
- ( __param(0, IInstantiationService))
75
- ], NotebookOriginalModelReferenceFactory));
76
-
77
- export { NotebookOriginalModelReferenceFactory, OriginalNotebookModelReferenceCollection };
@@ -1,469 +0,0 @@
1
- /*---------------------------------------------------------------------------------------------
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for license information.
4
- *--------------------------------------------------------------------------------------------*/
5
-
6
- /* .notebook-diff-editor {
7
- display: flex;
8
- flex-direction: row;
9
- height: 100%;
10
- width: 100%;
11
- }
12
- .notebook-diff-editor-modified,
13
- .notebook-diff-editor-original {
14
- display: flex;
15
- height: 100%;
16
- width: 50%;
17
- } */
18
-
19
- .notebook-text-diff-editor {
20
- position: relative;
21
- }
22
-
23
- .notebook-text-diff-editor .cell-body {
24
- display: flex;
25
- flex-direction: row;
26
- }
27
-
28
- .notebook-text-diff-editor .cell-placeholder-body {
29
- display: flex;
30
- flex-direction: row;
31
- }
32
-
33
- .notebook-text-diff-editor .webview-cover {
34
- user-select: initial;
35
- -webkit-user-select: initial;
36
- }
37
-
38
- .notebook-text-diff-editor .cell-body .border-container {
39
- position: absolute;
40
- width: calc(100% - 32px);
41
- }
42
-
43
- .notebook-text-diff-editor .cell-body .border-container .top-border,
44
- .notebook-text-diff-editor .cell-body .border-container .bottom-border {
45
- position: absolute;
46
- width: 100%;
47
- }
48
-
49
- .notebook-text-diff-editor .cell-body .border-container .left-border,
50
- .notebook-text-diff-editor .cell-body .border-container .right-border {
51
- position: absolute;
52
- }
53
-
54
- .notebook-text-diff-editor .cell-body .border-container .right-border {
55
- left: 100%;
56
- }
57
-
58
- .notebook-text-diff-editor .cell-body.right {
59
- flex-direction: row-reverse;
60
- }
61
-
62
- .notebook-text-diff-editor .cell-body .diagonal-fill {
63
- display: none;
64
- width: 50%;
65
- }
66
-
67
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container {
68
- width: 100%;
69
- /* why we overflow hidden at the beginning?*/
70
- /* overflow: hidden; */
71
- }
72
-
73
- .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row {
74
- cursor: default;
75
- }
76
-
77
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container.diff,
78
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .output-editor-container.diff,
79
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container.diff {
80
- /** 100% + diffOverviewWidth */
81
- width: calc(100%);
82
- }
83
-
84
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container .monaco-diff-editor .diffOverview,
85
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container.diff .monaco-diff-editor .diffOverview,
86
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .output-editor-container.diff .monaco-diff-editor .diffOverview {
87
- display: none;
88
- }
89
-
90
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .metadata-editor-container,
91
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .editor-container {
92
- box-sizing: border-box;
93
- }
94
-
95
- .notebook-text-diff-editor .cell-body.left .cell-diff-editor-container,
96
- .notebook-text-diff-editor .cell-body.right .cell-diff-editor-container {
97
- display: inline-block;
98
- width: 50%;
99
- }
100
-
101
- .notebook-text-diff-editor .cell-body.left .diagonal-fill,
102
- .notebook-text-diff-editor .cell-body.right .diagonal-fill {
103
- display: inline-block;
104
- width: 50%;
105
- }
106
-
107
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
108
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
109
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
110
- display: flex;
111
- height: 24px;
112
- align-items: center;
113
- cursor: default;
114
- }
115
-
116
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-folding-indicator .codicon,
117
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-folding-indicator .codicon,
118
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-folding-indicator .codicon {
119
- visibility: visible;
120
- padding: 4px 0 0 6px;
121
- cursor: pointer;
122
- }
123
-
124
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
125
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
126
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
127
- display: flex;
128
- flex-direction: row;
129
- align-items: center;
130
- }
131
-
132
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container,
133
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
134
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
135
- cursor: pointer;
136
- }
137
-
138
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-toolbar,
139
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-toolbar,
140
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-toolbar {
141
- margin-left: auto;
142
- }
143
-
144
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status,
145
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status,
146
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status {
147
- font-size: 12px;
148
- }
149
-
150
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status span,
151
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status span,
152
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status span {
153
- margin: 0 0 0 5px;
154
- line-height: 21px;
155
- }
156
-
157
- .notebook-text-diff-editor .cell-diff-editor-container .input-header-container .property-status span.property-description,
158
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container .property-status span.property-description,
159
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container .property-status span.property-description {
160
- font-style: italic;
161
- }
162
-
163
- .notebook-text-diff-editor {
164
- overflow: hidden;
165
- }
166
-
167
- .monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row {
168
- overflow: visible !important;
169
- }
170
-
171
- .monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row,
172
- .monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row:hover,
173
- .monaco-workbench .notebook-text-diff-editor > .notebook-diff-list-view > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused {
174
- outline: none !important;
175
- background-color: transparent !important;
176
- }
177
-
178
- .notebook-text-diff-editor .cell-diff-editor-container .editor-input-toolbar-container {
179
- position: absolute;
180
- right: 16px;
181
- top: 16px;
182
- margin: 1px 2px;
183
- }
184
-
185
- .monaco-workbench .notebook-text-diff-editor .cell-body {
186
- height: 0;
187
- }
188
-
189
- .monaco-workbench .notebook-text-diff-editor .cell-body .output-view-container {
190
- user-select: text;
191
- -webkit-user-select: text;
192
- white-space: initial;
193
- cursor: auto;
194
- position: relative;
195
- }
196
-
197
- .monaco-workbench .notebook-text-diff-editor .cell-body.left .output-view-container .output-inner-container,
198
- .monaco-workbench .notebook-text-diff-editor .cell-body.right .output-view-container .output-inner-container {
199
- width: 100%;
200
- padding: 0px 8px;
201
- box-sizing: border-box;
202
- overflow-x: hidden;
203
- }
204
-
205
- .monaco-workbench .notebook-text-diff-editor .cell-body.left .output-view-container .output-inner-container {
206
- padding: 0px 8px 0px 32px;
207
- }
208
-
209
- .monaco-workbench .notebook-text-diff-editor .cell-body.right .output-view-container .output-inner-container {
210
- padding: 0px 8px 0px 32px;
211
- }
212
-
213
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-view-container .output-inner-container {
214
- width: 100%;
215
- padding: 4px 8px 4px 32px;
216
- box-sizing: border-box;
217
- overflow: hidden;
218
- }
219
-
220
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left {
221
- top: 0;
222
- position: absolute;
223
- left: 0;
224
- }
225
-
226
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right {
227
- position: absolute;
228
- top: 0;
229
- left: 50%;
230
- }
231
-
232
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left,
233
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right {
234
- width: 50%;
235
- display: inline-block;
236
- }
237
-
238
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-left div.foreground,
239
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container .output-view-container .output-view-container-right div.foreground {
240
- width: 100%;
241
- }
242
-
243
- .monaco-workbench .notebook-text-diff-editor .output-view-container > div.foreground {
244
- width: 100%;
245
- min-height: 24px;
246
- box-sizing: border-box;
247
- }
248
-
249
- .monaco-workbench .notebook-text-diff-editor .output-view-container .error_message {
250
- color: red;
251
- }
252
-
253
- .monaco-workbench .notebook-text-diff-editor .output-view-container .error > div {
254
- white-space: normal;
255
- }
256
-
257
- .monaco-workbench .notebook-text-diff-editor .output-view-container .error pre.traceback {
258
- box-sizing: border-box;
259
- padding: 8px 0;
260
- margin: 0px;
261
- }
262
-
263
- .monaco-workbench .notebook-text-diff-editor .output-view-container .error .traceback > span {
264
- display: block;
265
- }
266
-
267
- .monaco-workbench .notebook-text-diff-editor .output-view-container .display img {
268
- max-width: 100%;
269
- }
270
-
271
- .monaco-workbench .notebook-text-diff-editor .output-view-container .multi-mimetype-output {
272
- position: absolute;
273
- top: 4px;
274
- left: 8px;
275
- width: 16px;
276
- height: 16px;
277
- cursor: pointer;
278
- padding: 2px 4px 4px 2px;
279
- }
280
-
281
- .monaco-workbench .notebook-text-diff-editor .output-view-container .output-empty-view span {
282
- opacity: 0.7;
283
- }
284
-
285
- .monaco-workbench .notebook-text-diff-editor .output-view-container .output-empty-view {
286
- font-style: italic;
287
- height: 24px;
288
- margin: auto;
289
- padding-left: 12px;
290
- }
291
-
292
- .monaco-workbench .notebook-text-diff-editor .output-view-container pre {
293
- margin: 4px 0;
294
- }
295
-
296
- .monaco-workbench .notebook-text-diff-edito .monaco-list:focus-within .monaco-list-row.focused .codicon,
297
- .monaco-workbench .notebook-text-diff-editor .monaco-list:focus-within .monaco-list-row.selected .codicon {
298
- color: inherit;
299
- }
300
-
301
- .monaco-workbench .notebook-text-diff-editor .output-view-container .output-view-container-metadata {
302
- position: relative;
303
- }
304
-
305
- /* Diff decorations */
306
-
307
- .notebook-text-diff-editor .cell-body .codicon-diff-remove,
308
- .notebook-text-diff-editor .cell-body .codicon-diff-insert {
309
- left: 4px !important;
310
- width: 15px !important;
311
- }
312
-
313
- .monaco-workbench .notebook-text-diff-editor > .monaco-list > .monaco-scrollable-element > .scrollbar.visible {
314
- z-index: var(--z-index-notebook-scrollbar);
315
- cursor: default;
316
- }
317
-
318
- .notebook-text-diff-editor .notebook-overview-ruler-container {
319
- position: absolute;
320
- top: 0;
321
- right: 0;
322
- }
323
-
324
- .notebook-text-diff-editor .notebook-overview-ruler-container .diffViewport {
325
- z-index: var(--notebook-diff-view-viewport-slider);
326
- }
327
-
328
- .notebook-text-diff-editor .diffViewport {
329
- background: var(--vscode-scrollbarSlider-background);
330
- }
331
-
332
- .notebook-text-diff-editor .diffViewport:hover {
333
- background: var(--vscode-scrollbarSlider-hoverBackground);
334
- }
335
-
336
- .notebook-text-diff-editor .diffViewport:active {
337
- background: var(--vscode-scrollbarSlider-activeBackground);
338
- }
339
-
340
- /** Diff cell borders */
341
- .notebook-text-diff-editor .cell-body .border-container .top-border,
342
- .notebook-text-diff-editor .cell-body .border-container .bottom-border,
343
- .notebook-text-diff-editor .cell-diff-editor-container .output-header-container,
344
- .notebook-text-diff-editor .cell-diff-editor-container .metadata-header-container {
345
- border-top: 1px solid var(--vscode-notebook-cellBorderColor);
346
- }
347
-
348
- .notebook-text-diff-editor .cell-body .border-container .left-border {
349
- border-left: 1px solid var(--vscode-notebook-cellBorderColor);
350
- }
351
-
352
- .notebook-text-diff-editor .cell-body .border-container .right-border {
353
- border-right: 1px solid var(--vscode-notebook-cellBorderColor);
354
- }
355
-
356
- /** Diff cell active borders */
357
- .notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .top-border,
358
- .notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .bottom-border {
359
- border-top: 1px solid var(--vscode-notebook-focusedEditorBorder);
360
- }
361
-
362
- .notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .left-border {
363
- border-left: 1px solid var(--vscode-notebook-focusedEditorBorder);
364
- }
365
-
366
- .notebook-text-diff-editor .monaco-list-row.focused .cell-body .border-container .right-border {
367
- border-right: 1px solid var(--vscode-notebook-focusedEditorBorder);
368
- }
369
-
370
- /** Diff cell diff background */
371
-
372
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container.modified .output-view-container .output-view-container-right div.foreground,
373
- .monaco-workbench .notebook-text-diff-editor .cell-body.right .output-info-container .output-view-container div.foreground,
374
- .monaco-workbench .notebook-text-diff-editor .cell-body.right .output-info-container .output-view-container div.output-empty-view,
375
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container,
376
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container .monaco-editor .margin,
377
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .source-container .monaco-editor .monaco-editor-background,
378
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .input-header-container,
379
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container,
380
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container .monaco-editor .margin,
381
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-editor-container .monaco-editor .monaco-editor-background,
382
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container,
383
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container .monaco-editor .margin,
384
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-editor-container .monaco-editor .monaco-editor-background,
385
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .metadata-header-container,
386
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.inserted .output-header-container {
387
- background-color: var(--vscode-diffEditor-insertedTextBackground);
388
- }
389
-
390
- .monaco-workbench .notebook-text-diff-editor .cell-body.full .output-info-container.modified .output-view-container .output-view-container-left div.foreground,
391
- .monaco-workbench .notebook-text-diff-editor .cell-body.left .output-info-container .output-view-container div.foreground,
392
- .monaco-workbench .notebook-text-diff-editor .cell-body.left .output-info-container .output-view-container div.output-empty-view,
393
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container,
394
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container .monaco-editor .margin,
395
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .source-container .monaco-editor .monaco-editor-background,
396
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .input-header-container,
397
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container,
398
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container .monaco-editor .margin,
399
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-editor-container .monaco-editor .monaco-editor-background,
400
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container,
401
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container .monaco-editor .margin,
402
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-editor-container .monaco-editor .monaco-editor-background,
403
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .metadata-header-container,
404
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container.removed .output-header-container {
405
- background-color: var(--vscode-diffEditor-removedTextBackground);
406
- }
407
-
408
- /** Diff cell editor background */
409
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .source-container .monaco-editor .margin,
410
- .notebook-text-diff-editor .cell-body .cell-diff-editor-container .source-container .monaco-editor .monaco-editor-background {
411
- background: var(--vscode-notebook-cellEditorBackground, var(--vscode-editor-background));
412
- }
413
-
414
- /** Overlay to hide the unchanged cells */
415
- .notebook-text-diff-editor .cell-body.full div.diff-hidden-cells {
416
- position: absolute;
417
- left: 0;
418
-
419
- font-size: 13px;
420
- line-height: 14px;
421
- }
422
-
423
- .notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center {
424
- color: var(--vscode-diffEditor-unchangedRegionForeground);
425
- overflow: hidden;
426
- display: block;
427
- white-space: nowrap;
428
-
429
- height: 24px;
430
- }
431
-
432
- .notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center span.codicon {
433
- vertical-align: middle;
434
- }
435
-
436
- .notebook-text-diff-editor .cell-body.full div.diff-hidden-cells .center a:hover .codicon {
437
- cursor: pointer;
438
- }
439
-
440
- /** Overlay to unhide the unchanged cells */
441
- .notebook-text-diff-editor .cell-placeholder-body {
442
- background: var(--vscode-diffEditor-unchangedRegionBackground);
443
- color: var(--vscode-diffEditor-unchangedRegionForeground);
444
- min-height: 24px;
445
- }
446
-
447
- .notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center {
448
- overflow: hidden;
449
- display: block;
450
- text-overflow: ellipsis;
451
- white-space: nowrap;
452
-
453
- height: 24px;
454
- }
455
-
456
- .notebook-text-diff-editor .cell-placeholder-body .text {
457
- /** Add a gap between text and the unfold icon */
458
- padding-left: 2px;
459
- }
460
-
461
- .notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center span.codicon,
462
- .notebook-text-diff-editor .cell-placeholder-body .text {
463
- vertical-align: middle;
464
- }
465
-
466
- .notebook-text-diff-editor .cell-placeholder-body div.diff-hidden-cells .center a:hover .codicon {
467
- cursor: pointer;
468
- color: var(--vscode-editorLink-activeForeground) !important;
469
- }