@theia/plugin-ext 1.27.0-next.22 → 1.27.0-next.25

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 (35) hide show
  1. package/lib/common/connection.d.ts +7 -10
  2. package/lib/common/connection.d.ts.map +1 -1
  3. package/lib/common/connection.js +9 -19
  4. package/lib/common/connection.js.map +1 -1
  5. package/lib/common/plugin-api-rpc.d.ts +5 -1
  6. package/lib/common/plugin-api-rpc.d.ts.map +1 -1
  7. package/lib/common/plugin-api-rpc.js.map +1 -1
  8. package/lib/main/browser/debug/plugin-debug-session-factory.d.ts +3 -3
  9. package/lib/main/browser/debug/plugin-debug-session-factory.d.ts.map +1 -1
  10. package/lib/main/browser/debug/plugin-debug-session-factory.js.map +1 -1
  11. package/lib/main/browser/view/plugin-tree-view-node-label-provider.d.ts.map +1 -1
  12. package/lib/main/browser/view/plugin-tree-view-node-label-provider.js +7 -5
  13. package/lib/main/browser/view/plugin-tree-view-node-label-provider.js.map +1 -1
  14. package/lib/main/browser/view/tree-view-widget.d.ts +4 -2
  15. package/lib/main/browser/view/tree-view-widget.d.ts.map +1 -1
  16. package/lib/main/browser/view/tree-view-widget.js +18 -5
  17. package/lib/main/browser/view/tree-view-widget.js.map +1 -1
  18. package/lib/plugin/node/debug/plugin-debug-adapter-session.d.ts +2 -2
  19. package/lib/plugin/node/debug/plugin-debug-adapter-session.d.ts.map +1 -1
  20. package/lib/plugin/node/debug/plugin-debug-adapter-session.js.map +1 -1
  21. package/lib/plugin/tree/tree-views.js +3 -3
  22. package/lib/plugin/tree/tree-views.js.map +1 -1
  23. package/lib/plugin/types-impl.d.ts +1 -0
  24. package/lib/plugin/types-impl.d.ts.map +1 -1
  25. package/lib/plugin/types-impl.js +3 -2
  26. package/lib/plugin/types-impl.js.map +1 -1
  27. package/package.json +24 -24
  28. package/src/common/connection.ts +16 -29
  29. package/src/common/plugin-api-rpc.ts +6 -1
  30. package/src/main/browser/debug/plugin-debug-session-factory.ts +2 -2
  31. package/src/main/browser/view/plugin-tree-view-node-label-provider.ts +7 -5
  32. package/src/main/browser/view/tree-view-widget.tsx +18 -7
  33. package/src/plugin/node/debug/plugin-debug-adapter-session.ts +2 -2
  34. package/src/plugin/tree/tree-views.ts +3 -3
  35. package/src/plugin/types-impl.ts +1 -1
@@ -732,7 +732,7 @@ export class ThemeIcon {
732
732
 
733
733
  static readonly Folder: ThemeIcon = new ThemeIcon('folder');
734
734
 
735
- private constructor(public id: string) {
735
+ private constructor(public id: string, public color?: ThemeColor) {
736
736
  }
737
737
 
738
738
  }