@theia/property-view 1.56.0 → 1.57.0-next.22
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/README.md +4 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -17,6 +17,7 @@ The `@theia/property-view` extension contributes a generic, global property view
|
|
|
17
17
|
The property view widget can be opened/toggled either via menu _View->Properties_ or via shortcut <kbd>Shift+Alt+P</kbd>. It is located in the bottom dock area by default.
|
|
18
18
|
|
|
19
19
|
The following two default content widgets are implemented in this extension:
|
|
20
|
+
|
|
20
21
|
- EmptyPropertyViewWidget: If no other widget can be provided, a simple message (_No properties available_) is shown.
|
|
21
22
|
- ResourcePropertyViewWidget: Can handle `FileSelection`s and `Navigatable` selections (which provide their resource URI) and displays the general `FileStat` information (e.g. location, name, last modified) in a TreeWidget.
|
|
22
23
|
|
|
@@ -36,9 +37,11 @@ To contribute a specific property view, it is necessary to implement a `Property
|
|
|
36
37
|
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
37
38
|
|
|
38
39
|
## Trademark
|
|
40
|
+
|
|
39
41
|
"Theia" is a trademark of the Eclipse Foundation
|
|
40
|
-
https://www.eclipse.org/theia
|
|
42
|
+
<https://www.eclipse.org/theia>
|
|
41
43
|
|
|
42
44
|
## License
|
|
45
|
+
|
|
43
46
|
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
44
47
|
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/property-view",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0-next.22+35d458a96",
|
|
4
4
|
"description": "Theia - Property View Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.
|
|
7
|
-
"@theia/filesystem": "1.
|
|
6
|
+
"@theia/core": "1.57.0-next.22+35d458a96",
|
|
7
|
+
"@theia/filesystem": "1.57.0-next.22+35d458a96",
|
|
8
8
|
"tslib": "^2.6.2"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"nyc": {
|
|
46
46
|
"extends": "../../configs/nyc.json"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "35d458a961212de264d9579305d984147fa55618"
|
|
49
49
|
}
|