@worktile/theia 2.1.3 → 2.1.4

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": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "theia editor",
5
5
  "author": "YanDong <nanianqiumo@foxmail.com>",
6
6
  "homepage": "https://github.com/atinc/theia#readme",
@@ -35,7 +35,7 @@
35
35
  .ng-codemirror-wrapper {
36
36
  display: block;
37
37
  position: relative;
38
- overflow-y: scroll;
38
+ overflow-y: auto;
39
39
  height: 100%;
40
40
  }
41
41
 
@@ -5,9 +5,13 @@ import * as i0 from "@angular/core";
5
5
  export declare class TheListItemComponent extends TheBaseElementComponent<Element, Editor> implements OnInit, OnDestroy {
6
6
  elementRef: ElementRef;
7
7
  cdr: ChangeDetectorRef;
8
+ fontSizeClass: string;
8
9
  constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
9
10
  ngOnInit(): void;
11
+ onContextChange(): void;
10
12
  ngOnDestroy(): void;
13
+ applyFontSize(): void;
14
+ clearFontSize(): void;
11
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TheListItemComponent, never>;
12
16
  static ɵcmp: i0.ɵɵComponentDeclaration<TheListItemComponent, "li[theLi]", never, {}, {}, never, never>;
13
17
  }
@@ -132,6 +132,11 @@ $thy-icon-nav-link-margin-right: 5px;
132
132
  font-size: #{$size}px;
133
133
  line-height: $font-size-line-height;
134
134
  }
135
+ .slate-element-list-item.font-size-#{$size} {
136
+ &::marker {
137
+ font-size: #{$size}px;
138
+ }
139
+ }
135
140
  }
136
141
  }
137
142