@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.
Files changed (51) hide show
  1. package/lib/browser/components/search-in-workspace-input.js +6 -3
  2. package/lib/browser/components/search-in-workspace-input.js.map +1 -1
  3. package/lib/browser/search-in-workspace-context-key-service.js +1 -1
  4. package/lib/browser/search-in-workspace-context-key-service.js.map +1 -1
  5. package/lib/browser/search-in-workspace-factory.js +1 -1
  6. package/lib/browser/search-in-workspace-factory.js.map +1 -1
  7. package/lib/browser/search-in-workspace-frontend-contribution.js +1 -1
  8. package/lib/browser/search-in-workspace-frontend-contribution.js.map +1 -1
  9. package/lib/browser/search-in-workspace-frontend-module.js +1 -1
  10. package/lib/browser/search-in-workspace-frontend-module.js.map +1 -1
  11. package/lib/browser/search-in-workspace-label-provider.js +1 -1
  12. package/lib/browser/search-in-workspace-label-provider.js.map +1 -1
  13. package/lib/browser/search-in-workspace-preferences.js +1 -1
  14. package/lib/browser/search-in-workspace-preferences.js.map +1 -1
  15. package/lib/browser/search-in-workspace-result-tree-widget.d.ts +1 -0
  16. package/lib/browser/search-in-workspace-result-tree-widget.d.ts.map +1 -1
  17. package/lib/browser/search-in-workspace-result-tree-widget.js +17 -4
  18. package/lib/browser/search-in-workspace-result-tree-widget.js.map +1 -1
  19. package/lib/browser/search-in-workspace-service.js +1 -1
  20. package/lib/browser/search-in-workspace-service.js.map +1 -1
  21. package/lib/browser/search-in-workspace-widget.js +7 -3
  22. package/lib/browser/search-in-workspace-widget.js.map +1 -1
  23. package/lib/browser/search-layout-migrations.js +1 -1
  24. package/lib/browser/search-layout-migrations.js.map +1 -1
  25. package/lib/common/search-in-workspace-interface.d.ts +2 -2
  26. package/lib/common/search-in-workspace-interface.d.ts.map +1 -1
  27. package/lib/common/search-in-workspace-interface.js +1 -1
  28. package/lib/common/search-in-workspace-interface.js.map +1 -1
  29. package/lib/node/ripgrep-search-in-workspace-server.js +1 -1
  30. package/lib/node/ripgrep-search-in-workspace-server.js.map +1 -1
  31. package/lib/node/ripgrep-search-in-workspace-server.slow-spec.js +1 -1
  32. package/lib/node/ripgrep-search-in-workspace-server.slow-spec.js.map +1 -1
  33. package/lib/node/search-in-workspace-backend-module.js +2 -2
  34. package/lib/node/search-in-workspace-backend-module.js.map +1 -1
  35. package/package.json +10 -10
  36. package/src/browser/components/search-in-workspace-input.tsx +1 -1
  37. package/src/browser/search-in-workspace-context-key-service.ts +1 -1
  38. package/src/browser/search-in-workspace-factory.ts +1 -1
  39. package/src/browser/search-in-workspace-frontend-contribution.ts +1 -1
  40. package/src/browser/search-in-workspace-frontend-module.ts +1 -1
  41. package/src/browser/search-in-workspace-label-provider.ts +1 -1
  42. package/src/browser/search-in-workspace-preferences.ts +1 -1
  43. package/src/browser/search-in-workspace-result-tree-widget.tsx +7 -3
  44. package/src/browser/search-in-workspace-service.ts +1 -1
  45. package/src/browser/search-in-workspace-widget.tsx +2 -2
  46. package/src/browser/search-layout-migrations.ts +1 -1
  47. package/src/browser/styles/index.css +178 -168
  48. package/src/common/search-in-workspace-interface.ts +3 -3
  49. package/src/node/ripgrep-search-in-workspace-server.slow-spec.ts +1 -1
  50. package/src/node/ripgrep-search-in-workspace-server.ts +1 -1
  51. 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, JsonRpcConnectionHandler } from '@theia/core/lib/common';
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 JsonRpcConnectionHandler<SearchInWorkspaceClient>(SIW_WS_PATH, client => {
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());