@theia/search-in-workspace 1.45.1 → 1.46.0-next.106
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/search-in-workspace-context-key-service.js +8 -16
- package/lib/browser/search-in-workspace-context-key-service.js.map +1 -1
- package/lib/browser/search-in-workspace-factory.js +6 -14
- package/lib/browser/search-in-workspace-factory.js.map +1 -1
- package/lib/browser/search-in-workspace-frontend-contribution.d.ts +2 -0
- package/lib/browser/search-in-workspace-frontend-contribution.d.ts.map +1 -1
- package/lib/browser/search-in-workspace-frontend-contribution.js +55 -29
- package/lib/browser/search-in-workspace-frontend-contribution.js.map +1 -1
- package/lib/browser/search-in-workspace-label-provider.js +4 -12
- package/lib/browser/search-in-workspace-label-provider.js.map +1 -1
- package/lib/browser/search-in-workspace-result-tree-widget.d.ts +5 -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 +105 -43
- package/lib/browser/search-in-workspace-result-tree-widget.js.map +1 -1
- package/lib/browser/search-in-workspace-service.js +15 -23
- package/lib/browser/search-in-workspace-service.js.map +1 -1
- package/lib/browser/search-in-workspace-widget.js +18 -26
- package/lib/browser/search-in-workspace-widget.js.map +1 -1
- package/lib/browser/search-layout-migrations.js +2 -7
- package/lib/browser/search-layout-migrations.js.map +1 -1
- package/lib/node/ripgrep-search-in-workspace-server.js +8 -19
- 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/package.json +11 -10
- package/src/browser/search-in-workspace-frontend-contribution.ts +36 -0
- package/src/browser/search-in-workspace-result-tree-widget.tsx +73 -0
- package/src/node/ripgrep-search-in-workspace-server.slow-spec.ts +1 -1
- package/src/node/ripgrep-search-in-workspace-server.ts +1 -1
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
import { Container } from '@theia/core/shared/inversify';
|
|
18
18
|
import { ILogger, isWindows } from '@theia/core';
|
|
19
|
-
import { FileUri } from '@theia/core/lib/
|
|
19
|
+
import { FileUri } from '@theia/core/lib/common/file-uri';
|
|
20
20
|
import { MockLogger } from '@theia/core/lib/common/test/mock-logger';
|
|
21
21
|
import { RawProcessFactory, RawProcessOptions, RawProcess, ProcessManager } from '@theia/process/lib/node';
|
|
22
22
|
import { RipgrepSearchInWorkspaceServer, RgPath } from './ripgrep-search-in-workspace-server';
|
|
@@ -18,7 +18,7 @@ import * as fs from '@theia/core/shared/fs-extra';
|
|
|
18
18
|
import * as path from 'path';
|
|
19
19
|
import { ILogger } from '@theia/core';
|
|
20
20
|
import { RawProcess, RawProcessFactory, RawProcessOptions } from '@theia/process/lib/node';
|
|
21
|
-
import { FileUri } from '@theia/core/lib/
|
|
21
|
+
import { FileUri } from '@theia/core/lib/common/file-uri';
|
|
22
22
|
import URI from '@theia/core/lib/common/uri';
|
|
23
23
|
import { inject, injectable } from '@theia/core/shared/inversify';
|
|
24
24
|
import { SearchInWorkspaceServer, SearchInWorkspaceOptions, SearchInWorkspaceResult, SearchInWorkspaceClient, LinePreview } from '../common/search-in-workspace-interface';
|