@sourcegraph/cody-web 0.7.0 → 0.7.1
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-Cjx_iNtn.mjs → agent.worker-B1CAn5Kx.mjs} +5 -5
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-BpZhCiRU.mjs → browser-DJC99jis.mjs} +104 -96
- package/dist/demo/App.d.ts.map +1 -1
- package/dist/{git-log-BWpOPYwA.mjs → git-log-_sHG8Csy.mjs} +2 -2
- package/dist/{index-D2gpkgry.mjs → index-BRvf0zWs.mjs} +2 -2
- package/dist/index.js +113 -23
- package/dist/{shell-DvMNfs3M.mjs → shell-BGZM4C-m.mjs} +2 -2
- package/dist/style.css +59 -10
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -205,35 +205,35 @@ html[data-ide=JetBrains] ._template-input-node_14yoh_1 {
|
|
|
205
205
|
color: var(--vscode-input-foreground);
|
|
206
206
|
opacity: 0.5;
|
|
207
207
|
}
|
|
208
|
-
._outer-
|
|
208
|
+
._outer-container_xb9w0_1 {
|
|
209
209
|
background-color: var(--vscode-sideBar-background);
|
|
210
210
|
display: flex;
|
|
211
211
|
flex-direction: column;
|
|
212
212
|
box-sizing: border-box;
|
|
213
213
|
height: 100%;
|
|
214
214
|
overflow: hidden;
|
|
215
|
+
isolation: isolate;
|
|
215
216
|
}
|
|
216
217
|
|
|
217
|
-
._error-
|
|
218
|
+
._error-container_xb9w0_11 {
|
|
218
219
|
display: flex;
|
|
219
220
|
flex-direction: column-reverse;
|
|
220
221
|
gap: 0.5rem;
|
|
221
222
|
}
|
|
222
223
|
|
|
223
|
-
.
|
|
224
|
+
._error_xb9w0_11 {
|
|
224
225
|
flex-direction: row;
|
|
225
226
|
display: flex;
|
|
226
227
|
padding: 1rem;
|
|
227
228
|
color: var(--vscode-input-foreground);
|
|
228
229
|
background-color: var(--vscode-inputValidation-errorBackground);
|
|
229
|
-
align-items: center;
|
|
230
230
|
min-height: 2rem;
|
|
231
231
|
position: relative;
|
|
232
232
|
overflow: auto;
|
|
233
233
|
align-items: baseline;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
._close-
|
|
236
|
+
._close-btn_xb9w0_29 {
|
|
237
237
|
position: absolute;
|
|
238
238
|
top: 0.65rem;
|
|
239
239
|
right: 0.25rem;
|
|
@@ -930,18 +930,67 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
930
930
|
border-bottom: solid 1px var(--vscode-inputValidation-errorBorder);
|
|
931
931
|
color: var(--vscode-foreground);
|
|
932
932
|
}
|
|
933
|
-
._tabs-
|
|
933
|
+
._tabs-container_zt8hy_1 {
|
|
934
934
|
background-color: var(--vscode-sideBar-background);
|
|
935
935
|
display: inline-flex;
|
|
936
936
|
justify-content: space-between;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
|
-
._active-
|
|
939
|
+
._active-tab_zt8hy_7 {
|
|
940
940
|
border-color: var(--vscode-button-background);
|
|
941
941
|
color: var(--vscode-button-background);
|
|
942
942
|
border-width: 1.25px;
|
|
943
943
|
}
|
|
944
944
|
|
|
945
|
+
:root {
|
|
946
|
+
--vscode-overlay-background: rgba(0, 0, 0, 0.5);
|
|
947
|
+
--vscode-modal-background: var(--vscode-sideBar-background);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
._dialog-overlay_zt8hy_1 {
|
|
951
|
+
inset: 0;
|
|
952
|
+
position: fixed;
|
|
953
|
+
background-color: var(--vscode-overlay-background);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
._dialog-content_zt8hy_1 {
|
|
957
|
+
background-color: var(--vscode-modal-background);
|
|
958
|
+
border-radius: 6px;
|
|
959
|
+
box-shadow: hsl(206 22% 7% / 35%) 0 10px 38px -10px, hsl(206 22% 7% / 20%) 0 10px 20px -15px;
|
|
960
|
+
position: fixed;
|
|
961
|
+
top: 50%;
|
|
962
|
+
left: 50%;
|
|
963
|
+
transform: translate(-50%, -50%);
|
|
964
|
+
width: 90vw;
|
|
965
|
+
max-width: 450px;
|
|
966
|
+
max-height: 85vh;
|
|
967
|
+
padding: 25px;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
._dialog-content_zt8hy_1:focus {
|
|
971
|
+
outline: none;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
._dialog-title_zt8hy_1 {
|
|
975
|
+
margin: 0;
|
|
976
|
+
font-weight: 500;
|
|
977
|
+
font-size: 17px;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
._dialog-description_zt8hy_1 {
|
|
981
|
+
margin: 10px 0 20px;
|
|
982
|
+
font-size: 15px;
|
|
983
|
+
line-height: 1.5;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
._dialog-footer_zt8hy_1 {
|
|
987
|
+
margin-top: 1.5rem;
|
|
988
|
+
width: 100%;
|
|
989
|
+
display: flex;
|
|
990
|
+
justify-content: flex-end;
|
|
991
|
+
gap: 0.5rem;
|
|
992
|
+
}
|
|
993
|
+
|
|
945
994
|
/*
|
|
946
995
|
Since this package is used only for Cody Web in Sourcegraph it's ok to
|
|
947
996
|
not include this in the cody web package since highlights styles is already
|
|
@@ -3591,15 +3640,15 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3591
3640
|
margin-top: -4px;
|
|
3592
3641
|
}
|
|
3593
3642
|
|
|
3594
|
-
.
|
|
3643
|
+
._root_maej5_2 {
|
|
3595
3644
|
display: flex;
|
|
3596
|
-
height: 100vh;
|
|
3597
3645
|
width: 100%;
|
|
3646
|
+
height: 100%;
|
|
3598
3647
|
font-size: 13px;
|
|
3599
3648
|
overflow: hidden;
|
|
3600
3649
|
}
|
|
3601
3650
|
|
|
3602
|
-
.
|
|
3651
|
+
._container_maej5_10 {
|
|
3603
3652
|
height: 100%;
|
|
3604
3653
|
flex-grow: 1;
|
|
3605
3654
|
}
|