@theia/plugin 1.71.0-next.6 → 1.71.0-next.72
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.
|
|
3
|
+
"version": "1.71.0-next.72+95c8dba0e",
|
|
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": "95c8dba0ee6349c6be262ac2cf383909a3b62761"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -2844,7 +2844,7 @@ export module '@theia/plugin' {
|
|
|
2844
2844
|
* @param id id of the icon. The available icons are listed in https://code.visualstudio.com/api/references/icons-in-labels#icon-listing.
|
|
2845
2845
|
* @param color optional `ThemeColor` for the icon. The color is currently only used in {@link TreeItem}.
|
|
2846
2846
|
*/
|
|
2847
|
-
|
|
2847
|
+
constructor(id: string, color?: ThemeColor);
|
|
2848
2848
|
}
|
|
2849
2849
|
|
|
2850
2850
|
/**
|
|
@@ -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
|
|
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(
|
|
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
|
}
|