@theia/filesystem 1.26.0-next.31 → 1.26.0-next.34
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "1.26.0-next.34+1732179729e",
|
|
4
4
|
"description": "Theia - FileSystem Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.26.0-next.
|
|
6
|
+
"@theia/core": "1.26.0-next.34+1732179729e",
|
|
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": "
|
|
71
|
+
"gitHead": "1732179729e06b15c54e9dad0820704c37a77d5d"
|
|
72
72
|
}
|
|
@@ -143,7 +143,7 @@ export class FileTreeDecoratorAdapter implements TreeDecorator {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
* Sort higher priorities
|
|
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);
|