@theia/plugin 1.28.0-next.10 → 1.28.0-next.15

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 +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.28.0-next.10+69a4daf82ac",
3
+ "version": "1.28.0-next.15+32acfda9dc5",
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": "69a4daf82ac07c1dd1cdecb3d97e6444327a445f"
35
+ "gitHead": "32acfda9dc56f53297d5d1ccf7a1ae1446dbfa92"
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 {