@theia/plugin 1.33.0-next.20 → 1.33.0-next.24

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 +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.33.0-next.20+4542e033f",
3
+ "version": "1.33.0-next.24+4b9d8e69c",
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": "4542e033f4cbd4138f3258cde3eb406809b7a615"
35
+ "gitHead": "4b9d8e69ca3d35bfa6fd24e0ecda1a1057c46cb1"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -3768,6 +3768,14 @@ export module '@theia/plugin' {
3768
3768
  */
3769
3769
  readonly enableScripts?: boolean;
3770
3770
 
3771
+ /**
3772
+ * Controls whether forms are enabled in the webview content or not.
3773
+ *
3774
+ * Defaults to true if {@link WebviewOptions.enableScripts scripts are enabled}. Otherwise defaults to false.
3775
+ * Explicitly setting this property to either true or false overrides the default.
3776
+ */
3777
+ readonly enableForms?: boolean;
3778
+
3771
3779
  /**
3772
3780
  * Controls whether command uris are enabled in webview content or not.
3773
3781
  *