@opensumi/ide-comments 3.9.1-next-1749562467.0 → 3.9.1-next-1749713628.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.
|
@@ -36,7 +36,7 @@ export declare class CommentsThread extends Disposable implements ICommentsThrea
|
|
|
36
36
|
private addWidgetByEditor;
|
|
37
37
|
toggle: (editor: IEditor) => void;
|
|
38
38
|
show(editor?: IEditor): void;
|
|
39
|
-
|
|
39
|
+
removePendingShowedWidgets(): void;
|
|
40
40
|
showWidgetsIfShowed(): void;
|
|
41
41
|
hideWidgetsByDispose(): void;
|
|
42
42
|
isShowWidget(editor?: IEditor): boolean;
|
|
@@ -199,7 +199,7 @@ let CommentsThread = class CommentsThread extends ide_core_browser_1.Disposable
|
|
|
199
199
|
});
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
|
-
|
|
202
|
+
removePendingShowedWidgets() {
|
|
203
203
|
this.pendingShowTimeouts.forEach((timeout) => clearTimeout(timeout));
|
|
204
204
|
this.pendingShowTimeouts.clear();
|
|
205
205
|
}
|
package/lib/common/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-comments",
|
|
3
|
-
"version": "3.9.1-next-
|
|
3
|
+
"version": "3.9.1-next-1749713628.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib",
|
|
6
6
|
"src"
|
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
"url": "git@github.com:opensumi/core.git"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@opensumi/ide-core-common": "3.9.1-next-
|
|
20
|
+
"@opensumi/ide-core-common": "3.9.1-next-1749713628.0",
|
|
21
21
|
"react-mentions": "^4.4.10"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@opensumi/ide-components": "3.9.1-next-
|
|
25
|
-
"@opensumi/ide-core-browser": "3.9.1-next-
|
|
26
|
-
"@opensumi/ide-dev-tool": "3.9.1-next-
|
|
27
|
-
"@opensumi/ide-editor": "3.9.1-next-
|
|
28
|
-
"@opensumi/ide-main-layout": "3.9.1-next-
|
|
29
|
-
"@opensumi/ide-monaco": "3.9.1-next-
|
|
30
|
-
"@opensumi/ide-monaco-enhance": "3.9.1-next-
|
|
31
|
-
"@opensumi/ide-theme": "3.9.1-next-
|
|
24
|
+
"@opensumi/ide-components": "3.9.1-next-1749713628.0",
|
|
25
|
+
"@opensumi/ide-core-browser": "3.9.1-next-1749713628.0",
|
|
26
|
+
"@opensumi/ide-dev-tool": "3.9.1-next-1749713628.0",
|
|
27
|
+
"@opensumi/ide-editor": "3.9.1-next-1749713628.0",
|
|
28
|
+
"@opensumi/ide-main-layout": "3.9.1-next-1749713628.0",
|
|
29
|
+
"@opensumi/ide-monaco": "3.9.1-next-1749713628.0",
|
|
30
|
+
"@opensumi/ide-monaco-enhance": "3.9.1-next-1749713628.0",
|
|
31
|
+
"@opensumi/ide-theme": "3.9.1-next-1749713628.0",
|
|
32
32
|
"@types/react-mentions": "^4.1.13"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "4c2d12405c8593746692d46fc146aa0021c69471"
|
|
35
35
|
}
|
|
@@ -257,7 +257,7 @@ export class CommentsThread extends Disposable implements ICommentsThread {
|
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
public
|
|
260
|
+
public removePendingShowedWidgets() {
|
|
261
261
|
this.pendingShowTimeouts.forEach((timeout) => clearTimeout(timeout));
|
|
262
262
|
this.pendingShowTimeouts.clear();
|
|
263
263
|
}
|
package/src/common/index.ts
CHANGED