@lvce-editor/chat-debug-view 2.1.0 → 2.2.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.
|
@@ -978,7 +978,7 @@ const createDefaultState = () => {
|
|
|
978
978
|
platform: 0,
|
|
979
979
|
sessionId: '',
|
|
980
980
|
sessionIdIndexName: 'sessionId',
|
|
981
|
-
showInputEvents:
|
|
981
|
+
showInputEvents: false,
|
|
982
982
|
uid: 0,
|
|
983
983
|
uri: '',
|
|
984
984
|
width: 0,
|
|
@@ -1243,6 +1243,32 @@ const getCss = () => {
|
|
|
1243
1243
|
|
|
1244
1244
|
.ChatDebugViewEvents {
|
|
1245
1245
|
overflow: auto;
|
|
1246
|
+
scrollbar-width: thin;
|
|
1247
|
+
scrollbar-color: var(--vscode-scrollbarSlider-background, rgba(121, 121, 121, 0.4)) transparent;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.ChatDebugViewEvents::-webkit-scrollbar {
|
|
1251
|
+
width: 10px;
|
|
1252
|
+
height: 10px;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.ChatDebugViewEvents::-webkit-scrollbar-track {
|
|
1256
|
+
background: transparent;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.ChatDebugViewEvents::-webkit-scrollbar-thumb {
|
|
1260
|
+
background: var(--vscode-scrollbarSlider-background, rgba(121, 121, 121, 0.4));
|
|
1261
|
+
border-radius: 999px;
|
|
1262
|
+
border: 2px solid transparent;
|
|
1263
|
+
background-clip: content-box;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.ChatDebugViewEvents::-webkit-scrollbar-thumb:hover {
|
|
1267
|
+
background: var(--vscode-scrollbarSlider-hoverBackground, rgba(100, 100, 100, 0.7));
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.ChatDebugViewEvents::-webkit-scrollbar-thumb:active {
|
|
1271
|
+
background: var(--vscode-scrollbarSlider-activeBackground, rgba(191, 191, 191, 0.4));
|
|
1246
1272
|
}
|
|
1247
1273
|
|
|
1248
1274
|
.ChatDebugViewEvent {
|
|
@@ -1255,6 +1281,7 @@ const getCss = () => {
|
|
|
1255
1281
|
word-break: break-word;
|
|
1256
1282
|
font-family: var(--vscode-editor-font-family, monospace);
|
|
1257
1283
|
font-size: 12px;
|
|
1284
|
+
user-select: text;
|
|
1258
1285
|
}
|
|
1259
1286
|
|
|
1260
1287
|
.ChatDebugViewEmpty {
|