@theia/search-in-workspace 1.39.0-next.9 → 1.40.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.
- package/lib/browser/components/search-in-workspace-input.js +6 -3
- package/lib/browser/components/search-in-workspace-input.js.map +1 -1
- package/lib/browser/search-in-workspace-context-key-service.js +1 -1
- package/lib/browser/search-in-workspace-context-key-service.js.map +1 -1
- package/lib/browser/search-in-workspace-factory.js +1 -1
- package/lib/browser/search-in-workspace-factory.js.map +1 -1
- package/lib/browser/search-in-workspace-frontend-contribution.js +1 -1
- package/lib/browser/search-in-workspace-frontend-contribution.js.map +1 -1
- package/lib/browser/search-in-workspace-frontend-module.js +1 -1
- package/lib/browser/search-in-workspace-frontend-module.js.map +1 -1
- package/lib/browser/search-in-workspace-label-provider.js +1 -1
- package/lib/browser/search-in-workspace-label-provider.js.map +1 -1
- package/lib/browser/search-in-workspace-preferences.js +1 -1
- package/lib/browser/search-in-workspace-preferences.js.map +1 -1
- package/lib/browser/search-in-workspace-result-tree-widget.d.ts +1 -0
- package/lib/browser/search-in-workspace-result-tree-widget.d.ts.map +1 -1
- package/lib/browser/search-in-workspace-result-tree-widget.js +17 -4
- package/lib/browser/search-in-workspace-result-tree-widget.js.map +1 -1
- package/lib/browser/search-in-workspace-service.js +1 -1
- package/lib/browser/search-in-workspace-service.js.map +1 -1
- package/lib/browser/search-in-workspace-widget.js +7 -3
- package/lib/browser/search-in-workspace-widget.js.map +1 -1
- package/lib/browser/search-layout-migrations.js +1 -1
- package/lib/browser/search-layout-migrations.js.map +1 -1
- package/lib/common/search-in-workspace-interface.d.ts +2 -2
- package/lib/common/search-in-workspace-interface.d.ts.map +1 -1
- package/lib/common/search-in-workspace-interface.js +1 -1
- package/lib/common/search-in-workspace-interface.js.map +1 -1
- package/lib/node/ripgrep-search-in-workspace-server.js +1 -1
- package/lib/node/ripgrep-search-in-workspace-server.js.map +1 -1
- package/lib/node/ripgrep-search-in-workspace-server.slow-spec.js +1 -1
- package/lib/node/ripgrep-search-in-workspace-server.slow-spec.js.map +1 -1
- package/lib/node/search-in-workspace-backend-module.js +2 -2
- package/lib/node/search-in-workspace-backend-module.js.map +1 -1
- package/package.json +10 -10
- package/src/browser/components/search-in-workspace-input.tsx +1 -1
- package/src/browser/search-in-workspace-context-key-service.ts +1 -1
- package/src/browser/search-in-workspace-factory.ts +1 -1
- package/src/browser/search-in-workspace-frontend-contribution.ts +1 -1
- package/src/browser/search-in-workspace-frontend-module.ts +1 -1
- package/src/browser/search-in-workspace-label-provider.ts +1 -1
- package/src/browser/search-in-workspace-preferences.ts +1 -1
- package/src/browser/search-in-workspace-result-tree-widget.tsx +7 -3
- package/src/browser/search-in-workspace-service.ts +1 -1
- package/src/browser/search-in-workspace-widget.tsx +2 -2
- package/src/browser/search-layout-migrations.ts +1 -1
- package/src/browser/styles/index.css +178 -168
- package/src/common/search-in-workspace-interface.ts +3 -3
- package/src/node/ripgrep-search-in-workspace-server.slow-spec.ts +1 -1
- package/src/node/ripgrep-search-in-workspace-server.ts +1 -1
- package/src/node/search-in-workspace-backend-module.ts +3 -3
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
// with the GNU Classpath Exception which is available at
|
|
12
12
|
// https://www.gnu.org/software/classpath/license.html.
|
|
13
13
|
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
15
|
// *****************************************************************************
|
|
16
16
|
|
|
17
17
|
import { ContainerModule } from '@theia/core/shared/inversify';
|
|
18
|
-
import { ConnectionHandler,
|
|
18
|
+
import { ConnectionHandler, RpcConnectionHandler } from '@theia/core/lib/common';
|
|
19
19
|
import { SearchInWorkspaceServer, SearchInWorkspaceClient, SIW_WS_PATH } from '../common/search-in-workspace-interface';
|
|
20
20
|
import { RipgrepSearchInWorkspaceServer, RgPath } from './ripgrep-search-in-workspace-server';
|
|
21
21
|
import { rgPath } from '@vscode/ripgrep';
|
|
@@ -23,7 +23,7 @@ import { rgPath } from '@vscode/ripgrep';
|
|
|
23
23
|
export default new ContainerModule(bind => {
|
|
24
24
|
bind(SearchInWorkspaceServer).to(RipgrepSearchInWorkspaceServer);
|
|
25
25
|
bind(ConnectionHandler).toDynamicValue(ctx =>
|
|
26
|
-
new
|
|
26
|
+
new RpcConnectionHandler<SearchInWorkspaceClient>(SIW_WS_PATH, client => {
|
|
27
27
|
const server = ctx.container.get<SearchInWorkspaceServer>(SearchInWorkspaceServer);
|
|
28
28
|
server.setClient(client);
|
|
29
29
|
client.onDidCloseConnection(() => server.dispose());
|