@theia/plugin 1.65.0-next.39 → 1.65.0-next.48
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.65.0-next.
|
|
3
|
+
"version": "1.65.0-next.48+97ec67d0a",
|
|
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": "97ec67d0aed3c2d7f9be87ca1901ac29f643be39"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ import './theia.proposed.extensionsAny';
|
|
|
31
31
|
import './theia.proposed.externalUriOpener';
|
|
32
32
|
import './theia.proposed.findTextInFiles';
|
|
33
33
|
import './theia.proposed.fsChunks';
|
|
34
|
+
import './theia.proposed.interactiveWindow';
|
|
34
35
|
import './theia.proposed.mappedEditsProvider';
|
|
35
36
|
import './theia.proposed.multiDocumentHighlightProvider';
|
|
36
37
|
import './theia.proposed.notebookCellExecutionState';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2023 Typefox and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
/*---------------------------------------------------------------------------------------------
|
|
18
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
19
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
20
|
+
*--------------------------------------------------------------------------------------------*/
|
|
21
|
+
// code copied and modified from https://github.com/microsoft/vscode/blob/1.103.2/src/vscode-dts/vscode.proposed.interactiveWindow.d.ts
|
|
22
|
+
|
|
23
|
+
export module '@theia/plugin' {
|
|
24
|
+
/**
|
|
25
|
+
* The tab represents an interactive window.
|
|
26
|
+
*/
|
|
27
|
+
export class TabInputInteractiveWindow {
|
|
28
|
+
/**
|
|
29
|
+
* The uri of the history notebook in the interactive window.
|
|
30
|
+
*/
|
|
31
|
+
readonly uri: Uri;
|
|
32
|
+
/**
|
|
33
|
+
* The uri of the input box in the interactive window.
|
|
34
|
+
*/
|
|
35
|
+
readonly inputBoxUri: Uri;
|
|
36
|
+
private constructor(uri: Uri, inputBoxUri: Uri);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface Tab {
|
|
40
|
+
readonly input: TabInputText | TabInputTextDiff | TabInputCustom | TabInputWebview | TabInputNotebook
|
|
41
|
+
| TabInputNotebookDiff | TabInputTerminal | TabInputInteractiveWindow | unknown;
|
|
42
|
+
}
|
|
43
|
+
}
|