@dahawa/hawa-code 1.42.3 → 2.0.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/cli.js +764 -758
- package/hands.js +688 -684
- package/hawa.js +1 -1
- package/package.json +1 -1
- package/webServer/app.js +27 -27
- package/webServer/style.css +26 -3
package/webServer/style.css
CHANGED
|
@@ -228,6 +228,18 @@ html, body {
|
|
|
228
228
|
font-weight: 600;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
.message-tool-use .tool-status-loading {
|
|
232
|
+
display: inline-block;
|
|
233
|
+
width: 10px;
|
|
234
|
+
height: 10px;
|
|
235
|
+
border: 2px solid var(--accent-green);
|
|
236
|
+
border-top-color: transparent;
|
|
237
|
+
border-radius: 50%;
|
|
238
|
+
animation: spin 1s linear infinite;
|
|
239
|
+
margin-right: 6px;
|
|
240
|
+
vertical-align: middle;
|
|
241
|
+
}
|
|
242
|
+
|
|
231
243
|
.message-tool-use .tool-input {
|
|
232
244
|
font-size: 11px;
|
|
233
245
|
color: var(--text-dimmed);
|
|
@@ -903,10 +915,21 @@ html, body {
|
|
|
903
915
|
}
|
|
904
916
|
|
|
905
917
|
.setting-row {
|
|
906
|
-
display:
|
|
918
|
+
display: grid;
|
|
919
|
+
grid-template-columns: minmax(120px, 160px) 1fr;
|
|
907
920
|
align-items: center;
|
|
908
|
-
|
|
909
|
-
|
|
921
|
+
gap: 12px;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.setting-row > *:last-child {
|
|
925
|
+
justify-self: start;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.setting-row > .setting-input,
|
|
929
|
+
.setting-row > .setting-select {
|
|
930
|
+
width: 100%;
|
|
931
|
+
min-width: 0;
|
|
932
|
+
justify-self: stretch;
|
|
910
933
|
}
|
|
911
934
|
|
|
912
935
|
.setting-key {
|