@worktile/theia 2.1.11 → 2.1.15

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.11",
3
+ "version": "2.1.15",
4
4
  "description": "theia editor",
5
5
  "author": "YanDong <nanianqiumo@foxmail.com>",
6
6
  "homepage": "https://github.com/atinc/theia#readme",
@@ -49,6 +49,7 @@ export declare class TheCodeComponent extends TheBaseElementComponent<CodeElemen
49
49
  codeChange($event: any): void;
50
50
  onDelete(event: MouseEvent): void;
51
51
  onCopy(event: MouseEvent): void;
52
+ safariCopy(): void;
52
53
  focusChange(codeMirrorFocused: boolean): void;
53
54
  onChangeLangulage: (item: any) => void;
54
55
  useMode(): void;
@@ -6,7 +6,7 @@
6
6
  font-family: monospace;
7
7
  font-size: inherit;
8
8
  background-color: rgba(243, 243, 243, 0.8);
9
- line-height: inherit;
9
+ line-height: 1;
10
10
  word-wrap: break-word;
11
11
  text-indent: 0;
12
12
  color: $gray-700;
@@ -17,6 +17,7 @@ export declare class TheQuickToolbarComponent extends TheQuickToolbarComponent_b
17
17
  ToolbarActionTypes: typeof ToolbarActionTypes;
18
18
  handleMouseDown(event: MouseEvent): void;
19
19
  handleEnter(): void;
20
+ handleEsc(): void;
20
21
  constructor(popoverRef: ThyPopoverRef<TheQuickToolbarComponent>, elementRef: ElementRef);
21
22
  ngOnInit(): void;
22
23
  stopPropagation(event: any): void;
@@ -162,6 +162,18 @@ $thy-icon-nav-link-margin-right: 5px;
162
162
  }
163
163
  }
164
164
  }
165
+ .slate-element-bulleted-list {
166
+ .slate-element-list-item {
167
+ &.font-size-#{$size} {
168
+ @if $size == 40 {
169
+ margin-left: 2.2em;
170
+ }
171
+ @if $size == 48 {
172
+ margin-left: 2.5em;
173
+ }
174
+ }
175
+ }
176
+ }
165
177
  }
166
178
  }
167
179