@codingame/monaco-vscode-timeline-service-override 20.1.0 → 20.2.0

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": "20.1.0",
3
+ "version": "20.2.0",
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": "20.1.0",
19
- "@codingame/monaco-vscode-api": "20.1.0",
20
- "@codingame/monaco-vscode-b71b5434-ce96-5581-8993-e8da380bd63f-common": "20.1.0",
21
- "@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common": "20.1.0",
22
- "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "20.1.0"
18
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.2.0",
19
+ "@codingame/monaco-vscode-api": "20.2.0",
20
+ "@codingame/monaco-vscode-b71b5434-ce96-5581-8993-e8da380bd63f-common": "20.2.0",
21
+ "@codingame/monaco-vscode-dbfe5f85-b426-55ed-a79b-5f811b395762-common": "20.2.0",
22
+ "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "20.2.0"
23
23
  },
24
24
  "main": "index.js",
25
25
  "module": "index.js",
@@ -4,9 +4,19 @@ import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
4
4
  import { IFileDeleteOptions, IFileOverwriteOptions, FileType, IFileWriteOptions, IFileSystemProvider, IFileSystemProviderWithFileReadWriteCapability, IStat, IWatchOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files";
5
5
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
6
6
  interface ILocalHistoryResource {
7
+ /**
8
+ * The location of the local history entry to read from.
9
+ */
7
10
  readonly location: URI;
11
+ /**
12
+ * The associated resource the local history entry is about.
13
+ */
8
14
  readonly associatedResource: URI;
9
15
  }
16
+ /**
17
+ * A wrapper around a standard file system provider
18
+ * that is entirely readonly.
19
+ */
10
20
  export declare class LocalHistoryFileSystemProvider implements IFileSystemProvider, IFileSystemProviderWithFileReadWriteCapability {
11
21
  private readonly fileService;
12
22
  static readonly SCHEMA = "vscode-local-history";
@@ -1,6 +1,12 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+
1
6
  .monaco-workbench .timeline-tree-view {
2
7
  position: relative;
3
8
  }
9
+
4
10
  .monaco-workbench .timeline-tree-view .message.timeline-subtle {
5
11
  opacity: 0.5;
6
12
  padding: 10px 22px 0 22px;
@@ -8,11 +14,13 @@
8
14
  pointer-events: none;
9
15
  z-index: 1;
10
16
  }
17
+
11
18
  .timeline-tree-view .monaco-list .monaco-list-row .custom-view-tree-node-item .monaco-icon-label {
12
19
  flex: 1;
13
20
  text-overflow: ellipsis;
14
21
  overflow: hidden;
15
22
  }
23
+
16
24
  .timeline-tree-view .monaco-list .monaco-list-row .custom-view-tree-node-item .timeline-timestamp-container {
17
25
  margin-left: 2px;
18
26
  margin-right: 4px;
@@ -20,6 +28,7 @@
20
28
  overflow: hidden;
21
29
  text-overflow: ellipsis;
22
30
  }
31
+
23
32
  .timeline-tree-view .monaco-list .monaco-list-row .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate::before {
24
33
  content: ' ';
25
34
  position: absolute;
@@ -30,18 +39,22 @@
30
39
  width: 1px;
31
40
  opacity: 0.25;
32
41
  }
42
+
33
43
  .timeline-tree-view .monaco-list .monaco-list-row:hover .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate::before,
34
44
  .timeline-tree-view .monaco-list .monaco-list-row.selected .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate::before,
35
45
  .timeline-tree-view .monaco-list .monaco-list-row.focused .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate::before {
36
46
  display: none;
37
47
  }
48
+
38
49
  .timeline-tree-view .monaco-list .monaco-list-row .custom-view-tree-node-item .timeline-timestamp-container .timeline-timestamp {
39
50
  display: inline-block;
40
51
  }
52
+
41
53
  .timeline-tree-view .monaco-list .monaco-list-row .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate .timeline-timestamp {
42
54
  visibility: hidden;
43
55
  width: 10px;
44
56
  }
57
+
45
58
  .timeline-tree-view .monaco-list .monaco-list-row:hover .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate .timeline-timestamp,
46
59
  .timeline-tree-view .monaco-list .monaco-list-row.selected .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate .timeline-timestamp,
47
60
  .timeline-tree-view .monaco-list .monaco-list-row.focused .custom-view-tree-node-item .timeline-timestamp-container.timeline-timestamp--duplicate .timeline-timestamp {