@sourcegraph/cody-web 0.10.0 → 0.12.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.
@@ -1,5 +1,5 @@
1
1
  import { type FunctionComponent } from 'react';
2
- import type { InitialContext } from '../types';
2
+ import type { InitialContext, CodyExternalApi } from '../types';
3
3
  import '../global-styles/styles.css';
4
4
  export interface CodyWebChatProps {
5
5
  serverEndpoint: string;
@@ -9,6 +9,13 @@ export interface CodyWebChatProps {
9
9
  initialContext?: InitialContext;
10
10
  customHeaders?: Record<string, string>;
11
11
  className?: string;
12
+ /**
13
+ * Whenever an external (imperative) Cody Chat API instance is ready,
14
+ * for example it gives you ability to run prompt, Note that this handler
15
+ * should be memoized and not change between components re-render, otherwise
16
+ * it will be stuck in infinite update loop
17
+ */
18
+ onExternalApiReady?: (api: CodyExternalApi) => void;
12
19
  }
13
20
  /**
14
21
  * The root component node for Cody Web Chat, implements Cody Agent client
@@ -1 +1 @@
1
- {"version":3,"file":"CodyWebChat.d.ts","sourceRoot":"","sources":["../../../lib/components/CodyWebChat.tsx"],"names":[],"mappings":"AACA,OAAO,EAAW,KAAK,iBAAiB,EAAsC,MAAM,OAAO,CAAA;AA0B3F,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AAK9C,OAAO,6BAA6B,CAAA;AAWpC,MAAM,WAAW,gBAAgB;IAC7B,cAAc,EAAE,MAAM,CAAA;IACtB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,iBAAiB,EAAE,MAAM,MAAM,CAAA;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACtC,SAAS,CAAC,EAAE,MAAM,CAAA;CACrB;AACD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,iBAAiB,CAAC,gBAAgB,CAqC3D,CAAA"}
1
+ {"version":3,"file":"CodyWebChat.d.ts","sourceRoot":"","sources":["../../../lib/components/CodyWebChat.tsx"],"names":[],"mappings":"AACA,OAAO,EAAW,KAAK,iBAAiB,EAAsC,MAAM,OAAO,CAAA;AA0B3F,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAK/D,OAAO,6BAA6B,CAAA;AAYpC,MAAM,WAAW,gBAAgB;IAC7B,cAAc,EAAE,MAAM,CAAA;IACtB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,iBAAiB,EAAE,MAAM,MAAM,CAAA;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACtC,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,CAAC,GAAG,EAAE,eAAe,KAAK,IAAI,CAAA;CACtD;AACD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,iBAAiB,CAAC,gBAAgB,CAuC3D,CAAA"}
@@ -1,4 +1,4 @@
1
1
  export { CodyWebChat, type CodyWebChatProps } from './components/CodyWebChat';
2
2
  export { ChatSkeleton } from './components/skeleton/ChatSkeleton';
3
- export type { Repository, InitialContext } from './types';
3
+ export type { Repository, InitialContext, CodyExternalApi } from './types';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAA;AAEjE,YAAY,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAA;AAEjE,YAAY,EAAE,UAAU,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA"}
@@ -1,3 +1,11 @@
1
+ export interface ExternalPrompt {
2
+ text: string;
3
+ autoSubmit: boolean;
4
+ mode?: 'search' | 'chat' | 'edit' | 'insert';
5
+ }
6
+ export interface CodyExternalApi {
7
+ runPrompt: (action: ExternalPrompt) => Promise<void>;
8
+ }
1
9
  export interface Repository {
2
10
  id: string;
3
11
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../lib/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;CACf;AAED,MAAM,MAAM,cAAc,GAAG;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,WAAW,EAAE,OAAO,CAAA;IACpB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,SAAS,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;CAC3D,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../lib/types.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,OAAO,CAAA;IACnB,IAAI,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAA;CAC/C;AAED,MAAM,WAAW,eAAe;IAC5B,SAAS,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CACvD;AAED,MAAM,WAAW,UAAU;IACvB,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;CACf;AAED,MAAM,MAAM,cAAc,GAAG;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,WAAW,EAAE,OAAO,CAAA;IACpB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,SAAS,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;CAC3D,CAAA"}
package/dist/style.css CHANGED
@@ -528,6 +528,25 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_15
528
528
  ._code-block_15z33_40 {
529
529
  margin-bottom: 0.25rem;
530
530
  }
531
+ ._accordion-trigger_12003_1 {
532
+ display: flex;
533
+ gap: 0.25rem;
534
+ align-items: center;
535
+ justify-content: space-between;
536
+ transition-property: all;
537
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
538
+ transition-duration: 150ms;
539
+ }
540
+
541
+ ._accordion-trigger_12003_1[data-state="open"] ._accordion-trigger-chevron_12003_11 {
542
+ transform: rotate(90deg);
543
+ }
544
+
545
+ ._accordion-trigger-chevron_12003_11 {
546
+ flex-shrink: 0; /* tw-shrink-0 */
547
+ transition-property: transform; /* tw-transition-transform */
548
+ transition-duration: 150ms; /* tw-duration-150 */
549
+ }
531
550
  ._dots-holder_10c80_1 {
532
551
  display: flex;
533
552
  gap: 0.2rem;
@@ -959,16 +978,29 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
959
978
  align-items: center;
960
979
  gap: calc(var(--spacing) / 4);
961
980
  }
962
- ._context-item_911i8_1 {
981
+ ._context-item_19lcq_1 {
963
982
  display: inline-flex;
964
983
  padding: 2px 4px 2px 2px;
965
984
  }
966
985
 
967
- ._context-item-metadata_911i8_6 {
986
+ ._context-item-metadata_19lcq_6 {
968
987
  color: var(--vscode-disabledForeground);
969
988
  padding-left: 0.1rem;
970
989
  text-wrap: nowrap;
971
990
  }
991
+
992
+ ._context-item-edit-button_19lcq_12 {
993
+ display: flex;
994
+ align-items: center;
995
+
996
+ flex-wrap: nowrap;
997
+
998
+ }
999
+
1000
+ ._context-item-edit-button-icon_19lcq_20 {
1001
+ height: 20%;
1002
+ margin-right: 0.5rem;
1003
+ }
972
1004
  ._user-avatar_1ll2x_1 {
973
1005
  isolation: isolate;
974
1006
  display: inline-flex;
@@ -993,11 +1025,11 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
993
1025
  --human-message-editor-cell-spacing-bottom: 6px;
994
1026
  }
995
1027
 
996
- ._container_16hae_6 {
1028
+ ._container_1eiqs_6 {
997
1029
  display: flex;
998
1030
  flex-direction: column;
999
1031
  gap: var(--human-message-editor-gap);
1000
- border-radius: 2px;
1032
+ border-radius: 4px;
1001
1033
  background-color: color-mix(in srgb, var(--vscode-input-background) 50%, transparent);
1002
1034
  color: var(--vscode-input-foreground);
1003
1035
  outline: solid 1px var(--vscode-input-border);
@@ -1005,21 +1037,21 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
1005
1037
  cursor: text;
1006
1038
  }
1007
1039
 
1008
- ._container_16hae_6 ._editor_16hae_17 {
1040
+ ._container_1eiqs_6 ._editor_1eiqs_17 {
1009
1041
  scrollbar-gutter: stable;
1010
1042
  padding: var(--prompt-editor-padding-y) var(--prompt-editor-padding-x);
1011
1043
  }
1012
1044
 
1013
- ._toolbar_16hae_23 {
1045
+ ._toolbar_1eiqs_23 {
1014
1046
  padding: calc(0.75*var(--prompt-editor-padding-y)) var(--prompt-editor-padding-x);
1015
1047
  overflow: hidden;
1016
1048
  }
1017
1049
 
1018
- ._container_16hae_6:not(._focused_16hae_28, [data-keep-toolbar-open]) {
1019
- --human-message-editor-gap: 0px;
1020
- }
1050
+ ._container_1eiqs_6:not(._focused_1eiqs_28, [data-keep-toolbar-open]) ._editor-content-editable_1eiqs_30 {
1051
+ min-height: 1lh;
1052
+ }
1021
1053
 
1022
- ._container_16hae_6:not(._focused_16hae_28, [data-keep-toolbar-open]) ._toolbar_16hae_23 {
1054
+ ._container_1eiqs_6:not(._focused_1eiqs_28, [data-keep-toolbar-open]) ._toolbar_1eiqs_23 {
1023
1055
  height: 0;
1024
1056
  opacity: 0;
1025
1057
  margin-top: 0;
@@ -1027,18 +1059,18 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
1027
1059
  padding: 0;
1028
1060
  }
1029
1061
 
1030
- ._container_16hae_6:hover, ._container_16hae_6:has(:focus-within, menu>button:focus) {
1062
+ ._container_1eiqs_6:hover, ._container_1eiqs_6:has(:focus-within, menu>button:focus) {
1031
1063
  background-color: var(--vscode-input-background);
1032
1064
  }
1033
1065
 
1034
1066
  /* Show focus ring when the input is focused or a toolbar button within the input container is
1035
1067
  focused, but NOT if something in a toolbar button's popover is focused. */
1036
- ._container_16hae_6:has([data-lexical-editor='true']:focus-within, menu>button:focus) {
1068
+ ._container_1eiqs_6:has([data-lexical-editor='true']:focus-within, menu>button:focus) {
1037
1069
  outline-color: var(--vscode-focusBorder);
1038
1070
  }
1039
1071
 
1040
- ._editor-content-editable_16hae_50 {
1041
- min-height: 1lh;
1072
+ ._editor-content-editable_1eiqs_30 {
1073
+ min-height: 3lh;
1042
1074
  }
1043
1075
  :root {
1044
1076
  --toolbar-button-font-size: 12px;
@@ -1168,34 +1200,34 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1168
1200
  display: none;
1169
1201
  }
1170
1202
 
1171
- ._item_1xr6n_2 {
1203
+ ._item_105bl_2 {
1172
1204
  display: flex;
1173
1205
  gap: 0.5rem;
1174
1206
  }
1175
1207
 
1176
- ._item--indicator_1xr6n_13 {
1208
+ ._item--indicator_105bl_13 {
1177
1209
  display: none !important;
1178
1210
  margin-left: auto;
1179
1211
  align-self: flex-start;
1180
1212
  }
1181
1213
 
1182
- ._item_1xr6n_2[data-selected="true"] ._item--indicator_1xr6n_13 {
1214
+ ._item_105bl_2[data-selected="true"] ._item--indicator_105bl_13 {
1183
1215
  display: block !important;
1184
1216
  color: inherit;
1185
1217
  }
1186
1218
 
1187
- ._item_1xr6n_2[data-selected="true"] ._prompt--avatar_1xr6n_18, ._item_1xr6n_2[data-selected="true"] ._prompt--description_1xr6n_18, ._item_1xr6n_2[data-selected="true"] ._prompt--icon_1xr6n_18 {
1219
+ ._item_105bl_2[data-selected="true"] ._prompt--avatar_105bl_18, ._item_105bl_2[data-selected="true"] ._prompt--description_105bl_18, ._item_105bl_2[data-selected="true"] ._prompt--icon_105bl_18 {
1188
1220
  color: inherit;
1189
1221
  }
1190
1222
 
1191
- ._prompt_1xr6n_18 {
1223
+ ._prompt_105bl_18 {
1192
1224
  display: flex;
1193
1225
  gap: 0.5rem;
1194
1226
  align-items: center;
1195
1227
  min-width: 0;
1196
1228
  }
1197
1229
 
1198
- ._prompt--avatar_1xr6n_18 {
1230
+ ._prompt--avatar_105bl_18 {
1199
1231
  flex-shrink: 0;
1200
1232
  width: 22px;
1201
1233
  height: 22px;
@@ -1204,30 +1236,31 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1204
1236
  justify-content: center;
1205
1237
  }
1206
1238
 
1207
- ._prompt--icon_1xr6n_18 {
1239
+ ._prompt--icon_105bl_18 {
1208
1240
  color: var(--vscode-input-placeholderForeground);
1209
1241
  }
1210
1242
 
1211
- ._prompt--content_1xr6n_1 {
1243
+ ._prompt--content_105bl_1 {
1212
1244
  min-width: 0;
1213
1245
  display: flex;
1214
1246
  flex-direction: column;
1215
1247
  }
1216
1248
 
1217
- ._prompt--title_1xr6n_1 {
1249
+ ._prompt--title_105bl_1 {
1218
1250
  min-width: 0;
1219
1251
  display: flex;
1220
1252
  gap: 0.25rem;
1253
+ align-items: center;
1221
1254
  }
1222
1255
 
1223
- ._prompt--name_1xr6n_1 {
1256
+ ._prompt--name_105bl_1 {
1224
1257
  white-space: nowrap;
1225
1258
  overflow: hidden;
1226
1259
  text-overflow: ellipsis;
1227
1260
  font-weight: 500;
1228
1261
  }
1229
1262
 
1230
- ._prompt--description_1xr6n_18 {
1263
+ ._prompt--description_105bl_18 {
1231
1264
  color: var(--vscode-input-placeholderForeground);
1232
1265
  white-space: nowrap;
1233
1266
  overflow: hidden;
@@ -1279,7 +1312,7 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1279
1312
  background-color: var(--vscode-dropdown-background);
1280
1313
  }
1281
1314
 
1282
- ._root_18l4i_2 {
1315
+ ._root_oxlxy_2 {
1283
1316
  display: flex;
1284
1317
  flex-direction: column;
1285
1318
  padding: 0.75rem;
@@ -1288,47 +1321,47 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1288
1321
  background-color: var(--vscode-dropdown-background);
1289
1322
  }
1290
1323
 
1291
- ._icons-header_18l4i_11 {
1324
+ ._icons-header_oxlxy_11 {
1292
1325
  display: flex;
1293
1326
  gap: 0.5rem;
1294
- margin-bottom: 0.5rem;
1327
+ margin-bottom: 0.625rem;
1295
1328
  }
1296
1329
 
1297
- ._heading_18l4i_17 {
1298
- font-size: 1rem;
1330
+ ._heading_oxlxy_17 {
1331
+ font-size: 0.875rem;
1299
1332
  font-weight: 500;
1300
- margin-bottom: 0.25rem;
1333
+ margin-bottom: 0.175rem;
1301
1334
  color: var(--vscode-dropdown-foreground);
1302
1335
  }
1303
1336
 
1304
- ._description-text_18l4i_24 {
1337
+ ._description-text_oxlxy_24 {
1305
1338
  line-height: 1rem;
1306
- margin-bottom: 0.75rem;
1339
+ margin-bottom: 0.875rem;
1307
1340
  color: var(--vscode-dropdown-foreground);
1308
1341
  }
1309
1342
 
1310
- ._actions_18l4i_30 {
1343
+ ._actions_oxlxy_30 {
1311
1344
  display: flex;
1312
1345
  flex-wrap: wrap;
1313
1346
  align-items: center;
1314
1347
  gap: 0.5rem;
1315
1348
  }
1316
1349
 
1317
- ._action_18l4i_30 {
1350
+ ._action_oxlxy_30 {
1318
1351
  flex-shrink: 0;
1319
1352
  }
1320
1353
 
1321
- ._footer_18l4i_41 {
1354
+ ._footer_oxlxy_41 {
1322
1355
  margin-top: 0.75rem;
1323
1356
  line-height: 1rem;
1324
1357
  font-size: 12px;
1325
1358
  }
1326
1359
 
1327
- ._inner-container_18l4i_47 {
1360
+ ._inner-container_oxlxy_47 {
1328
1361
  margin-top: 0.5rem;
1329
1362
  }
1330
1363
 
1331
- ._loader_18l4i_51 {
1364
+ ._loader_oxlxy_51 {
1332
1365
  width: 100%;
1333
1366
  height: 0.5rem;
1334
1367
  position: relative;
@@ -1343,14 +1376,14 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1343
1376
  transform: translateZ(0);
1344
1377
  }
1345
1378
 
1346
- ._loader-indicator_18l4i_1 {
1379
+ ._loader-indicator_oxlxy_1 {
1347
1380
  width: 100%;
1348
1381
  height: 100%;
1349
1382
  background-color: var(--vscode-button-background);
1350
1383
  transition: transform 660ms cubic-bezier(0.65, 0, 0.35, 1);
1351
1384
  }
1352
1385
 
1353
- ._error_18l4i_73 {
1386
+ ._error_oxlxy_73 {
1354
1387
  color: #de3400;
1355
1388
  background-color: #f7bcbc;
1356
1389
  line-height: 150%;
@@ -1360,7 +1393,7 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1360
1393
  font-weight: bold;
1361
1394
  }
1362
1395
 
1363
- ._close_18l4i_83 {
1396
+ ._close_oxlxy_83 {
1364
1397
  padding: 0.25rem;
1365
1398
  align-self: flex-start;
1366
1399
  margin: -0.25rem -0.25rem 0 auto;
@@ -1508,48 +1541,46 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1508
1541
  border-bottom: solid 1px var(--vscode-inputValidation-errorBorder);
1509
1542
  color: var(--vscode-foreground);
1510
1543
  }
1511
- ._welcome-footer_q2fi5_1 {
1544
+ ._welcome-footer_g0fdz_1 {
1512
1545
  padding: 1rem 1rem;
1513
1546
  display: flex;
1514
1547
  flex-flow: column nowrap;
1515
- justify-content: space-between;
1516
- align-items: center;
1517
1548
  max-width: 100%;
1518
1549
  color: var(--vscode-input-placeholderForeground)
1519
1550
  }
1520
1551
 
1521
- ._tips_q2fi5_11 {
1552
+ ._tips_g0fdz_9 {
1522
1553
  display: flex;
1523
1554
  flex-flow: column nowrap;
1524
- flex-shrink: 0;
1555
+ width: 100%;
1525
1556
  gap: 0.5rem;
1526
- padding: 1.0rem;
1557
+ padding: 1rem 0;
1527
1558
  border-bottom: 0.25px solid var(--vscode-dropdown-border);
1528
1559
  }
1529
1560
 
1530
- ._links_q2fi5_20 {
1561
+ ._links_g0fdz_18 {
1531
1562
  display: flex;
1532
- flex-shrink: none;
1533
- flex-direction: row;
1534
- padding: 1.0rem 1.5rem;
1563
+ flex-flow: row wrap;
1564
+ padding: 0.75rem 0;
1535
1565
  gap: 0.5rem;
1536
- flex-shrink: 0;
1537
- justify-content: space-around;
1538
- align-items: center;
1539
1566
  }
1540
1567
 
1541
- ._item_q2fi5_31 {
1568
+ ._item_g0fdz_25 {
1542
1569
  display: flex;
1543
1570
  flex-flow: row nowrap;
1544
1571
  flex-shrink: 0;
1572
+ padding: 0 0.5rem;
1545
1573
  gap: 0.5rem;
1546
1574
  align-items: center;
1547
1575
  }
1548
1576
 
1549
- ._link_q2fi5_20 {
1577
+ ._link_g0fdz_18 {
1550
1578
  color: inherit;
1551
1579
  text-decoration: none;
1580
+ }
1552
1581
 
1582
+ ._actions_129f5_2 {
1583
+ --vscode-keybindingLabel-foreground: currentColor;
1553
1584
  }
1554
1585
 
1555
1586
  /*
@@ -2214,6 +2245,12 @@ imported in Sourcegraph shell.
2214
2245
  margin-top: 8px;
2215
2246
  margin-bottom: 8px;
2216
2247
  }
2248
+ .-tw-mr-2 {
2249
+ margin-right: -4px;
2250
+ }
2251
+ .-tw-mr-6 {
2252
+ margin-right: -12px;
2253
+ }
2217
2254
  .tw-mb-0 {
2218
2255
  margin-bottom: 0px;
2219
2256
  }
@@ -2338,6 +2375,9 @@ imported in Sourcegraph shell.
2338
2375
  .tw-max-h-\[70vh\] {
2339
2376
  max-height: 70vh;
2340
2377
  }
2378
+ .tw-max-h-\[80vh\] {
2379
+ max-height: 80vh;
2380
+ }
2341
2381
  .tw-max-h-fit {
2342
2382
  max-height: fit-content;
2343
2383
  }
@@ -2774,10 +2814,6 @@ imported in Sourcegraph shell.
2774
2814
  padding-left: 8px;
2775
2815
  padding-right: 8px;
2776
2816
  }
2777
- .tw-px-6 {
2778
- padding-left: 12px;
2779
- padding-right: 12px;
2780
- }
2781
2817
  .tw-px-8 {
2782
2818
  padding-left: 16px;
2783
2819
  padding-right: 16px;
@@ -2990,14 +3026,6 @@ imported in Sourcegraph shell.
2990
3026
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2991
3027
  transition-duration: 150ms;
2992
3028
  }
2993
- .tw-transition-transform {
2994
- transition-property: transform;
2995
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2996
- transition-duration: 150ms;
2997
- }
2998
- .tw-duration-150 {
2999
- transition-duration: 150ms;
3000
- }
3001
3029
  .tw-duration-75 {
3002
3030
  transition-duration: 75ms;
3003
3031
  }
@@ -3527,10 +3555,6 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
3527
3555
  .\[\&\:not\(\:last-child\)\]\:tw-border-border:not(:last-child) {
3528
3556
  border-color: var(--vscode-dropdown-border);
3529
3557
  }
3530
- .\[\&\[data-state\=open\]\>svg\.lucide\]\:tw-rotate-90[data-state=open]>svg.lucide {
3531
- --tw-rotate: 90deg;
3532
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3533
- }
3534
3558
  .\[\&_\>_\*\]\:tw-flex-shrink-0 > * {
3535
3559
  flex-shrink: 0;
3536
3560
  }