@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
- removePaddingShowedWidgets(): void;
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
- removePaddingShowedWidgets() {
202
+ removePendingShowedWidgets() {
203
203
  this.pendingShowTimeouts.forEach((timeout) => clearTimeout(timeout));
204
204
  this.pendingShowTimeouts.clear();
205
205
  }
@@ -496,7 +496,7 @@ export interface ICommentsThread extends IDisposable {
496
496
  /**
497
497
  * 移除即将显示的 widget,避免竞态条件
498
498
  */
499
- removePaddingShowedWidgets(): void;
499
+ removePendingShowedWidgets(): void;
500
500
  /**
501
501
  * 临时隐藏 wiget,restoreShow 时恢复
502
502
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensumi/ide-comments",
3
- "version": "3.9.1-next-1749562467.0",
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-1749562467.0",
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-1749562467.0",
25
- "@opensumi/ide-core-browser": "3.9.1-next-1749562467.0",
26
- "@opensumi/ide-dev-tool": "3.9.1-next-1749562467.0",
27
- "@opensumi/ide-editor": "3.9.1-next-1749562467.0",
28
- "@opensumi/ide-main-layout": "3.9.1-next-1749562467.0",
29
- "@opensumi/ide-monaco": "3.9.1-next-1749562467.0",
30
- "@opensumi/ide-monaco-enhance": "3.9.1-next-1749562467.0",
31
- "@opensumi/ide-theme": "3.9.1-next-1749562467.0",
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": "5fed70d7355d9b4399704ca1c18511bd0dcc208a"
34
+ "gitHead": "4c2d12405c8593746692d46fc146aa0021c69471"
35
35
  }
@@ -257,7 +257,7 @@ export class CommentsThread extends Disposable implements ICommentsThread {
257
257
  }
258
258
  }
259
259
 
260
- public removePaddingShowedWidgets() {
260
+ public removePendingShowedWidgets() {
261
261
  this.pendingShowTimeouts.forEach((timeout) => clearTimeout(timeout));
262
262
  this.pendingShowTimeouts.clear();
263
263
  }
@@ -543,7 +543,7 @@ export interface ICommentsThread extends IDisposable {
543
543
  /**
544
544
  * 移除即将显示的 widget,避免竞态条件
545
545
  */
546
- removePaddingShowedWidgets(): void;
546
+ removePendingShowedWidgets(): void;
547
547
  /**
548
548
  * 临时隐藏 wiget,restoreShow 时恢复
549
549
  */