@theia/property-view 1.34.1 → 1.34.3

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.
Files changed (57) hide show
  1. package/LICENSE +641 -641
  2. package/README.md +44 -44
  3. package/lib/browser/empty-property-view-widget-provider.d.ts +32 -32
  4. package/lib/browser/empty-property-view-widget-provider.js +83 -83
  5. package/lib/browser/property-data-service.d.ts +28 -28
  6. package/lib/browser/property-data-service.js +19 -19
  7. package/lib/browser/property-view-content-widget.d.ts +10 -10
  8. package/lib/browser/property-view-content-widget.js +17 -17
  9. package/lib/browser/property-view-contribution.d.ts +5 -5
  10. package/lib/browser/property-view-contribution.js +48 -48
  11. package/lib/browser/property-view-frontend-module.d.ts +4 -4
  12. package/lib/browser/property-view-frontend-module.js +42 -42
  13. package/lib/browser/property-view-service.d.ts +17 -17
  14. package/lib/browser/property-view-service.js +81 -81
  15. package/lib/browser/property-view-widget-provider.d.ts +57 -57
  16. package/lib/browser/property-view-widget-provider.js +84 -84
  17. package/lib/browser/property-view-widget.d.ts +26 -26
  18. package/lib/browser/property-view-widget.js +130 -130
  19. package/lib/browser/resource-property-view/index.d.ts +1 -1
  20. package/lib/browser/resource-property-view/index.js +28 -28
  21. package/lib/browser/resource-property-view/resource-property-data-service.d.ts +17 -17
  22. package/lib/browser/resource-property-view/resource-property-data-service.js +72 -72
  23. package/lib/browser/resource-property-view/resource-property-data-service.spec.d.ts +1 -1
  24. package/lib/browser/resource-property-view/resource-property-data-service.spec.js +101 -101
  25. package/lib/browser/resource-property-view/resource-property-view-label-provider.d.ts +10 -10
  26. package/lib/browser/resource-property-view/resource-property-view-label-provider.js +60 -60
  27. package/lib/browser/resource-property-view/resource-property-view-label-provider.spec.d.ts +1 -1
  28. package/lib/browser/resource-property-view/resource-property-view-label-provider.spec.js +129 -129
  29. package/lib/browser/resource-property-view/resource-property-view-tree-container.d.ts +2 -2
  30. package/lib/browser/resource-property-view/resource-property-view-tree-container.js +43 -43
  31. package/lib/browser/resource-property-view/resource-property-view-tree-items.d.ts +27 -27
  32. package/lib/browser/resource-property-view/resource-property-view-tree-items.js +41 -41
  33. package/lib/browser/resource-property-view/resource-property-view-tree-widget.d.ts +40 -40
  34. package/lib/browser/resource-property-view/resource-property-view-tree-widget.js +188 -188
  35. package/lib/browser/resource-property-view/resource-property-view-widget-provider.d.ts +16 -16
  36. package/lib/browser/resource-property-view/resource-property-view-widget-provider.js +66 -66
  37. package/lib/package.spec.js +25 -25
  38. package/package.json +5 -5
  39. package/src/browser/empty-property-view-widget-provider.tsx +83 -83
  40. package/src/browser/property-data-service.ts +48 -48
  41. package/src/browser/property-view-content-widget.ts +27 -27
  42. package/src/browser/property-view-contribution.ts +36 -36
  43. package/src/browser/property-view-frontend-module.ts +47 -47
  44. package/src/browser/property-view-service.ts +62 -62
  45. package/src/browser/property-view-widget-provider.ts +112 -112
  46. package/src/browser/property-view-widget.tsx +118 -118
  47. package/src/browser/resource-property-view/index.ts +17 -17
  48. package/src/browser/resource-property-view/resource-property-data-service.spec.ts +127 -127
  49. package/src/browser/resource-property-view/resource-property-data-service.ts +64 -64
  50. package/src/browser/resource-property-view/resource-property-view-label-provider.spec.ts +153 -153
  51. package/src/browser/resource-property-view/resource-property-view-label-provider.ts +49 -49
  52. package/src/browser/resource-property-view/resource-property-view-tree-container.ts +47 -47
  53. package/src/browser/resource-property-view/resource-property-view-tree-items.ts +53 -53
  54. package/src/browser/resource-property-view/resource-property-view-tree-widget.tsx +219 -219
  55. package/src/browser/resource-property-view/resource-property-view-widget-provider.ts +55 -55
  56. package/src/browser/style/property-view.css +51 -51
  57. package/src/package.spec.ts +29 -29
@@ -1,29 +1,29 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2020 EclipseSource 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 WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- /* note: this bogus test file is required so that
18
- we are able to run mocha unit tests on this
19
- package, without having any actual unit tests in it.
20
- This way a coverage report will be generated,
21
- showing 0% coverage, instead of no report.
22
- This file can be removed once we have real unit
23
- tests in place. */
24
-
25
- describe('property-view package', () => {
26
-
27
- it('support code coverage statistics', () => true);
28
-
29
- });
1
+ // *****************************************************************************
2
+ // Copyright (C) 2020 EclipseSource 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 WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ /* note: this bogus test file is required so that
18
+ we are able to run mocha unit tests on this
19
+ package, without having any actual unit tests in it.
20
+ This way a coverage report will be generated,
21
+ showing 0% coverage, instead of no report.
22
+ This file can be removed once we have real unit
23
+ tests in place. */
24
+
25
+ describe('property-view package', () => {
26
+
27
+ it('support code coverage statistics', () => true);
28
+
29
+ });