@theia/plugin 1.71.0-next.36 → 1.71.0-next.41

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.71.0-next.36+d93a0bb1a",
3
+ "version": "1.71.0-next.41+0c2a28923",
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": "d93a0bb1abcecbe4da7d25a0250918080375bd7d"
35
+ "gitHead": "0c2a289231e3c0186367d33cbe2d357ddb437ef3"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -8182,10 +8182,8 @@ export module '@theia/plugin' {
8182
8182
  * A glob pattern that filters the file events on their absolute path must be provided. Optionally,
8183
8183
  * flags to ignore certain kinds of events can be provided. To stop listening to events the watcher must be disposed.
8184
8184
  *
8185
- * *Note* that only files within the current {@link workspace.workspaceFolders workspace folders} can be watched.
8186
- *
8187
8185
  * @param globPattern A {@link GlobPattern glob pattern} that is applied to the absolute paths of created, changed,
8188
- * and deleted files. Use a {@link RelativePattern relative pattern} to limit events to a certain {@link WorkspaceFolder workspace folder}.
8186
+ * and deleted files. Use a {@link RelativePattern relative pattern} to limit events to a certain folder.
8189
8187
  * @param ignoreCreateEvents Ignore when files have been created.
8190
8188
  * @param ignoreChangeEvents Ignore when files have been changed.
8191
8189
  * @param ignoreDeleteEvents Ignore when files have been deleted.
@@ -51,6 +51,13 @@ export module '@theia/plugin' {
51
51
  }
52
52
 
53
53
  export namespace scm {
54
- export function createSourceControl(id: string, label: string, rootUri?: Uri, iconPath?: IconPath, parent?: SourceControl): SourceControl;
54
+ export function createSourceControl(
55
+ id: string,
56
+ label: string,
57
+ rootUri?: Uri,
58
+ iconPath?: IconPath,
59
+ isHidden?: boolean,
60
+ parent?: SourceControl
61
+ ): SourceControl;
55
62
  }
56
63
  }