@theia/plugin 1.30.0-next.13 → 1.30.0-next.14
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 +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.30.0-next.
|
|
3
|
+
"version": "1.30.0-next.14+26f9d943931",
|
|
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": "26f9d943931b67aba0a5ae0f194b3e4c19d14a62"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -2782,6 +2782,16 @@ export module '@theia/plugin' {
|
|
|
2782
2782
|
*/
|
|
2783
2783
|
clear(): void;
|
|
2784
2784
|
|
|
2785
|
+
/**
|
|
2786
|
+
* Reveal this channel in the UI.
|
|
2787
|
+
*
|
|
2788
|
+
* @deprecated Use the overload with just one parameter (`show(preserveFocus?: boolean): void`).
|
|
2789
|
+
*
|
|
2790
|
+
* @param column This argument is **deprecated** and will be ignored.
|
|
2791
|
+
* @param preserveFocus When `true` the channel will not take focus.
|
|
2792
|
+
*/
|
|
2793
|
+
show(column?: ViewColumn, preserveFocus?: boolean): void;
|
|
2794
|
+
|
|
2785
2795
|
/**
|
|
2786
2796
|
* Reveal this channel in the UI.
|
|
2787
2797
|
*
|