@sourcegraph/cody-web 0.8.3 → 0.9.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/dist/{agent.worker-BRaA9Bfg.mjs → agent.worker-BkGIISm4.mjs} +24683 -18096
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-fSoJnYQE.mjs → browser-BeeBuz0g.mjs} +15508 -20505
- package/dist/{git-log-DFDYqWm8.mjs → git-log-D_9yysRz.mjs} +2 -2
- package/dist/{index-D37eXObq.mjs → index-CGvgvDrO.mjs} +2 -2
- package/dist/index.js +298 -251
- package/dist/lib/agent/shims/inline-completion-item-provider.d.ts +2 -3
- package/dist/lib/agent/shims/inline-completion-item-provider.d.ts.map +1 -1
- package/dist/{shell-CMHu3sfo.mjs → shell-06IUz87L.mjs} +3 -4
- package/dist/style.css +9 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/util-HSH4uVeM.mjs +0 -28
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
};
|
|
1
|
+
import type { Observable } from 'observable-fns';
|
|
2
|
+
export declare function createInlineCompletionItemProvider(): Observable<void>;
|
|
4
3
|
//# sourceMappingURL=inline-completion-item-provider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inline-completion-item-provider.d.ts","sourceRoot":"","sources":["../../../../lib/agent/shims/inline-completion-item-provider.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"inline-completion-item-provider.d.ts","sourceRoot":"","sources":["../../../../lib/agent/shims/inline-completion-item-provider.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAEhD,wBAAgB,kCAAkC,IAAI,UAAU,CAAC,IAAI,CAAC,CAErE"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { e as exec, o as os, a as env, w as window, p as path, b as workspace, U as Uri, l as logError } from "./agent.worker-
|
|
2
|
-
import {
|
|
3
|
-
import { w as wrapInActiveSpan, T as TokenCounterUtils, C as ContextItemSource } from "./browser-fSoJnYQE.mjs";
|
|
1
|
+
import { u as util, e as exec, o as os, a as env, w as window, p as path, b as workspace, U as Uri, l as logError } from "./agent.worker-BkGIISm4.mjs";
|
|
2
|
+
import { w as wrapInActiveSpan, T as TokenCounterUtils, C as ContextItemSource } from "./browser-BeeBuz0g.mjs";
|
|
4
3
|
var define_process_default = { env: {} };
|
|
5
|
-
const _exec =
|
|
4
|
+
const _exec = util.promisify(exec);
|
|
6
5
|
async function getContextFileFromShell(command) {
|
|
7
6
|
return wrapInActiveSpan("commands.context.command", async (span) => {
|
|
8
7
|
var _a, _b, _c;
|
package/dist/style.css
CHANGED
|
@@ -2400,6 +2400,9 @@ imported in Sourcegraph shell.
|
|
|
2400
2400
|
.tw-bg-popover {
|
|
2401
2401
|
background-color: var(--vscode-quickInput-background);
|
|
2402
2402
|
}
|
|
2403
|
+
.tw-bg-status-offline-background {
|
|
2404
|
+
background-color: var(--vscode-statusBarItem-offlineBackground);
|
|
2405
|
+
}
|
|
2403
2406
|
.tw-bg-transparent {
|
|
2404
2407
|
background-color: transparent;
|
|
2405
2408
|
}
|
|
@@ -2536,6 +2539,9 @@ imported in Sourcegraph shell.
|
|
|
2536
2539
|
.tw-text-xxs {
|
|
2537
2540
|
font-size: calc(calc(10/13)*var(--vscode-font-size));
|
|
2538
2541
|
}
|
|
2542
|
+
.tw-font-bold {
|
|
2543
|
+
font-weight: 700;
|
|
2544
|
+
}
|
|
2539
2545
|
.tw-font-medium {
|
|
2540
2546
|
font-weight: 500;
|
|
2541
2547
|
}
|
|
@@ -2596,6 +2602,9 @@ imported in Sourcegraph shell.
|
|
|
2596
2602
|
.tw-text-popover-foreground {
|
|
2597
2603
|
color: var(--vscode-dropdown-foreground);
|
|
2598
2604
|
}
|
|
2605
|
+
.tw-text-status-offline-foreground {
|
|
2606
|
+
color: var(--vscode-statusBarItem-offlineForeground);
|
|
2607
|
+
}
|
|
2599
2608
|
.tw-underline-offset-4 {
|
|
2600
2609
|
text-underline-offset: 4px;
|
|
2601
2610
|
}
|