@theia/filesystem 1.26.0-next.31 → 1.26.0-next.32

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.
@@ -22,7 +22,7 @@ export declare class FileTreeDecoratorAdapter implements TreeDecorator {
22
22
  protected toTailDecoration(decoration: Decoration, fontData?: TreeDecoration.FontData, bubble?: boolean): TreeDecoration.TailDecoration.AnyConcrete;
23
23
  protected propagateDecorationsByUri(child: URI, decorations: Decoration[]): void;
24
24
  /**
25
- * Sort higher priorities earier. I.e. positive number means right higher than left.
25
+ * Sort higher priorities earlier. I.e. positive number means right higher than left.
26
26
  */
27
27
  protected compareWeight(left: Decoration, right: Decoration): number;
28
28
  protected getUriForNode(node: TreeNode): string | undefined;
@@ -141,7 +141,7 @@ let FileTreeDecoratorAdapter = class FileTreeDecoratorAdapter {
141
141
  }
142
142
  }
143
143
  /**
144
- * Sort higher priorities earier. I.e. positive number means right higher than left.
144
+ * Sort higher priorities earlier. I.e. positive number means right higher than left.
145
145
  */
146
146
  compareWeight(left, right) {
147
147
  var _a, _b;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@theia/filesystem",
3
- "version": "1.26.0-next.31+9325ad123f5",
3
+ "version": "1.26.0-next.32+eb5b6688963",
4
4
  "description": "Theia - FileSystem Extension",
5
5
  "dependencies": {
6
- "@theia/core": "1.26.0-next.31+9325ad123f5",
6
+ "@theia/core": "1.26.0-next.32+eb5b6688963",
7
7
  "@types/body-parser": "^1.17.0",
8
8
  "@types/multer": "^1.4.7",
9
9
  "@types/rimraf": "^2.0.2",
@@ -68,5 +68,5 @@
68
68
  "nyc": {
69
69
  "extends": "../../configs/nyc.json"
70
70
  },
71
- "gitHead": "9325ad123f5e2b53192222cc212e76549ad1b2c2"
71
+ "gitHead": "eb5b66889636d1bd04aea3a1dddf15d68061de55"
72
72
  }
@@ -143,7 +143,7 @@ export class FileTreeDecoratorAdapter implements TreeDecorator {
143
143
  }
144
144
 
145
145
  /**
146
- * Sort higher priorities earier. I.e. positive number means right higher than left.
146
+ * Sort higher priorities earlier. I.e. positive number means right higher than left.
147
147
  */
148
148
  protected compareWeight(left: Decoration, right: Decoration): number {
149
149
  return (right.weight ?? 0) - (left.weight ?? 0);