@opensumi/ide-main-layout 2.19.6-rc-1659680466.0 → 2.19.6

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.
@@ -50,7 +50,7 @@ export declare class AccordionService extends WithEventBus {
50
50
  private afterDisposeViewEmitter;
51
51
  onAfterDisposeViewEvent: Event<string>;
52
52
  constructor(containerId: string, noRestore?: boolean | undefined);
53
- updateViewTiele(viewId: string, title: string): void;
53
+ updateViewTitle(viewId: string, title: string): void;
54
54
  tryUpdateResize(): void;
55
55
  restoreState(): void;
56
56
  restoreSize(): void;
@@ -88,7 +88,7 @@ let AccordionService = class AccordionService extends ide_core_browser_1.WithEve
88
88
  this.addDispose(ide_core_browser_1.Event.debounce(this.contextKeyService.onDidChangeContext, (last, event) => last || event.payload.affectsSome(this.viewWhenContextkeys), 50)((e) => e && this.handleContextKeyChange(), this));
89
89
  this.listenWindowResize();
90
90
  }
91
- updateViewTiele(viewId, title) {
91
+ updateViewTitle(viewId, title) {
92
92
  this.didChangeViewTitleEmitter.fire({ id: viewId, title });
93
93
  }
94
94
  tryUpdateResize() {
@@ -142,7 +142,7 @@ let TabBarHandler = class TabBarHandler {
142
142
  const targetView = this.accordionService.views.find((view) => view.id === viewId);
143
143
  if (targetView) {
144
144
  targetView.name = title;
145
- this.accordionService.updateViewTiele(viewId, title);
145
+ this.accordionService.updateViewTitle(viewId, title);
146
146
  }
147
147
  else {
148
148
  this.logger.error('没有找到目标视图,无法更新手风琴标题!');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensumi/ide-main-layout",
3
- "version": "2.19.6-rc-1659680466.0",
3
+ "version": "2.19.6",
4
4
  "description": "@opensumi/ide-main-layout",
5
5
  "files": [
6
6
  "lib"
@@ -17,13 +17,13 @@
17
17
  "url": "git@github.com:opensumi/core.git"
18
18
  },
19
19
  "dependencies": {
20
- "@opensumi/ide-components": "2.19.6-rc-1659680466.0",
21
- "@opensumi/ide-core-common": "2.19.6-rc-1659680466.0"
20
+ "@opensumi/ide-components": "2.19.6",
21
+ "@opensumi/ide-core-common": "2.19.6"
22
22
  },
23
23
  "devDependencies": {
24
- "@opensumi/ide-core-browser": "2.19.6-rc-1659680466.0",
24
+ "@opensumi/ide-core-browser": "2.19.6",
25
25
  "@opensumi/ide-dev-tool": "^1.3.1",
26
- "@opensumi/ide-theme": "2.19.6-rc-1659680466.0"
26
+ "@opensumi/ide-theme": "2.19.6"
27
27
  },
28
- "gitHead": "564465fe839561a22c592fecff269b3eb1da5ef2"
28
+ "gitHead": "2963bcfa2b61d7b6368e7cafe913c4c56852a813"
29
29
  }