@theia/plugin 1.28.0-next.13 → 1.28.0-next.18
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 +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.28.0-next.
|
|
3
|
+
"version": "1.28.0-next.18+22f698bd56a",
|
|
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": "22f698bd56a43f72da15bff0841de1914557684f"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -9609,6 +9609,11 @@ export module '@theia/plugin' {
|
|
|
9609
9609
|
* A string to show as place holder in the input box to guide the user.
|
|
9610
9610
|
*/
|
|
9611
9611
|
placeholder: string;
|
|
9612
|
+
|
|
9613
|
+
/**
|
|
9614
|
+
* Controls whether the input box is visible (default is true).
|
|
9615
|
+
*/
|
|
9616
|
+
visible: boolean;
|
|
9612
9617
|
}
|
|
9613
9618
|
|
|
9614
9619
|
interface QuickDiffProvider {
|