@worktile/theia 13.0.7 → 13.0.10

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": "@worktile/theia",
3
- "version": "13.0.7",
3
+ "version": "13.0.10",
4
4
  "description": "theia editor",
5
5
  "author": "YanDong <nanianqiumo@foxmail.com>",
6
6
  "homepage": "https://github.com/atinc/theia#readme",
@@ -8,6 +8,7 @@ import { CodeElement } from '../../custom-types';
8
8
  import { ThyResizeEvent } from 'ngx-tethys/resizable';
9
9
  import { TheContextService } from '../../services/context.service';
10
10
  import { Subject } from 'rxjs';
11
+ import { TheToolbarDropdownComponent } from '../../components/toolbar-dropdown/toolbar-dropdown.component';
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class TheCodeComponent extends TheBaseElementComponent<CodeElement, Editor> implements OnInit, AfterViewInit, OnDestroy {
13
14
  elementRef: ElementRef;
@@ -38,8 +39,9 @@ export declare class TheCodeComponent extends TheBaseElementComponent<CodeElemen
38
39
  };
39
40
  activeLanguage: DefaultToolbarItem;
40
41
  resizeBounds: any;
41
- get code(): string;
42
42
  codemirror: CodeMirrorComponent;
43
+ toolbarDropdownComponent: TheToolbarDropdownComponent;
44
+ get code(): string;
43
45
  onContextChange(): void;
44
46
  constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, thyNotifyService: ThyNotifyService, contextService: TheContextService, ngZone: NgZone, config: TheModeConfig);
45
47
  ngOnInit(): void;
@@ -2,7 +2,7 @@
2
2
  .thy-popover-container {
3
3
  min-width: 90px;
4
4
  }
5
- .dropdown {
5
+ .thy-dropdown-menu {
6
6
  width: 90px;
7
7
  }
8
8
  .dropdown-menu-item {
@@ -34,7 +34,6 @@ export declare class TheContextService {
34
34
  getDefaultFontSize(): FontSizes;
35
35
  getEditableElement(): Element;
36
36
  getFirstElementChild(): HTMLElement;
37
- layoutDefaultWidth(): number;
38
37
  addUploadingFiles(file: {
39
38
  url: string;
40
39
  file: File;