@dahawa/hawa-code 2.2.0 → 2.2.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 +656 -654
- package/hands.js +577 -575
- package/package.json +1 -1
- package/webServer/app.js +45 -43
- package/webServer/style.css +158 -0
package/webServer/style.css
CHANGED
|
@@ -2209,3 +2209,161 @@ html, body {
|
|
|
2209
2209
|
.plan-mode-inline-actions button:last-of-type:hover:not(:disabled) {
|
|
2210
2210
|
background: rgba(239, 83, 80, 0.1);
|
|
2211
2211
|
}
|
|
2212
|
+
|
|
2213
|
+
/* Plugins setting */
|
|
2214
|
+
.plugins-setting {
|
|
2215
|
+
display: flex;
|
|
2216
|
+
flex-direction: column;
|
|
2217
|
+
gap: 16px;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.plugins-section {
|
|
2221
|
+
border: 1px solid var(--border-color);
|
|
2222
|
+
border-radius: 4px;
|
|
2223
|
+
padding: 12px;
|
|
2224
|
+
background: rgba(0, 0, 0, 0.15);
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
.setting-section-subtitle {
|
|
2228
|
+
font-size: 12px;
|
|
2229
|
+
font-weight: 600;
|
|
2230
|
+
color: var(--accent-blue);
|
|
2231
|
+
margin-bottom: 12px;
|
|
2232
|
+
text-transform: uppercase;
|
|
2233
|
+
letter-spacing: 0.5px;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.plugins-list {
|
|
2237
|
+
display: flex;
|
|
2238
|
+
flex-direction: column;
|
|
2239
|
+
gap: 8px;
|
|
2240
|
+
margin-top: 12px;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.plugin-row {
|
|
2244
|
+
display: flex;
|
|
2245
|
+
align-items: center;
|
|
2246
|
+
justify-content: space-between;
|
|
2247
|
+
gap: 12px;
|
|
2248
|
+
padding: 8px 10px;
|
|
2249
|
+
border: 1px solid var(--border-color);
|
|
2250
|
+
border-radius: 3px;
|
|
2251
|
+
background: var(--bg-secondary);
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
.plugin-info {
|
|
2255
|
+
min-width: 0;
|
|
2256
|
+
flex: 1;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.plugin-name {
|
|
2260
|
+
font-weight: 600;
|
|
2261
|
+
color: var(--text-primary);
|
|
2262
|
+
white-space: nowrap;
|
|
2263
|
+
overflow: hidden;
|
|
2264
|
+
text-overflow: ellipsis;
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
.plugin-meta {
|
|
2268
|
+
font-size: 11px;
|
|
2269
|
+
color: var(--text-dimmed);
|
|
2270
|
+
white-space: nowrap;
|
|
2271
|
+
overflow: hidden;
|
|
2272
|
+
text-overflow: ellipsis;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.plugin-actions {
|
|
2276
|
+
display: flex;
|
|
2277
|
+
gap: 6px;
|
|
2278
|
+
flex-shrink: 0;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
.setting-button {
|
|
2282
|
+
padding: 4px 10px;
|
|
2283
|
+
background: var(--bg-secondary);
|
|
2284
|
+
border: 1px solid var(--accent-blue);
|
|
2285
|
+
color: var(--accent-blue);
|
|
2286
|
+
border-radius: 3px;
|
|
2287
|
+
cursor: pointer;
|
|
2288
|
+
font-family: var(--font-mono);
|
|
2289
|
+
font-size: 11px;
|
|
2290
|
+
transition: all 0.15s ease;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.setting-button:hover:not(:disabled) {
|
|
2294
|
+
background: rgba(79, 195, 247, 0.1);
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
.setting-button:disabled {
|
|
2298
|
+
opacity: 0.5;
|
|
2299
|
+
cursor: not-allowed;
|
|
2300
|
+
border-color: var(--text-dimmed);
|
|
2301
|
+
color: var(--text-dimmed);
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.setting-button-small {
|
|
2305
|
+
padding: 3px 8px;
|
|
2306
|
+
background: transparent;
|
|
2307
|
+
border: 1px solid var(--border-color);
|
|
2308
|
+
color: var(--text-secondary);
|
|
2309
|
+
border-radius: 3px;
|
|
2310
|
+
cursor: pointer;
|
|
2311
|
+
font-family: var(--font-mono);
|
|
2312
|
+
font-size: 10px;
|
|
2313
|
+
transition: all 0.15s ease;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.setting-button-small:hover {
|
|
2317
|
+
border-color: var(--accent-blue);
|
|
2318
|
+
color: var(--accent-blue);
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
.setting-loading,
|
|
2322
|
+
.setting-empty {
|
|
2323
|
+
font-size: 12px;
|
|
2324
|
+
color: var(--text-dimmed);
|
|
2325
|
+
padding: 8px 0;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.setting-success {
|
|
2329
|
+
font-size: 12px;
|
|
2330
|
+
color: var(--accent-green);
|
|
2331
|
+
padding: 8px 10px;
|
|
2332
|
+
border: 1px solid var(--accent-green);
|
|
2333
|
+
border-radius: 3px;
|
|
2334
|
+
background: rgba(129, 199, 132, 0.1);
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
.setting-error {
|
|
2338
|
+
font-size: 12px;
|
|
2339
|
+
color: var(--accent-red);
|
|
2340
|
+
padding: 8px 10px;
|
|
2341
|
+
border: 1px solid var(--accent-red);
|
|
2342
|
+
border-radius: 3px;
|
|
2343
|
+
background: rgba(239, 83, 80, 0.1);
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.flex-grow {
|
|
2347
|
+
flex: 1;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.plugin-input-row {
|
|
2351
|
+
display: flex;
|
|
2352
|
+
width: 100%;
|
|
2353
|
+
margin-bottom: 8px;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.plugin-input-row .plugin-input,
|
|
2357
|
+
.plugin-input-row .setting-input {
|
|
2358
|
+
width: 100%;
|
|
2359
|
+
flex: 1;
|
|
2360
|
+
min-width: 0;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.plugin-actions-row {
|
|
2364
|
+
display: flex;
|
|
2365
|
+
justify-content: flex-end;
|
|
2366
|
+
gap: 8px;
|
|
2367
|
+
margin-bottom: 12px;
|
|
2368
|
+
}
|
|
2369
|
+
|