@theia/plugin 1.75.0-next.3 → 1.75.0-next.34
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 +2 -2
- package/src/theia.d.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.75.0-next.
|
|
3
|
+
"version": "1.75.0-next.34+11fb66739",
|
|
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": "
|
|
35
|
+
"gitHead": "11fb667399ac7df64df9edc0c835ace6b0e88c2e"
|
|
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
|
-
|
|
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 {
|