@theia/plugin 1.19.0 → 1.21.0-next.13
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 +3 -3
- package/src/theia-proposed.d.ts +2 -2
- package/src/theia.d.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0-next.13+afcf799cca0",
|
|
4
4
|
"description": "Theia - Plugin API",
|
|
5
5
|
"types": "./src/theia.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"watch": "theiaext watch"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@theia/ext-scripts": "1.
|
|
30
|
+
"@theia/ext-scripts": "1.20.0"
|
|
31
31
|
},
|
|
32
32
|
"nyc": {
|
|
33
33
|
"extends": "../../configs/nyc.json"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "afcf799cca07f3cabb4c8da984b774ab361f494c"
|
|
36
36
|
}
|
package/src/theia-proposed.d.ts
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* This is the place for API experiments and proposals.
|
|
21
21
|
* These API are NOT stable and subject to change. Use it on own risk.
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
export module '@theia/plugin' {
|
|
24
24
|
// #region auth provider
|
|
25
25
|
|
|
26
26
|
/**
|
|
@@ -557,7 +557,7 @@ declare module '@theia/plugin' {
|
|
|
557
557
|
* Handle when the underlying resource for a custom editor is renamed.
|
|
558
558
|
*
|
|
559
559
|
* This allows the webview for the editor be preserved throughout the rename. If this method is not implemented,
|
|
560
|
-
* Theia will
|
|
560
|
+
* Theia will destroy the previous custom editor and create a replacement one.
|
|
561
561
|
*
|
|
562
562
|
* @param newDocument New text document to use for the custom editor.
|
|
563
563
|
* @param existingWebviewPanel Webview panel for the custom editor.
|
package/src/theia.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ import './theia-proposed';
|
|
|
25
25
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
26
26
|
/* eslint-disable max-len */
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
export module '@theia/plugin' {
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
31
|
* The version of the Theia API.
|
|
@@ -11047,4 +11047,3 @@ declare module '@theia/plugin' {
|
|
|
11047
11047
|
export const onDidChangeSessions: Event<AuthenticationSessionsChangeEvent>;
|
|
11048
11048
|
}
|
|
11049
11049
|
}
|
|
11050
|
-
|