@theia/search-in-workspace 1.37.0-next.4 → 1.37.0-next.5
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.
|
@@ -78,8 +78,8 @@ let SearchInWorkspaceWidget = SearchInWorkspaceWidget_1 = class SearchInWorkspac
|
|
|
78
78
|
this.updateReplaceTerm = (e) => this.doUpdateReplaceTerm(e);
|
|
79
79
|
this.handleFocusReplaceInputBox = () => this.contextKeyService.setReplaceInputBoxFocus(true);
|
|
80
80
|
this.handleBlurReplaceInputBox = () => this.contextKeyService.setReplaceInputBoxFocus(false);
|
|
81
|
-
this.handleFocusIncludesInputBox = () => this.contextKeyService.
|
|
82
|
-
this.handleBlurIncludesInputBox = () => this.contextKeyService.
|
|
81
|
+
this.handleFocusIncludesInputBox = () => this.contextKeyService.setPatternIncludesInputBoxFocus(true);
|
|
82
|
+
this.handleBlurIncludesInputBox = () => this.contextKeyService.setPatternIncludesInputBoxFocus(false);
|
|
83
83
|
this.handleFocusExcludesInputBox = () => this.contextKeyService.setPatternExcludesInputBoxFocus(true);
|
|
84
84
|
this.handleBlurExcludesInputBox = () => this.contextKeyService.setPatternExcludesInputBoxFocus(false);
|
|
85
85
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/search-in-workspace",
|
|
3
|
-
"version": "1.37.0-next.
|
|
3
|
+
"version": "1.37.0-next.5+ceb48a5b4",
|
|
4
4
|
"description": "Theia - Search in workspace",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.37.0-next.
|
|
7
|
-
"@theia/editor": "1.37.0-next.
|
|
8
|
-
"@theia/filesystem": "1.37.0-next.
|
|
9
|
-
"@theia/navigator": "1.37.0-next.
|
|
10
|
-
"@theia/process": "1.37.0-next.
|
|
11
|
-
"@theia/workspace": "1.37.0-next.
|
|
6
|
+
"@theia/core": "1.37.0-next.5+ceb48a5b4",
|
|
7
|
+
"@theia/editor": "1.37.0-next.5+ceb48a5b4",
|
|
8
|
+
"@theia/filesystem": "1.37.0-next.5+ceb48a5b4",
|
|
9
|
+
"@theia/navigator": "1.37.0-next.5+ceb48a5b4",
|
|
10
|
+
"@theia/process": "1.37.0-next.5+ceb48a5b4",
|
|
11
|
+
"@theia/workspace": "1.37.0-next.5+ceb48a5b4",
|
|
12
12
|
"@vscode/ripgrep": "^1.14.2",
|
|
13
13
|
"minimatch": "^5.1.0"
|
|
14
14
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@theia/ext-scripts": "1.36.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "ceb48a5b4f830ba9bca3e5996e4685a96a53e5a2"
|
|
52
52
|
}
|
|
@@ -652,8 +652,8 @@ export class SearchInWorkspaceWidget extends BaseWidget implements StatefulWidge
|
|
|
652
652
|
</div>;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
protected handleFocusIncludesInputBox = () => this.contextKeyService.
|
|
656
|
-
protected handleBlurIncludesInputBox = () => this.contextKeyService.
|
|
655
|
+
protected handleFocusIncludesInputBox = () => this.contextKeyService.setPatternIncludesInputBoxFocus(true);
|
|
656
|
+
protected handleBlurIncludesInputBox = () => this.contextKeyService.setPatternIncludesInputBoxFocus(false);
|
|
657
657
|
|
|
658
658
|
protected handleFocusExcludesInputBox = () => this.contextKeyService.setPatternExcludesInputBoxFocus(true);
|
|
659
659
|
protected handleBlurExcludesInputBox = () => this.contextKeyService.setPatternExcludesInputBoxFocus(false);
|