@codingame/monaco-vscode-comments-service-override 20.1.1 → 20.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-comments-service-override",
3
- "version": "20.1.1",
3
+ "version": "20.2.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - comments service-override",
6
6
  "keywords": [],
@@ -15,11 +15,11 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.1.1",
19
- "@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common": "20.1.1",
20
- "@codingame/monaco-vscode-api": "20.1.1",
21
- "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.1.1",
22
- "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common": "20.1.1"
18
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.2.1",
19
+ "@codingame/monaco-vscode-9ee79c1a-3f03-568b-8eac-b02513a98b68-common": "20.2.1",
20
+ "@codingame/monaco-vscode-api": "20.2.1",
21
+ "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.2.1",
22
+ "@codingame/monaco-vscode-eb7d5efd-2e60-59f8-9ba4-9a8ae8cb2957-common": "20.2.1"
23
23
  },
24
24
  "main": "index.js",
25
25
  "module": "index.js",
@@ -122,7 +122,15 @@ export declare class CommentService extends Disposable implements ICommentServic
122
122
  private get _defaultCommentingEnablement();
123
123
  get isCommentingEnabled(): boolean;
124
124
  enableCommenting(enable: boolean): void;
125
+ /**
126
+ * The current comment thread is the thread that has focus or is being hovered.
127
+ * @param commentThread
128
+ */
125
129
  setCurrentCommentThread(commentThread: CommentThread | undefined): void;
130
+ /**
131
+ * The active comment thread is the thread that is currently being edited.
132
+ * @param commentThread
133
+ */
126
134
  setActiveEditingCommentThread(commentThread: CommentThread | null): void;
127
135
  get lastActiveCommentcontroller(): ICommentController | undefined;
128
136
  private _lastActiveCommentController;