@codingame/monaco-vscode-timeline-service-override 19.0.2 → 19.1.1

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": "@codingame/monaco-vscode-timeline-service-override",
3
- "version": "19.0.2",
3
+ "version": "19.1.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - timeline service-override",
6
6
  "keywords": [],
@@ -15,11 +15,11 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "19.0.2",
19
- "@codingame/monaco-vscode-api": "19.0.2",
20
- "@codingame/monaco-vscode-b71b5434-ce96-5581-8993-e8da380bd63f-common": "19.0.2",
21
- "@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common": "19.0.2",
22
- "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "19.0.2"
18
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "19.1.1",
19
+ "@codingame/monaco-vscode-api": "19.1.1",
20
+ "@codingame/monaco-vscode-b71b5434-ce96-5581-8993-e8da380bd63f-common": "19.1.1",
21
+ "@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common": "19.1.1",
22
+ "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "19.1.1"
23
23
  },
24
24
  "main": "index.js",
25
25
  "module": "index.js",
@@ -3,7 +3,7 @@ import { registerCss } from '@codingame/monaco-vscode-api/css';
3
3
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
4
4
  import * as timelinePane from './media/timelinePane.css';
5
5
  import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
6
- import { clearNode, append, $ } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
6
+ import { clearNode, append, $, createElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
7
7
  import { asCSSUrl } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/cssValue';
8
8
  import { ActionRunner } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
9
9
  import { CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
@@ -718,7 +718,7 @@ let TimelinePane = class TimelinePane extends ViewPane {
718
718
  this.$message = append(this.$container, $('.message'));
719
719
  this.$message.classList.add('timeline-subtle');
720
720
  this.message = ( localize(11698, "The active editor cannot provide timeline information."));
721
- this.$tree = document.createElement('div');
721
+ this.$tree = createElement('div');
722
722
  this.$tree.classList.add('customview-tree', 'file-icon-themable-tree', 'hide-arrows');
723
723
  container.appendChild(this.$tree);
724
724
  this.treeRenderer = this.instantiationService.createInstance(TimelineTreeRenderer, this.commands, this.viewDescriptorService.getViewLocationById(this.id));