@theia/plugin 1.23.0-next.27 → 1.23.0-next.28

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 (2) hide show
  1. package/package.json +2 -2
  2. package/src/theia.d.ts +11 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.23.0-next.27+40227dc34c9",
3
+ "version": "1.23.0-next.28+179b53148b7",
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": "40227dc34c90759bdb1b0930bf5e84c60260f47c"
35
+ "gitHead": "179b53148b7e5ebbdd97852fadb0711295ef7fe0"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -4553,7 +4553,7 @@ export module '@theia/plugin' {
4553
4553
  export function setStatusBarMessage(text: string, hideWhenDone: PromiseLike<any>): Disposable;
4554
4554
 
4555
4555
  /**
4556
- * Creates a status bar [item](#StatusBarItem).
4556
+ * Creates a status bar {@link StatusBarItem item}.
4557
4557
  *
4558
4558
  * @param alignment The alignment of the item.
4559
4559
  * @param priority The priority of the item. Higher values mean the item should be shown more to the left.
@@ -4561,6 +4561,16 @@ export module '@theia/plugin' {
4561
4561
  */
4562
4562
  export function createStatusBarItem(alignment?: StatusBarAlignment, priority?: number): StatusBarItem;
4563
4563
 
4564
+ /**
4565
+ * Creates a status bar {@link StatusBarItem item}.
4566
+ *
4567
+ * @param id The unique identifier of the item.
4568
+ * @param alignment The alignment of the item.
4569
+ * @param priority The priority of the item. Higher values mean the item should be shown more to the left.
4570
+ * @return A new status bar item.
4571
+ */
4572
+ export function createStatusBarItem(id: string, alignment?: StatusBarAlignment, priority?: number): StatusBarItem;
4573
+
4564
4574
  /**
4565
4575
  * Create a new [output channel](#OutputChannel) with the given name.
4566
4576
  *