@theia/plugin-ext 1.69.0-next.69 → 1.69.0

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 (36) hide show
  1. package/lib/common/plugin-api-rpc.d.ts +4 -0
  2. package/lib/common/plugin-api-rpc.d.ts.map +1 -1
  3. package/lib/common/plugin-api-rpc.js.map +1 -1
  4. package/lib/main/browser/plugin-ext-frontend-module.js +2 -2
  5. package/lib/main/browser/plugin-ext-frontend-module.js.map +1 -1
  6. package/lib/main/browser/quick-open-main.d.ts.map +1 -1
  7. package/lib/main/browser/quick-open-main.js +6 -2
  8. package/lib/main/browser/quick-open-main.js.map +1 -1
  9. package/lib/main/browser/view/tree-view-decorator-service.d.ts.map +1 -1
  10. package/lib/main/browser/view/tree-view-decorator-service.js +1 -1
  11. package/lib/main/browser/view/tree-view-decorator-service.js.map +1 -1
  12. package/lib/main/node/plugin-ext-backend-module.js +1 -1
  13. package/lib/main/node/plugin-ext-backend-module.js.map +1 -1
  14. package/lib/plugin/plugin-context.d.ts.map +1 -1
  15. package/lib/plugin/plugin-context.js +1 -0
  16. package/lib/plugin/plugin-context.js.map +1 -1
  17. package/lib/plugin/quick-open.d.ts.map +1 -1
  18. package/lib/plugin/quick-open.js +2 -0
  19. package/lib/plugin/quick-open.js.map +1 -1
  20. package/lib/plugin/type-converters.d.ts.map +1 -1
  21. package/lib/plugin/type-converters.js +3 -1
  22. package/lib/plugin/type-converters.js.map +1 -1
  23. package/lib/plugin/types-impl.d.ts +5 -0
  24. package/lib/plugin/types-impl.d.ts.map +1 -1
  25. package/lib/plugin/types-impl.js +10 -4
  26. package/lib/plugin/types-impl.js.map +1 -1
  27. package/package.json +30 -30
  28. package/src/common/plugin-api-rpc.ts +2 -0
  29. package/src/main/browser/plugin-ext-frontend-module.ts +3 -3
  30. package/src/main/browser/quick-open-main.ts +6 -2
  31. package/src/main/browser/view/tree-view-decorator-service.ts +2 -2
  32. package/src/main/node/plugin-ext-backend-module.ts +2 -2
  33. package/src/plugin/plugin-context.ts +2 -0
  34. package/src/plugin/quick-open.ts +2 -0
  35. package/src/plugin/type-converters.ts +3 -1
  36. package/src/plugin/types-impl.ts +6 -0
@@ -391,6 +391,8 @@ export class QuickInputExt implements theia.QuickInput {
391
391
  iconUrl: PluginIconPath.toUrl(button.iconPath, this.plugin) ?? ThemeIcon.get(button.iconPath),
392
392
  tooltip: button.tooltip,
393
393
  handle: button === QuickInputButtons.Back ? -1 : i,
394
+ location: button.location,
395
+ toggle: button.toggle,
394
396
  }))
395
397
  });
396
398
  }
@@ -1319,7 +1319,9 @@ export function convertQuickInputButton(plugin: Plugin, button: theia.QuickInput
1319
1319
  return {
1320
1320
  handle: index,
1321
1321
  iconUrl: PluginIconPath.toUrl(iconPath, plugin) ?? ThemeIcon.get(iconPath),
1322
- tooltip: button.tooltip
1322
+ tooltip: button.tooltip,
1323
+ location: button.location,
1324
+ toggle: button.toggle
1323
1325
  };
1324
1326
  }
1325
1327
 
@@ -2227,6 +2227,12 @@ export enum CommentThreadCollapsibleState {
2227
2227
  Expanded = 1
2228
2228
  }
2229
2229
 
2230
+ export enum QuickInputButtonLocation {
2231
+ Title = 1,
2232
+ Inline = 2,
2233
+ Input = 3
2234
+ }
2235
+
2230
2236
  @es5ClassCompat
2231
2237
  export class QuickInputButtons {
2232
2238
  static readonly Back: theia.QuickInputButton = {