@theia/plugin 1.75.0-next.4 → 1.75.0-next.42

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/theia.d.ts +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.75.0-next.4+6b2d0e17a",
3
+ "version": "1.75.0-next.42+a35c2a27e",
4
4
  "description": "Theia - Plugin API",
5
5
  "types": "./src/theia.d.ts",
6
6
  "publishConfig": {
@@ -32,5 +32,5 @@
32
32
  "nyc": {
33
33
  "extends": "../../configs/nyc.json"
34
34
  },
35
- "gitHead": "6b2d0e17a0d40afdda8c17600ade9c5950899871"
35
+ "gitHead": "a35c2a27e7d62cc83409f5996cbb076adc61d667"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -12751,7 +12751,12 @@ export module '@theia/plugin' {
12751
12751
  readonly timestamp?: number;
12752
12752
  readonly statistics?: SourceControlHistoryItemStatistics;
12753
12753
  readonly references?: readonly SourceControlHistoryItemRef[];
12754
- readonly tooltip?: string | MarkdownString;
12754
+ /**
12755
+ * Hover content for the history item. When several markdown strings are given, they are
12756
+ * rendered as separate sections. `command:` links are only executed if the containing
12757
+ * markdown string declares them via its `isTrusted` option.
12758
+ */
12759
+ readonly tooltip?: string | MarkdownString | MarkdownString[];
12755
12760
  }
12756
12761
 
12757
12762
  export interface SourceControlHistoryItemChange {
@@ -17470,7 +17475,7 @@ export module '@theia/plugin' {
17470
17475
  * until the cancellation is requested on the `token`.
17471
17476
  *
17472
17477
  * @param request Request information for the test run.
17473
- * @param cancellationToken Token that signals the used asked to abort the
17478
+ * @param token Token that signals the used asked to abort the
17474
17479
  * test run. If cancellation is requested on this token, all {@link TestRun}
17475
17480
  * instances associated with the request will be
17476
17481
  * automatically cancelled as well.