@navios/commander-tui 1.0.0 → 1.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +27 -0
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/lib/index.cjs +338 -22
  5. package/lib/index.cjs.map +1 -1
  6. package/lib/index.d.cts +161 -118
  7. package/lib/index.d.cts.map +1 -1
  8. package/lib/index.d.mts +176 -133
  9. package/lib/index.d.mts.map +1 -1
  10. package/lib/index.mjs +333 -24
  11. package/lib/index.mjs.map +1 -1
  12. package/lib/{screen_manager_bridge-DN2J6_k1.mjs → screen_manager_bridge-Bk1i53h5.mjs} +1 -1
  13. package/lib/{screen_manager_bridge-Dfg4QUrl.mjs → screen_manager_bridge-BwPVr0bX.mjs} +17 -3
  14. package/lib/screen_manager_bridge-BwPVr0bX.mjs.map +1 -0
  15. package/lib/{screen_manager_bridge-BpDgVu3e.cjs → screen_manager_bridge-CWxLO0CK.cjs} +17 -3
  16. package/lib/screen_manager_bridge-CWxLO0CK.cjs.map +1 -0
  17. package/lib/{screen_manager_bridge-CkV7637i.cjs → screen_manager_bridge-DXc57iXW.cjs} +1 -1
  18. package/package.json +1 -1
  19. package/src/__tests__/components/__snapshots__/filter_bar.spec.tsx.snap +2604 -0
  20. package/src/__tests__/components/__snapshots__/loading_message.spec.tsx.snap +1621 -0
  21. package/src/__tests__/components/__snapshots__/log_message.spec.tsx.snap +3757 -0
  22. package/src/__tests__/components/__snapshots__/progress_message.spec.tsx.snap +2042 -0
  23. package/src/__tests__/components/__snapshots__/prompt_renderer.spec.tsx.snap +3652 -0
  24. package/src/__tests__/components/__snapshots__/sidebar.spec.tsx.snap +3426 -0
  25. package/src/__tests__/components/sidebar.spec.tsx +17 -0
  26. package/src/__tests__/services/logger.spec.ts +5 -3
  27. package/src/factories/index.ts +1 -0
  28. package/src/factories/isomorphic-logger.factory.ts +23 -0
  29. package/src/index.ts +5 -0
  30. package/src/interfaces/index.ts +1 -0
  31. package/src/interfaces/isomorphic-logger.ts +9 -0
  32. package/src/overrides/console.logger.override.ts +8 -1
  33. package/src/schemas/screen-options.ts +2 -0
  34. package/src/services/logger.ts +1 -1
  35. package/src/services/screen.ts +3 -0
  36. package/src/services/screen_manager.tsx +16 -12
  37. package/src/themes/dark.ts +4 -0
  38. package/src/themes/high-contrast.ts +4 -0
  39. package/src/themes/light.ts +4 -0
  40. package/src/tokens/logger.ts +9 -0
  41. package/src/types/screen.types.ts +2 -2
  42. package/src/types/theme.types.ts +1 -0
  43. package/src/utils/format.ts +3 -2
  44. package/lib/screen_manager_bridge-BpDgVu3e.cjs.map +0 -1
  45. package/lib/screen_manager_bridge-Dfg4QUrl.mjs.map +0 -1
@@ -138,6 +138,10 @@ exports[`FilterBar > combined states > should render with search query and disab
138
138
  "color": "#F59E0B",
139
139
  "icon": "◐",
140
140
  },
141
+ "static": {
142
+ "color": "#3B82F6",
143
+ "icon": "●",
144
+ },
141
145
  "success": {
142
146
  "color": "#22C55E",
143
147
  "icon": "✓",
@@ -322,6 +326,10 @@ exports[`FilterBar > level counts > should not show counts when zero 1`] = `
322
326
  "color": "#F59E0B",
323
327
  "icon": "◐",
324
328
  },
329
+ "static": {
330
+ "color": "#3B82F6",
331
+ "icon": "●",
332
+ },
325
333
  "success": {
326
334
  "color": "#22C55E",
327
335
  "icon": "✓",
@@ -510,6 +518,10 @@ exports[`FilterBar > level counts > should render level counts 1`] = `
510
518
  "color": "#F59E0B",
511
519
  "icon": "◐",
512
520
  },
521
+ "static": {
522
+ "color": "#3B82F6",
523
+ "icon": "●",
524
+ },
513
525
  "success": {
514
526
  "color": "#22C55E",
515
527
  "icon": "✓",
@@ -698,6 +710,10 @@ exports[`FilterBar > level counts > should truncate high counts to 99+ 1`] = `
698
710
  "color": "#F59E0B",
699
711
  "icon": "◐",
700
712
  },
713
+ "static": {
714
+ "color": "#3B82F6",
715
+ "icon": "●",
716
+ },
701
717
  "success": {
702
718
  "color": "#22C55E",
703
719
  "icon": "✓",
@@ -886,6 +902,10 @@ exports[`FilterBar > log level toggles > should render log level toggles 1`] = `
886
902
  "color": "#F59E0B",
887
903
  "icon": "◐",
888
904
  },
905
+ "static": {
906
+ "color": "#3B82F6",
907
+ "icon": "●",
908
+ },
889
909
  "success": {
890
910
  "color": "#22C55E",
891
911
  "icon": "✓",
@@ -1074,6 +1094,10 @@ exports[`FilterBar > log level toggles > should render with all levels enabled 1
1074
1094
  "color": "#F59E0B",
1075
1095
  "icon": "◐",
1076
1096
  },
1097
+ "static": {
1098
+ "color": "#3B82F6",
1099
+ "icon": "●",
1100
+ },
1077
1101
  "success": {
1078
1102
  "color": "#22C55E",
1079
1103
  "icon": "✓",
@@ -1262,6 +1286,10 @@ exports[`FilterBar > log level toggles > should render with only one level enabl
1262
1286
  "color": "#F59E0B",
1263
1287
  "icon": "◐",
1264
1288
  },
1289
+ "static": {
1290
+ "color": "#3B82F6",
1291
+ "icon": "●",
1292
+ },
1265
1293
  "success": {
1266
1294
  "color": "#22C55E",
1267
1295
  "icon": "✓",
@@ -1445,6 +1473,10 @@ exports[`FilterBar > log level toggles > should render with some levels disabled
1445
1473
  "color": "#F59E0B",
1446
1474
  "icon": "◐",
1447
1475
  },
1476
+ "static": {
1477
+ "color": "#3B82F6",
1478
+ "icon": "●",
1479
+ },
1448
1480
  "success": {
1449
1481
  "color": "#22C55E",
1450
1482
  "icon": "✓",
@@ -1630,6 +1662,10 @@ exports[`FilterBar > search input > should render levels focused state 1`] = `
1630
1662
  "color": "#F59E0B",
1631
1663
  "icon": "◐",
1632
1664
  },
1665
+ "static": {
1666
+ "color": "#3B82F6",
1667
+ "icon": "●",
1668
+ },
1633
1669
  "success": {
1634
1670
  "color": "#22C55E",
1635
1671
  "icon": "✓",
@@ -1818,6 +1854,10 @@ exports[`FilterBar > search input > should render search focused state 1`] = `
1818
1854
  "color": "#F59E0B",
1819
1855
  "icon": "◐",
1820
1856
  },
1857
+ "static": {
1858
+ "color": "#3B82F6",
1859
+ "icon": "●",
1860
+ },
1821
1861
  "success": {
1822
1862
  "color": "#22C55E",
1823
1863
  "icon": "✓",
@@ -2006,6 +2046,10 @@ exports[`FilterBar > search input > should render search input 1`] = `
2006
2046
  "color": "#F59E0B",
2007
2047
  "icon": "◐",
2008
2048
  },
2049
+ "static": {
2050
+ "color": "#3B82F6",
2051
+ "icon": "●",
2052
+ },
2009
2053
  "success": {
2010
2054
  "color": "#22C55E",
2011
2055
  "icon": "✓",
@@ -2194,6 +2238,10 @@ exports[`FilterBar > search input > should render with active search query 1`] =
2194
2238
  "color": "#F59E0B",
2195
2239
  "icon": "◐",
2196
2240
  },
2241
+ "static": {
2242
+ "color": "#3B82F6",
2243
+ "icon": "●",
2244
+ },
2197
2245
  "success": {
2198
2246
  "color": "#22C55E",
2199
2247
  "icon": "✓",
@@ -2243,3 +2291,2559 @@ exports[`FilterBar > search input > should render with active search query 1`] =
2243
2291
  />
2244
2292
  </LoggerProvider>
2245
2293
  `;
2294
+
2295
+ exports[`FilterBar combined states should render with search query and disabled levels 1`] = `
2296
+ {
2297
+ "$$typeof": Symbol(react.transitional.element),
2298
+ "_debugInfo": null,
2299
+ "_debugStack": [Error: react-stack-top-frame],
2300
+ "_debugTask": null,
2301
+ "_owner": null,
2302
+ "_store": {
2303
+ "validated": 0,
2304
+ },
2305
+ "key": null,
2306
+ "props": {
2307
+ "children": {
2308
+ "$$typeof": Symbol(react.transitional.element),
2309
+ "_debugInfo": null,
2310
+ "_debugStack": [Error: react-stack-top-frame],
2311
+ "_debugTask": null,
2312
+ "_owner": null,
2313
+ "_store": {
2314
+ "validated": 1,
2315
+ },
2316
+ "key": null,
2317
+ "props": {
2318
+ "filter": {
2319
+ "enabledLevels":
2320
+ Set {
2321
+ "log",
2322
+ "error",
2323
+ }
2324
+ ,
2325
+ "focusedField": "search",
2326
+ "isVisible": false,
2327
+ "searchQuery": "api",
2328
+ },
2329
+ "levelCounts": {
2330
+ "debug": 5,
2331
+ "error": 3,
2332
+ "fatal": 0,
2333
+ "log": 10,
2334
+ "verbose": 2,
2335
+ "warn": 1,
2336
+ },
2337
+ },
2338
+ "ref": null,
2339
+ "type": [Function: FilterBar],
2340
+ },
2341
+ "levelColors": undefined,
2342
+ "theme": {
2343
+ "colors": {
2344
+ "background": "#111827",
2345
+ "error": "#EF4444",
2346
+ "foreground": "#F9FAFB",
2347
+ "muted": "#6B7280",
2348
+ "primary": "#3B82F6",
2349
+ "secondary": "#8B5CF6",
2350
+ "success": "#22C55E",
2351
+ "warning": "#F59E0B",
2352
+ },
2353
+ "errorHighlight": {
2354
+ "background": "#EF444425",
2355
+ "border": "#EF4444",
2356
+ "gutterBackground": "#EF444440",
2357
+ },
2358
+ "file": {
2359
+ "background": "#3B82F615",
2360
+ "border": "#3B82F6",
2361
+ "headerBackground": "#3B82F625",
2362
+ "headerText": "#F9FAFB",
2363
+ },
2364
+ "filter": {
2365
+ "activeLevel": "#3B82F6",
2366
+ "background": "#1F293780",
2367
+ "border": "#3B82F6",
2368
+ "cursor": "#3B82F6",
2369
+ "inactiveLevel": "#4B5563",
2370
+ "inputBackground": "#1F2937",
2371
+ "inputPlaceholder": "#6B7280",
2372
+ "inputText": "#F9FAFB",
2373
+ "text": "#E5E7EB",
2374
+ "textDim": "#6B7280",
2375
+ },
2376
+ "group": {
2377
+ "background": "#6B728010",
2378
+ "border": "#6B7280",
2379
+ "headerText": "#E5E7EB",
2380
+ "icon": "#9CA3AF",
2381
+ },
2382
+ "header": {
2383
+ "background": undefined,
2384
+ "border": "#374151",
2385
+ "text": "#F9FAFB",
2386
+ },
2387
+ "help": {
2388
+ "background": "#1F2937",
2389
+ "border": "#3B82F6",
2390
+ "category": "#3B82F6",
2391
+ "description": "#E5E7EB",
2392
+ "hint": "#6B7280",
2393
+ "key": "#F59E0B",
2394
+ "title": "#F9FAFB",
2395
+ },
2396
+ "logLevels": {
2397
+ "debug": {
2398
+ "background": "#8B5CF615",
2399
+ "border": "#8B5CF6",
2400
+ },
2401
+ "error": {
2402
+ "background": "#EF444415",
2403
+ "border": "#EF4444",
2404
+ },
2405
+ "fatal": {
2406
+ "background": "#DC262625",
2407
+ "border": "#DC2626",
2408
+ "text": "#FCA5A5",
2409
+ },
2410
+ "log": {
2411
+ "background": "#3B82F615",
2412
+ "border": "#3B82F6",
2413
+ },
2414
+ "verbose": {
2415
+ "background": "#6B728015",
2416
+ "border": "#6B7280",
2417
+ },
2418
+ "warn": {
2419
+ "background": "#F59E0B15",
2420
+ "border": "#F59E0B",
2421
+ },
2422
+ },
2423
+ "name": "dark",
2424
+ "progress": {
2425
+ "background": "#3B82F615",
2426
+ "barEmpty": "#374151",
2427
+ "barFilled": "#3B82F6",
2428
+ "border": "#3B82F6",
2429
+ "complete": "#22C55E",
2430
+ "completeBackground": "#22C55E15",
2431
+ "failed": "#EF4444",
2432
+ "failedBackground": "#EF444415",
2433
+ "text": "#E5E7EB",
2434
+ "textDim": "#9CA3AF",
2435
+ },
2436
+ "prompt": {
2437
+ "border": "#374151",
2438
+ "buttonBackground": "#374151",
2439
+ "buttonSelectedBackground": "#1F2937",
2440
+ "cancelButton": "#EF4444",
2441
+ "confirmButton": "#22C55E",
2442
+ "focusBorder": "#3B82F6",
2443
+ "inputBackground": "#1F2937",
2444
+ "inputBorder": "#3B82F6",
2445
+ "inputCursor": "#3B82F6",
2446
+ "inputPlaceholder": "#6B7280",
2447
+ "inputText": "#F9FAFB",
2448
+ "optionSelected": "#3B82F6",
2449
+ "optionSelectedBackground": "#1E3A5F",
2450
+ "optionText": "#E5E7EB",
2451
+ "optionTextDim": "#9CA3AF",
2452
+ "question": "#F9FAFB",
2453
+ },
2454
+ "separator": {
2455
+ "line": "#374151",
2456
+ "text": "#6B7280",
2457
+ },
2458
+ "sidebar": {
2459
+ "background": undefined,
2460
+ "badge": "#3B82F6",
2461
+ "border": "#374151",
2462
+ "focusBorder": "#3B82F6",
2463
+ "hoverBackground": "#374151",
2464
+ "selectedBackground": "#1F293780",
2465
+ "text": "#E5E7EB",
2466
+ "textDim": "#6B7280",
2467
+ },
2468
+ "statusIndicators": {
2469
+ "fail": {
2470
+ "color": "#EF4444",
2471
+ "icon": "✗",
2472
+ },
2473
+ "pending": {
2474
+ "color": "#F59E0B",
2475
+ "icon": "◐",
2476
+ },
2477
+ "static": {
2478
+ "color": "#3B82F6",
2479
+ "icon": "●",
2480
+ },
2481
+ "success": {
2482
+ "color": "#22C55E",
2483
+ "icon": "✓",
2484
+ },
2485
+ "waiting": {
2486
+ "color": "#6B7280",
2487
+ "icon": "○",
2488
+ },
2489
+ },
2490
+ "table": {
2491
+ "background": "#3B82F615",
2492
+ "border": "#3B82F6",
2493
+ "cellText": "#E5E7EB",
2494
+ "headerText": "#F9FAFB",
2495
+ "separator": "#3B82F650",
2496
+ "title": "#F9FAFB",
2497
+ },
2498
+ },
2499
+ },
2500
+ "ref": null,
2501
+ "type": [Function: LoggerProvider],
2502
+ }
2503
+ `;
2504
+
2505
+ exports[`FilterBar level counts should not show counts when zero 1`] = `
2506
+ {
2507
+ "$$typeof": Symbol(react.transitional.element),
2508
+ "_debugInfo": null,
2509
+ "_debugStack": [Error: react-stack-top-frame],
2510
+ "_debugTask": null,
2511
+ "_owner": null,
2512
+ "_store": {
2513
+ "validated": 0,
2514
+ },
2515
+ "key": null,
2516
+ "props": {
2517
+ "children": {
2518
+ "$$typeof": Symbol(react.transitional.element),
2519
+ "_debugInfo": null,
2520
+ "_debugStack": [Error: react-stack-top-frame],
2521
+ "_debugTask": null,
2522
+ "_owner": null,
2523
+ "_store": {
2524
+ "validated": 1,
2525
+ },
2526
+ "key": null,
2527
+ "props": {
2528
+ "filter": {
2529
+ "enabledLevels":
2530
+ Set {
2531
+ "verbose",
2532
+ "debug",
2533
+ "log",
2534
+ "warn",
2535
+ "error",
2536
+ "fatal",
2537
+ }
2538
+ ,
2539
+ "focusedField": "search",
2540
+ "isVisible": false,
2541
+ "searchQuery": "",
2542
+ },
2543
+ "levelCounts": {
2544
+ "debug": 0,
2545
+ "error": 0,
2546
+ "fatal": 0,
2547
+ "log": 0,
2548
+ "verbose": 0,
2549
+ "warn": 0,
2550
+ },
2551
+ },
2552
+ "ref": null,
2553
+ "type": [Function: FilterBar],
2554
+ },
2555
+ "levelColors": undefined,
2556
+ "theme": {
2557
+ "colors": {
2558
+ "background": "#111827",
2559
+ "error": "#EF4444",
2560
+ "foreground": "#F9FAFB",
2561
+ "muted": "#6B7280",
2562
+ "primary": "#3B82F6",
2563
+ "secondary": "#8B5CF6",
2564
+ "success": "#22C55E",
2565
+ "warning": "#F59E0B",
2566
+ },
2567
+ "errorHighlight": {
2568
+ "background": "#EF444425",
2569
+ "border": "#EF4444",
2570
+ "gutterBackground": "#EF444440",
2571
+ },
2572
+ "file": {
2573
+ "background": "#3B82F615",
2574
+ "border": "#3B82F6",
2575
+ "headerBackground": "#3B82F625",
2576
+ "headerText": "#F9FAFB",
2577
+ },
2578
+ "filter": {
2579
+ "activeLevel": "#3B82F6",
2580
+ "background": "#1F293780",
2581
+ "border": "#3B82F6",
2582
+ "cursor": "#3B82F6",
2583
+ "inactiveLevel": "#4B5563",
2584
+ "inputBackground": "#1F2937",
2585
+ "inputPlaceholder": "#6B7280",
2586
+ "inputText": "#F9FAFB",
2587
+ "text": "#E5E7EB",
2588
+ "textDim": "#6B7280",
2589
+ },
2590
+ "group": {
2591
+ "background": "#6B728010",
2592
+ "border": "#6B7280",
2593
+ "headerText": "#E5E7EB",
2594
+ "icon": "#9CA3AF",
2595
+ },
2596
+ "header": {
2597
+ "background": undefined,
2598
+ "border": "#374151",
2599
+ "text": "#F9FAFB",
2600
+ },
2601
+ "help": {
2602
+ "background": "#1F2937",
2603
+ "border": "#3B82F6",
2604
+ "category": "#3B82F6",
2605
+ "description": "#E5E7EB",
2606
+ "hint": "#6B7280",
2607
+ "key": "#F59E0B",
2608
+ "title": "#F9FAFB",
2609
+ },
2610
+ "logLevels": {
2611
+ "debug": {
2612
+ "background": "#8B5CF615",
2613
+ "border": "#8B5CF6",
2614
+ },
2615
+ "error": {
2616
+ "background": "#EF444415",
2617
+ "border": "#EF4444",
2618
+ },
2619
+ "fatal": {
2620
+ "background": "#DC262625",
2621
+ "border": "#DC2626",
2622
+ "text": "#FCA5A5",
2623
+ },
2624
+ "log": {
2625
+ "background": "#3B82F615",
2626
+ "border": "#3B82F6",
2627
+ },
2628
+ "verbose": {
2629
+ "background": "#6B728015",
2630
+ "border": "#6B7280",
2631
+ },
2632
+ "warn": {
2633
+ "background": "#F59E0B15",
2634
+ "border": "#F59E0B",
2635
+ },
2636
+ },
2637
+ "name": "dark",
2638
+ "progress": {
2639
+ "background": "#3B82F615",
2640
+ "barEmpty": "#374151",
2641
+ "barFilled": "#3B82F6",
2642
+ "border": "#3B82F6",
2643
+ "complete": "#22C55E",
2644
+ "completeBackground": "#22C55E15",
2645
+ "failed": "#EF4444",
2646
+ "failedBackground": "#EF444415",
2647
+ "text": "#E5E7EB",
2648
+ "textDim": "#9CA3AF",
2649
+ },
2650
+ "prompt": {
2651
+ "border": "#374151",
2652
+ "buttonBackground": "#374151",
2653
+ "buttonSelectedBackground": "#1F2937",
2654
+ "cancelButton": "#EF4444",
2655
+ "confirmButton": "#22C55E",
2656
+ "focusBorder": "#3B82F6",
2657
+ "inputBackground": "#1F2937",
2658
+ "inputBorder": "#3B82F6",
2659
+ "inputCursor": "#3B82F6",
2660
+ "inputPlaceholder": "#6B7280",
2661
+ "inputText": "#F9FAFB",
2662
+ "optionSelected": "#3B82F6",
2663
+ "optionSelectedBackground": "#1E3A5F",
2664
+ "optionText": "#E5E7EB",
2665
+ "optionTextDim": "#9CA3AF",
2666
+ "question": "#F9FAFB",
2667
+ },
2668
+ "separator": {
2669
+ "line": "#374151",
2670
+ "text": "#6B7280",
2671
+ },
2672
+ "sidebar": {
2673
+ "background": undefined,
2674
+ "badge": "#3B82F6",
2675
+ "border": "#374151",
2676
+ "focusBorder": "#3B82F6",
2677
+ "hoverBackground": "#374151",
2678
+ "selectedBackground": "#1F293780",
2679
+ "text": "#E5E7EB",
2680
+ "textDim": "#6B7280",
2681
+ },
2682
+ "statusIndicators": {
2683
+ "fail": {
2684
+ "color": "#EF4444",
2685
+ "icon": "✗",
2686
+ },
2687
+ "pending": {
2688
+ "color": "#F59E0B",
2689
+ "icon": "◐",
2690
+ },
2691
+ "static": {
2692
+ "color": "#3B82F6",
2693
+ "icon": "●",
2694
+ },
2695
+ "success": {
2696
+ "color": "#22C55E",
2697
+ "icon": "✓",
2698
+ },
2699
+ "waiting": {
2700
+ "color": "#6B7280",
2701
+ "icon": "○",
2702
+ },
2703
+ },
2704
+ "table": {
2705
+ "background": "#3B82F615",
2706
+ "border": "#3B82F6",
2707
+ "cellText": "#E5E7EB",
2708
+ "headerText": "#F9FAFB",
2709
+ "separator": "#3B82F650",
2710
+ "title": "#F9FAFB",
2711
+ },
2712
+ },
2713
+ },
2714
+ "ref": null,
2715
+ "type": [Function: LoggerProvider],
2716
+ }
2717
+ `;
2718
+
2719
+ exports[`FilterBar level counts should render level counts 1`] = `
2720
+ {
2721
+ "$$typeof": Symbol(react.transitional.element),
2722
+ "_debugInfo": null,
2723
+ "_debugStack": [Error: react-stack-top-frame],
2724
+ "_debugTask": null,
2725
+ "_owner": null,
2726
+ "_store": {
2727
+ "validated": 0,
2728
+ },
2729
+ "key": null,
2730
+ "props": {
2731
+ "children": {
2732
+ "$$typeof": Symbol(react.transitional.element),
2733
+ "_debugInfo": null,
2734
+ "_debugStack": [Error: react-stack-top-frame],
2735
+ "_debugTask": null,
2736
+ "_owner": null,
2737
+ "_store": {
2738
+ "validated": 1,
2739
+ },
2740
+ "key": null,
2741
+ "props": {
2742
+ "filter": {
2743
+ "enabledLevels":
2744
+ Set {
2745
+ "verbose",
2746
+ "debug",
2747
+ "log",
2748
+ "warn",
2749
+ "error",
2750
+ "fatal",
2751
+ }
2752
+ ,
2753
+ "focusedField": "search",
2754
+ "isVisible": false,
2755
+ "searchQuery": "",
2756
+ },
2757
+ "levelCounts": {
2758
+ "debug": 12,
2759
+ "error": 2,
2760
+ "fatal": 0,
2761
+ "log": 25,
2762
+ "verbose": 5,
2763
+ "warn": 3,
2764
+ },
2765
+ },
2766
+ "ref": null,
2767
+ "type": [Function: FilterBar],
2768
+ },
2769
+ "levelColors": undefined,
2770
+ "theme": {
2771
+ "colors": {
2772
+ "background": "#111827",
2773
+ "error": "#EF4444",
2774
+ "foreground": "#F9FAFB",
2775
+ "muted": "#6B7280",
2776
+ "primary": "#3B82F6",
2777
+ "secondary": "#8B5CF6",
2778
+ "success": "#22C55E",
2779
+ "warning": "#F59E0B",
2780
+ },
2781
+ "errorHighlight": {
2782
+ "background": "#EF444425",
2783
+ "border": "#EF4444",
2784
+ "gutterBackground": "#EF444440",
2785
+ },
2786
+ "file": {
2787
+ "background": "#3B82F615",
2788
+ "border": "#3B82F6",
2789
+ "headerBackground": "#3B82F625",
2790
+ "headerText": "#F9FAFB",
2791
+ },
2792
+ "filter": {
2793
+ "activeLevel": "#3B82F6",
2794
+ "background": "#1F293780",
2795
+ "border": "#3B82F6",
2796
+ "cursor": "#3B82F6",
2797
+ "inactiveLevel": "#4B5563",
2798
+ "inputBackground": "#1F2937",
2799
+ "inputPlaceholder": "#6B7280",
2800
+ "inputText": "#F9FAFB",
2801
+ "text": "#E5E7EB",
2802
+ "textDim": "#6B7280",
2803
+ },
2804
+ "group": {
2805
+ "background": "#6B728010",
2806
+ "border": "#6B7280",
2807
+ "headerText": "#E5E7EB",
2808
+ "icon": "#9CA3AF",
2809
+ },
2810
+ "header": {
2811
+ "background": undefined,
2812
+ "border": "#374151",
2813
+ "text": "#F9FAFB",
2814
+ },
2815
+ "help": {
2816
+ "background": "#1F2937",
2817
+ "border": "#3B82F6",
2818
+ "category": "#3B82F6",
2819
+ "description": "#E5E7EB",
2820
+ "hint": "#6B7280",
2821
+ "key": "#F59E0B",
2822
+ "title": "#F9FAFB",
2823
+ },
2824
+ "logLevels": {
2825
+ "debug": {
2826
+ "background": "#8B5CF615",
2827
+ "border": "#8B5CF6",
2828
+ },
2829
+ "error": {
2830
+ "background": "#EF444415",
2831
+ "border": "#EF4444",
2832
+ },
2833
+ "fatal": {
2834
+ "background": "#DC262625",
2835
+ "border": "#DC2626",
2836
+ "text": "#FCA5A5",
2837
+ },
2838
+ "log": {
2839
+ "background": "#3B82F615",
2840
+ "border": "#3B82F6",
2841
+ },
2842
+ "verbose": {
2843
+ "background": "#6B728015",
2844
+ "border": "#6B7280",
2845
+ },
2846
+ "warn": {
2847
+ "background": "#F59E0B15",
2848
+ "border": "#F59E0B",
2849
+ },
2850
+ },
2851
+ "name": "dark",
2852
+ "progress": {
2853
+ "background": "#3B82F615",
2854
+ "barEmpty": "#374151",
2855
+ "barFilled": "#3B82F6",
2856
+ "border": "#3B82F6",
2857
+ "complete": "#22C55E",
2858
+ "completeBackground": "#22C55E15",
2859
+ "failed": "#EF4444",
2860
+ "failedBackground": "#EF444415",
2861
+ "text": "#E5E7EB",
2862
+ "textDim": "#9CA3AF",
2863
+ },
2864
+ "prompt": {
2865
+ "border": "#374151",
2866
+ "buttonBackground": "#374151",
2867
+ "buttonSelectedBackground": "#1F2937",
2868
+ "cancelButton": "#EF4444",
2869
+ "confirmButton": "#22C55E",
2870
+ "focusBorder": "#3B82F6",
2871
+ "inputBackground": "#1F2937",
2872
+ "inputBorder": "#3B82F6",
2873
+ "inputCursor": "#3B82F6",
2874
+ "inputPlaceholder": "#6B7280",
2875
+ "inputText": "#F9FAFB",
2876
+ "optionSelected": "#3B82F6",
2877
+ "optionSelectedBackground": "#1E3A5F",
2878
+ "optionText": "#E5E7EB",
2879
+ "optionTextDim": "#9CA3AF",
2880
+ "question": "#F9FAFB",
2881
+ },
2882
+ "separator": {
2883
+ "line": "#374151",
2884
+ "text": "#6B7280",
2885
+ },
2886
+ "sidebar": {
2887
+ "background": undefined,
2888
+ "badge": "#3B82F6",
2889
+ "border": "#374151",
2890
+ "focusBorder": "#3B82F6",
2891
+ "hoverBackground": "#374151",
2892
+ "selectedBackground": "#1F293780",
2893
+ "text": "#E5E7EB",
2894
+ "textDim": "#6B7280",
2895
+ },
2896
+ "statusIndicators": {
2897
+ "fail": {
2898
+ "color": "#EF4444",
2899
+ "icon": "✗",
2900
+ },
2901
+ "pending": {
2902
+ "color": "#F59E0B",
2903
+ "icon": "◐",
2904
+ },
2905
+ "static": {
2906
+ "color": "#3B82F6",
2907
+ "icon": "●",
2908
+ },
2909
+ "success": {
2910
+ "color": "#22C55E",
2911
+ "icon": "✓",
2912
+ },
2913
+ "waiting": {
2914
+ "color": "#6B7280",
2915
+ "icon": "○",
2916
+ },
2917
+ },
2918
+ "table": {
2919
+ "background": "#3B82F615",
2920
+ "border": "#3B82F6",
2921
+ "cellText": "#E5E7EB",
2922
+ "headerText": "#F9FAFB",
2923
+ "separator": "#3B82F650",
2924
+ "title": "#F9FAFB",
2925
+ },
2926
+ },
2927
+ },
2928
+ "ref": null,
2929
+ "type": [Function: LoggerProvider],
2930
+ }
2931
+ `;
2932
+
2933
+ exports[`FilterBar level counts should truncate high counts to 99+ 1`] = `
2934
+ {
2935
+ "$$typeof": Symbol(react.transitional.element),
2936
+ "_debugInfo": null,
2937
+ "_debugStack": [Error: react-stack-top-frame],
2938
+ "_debugTask": null,
2939
+ "_owner": null,
2940
+ "_store": {
2941
+ "validated": 0,
2942
+ },
2943
+ "key": null,
2944
+ "props": {
2945
+ "children": {
2946
+ "$$typeof": Symbol(react.transitional.element),
2947
+ "_debugInfo": null,
2948
+ "_debugStack": [Error: react-stack-top-frame],
2949
+ "_debugTask": null,
2950
+ "_owner": null,
2951
+ "_store": {
2952
+ "validated": 1,
2953
+ },
2954
+ "key": null,
2955
+ "props": {
2956
+ "filter": {
2957
+ "enabledLevels":
2958
+ Set {
2959
+ "verbose",
2960
+ "debug",
2961
+ "log",
2962
+ "warn",
2963
+ "error",
2964
+ "fatal",
2965
+ }
2966
+ ,
2967
+ "focusedField": "search",
2968
+ "isVisible": false,
2969
+ "searchQuery": "",
2970
+ },
2971
+ "levelCounts": {
2972
+ "debug": 0,
2973
+ "error": 200,
2974
+ "fatal": 0,
2975
+ "log": 150,
2976
+ "verbose": 0,
2977
+ "warn": 0,
2978
+ },
2979
+ },
2980
+ "ref": null,
2981
+ "type": [Function: FilterBar],
2982
+ },
2983
+ "levelColors": undefined,
2984
+ "theme": {
2985
+ "colors": {
2986
+ "background": "#111827",
2987
+ "error": "#EF4444",
2988
+ "foreground": "#F9FAFB",
2989
+ "muted": "#6B7280",
2990
+ "primary": "#3B82F6",
2991
+ "secondary": "#8B5CF6",
2992
+ "success": "#22C55E",
2993
+ "warning": "#F59E0B",
2994
+ },
2995
+ "errorHighlight": {
2996
+ "background": "#EF444425",
2997
+ "border": "#EF4444",
2998
+ "gutterBackground": "#EF444440",
2999
+ },
3000
+ "file": {
3001
+ "background": "#3B82F615",
3002
+ "border": "#3B82F6",
3003
+ "headerBackground": "#3B82F625",
3004
+ "headerText": "#F9FAFB",
3005
+ },
3006
+ "filter": {
3007
+ "activeLevel": "#3B82F6",
3008
+ "background": "#1F293780",
3009
+ "border": "#3B82F6",
3010
+ "cursor": "#3B82F6",
3011
+ "inactiveLevel": "#4B5563",
3012
+ "inputBackground": "#1F2937",
3013
+ "inputPlaceholder": "#6B7280",
3014
+ "inputText": "#F9FAFB",
3015
+ "text": "#E5E7EB",
3016
+ "textDim": "#6B7280",
3017
+ },
3018
+ "group": {
3019
+ "background": "#6B728010",
3020
+ "border": "#6B7280",
3021
+ "headerText": "#E5E7EB",
3022
+ "icon": "#9CA3AF",
3023
+ },
3024
+ "header": {
3025
+ "background": undefined,
3026
+ "border": "#374151",
3027
+ "text": "#F9FAFB",
3028
+ },
3029
+ "help": {
3030
+ "background": "#1F2937",
3031
+ "border": "#3B82F6",
3032
+ "category": "#3B82F6",
3033
+ "description": "#E5E7EB",
3034
+ "hint": "#6B7280",
3035
+ "key": "#F59E0B",
3036
+ "title": "#F9FAFB",
3037
+ },
3038
+ "logLevels": {
3039
+ "debug": {
3040
+ "background": "#8B5CF615",
3041
+ "border": "#8B5CF6",
3042
+ },
3043
+ "error": {
3044
+ "background": "#EF444415",
3045
+ "border": "#EF4444",
3046
+ },
3047
+ "fatal": {
3048
+ "background": "#DC262625",
3049
+ "border": "#DC2626",
3050
+ "text": "#FCA5A5",
3051
+ },
3052
+ "log": {
3053
+ "background": "#3B82F615",
3054
+ "border": "#3B82F6",
3055
+ },
3056
+ "verbose": {
3057
+ "background": "#6B728015",
3058
+ "border": "#6B7280",
3059
+ },
3060
+ "warn": {
3061
+ "background": "#F59E0B15",
3062
+ "border": "#F59E0B",
3063
+ },
3064
+ },
3065
+ "name": "dark",
3066
+ "progress": {
3067
+ "background": "#3B82F615",
3068
+ "barEmpty": "#374151",
3069
+ "barFilled": "#3B82F6",
3070
+ "border": "#3B82F6",
3071
+ "complete": "#22C55E",
3072
+ "completeBackground": "#22C55E15",
3073
+ "failed": "#EF4444",
3074
+ "failedBackground": "#EF444415",
3075
+ "text": "#E5E7EB",
3076
+ "textDim": "#9CA3AF",
3077
+ },
3078
+ "prompt": {
3079
+ "border": "#374151",
3080
+ "buttonBackground": "#374151",
3081
+ "buttonSelectedBackground": "#1F2937",
3082
+ "cancelButton": "#EF4444",
3083
+ "confirmButton": "#22C55E",
3084
+ "focusBorder": "#3B82F6",
3085
+ "inputBackground": "#1F2937",
3086
+ "inputBorder": "#3B82F6",
3087
+ "inputCursor": "#3B82F6",
3088
+ "inputPlaceholder": "#6B7280",
3089
+ "inputText": "#F9FAFB",
3090
+ "optionSelected": "#3B82F6",
3091
+ "optionSelectedBackground": "#1E3A5F",
3092
+ "optionText": "#E5E7EB",
3093
+ "optionTextDim": "#9CA3AF",
3094
+ "question": "#F9FAFB",
3095
+ },
3096
+ "separator": {
3097
+ "line": "#374151",
3098
+ "text": "#6B7280",
3099
+ },
3100
+ "sidebar": {
3101
+ "background": undefined,
3102
+ "badge": "#3B82F6",
3103
+ "border": "#374151",
3104
+ "focusBorder": "#3B82F6",
3105
+ "hoverBackground": "#374151",
3106
+ "selectedBackground": "#1F293780",
3107
+ "text": "#E5E7EB",
3108
+ "textDim": "#6B7280",
3109
+ },
3110
+ "statusIndicators": {
3111
+ "fail": {
3112
+ "color": "#EF4444",
3113
+ "icon": "✗",
3114
+ },
3115
+ "pending": {
3116
+ "color": "#F59E0B",
3117
+ "icon": "◐",
3118
+ },
3119
+ "static": {
3120
+ "color": "#3B82F6",
3121
+ "icon": "●",
3122
+ },
3123
+ "success": {
3124
+ "color": "#22C55E",
3125
+ "icon": "✓",
3126
+ },
3127
+ "waiting": {
3128
+ "color": "#6B7280",
3129
+ "icon": "○",
3130
+ },
3131
+ },
3132
+ "table": {
3133
+ "background": "#3B82F615",
3134
+ "border": "#3B82F6",
3135
+ "cellText": "#E5E7EB",
3136
+ "headerText": "#F9FAFB",
3137
+ "separator": "#3B82F650",
3138
+ "title": "#F9FAFB",
3139
+ },
3140
+ },
3141
+ },
3142
+ "ref": null,
3143
+ "type": [Function: LoggerProvider],
3144
+ }
3145
+ `;
3146
+
3147
+ exports[`FilterBar log level toggles should render log level toggles 1`] = `
3148
+ {
3149
+ "$$typeof": Symbol(react.transitional.element),
3150
+ "_debugInfo": null,
3151
+ "_debugStack": [Error: react-stack-top-frame],
3152
+ "_debugTask": null,
3153
+ "_owner": null,
3154
+ "_store": {
3155
+ "validated": 0,
3156
+ },
3157
+ "key": null,
3158
+ "props": {
3159
+ "children": {
3160
+ "$$typeof": Symbol(react.transitional.element),
3161
+ "_debugInfo": null,
3162
+ "_debugStack": [Error: react-stack-top-frame],
3163
+ "_debugTask": null,
3164
+ "_owner": null,
3165
+ "_store": {
3166
+ "validated": 1,
3167
+ },
3168
+ "key": null,
3169
+ "props": {
3170
+ "filter": {
3171
+ "enabledLevels":
3172
+ Set {
3173
+ "verbose",
3174
+ "debug",
3175
+ "log",
3176
+ "warn",
3177
+ "error",
3178
+ "fatal",
3179
+ }
3180
+ ,
3181
+ "focusedField": "search",
3182
+ "isVisible": false,
3183
+ "searchQuery": "",
3184
+ },
3185
+ "levelCounts": {
3186
+ "debug": 0,
3187
+ "error": 0,
3188
+ "fatal": 0,
3189
+ "log": 0,
3190
+ "verbose": 0,
3191
+ "warn": 0,
3192
+ },
3193
+ },
3194
+ "ref": null,
3195
+ "type": [Function: FilterBar],
3196
+ },
3197
+ "levelColors": undefined,
3198
+ "theme": {
3199
+ "colors": {
3200
+ "background": "#111827",
3201
+ "error": "#EF4444",
3202
+ "foreground": "#F9FAFB",
3203
+ "muted": "#6B7280",
3204
+ "primary": "#3B82F6",
3205
+ "secondary": "#8B5CF6",
3206
+ "success": "#22C55E",
3207
+ "warning": "#F59E0B",
3208
+ },
3209
+ "errorHighlight": {
3210
+ "background": "#EF444425",
3211
+ "border": "#EF4444",
3212
+ "gutterBackground": "#EF444440",
3213
+ },
3214
+ "file": {
3215
+ "background": "#3B82F615",
3216
+ "border": "#3B82F6",
3217
+ "headerBackground": "#3B82F625",
3218
+ "headerText": "#F9FAFB",
3219
+ },
3220
+ "filter": {
3221
+ "activeLevel": "#3B82F6",
3222
+ "background": "#1F293780",
3223
+ "border": "#3B82F6",
3224
+ "cursor": "#3B82F6",
3225
+ "inactiveLevel": "#4B5563",
3226
+ "inputBackground": "#1F2937",
3227
+ "inputPlaceholder": "#6B7280",
3228
+ "inputText": "#F9FAFB",
3229
+ "text": "#E5E7EB",
3230
+ "textDim": "#6B7280",
3231
+ },
3232
+ "group": {
3233
+ "background": "#6B728010",
3234
+ "border": "#6B7280",
3235
+ "headerText": "#E5E7EB",
3236
+ "icon": "#9CA3AF",
3237
+ },
3238
+ "header": {
3239
+ "background": undefined,
3240
+ "border": "#374151",
3241
+ "text": "#F9FAFB",
3242
+ },
3243
+ "help": {
3244
+ "background": "#1F2937",
3245
+ "border": "#3B82F6",
3246
+ "category": "#3B82F6",
3247
+ "description": "#E5E7EB",
3248
+ "hint": "#6B7280",
3249
+ "key": "#F59E0B",
3250
+ "title": "#F9FAFB",
3251
+ },
3252
+ "logLevels": {
3253
+ "debug": {
3254
+ "background": "#8B5CF615",
3255
+ "border": "#8B5CF6",
3256
+ },
3257
+ "error": {
3258
+ "background": "#EF444415",
3259
+ "border": "#EF4444",
3260
+ },
3261
+ "fatal": {
3262
+ "background": "#DC262625",
3263
+ "border": "#DC2626",
3264
+ "text": "#FCA5A5",
3265
+ },
3266
+ "log": {
3267
+ "background": "#3B82F615",
3268
+ "border": "#3B82F6",
3269
+ },
3270
+ "verbose": {
3271
+ "background": "#6B728015",
3272
+ "border": "#6B7280",
3273
+ },
3274
+ "warn": {
3275
+ "background": "#F59E0B15",
3276
+ "border": "#F59E0B",
3277
+ },
3278
+ },
3279
+ "name": "dark",
3280
+ "progress": {
3281
+ "background": "#3B82F615",
3282
+ "barEmpty": "#374151",
3283
+ "barFilled": "#3B82F6",
3284
+ "border": "#3B82F6",
3285
+ "complete": "#22C55E",
3286
+ "completeBackground": "#22C55E15",
3287
+ "failed": "#EF4444",
3288
+ "failedBackground": "#EF444415",
3289
+ "text": "#E5E7EB",
3290
+ "textDim": "#9CA3AF",
3291
+ },
3292
+ "prompt": {
3293
+ "border": "#374151",
3294
+ "buttonBackground": "#374151",
3295
+ "buttonSelectedBackground": "#1F2937",
3296
+ "cancelButton": "#EF4444",
3297
+ "confirmButton": "#22C55E",
3298
+ "focusBorder": "#3B82F6",
3299
+ "inputBackground": "#1F2937",
3300
+ "inputBorder": "#3B82F6",
3301
+ "inputCursor": "#3B82F6",
3302
+ "inputPlaceholder": "#6B7280",
3303
+ "inputText": "#F9FAFB",
3304
+ "optionSelected": "#3B82F6",
3305
+ "optionSelectedBackground": "#1E3A5F",
3306
+ "optionText": "#E5E7EB",
3307
+ "optionTextDim": "#9CA3AF",
3308
+ "question": "#F9FAFB",
3309
+ },
3310
+ "separator": {
3311
+ "line": "#374151",
3312
+ "text": "#6B7280",
3313
+ },
3314
+ "sidebar": {
3315
+ "background": undefined,
3316
+ "badge": "#3B82F6",
3317
+ "border": "#374151",
3318
+ "focusBorder": "#3B82F6",
3319
+ "hoverBackground": "#374151",
3320
+ "selectedBackground": "#1F293780",
3321
+ "text": "#E5E7EB",
3322
+ "textDim": "#6B7280",
3323
+ },
3324
+ "statusIndicators": {
3325
+ "fail": {
3326
+ "color": "#EF4444",
3327
+ "icon": "✗",
3328
+ },
3329
+ "pending": {
3330
+ "color": "#F59E0B",
3331
+ "icon": "◐",
3332
+ },
3333
+ "static": {
3334
+ "color": "#3B82F6",
3335
+ "icon": "●",
3336
+ },
3337
+ "success": {
3338
+ "color": "#22C55E",
3339
+ "icon": "✓",
3340
+ },
3341
+ "waiting": {
3342
+ "color": "#6B7280",
3343
+ "icon": "○",
3344
+ },
3345
+ },
3346
+ "table": {
3347
+ "background": "#3B82F615",
3348
+ "border": "#3B82F6",
3349
+ "cellText": "#E5E7EB",
3350
+ "headerText": "#F9FAFB",
3351
+ "separator": "#3B82F650",
3352
+ "title": "#F9FAFB",
3353
+ },
3354
+ },
3355
+ },
3356
+ "ref": null,
3357
+ "type": [Function: LoggerProvider],
3358
+ }
3359
+ `;
3360
+
3361
+ exports[`FilterBar log level toggles should render with all levels enabled 1`] = `
3362
+ {
3363
+ "$$typeof": Symbol(react.transitional.element),
3364
+ "_debugInfo": null,
3365
+ "_debugStack": [Error: react-stack-top-frame],
3366
+ "_debugTask": null,
3367
+ "_owner": null,
3368
+ "_store": {
3369
+ "validated": 0,
3370
+ },
3371
+ "key": null,
3372
+ "props": {
3373
+ "children": {
3374
+ "$$typeof": Symbol(react.transitional.element),
3375
+ "_debugInfo": null,
3376
+ "_debugStack": [Error: react-stack-top-frame],
3377
+ "_debugTask": null,
3378
+ "_owner": null,
3379
+ "_store": {
3380
+ "validated": 1,
3381
+ },
3382
+ "key": null,
3383
+ "props": {
3384
+ "filter": {
3385
+ "enabledLevels":
3386
+ Set {
3387
+ "verbose",
3388
+ "debug",
3389
+ "log",
3390
+ "warn",
3391
+ "error",
3392
+ "fatal",
3393
+ }
3394
+ ,
3395
+ "focusedField": "search",
3396
+ "isVisible": false,
3397
+ "searchQuery": "",
3398
+ },
3399
+ "levelCounts": {
3400
+ "debug": 0,
3401
+ "error": 0,
3402
+ "fatal": 0,
3403
+ "log": 0,
3404
+ "verbose": 0,
3405
+ "warn": 0,
3406
+ },
3407
+ },
3408
+ "ref": null,
3409
+ "type": [Function: FilterBar],
3410
+ },
3411
+ "levelColors": undefined,
3412
+ "theme": {
3413
+ "colors": {
3414
+ "background": "#111827",
3415
+ "error": "#EF4444",
3416
+ "foreground": "#F9FAFB",
3417
+ "muted": "#6B7280",
3418
+ "primary": "#3B82F6",
3419
+ "secondary": "#8B5CF6",
3420
+ "success": "#22C55E",
3421
+ "warning": "#F59E0B",
3422
+ },
3423
+ "errorHighlight": {
3424
+ "background": "#EF444425",
3425
+ "border": "#EF4444",
3426
+ "gutterBackground": "#EF444440",
3427
+ },
3428
+ "file": {
3429
+ "background": "#3B82F615",
3430
+ "border": "#3B82F6",
3431
+ "headerBackground": "#3B82F625",
3432
+ "headerText": "#F9FAFB",
3433
+ },
3434
+ "filter": {
3435
+ "activeLevel": "#3B82F6",
3436
+ "background": "#1F293780",
3437
+ "border": "#3B82F6",
3438
+ "cursor": "#3B82F6",
3439
+ "inactiveLevel": "#4B5563",
3440
+ "inputBackground": "#1F2937",
3441
+ "inputPlaceholder": "#6B7280",
3442
+ "inputText": "#F9FAFB",
3443
+ "text": "#E5E7EB",
3444
+ "textDim": "#6B7280",
3445
+ },
3446
+ "group": {
3447
+ "background": "#6B728010",
3448
+ "border": "#6B7280",
3449
+ "headerText": "#E5E7EB",
3450
+ "icon": "#9CA3AF",
3451
+ },
3452
+ "header": {
3453
+ "background": undefined,
3454
+ "border": "#374151",
3455
+ "text": "#F9FAFB",
3456
+ },
3457
+ "help": {
3458
+ "background": "#1F2937",
3459
+ "border": "#3B82F6",
3460
+ "category": "#3B82F6",
3461
+ "description": "#E5E7EB",
3462
+ "hint": "#6B7280",
3463
+ "key": "#F59E0B",
3464
+ "title": "#F9FAFB",
3465
+ },
3466
+ "logLevels": {
3467
+ "debug": {
3468
+ "background": "#8B5CF615",
3469
+ "border": "#8B5CF6",
3470
+ },
3471
+ "error": {
3472
+ "background": "#EF444415",
3473
+ "border": "#EF4444",
3474
+ },
3475
+ "fatal": {
3476
+ "background": "#DC262625",
3477
+ "border": "#DC2626",
3478
+ "text": "#FCA5A5",
3479
+ },
3480
+ "log": {
3481
+ "background": "#3B82F615",
3482
+ "border": "#3B82F6",
3483
+ },
3484
+ "verbose": {
3485
+ "background": "#6B728015",
3486
+ "border": "#6B7280",
3487
+ },
3488
+ "warn": {
3489
+ "background": "#F59E0B15",
3490
+ "border": "#F59E0B",
3491
+ },
3492
+ },
3493
+ "name": "dark",
3494
+ "progress": {
3495
+ "background": "#3B82F615",
3496
+ "barEmpty": "#374151",
3497
+ "barFilled": "#3B82F6",
3498
+ "border": "#3B82F6",
3499
+ "complete": "#22C55E",
3500
+ "completeBackground": "#22C55E15",
3501
+ "failed": "#EF4444",
3502
+ "failedBackground": "#EF444415",
3503
+ "text": "#E5E7EB",
3504
+ "textDim": "#9CA3AF",
3505
+ },
3506
+ "prompt": {
3507
+ "border": "#374151",
3508
+ "buttonBackground": "#374151",
3509
+ "buttonSelectedBackground": "#1F2937",
3510
+ "cancelButton": "#EF4444",
3511
+ "confirmButton": "#22C55E",
3512
+ "focusBorder": "#3B82F6",
3513
+ "inputBackground": "#1F2937",
3514
+ "inputBorder": "#3B82F6",
3515
+ "inputCursor": "#3B82F6",
3516
+ "inputPlaceholder": "#6B7280",
3517
+ "inputText": "#F9FAFB",
3518
+ "optionSelected": "#3B82F6",
3519
+ "optionSelectedBackground": "#1E3A5F",
3520
+ "optionText": "#E5E7EB",
3521
+ "optionTextDim": "#9CA3AF",
3522
+ "question": "#F9FAFB",
3523
+ },
3524
+ "separator": {
3525
+ "line": "#374151",
3526
+ "text": "#6B7280",
3527
+ },
3528
+ "sidebar": {
3529
+ "background": undefined,
3530
+ "badge": "#3B82F6",
3531
+ "border": "#374151",
3532
+ "focusBorder": "#3B82F6",
3533
+ "hoverBackground": "#374151",
3534
+ "selectedBackground": "#1F293780",
3535
+ "text": "#E5E7EB",
3536
+ "textDim": "#6B7280",
3537
+ },
3538
+ "statusIndicators": {
3539
+ "fail": {
3540
+ "color": "#EF4444",
3541
+ "icon": "✗",
3542
+ },
3543
+ "pending": {
3544
+ "color": "#F59E0B",
3545
+ "icon": "◐",
3546
+ },
3547
+ "static": {
3548
+ "color": "#3B82F6",
3549
+ "icon": "●",
3550
+ },
3551
+ "success": {
3552
+ "color": "#22C55E",
3553
+ "icon": "✓",
3554
+ },
3555
+ "waiting": {
3556
+ "color": "#6B7280",
3557
+ "icon": "○",
3558
+ },
3559
+ },
3560
+ "table": {
3561
+ "background": "#3B82F615",
3562
+ "border": "#3B82F6",
3563
+ "cellText": "#E5E7EB",
3564
+ "headerText": "#F9FAFB",
3565
+ "separator": "#3B82F650",
3566
+ "title": "#F9FAFB",
3567
+ },
3568
+ },
3569
+ },
3570
+ "ref": null,
3571
+ "type": [Function: LoggerProvider],
3572
+ }
3573
+ `;
3574
+
3575
+ exports[`FilterBar log level toggles should render with only one level enabled 1`] = `
3576
+ {
3577
+ "$$typeof": Symbol(react.transitional.element),
3578
+ "_debugInfo": null,
3579
+ "_debugStack": [Error: react-stack-top-frame],
3580
+ "_debugTask": null,
3581
+ "_owner": null,
3582
+ "_store": {
3583
+ "validated": 0,
3584
+ },
3585
+ "key": null,
3586
+ "props": {
3587
+ "children": {
3588
+ "$$typeof": Symbol(react.transitional.element),
3589
+ "_debugInfo": null,
3590
+ "_debugStack": [Error: react-stack-top-frame],
3591
+ "_debugTask": null,
3592
+ "_owner": null,
3593
+ "_store": {
3594
+ "validated": 1,
3595
+ },
3596
+ "key": null,
3597
+ "props": {
3598
+ "filter": {
3599
+ "enabledLevels":
3600
+ Set {
3601
+ "error",
3602
+ }
3603
+ ,
3604
+ "focusedField": "search",
3605
+ "isVisible": false,
3606
+ "searchQuery": "",
3607
+ },
3608
+ "levelCounts": {
3609
+ "debug": 0,
3610
+ "error": 0,
3611
+ "fatal": 0,
3612
+ "log": 0,
3613
+ "verbose": 0,
3614
+ "warn": 0,
3615
+ },
3616
+ },
3617
+ "ref": null,
3618
+ "type": [Function: FilterBar],
3619
+ },
3620
+ "levelColors": undefined,
3621
+ "theme": {
3622
+ "colors": {
3623
+ "background": "#111827",
3624
+ "error": "#EF4444",
3625
+ "foreground": "#F9FAFB",
3626
+ "muted": "#6B7280",
3627
+ "primary": "#3B82F6",
3628
+ "secondary": "#8B5CF6",
3629
+ "success": "#22C55E",
3630
+ "warning": "#F59E0B",
3631
+ },
3632
+ "errorHighlight": {
3633
+ "background": "#EF444425",
3634
+ "border": "#EF4444",
3635
+ "gutterBackground": "#EF444440",
3636
+ },
3637
+ "file": {
3638
+ "background": "#3B82F615",
3639
+ "border": "#3B82F6",
3640
+ "headerBackground": "#3B82F625",
3641
+ "headerText": "#F9FAFB",
3642
+ },
3643
+ "filter": {
3644
+ "activeLevel": "#3B82F6",
3645
+ "background": "#1F293780",
3646
+ "border": "#3B82F6",
3647
+ "cursor": "#3B82F6",
3648
+ "inactiveLevel": "#4B5563",
3649
+ "inputBackground": "#1F2937",
3650
+ "inputPlaceholder": "#6B7280",
3651
+ "inputText": "#F9FAFB",
3652
+ "text": "#E5E7EB",
3653
+ "textDim": "#6B7280",
3654
+ },
3655
+ "group": {
3656
+ "background": "#6B728010",
3657
+ "border": "#6B7280",
3658
+ "headerText": "#E5E7EB",
3659
+ "icon": "#9CA3AF",
3660
+ },
3661
+ "header": {
3662
+ "background": undefined,
3663
+ "border": "#374151",
3664
+ "text": "#F9FAFB",
3665
+ },
3666
+ "help": {
3667
+ "background": "#1F2937",
3668
+ "border": "#3B82F6",
3669
+ "category": "#3B82F6",
3670
+ "description": "#E5E7EB",
3671
+ "hint": "#6B7280",
3672
+ "key": "#F59E0B",
3673
+ "title": "#F9FAFB",
3674
+ },
3675
+ "logLevels": {
3676
+ "debug": {
3677
+ "background": "#8B5CF615",
3678
+ "border": "#8B5CF6",
3679
+ },
3680
+ "error": {
3681
+ "background": "#EF444415",
3682
+ "border": "#EF4444",
3683
+ },
3684
+ "fatal": {
3685
+ "background": "#DC262625",
3686
+ "border": "#DC2626",
3687
+ "text": "#FCA5A5",
3688
+ },
3689
+ "log": {
3690
+ "background": "#3B82F615",
3691
+ "border": "#3B82F6",
3692
+ },
3693
+ "verbose": {
3694
+ "background": "#6B728015",
3695
+ "border": "#6B7280",
3696
+ },
3697
+ "warn": {
3698
+ "background": "#F59E0B15",
3699
+ "border": "#F59E0B",
3700
+ },
3701
+ },
3702
+ "name": "dark",
3703
+ "progress": {
3704
+ "background": "#3B82F615",
3705
+ "barEmpty": "#374151",
3706
+ "barFilled": "#3B82F6",
3707
+ "border": "#3B82F6",
3708
+ "complete": "#22C55E",
3709
+ "completeBackground": "#22C55E15",
3710
+ "failed": "#EF4444",
3711
+ "failedBackground": "#EF444415",
3712
+ "text": "#E5E7EB",
3713
+ "textDim": "#9CA3AF",
3714
+ },
3715
+ "prompt": {
3716
+ "border": "#374151",
3717
+ "buttonBackground": "#374151",
3718
+ "buttonSelectedBackground": "#1F2937",
3719
+ "cancelButton": "#EF4444",
3720
+ "confirmButton": "#22C55E",
3721
+ "focusBorder": "#3B82F6",
3722
+ "inputBackground": "#1F2937",
3723
+ "inputBorder": "#3B82F6",
3724
+ "inputCursor": "#3B82F6",
3725
+ "inputPlaceholder": "#6B7280",
3726
+ "inputText": "#F9FAFB",
3727
+ "optionSelected": "#3B82F6",
3728
+ "optionSelectedBackground": "#1E3A5F",
3729
+ "optionText": "#E5E7EB",
3730
+ "optionTextDim": "#9CA3AF",
3731
+ "question": "#F9FAFB",
3732
+ },
3733
+ "separator": {
3734
+ "line": "#374151",
3735
+ "text": "#6B7280",
3736
+ },
3737
+ "sidebar": {
3738
+ "background": undefined,
3739
+ "badge": "#3B82F6",
3740
+ "border": "#374151",
3741
+ "focusBorder": "#3B82F6",
3742
+ "hoverBackground": "#374151",
3743
+ "selectedBackground": "#1F293780",
3744
+ "text": "#E5E7EB",
3745
+ "textDim": "#6B7280",
3746
+ },
3747
+ "statusIndicators": {
3748
+ "fail": {
3749
+ "color": "#EF4444",
3750
+ "icon": "✗",
3751
+ },
3752
+ "pending": {
3753
+ "color": "#F59E0B",
3754
+ "icon": "◐",
3755
+ },
3756
+ "static": {
3757
+ "color": "#3B82F6",
3758
+ "icon": "●",
3759
+ },
3760
+ "success": {
3761
+ "color": "#22C55E",
3762
+ "icon": "✓",
3763
+ },
3764
+ "waiting": {
3765
+ "color": "#6B7280",
3766
+ "icon": "○",
3767
+ },
3768
+ },
3769
+ "table": {
3770
+ "background": "#3B82F615",
3771
+ "border": "#3B82F6",
3772
+ "cellText": "#E5E7EB",
3773
+ "headerText": "#F9FAFB",
3774
+ "separator": "#3B82F650",
3775
+ "title": "#F9FAFB",
3776
+ },
3777
+ },
3778
+ },
3779
+ "ref": null,
3780
+ "type": [Function: LoggerProvider],
3781
+ }
3782
+ `;
3783
+
3784
+ exports[`FilterBar log level toggles should render with some levels disabled 1`] = `
3785
+ {
3786
+ "$$typeof": Symbol(react.transitional.element),
3787
+ "_debugInfo": null,
3788
+ "_debugStack": [Error: react-stack-top-frame],
3789
+ "_debugTask": null,
3790
+ "_owner": null,
3791
+ "_store": {
3792
+ "validated": 0,
3793
+ },
3794
+ "key": null,
3795
+ "props": {
3796
+ "children": {
3797
+ "$$typeof": Symbol(react.transitional.element),
3798
+ "_debugInfo": null,
3799
+ "_debugStack": [Error: react-stack-top-frame],
3800
+ "_debugTask": null,
3801
+ "_owner": null,
3802
+ "_store": {
3803
+ "validated": 1,
3804
+ },
3805
+ "key": null,
3806
+ "props": {
3807
+ "filter": {
3808
+ "enabledLevels":
3809
+ Set {
3810
+ "error",
3811
+ "fatal",
3812
+ "warn",
3813
+ }
3814
+ ,
3815
+ "focusedField": "search",
3816
+ "isVisible": false,
3817
+ "searchQuery": "",
3818
+ },
3819
+ "levelCounts": {
3820
+ "debug": 0,
3821
+ "error": 0,
3822
+ "fatal": 0,
3823
+ "log": 0,
3824
+ "verbose": 0,
3825
+ "warn": 0,
3826
+ },
3827
+ },
3828
+ "ref": null,
3829
+ "type": [Function: FilterBar],
3830
+ },
3831
+ "levelColors": undefined,
3832
+ "theme": {
3833
+ "colors": {
3834
+ "background": "#111827",
3835
+ "error": "#EF4444",
3836
+ "foreground": "#F9FAFB",
3837
+ "muted": "#6B7280",
3838
+ "primary": "#3B82F6",
3839
+ "secondary": "#8B5CF6",
3840
+ "success": "#22C55E",
3841
+ "warning": "#F59E0B",
3842
+ },
3843
+ "errorHighlight": {
3844
+ "background": "#EF444425",
3845
+ "border": "#EF4444",
3846
+ "gutterBackground": "#EF444440",
3847
+ },
3848
+ "file": {
3849
+ "background": "#3B82F615",
3850
+ "border": "#3B82F6",
3851
+ "headerBackground": "#3B82F625",
3852
+ "headerText": "#F9FAFB",
3853
+ },
3854
+ "filter": {
3855
+ "activeLevel": "#3B82F6",
3856
+ "background": "#1F293780",
3857
+ "border": "#3B82F6",
3858
+ "cursor": "#3B82F6",
3859
+ "inactiveLevel": "#4B5563",
3860
+ "inputBackground": "#1F2937",
3861
+ "inputPlaceholder": "#6B7280",
3862
+ "inputText": "#F9FAFB",
3863
+ "text": "#E5E7EB",
3864
+ "textDim": "#6B7280",
3865
+ },
3866
+ "group": {
3867
+ "background": "#6B728010",
3868
+ "border": "#6B7280",
3869
+ "headerText": "#E5E7EB",
3870
+ "icon": "#9CA3AF",
3871
+ },
3872
+ "header": {
3873
+ "background": undefined,
3874
+ "border": "#374151",
3875
+ "text": "#F9FAFB",
3876
+ },
3877
+ "help": {
3878
+ "background": "#1F2937",
3879
+ "border": "#3B82F6",
3880
+ "category": "#3B82F6",
3881
+ "description": "#E5E7EB",
3882
+ "hint": "#6B7280",
3883
+ "key": "#F59E0B",
3884
+ "title": "#F9FAFB",
3885
+ },
3886
+ "logLevels": {
3887
+ "debug": {
3888
+ "background": "#8B5CF615",
3889
+ "border": "#8B5CF6",
3890
+ },
3891
+ "error": {
3892
+ "background": "#EF444415",
3893
+ "border": "#EF4444",
3894
+ },
3895
+ "fatal": {
3896
+ "background": "#DC262625",
3897
+ "border": "#DC2626",
3898
+ "text": "#FCA5A5",
3899
+ },
3900
+ "log": {
3901
+ "background": "#3B82F615",
3902
+ "border": "#3B82F6",
3903
+ },
3904
+ "verbose": {
3905
+ "background": "#6B728015",
3906
+ "border": "#6B7280",
3907
+ },
3908
+ "warn": {
3909
+ "background": "#F59E0B15",
3910
+ "border": "#F59E0B",
3911
+ },
3912
+ },
3913
+ "name": "dark",
3914
+ "progress": {
3915
+ "background": "#3B82F615",
3916
+ "barEmpty": "#374151",
3917
+ "barFilled": "#3B82F6",
3918
+ "border": "#3B82F6",
3919
+ "complete": "#22C55E",
3920
+ "completeBackground": "#22C55E15",
3921
+ "failed": "#EF4444",
3922
+ "failedBackground": "#EF444415",
3923
+ "text": "#E5E7EB",
3924
+ "textDim": "#9CA3AF",
3925
+ },
3926
+ "prompt": {
3927
+ "border": "#374151",
3928
+ "buttonBackground": "#374151",
3929
+ "buttonSelectedBackground": "#1F2937",
3930
+ "cancelButton": "#EF4444",
3931
+ "confirmButton": "#22C55E",
3932
+ "focusBorder": "#3B82F6",
3933
+ "inputBackground": "#1F2937",
3934
+ "inputBorder": "#3B82F6",
3935
+ "inputCursor": "#3B82F6",
3936
+ "inputPlaceholder": "#6B7280",
3937
+ "inputText": "#F9FAFB",
3938
+ "optionSelected": "#3B82F6",
3939
+ "optionSelectedBackground": "#1E3A5F",
3940
+ "optionText": "#E5E7EB",
3941
+ "optionTextDim": "#9CA3AF",
3942
+ "question": "#F9FAFB",
3943
+ },
3944
+ "separator": {
3945
+ "line": "#374151",
3946
+ "text": "#6B7280",
3947
+ },
3948
+ "sidebar": {
3949
+ "background": undefined,
3950
+ "badge": "#3B82F6",
3951
+ "border": "#374151",
3952
+ "focusBorder": "#3B82F6",
3953
+ "hoverBackground": "#374151",
3954
+ "selectedBackground": "#1F293780",
3955
+ "text": "#E5E7EB",
3956
+ "textDim": "#6B7280",
3957
+ },
3958
+ "statusIndicators": {
3959
+ "fail": {
3960
+ "color": "#EF4444",
3961
+ "icon": "✗",
3962
+ },
3963
+ "pending": {
3964
+ "color": "#F59E0B",
3965
+ "icon": "◐",
3966
+ },
3967
+ "static": {
3968
+ "color": "#3B82F6",
3969
+ "icon": "●",
3970
+ },
3971
+ "success": {
3972
+ "color": "#22C55E",
3973
+ "icon": "✓",
3974
+ },
3975
+ "waiting": {
3976
+ "color": "#6B7280",
3977
+ "icon": "○",
3978
+ },
3979
+ },
3980
+ "table": {
3981
+ "background": "#3B82F615",
3982
+ "border": "#3B82F6",
3983
+ "cellText": "#E5E7EB",
3984
+ "headerText": "#F9FAFB",
3985
+ "separator": "#3B82F650",
3986
+ "title": "#F9FAFB",
3987
+ },
3988
+ },
3989
+ },
3990
+ "ref": null,
3991
+ "type": [Function: LoggerProvider],
3992
+ }
3993
+ `;
3994
+
3995
+ exports[`FilterBar search input should render levels focused state 1`] = `
3996
+ {
3997
+ "$$typeof": Symbol(react.transitional.element),
3998
+ "_debugInfo": null,
3999
+ "_debugStack": [Error: react-stack-top-frame],
4000
+ "_debugTask": null,
4001
+ "_owner": null,
4002
+ "_store": {
4003
+ "validated": 0,
4004
+ },
4005
+ "key": null,
4006
+ "props": {
4007
+ "children": {
4008
+ "$$typeof": Symbol(react.transitional.element),
4009
+ "_debugInfo": null,
4010
+ "_debugStack": [Error: react-stack-top-frame],
4011
+ "_debugTask": null,
4012
+ "_owner": null,
4013
+ "_store": {
4014
+ "validated": 1,
4015
+ },
4016
+ "key": null,
4017
+ "props": {
4018
+ "filter": {
4019
+ "enabledLevels":
4020
+ Set {
4021
+ "verbose",
4022
+ "debug",
4023
+ "log",
4024
+ "warn",
4025
+ "error",
4026
+ "fatal",
4027
+ }
4028
+ ,
4029
+ "focusedField": "levels",
4030
+ "isVisible": false,
4031
+ "searchQuery": "",
4032
+ },
4033
+ "levelCounts": {
4034
+ "debug": 0,
4035
+ "error": 0,
4036
+ "fatal": 0,
4037
+ "log": 0,
4038
+ "verbose": 0,
4039
+ "warn": 0,
4040
+ },
4041
+ },
4042
+ "ref": null,
4043
+ "type": [Function: FilterBar],
4044
+ },
4045
+ "levelColors": undefined,
4046
+ "theme": {
4047
+ "colors": {
4048
+ "background": "#111827",
4049
+ "error": "#EF4444",
4050
+ "foreground": "#F9FAFB",
4051
+ "muted": "#6B7280",
4052
+ "primary": "#3B82F6",
4053
+ "secondary": "#8B5CF6",
4054
+ "success": "#22C55E",
4055
+ "warning": "#F59E0B",
4056
+ },
4057
+ "errorHighlight": {
4058
+ "background": "#EF444425",
4059
+ "border": "#EF4444",
4060
+ "gutterBackground": "#EF444440",
4061
+ },
4062
+ "file": {
4063
+ "background": "#3B82F615",
4064
+ "border": "#3B82F6",
4065
+ "headerBackground": "#3B82F625",
4066
+ "headerText": "#F9FAFB",
4067
+ },
4068
+ "filter": {
4069
+ "activeLevel": "#3B82F6",
4070
+ "background": "#1F293780",
4071
+ "border": "#3B82F6",
4072
+ "cursor": "#3B82F6",
4073
+ "inactiveLevel": "#4B5563",
4074
+ "inputBackground": "#1F2937",
4075
+ "inputPlaceholder": "#6B7280",
4076
+ "inputText": "#F9FAFB",
4077
+ "text": "#E5E7EB",
4078
+ "textDim": "#6B7280",
4079
+ },
4080
+ "group": {
4081
+ "background": "#6B728010",
4082
+ "border": "#6B7280",
4083
+ "headerText": "#E5E7EB",
4084
+ "icon": "#9CA3AF",
4085
+ },
4086
+ "header": {
4087
+ "background": undefined,
4088
+ "border": "#374151",
4089
+ "text": "#F9FAFB",
4090
+ },
4091
+ "help": {
4092
+ "background": "#1F2937",
4093
+ "border": "#3B82F6",
4094
+ "category": "#3B82F6",
4095
+ "description": "#E5E7EB",
4096
+ "hint": "#6B7280",
4097
+ "key": "#F59E0B",
4098
+ "title": "#F9FAFB",
4099
+ },
4100
+ "logLevels": {
4101
+ "debug": {
4102
+ "background": "#8B5CF615",
4103
+ "border": "#8B5CF6",
4104
+ },
4105
+ "error": {
4106
+ "background": "#EF444415",
4107
+ "border": "#EF4444",
4108
+ },
4109
+ "fatal": {
4110
+ "background": "#DC262625",
4111
+ "border": "#DC2626",
4112
+ "text": "#FCA5A5",
4113
+ },
4114
+ "log": {
4115
+ "background": "#3B82F615",
4116
+ "border": "#3B82F6",
4117
+ },
4118
+ "verbose": {
4119
+ "background": "#6B728015",
4120
+ "border": "#6B7280",
4121
+ },
4122
+ "warn": {
4123
+ "background": "#F59E0B15",
4124
+ "border": "#F59E0B",
4125
+ },
4126
+ },
4127
+ "name": "dark",
4128
+ "progress": {
4129
+ "background": "#3B82F615",
4130
+ "barEmpty": "#374151",
4131
+ "barFilled": "#3B82F6",
4132
+ "border": "#3B82F6",
4133
+ "complete": "#22C55E",
4134
+ "completeBackground": "#22C55E15",
4135
+ "failed": "#EF4444",
4136
+ "failedBackground": "#EF444415",
4137
+ "text": "#E5E7EB",
4138
+ "textDim": "#9CA3AF",
4139
+ },
4140
+ "prompt": {
4141
+ "border": "#374151",
4142
+ "buttonBackground": "#374151",
4143
+ "buttonSelectedBackground": "#1F2937",
4144
+ "cancelButton": "#EF4444",
4145
+ "confirmButton": "#22C55E",
4146
+ "focusBorder": "#3B82F6",
4147
+ "inputBackground": "#1F2937",
4148
+ "inputBorder": "#3B82F6",
4149
+ "inputCursor": "#3B82F6",
4150
+ "inputPlaceholder": "#6B7280",
4151
+ "inputText": "#F9FAFB",
4152
+ "optionSelected": "#3B82F6",
4153
+ "optionSelectedBackground": "#1E3A5F",
4154
+ "optionText": "#E5E7EB",
4155
+ "optionTextDim": "#9CA3AF",
4156
+ "question": "#F9FAFB",
4157
+ },
4158
+ "separator": {
4159
+ "line": "#374151",
4160
+ "text": "#6B7280",
4161
+ },
4162
+ "sidebar": {
4163
+ "background": undefined,
4164
+ "badge": "#3B82F6",
4165
+ "border": "#374151",
4166
+ "focusBorder": "#3B82F6",
4167
+ "hoverBackground": "#374151",
4168
+ "selectedBackground": "#1F293780",
4169
+ "text": "#E5E7EB",
4170
+ "textDim": "#6B7280",
4171
+ },
4172
+ "statusIndicators": {
4173
+ "fail": {
4174
+ "color": "#EF4444",
4175
+ "icon": "✗",
4176
+ },
4177
+ "pending": {
4178
+ "color": "#F59E0B",
4179
+ "icon": "◐",
4180
+ },
4181
+ "static": {
4182
+ "color": "#3B82F6",
4183
+ "icon": "●",
4184
+ },
4185
+ "success": {
4186
+ "color": "#22C55E",
4187
+ "icon": "✓",
4188
+ },
4189
+ "waiting": {
4190
+ "color": "#6B7280",
4191
+ "icon": "○",
4192
+ },
4193
+ },
4194
+ "table": {
4195
+ "background": "#3B82F615",
4196
+ "border": "#3B82F6",
4197
+ "cellText": "#E5E7EB",
4198
+ "headerText": "#F9FAFB",
4199
+ "separator": "#3B82F650",
4200
+ "title": "#F9FAFB",
4201
+ },
4202
+ },
4203
+ },
4204
+ "ref": null,
4205
+ "type": [Function: LoggerProvider],
4206
+ }
4207
+ `;
4208
+
4209
+ exports[`FilterBar search input should render search focused state 1`] = `
4210
+ {
4211
+ "$$typeof": Symbol(react.transitional.element),
4212
+ "_debugInfo": null,
4213
+ "_debugStack": [Error: react-stack-top-frame],
4214
+ "_debugTask": null,
4215
+ "_owner": null,
4216
+ "_store": {
4217
+ "validated": 0,
4218
+ },
4219
+ "key": null,
4220
+ "props": {
4221
+ "children": {
4222
+ "$$typeof": Symbol(react.transitional.element),
4223
+ "_debugInfo": null,
4224
+ "_debugStack": [Error: react-stack-top-frame],
4225
+ "_debugTask": null,
4226
+ "_owner": null,
4227
+ "_store": {
4228
+ "validated": 1,
4229
+ },
4230
+ "key": null,
4231
+ "props": {
4232
+ "filter": {
4233
+ "enabledLevels":
4234
+ Set {
4235
+ "verbose",
4236
+ "debug",
4237
+ "log",
4238
+ "warn",
4239
+ "error",
4240
+ "fatal",
4241
+ }
4242
+ ,
4243
+ "focusedField": "search",
4244
+ "isVisible": false,
4245
+ "searchQuery": "",
4246
+ },
4247
+ "levelCounts": {
4248
+ "debug": 0,
4249
+ "error": 0,
4250
+ "fatal": 0,
4251
+ "log": 0,
4252
+ "verbose": 0,
4253
+ "warn": 0,
4254
+ },
4255
+ },
4256
+ "ref": null,
4257
+ "type": [Function: FilterBar],
4258
+ },
4259
+ "levelColors": undefined,
4260
+ "theme": {
4261
+ "colors": {
4262
+ "background": "#111827",
4263
+ "error": "#EF4444",
4264
+ "foreground": "#F9FAFB",
4265
+ "muted": "#6B7280",
4266
+ "primary": "#3B82F6",
4267
+ "secondary": "#8B5CF6",
4268
+ "success": "#22C55E",
4269
+ "warning": "#F59E0B",
4270
+ },
4271
+ "errorHighlight": {
4272
+ "background": "#EF444425",
4273
+ "border": "#EF4444",
4274
+ "gutterBackground": "#EF444440",
4275
+ },
4276
+ "file": {
4277
+ "background": "#3B82F615",
4278
+ "border": "#3B82F6",
4279
+ "headerBackground": "#3B82F625",
4280
+ "headerText": "#F9FAFB",
4281
+ },
4282
+ "filter": {
4283
+ "activeLevel": "#3B82F6",
4284
+ "background": "#1F293780",
4285
+ "border": "#3B82F6",
4286
+ "cursor": "#3B82F6",
4287
+ "inactiveLevel": "#4B5563",
4288
+ "inputBackground": "#1F2937",
4289
+ "inputPlaceholder": "#6B7280",
4290
+ "inputText": "#F9FAFB",
4291
+ "text": "#E5E7EB",
4292
+ "textDim": "#6B7280",
4293
+ },
4294
+ "group": {
4295
+ "background": "#6B728010",
4296
+ "border": "#6B7280",
4297
+ "headerText": "#E5E7EB",
4298
+ "icon": "#9CA3AF",
4299
+ },
4300
+ "header": {
4301
+ "background": undefined,
4302
+ "border": "#374151",
4303
+ "text": "#F9FAFB",
4304
+ },
4305
+ "help": {
4306
+ "background": "#1F2937",
4307
+ "border": "#3B82F6",
4308
+ "category": "#3B82F6",
4309
+ "description": "#E5E7EB",
4310
+ "hint": "#6B7280",
4311
+ "key": "#F59E0B",
4312
+ "title": "#F9FAFB",
4313
+ },
4314
+ "logLevels": {
4315
+ "debug": {
4316
+ "background": "#8B5CF615",
4317
+ "border": "#8B5CF6",
4318
+ },
4319
+ "error": {
4320
+ "background": "#EF444415",
4321
+ "border": "#EF4444",
4322
+ },
4323
+ "fatal": {
4324
+ "background": "#DC262625",
4325
+ "border": "#DC2626",
4326
+ "text": "#FCA5A5",
4327
+ },
4328
+ "log": {
4329
+ "background": "#3B82F615",
4330
+ "border": "#3B82F6",
4331
+ },
4332
+ "verbose": {
4333
+ "background": "#6B728015",
4334
+ "border": "#6B7280",
4335
+ },
4336
+ "warn": {
4337
+ "background": "#F59E0B15",
4338
+ "border": "#F59E0B",
4339
+ },
4340
+ },
4341
+ "name": "dark",
4342
+ "progress": {
4343
+ "background": "#3B82F615",
4344
+ "barEmpty": "#374151",
4345
+ "barFilled": "#3B82F6",
4346
+ "border": "#3B82F6",
4347
+ "complete": "#22C55E",
4348
+ "completeBackground": "#22C55E15",
4349
+ "failed": "#EF4444",
4350
+ "failedBackground": "#EF444415",
4351
+ "text": "#E5E7EB",
4352
+ "textDim": "#9CA3AF",
4353
+ },
4354
+ "prompt": {
4355
+ "border": "#374151",
4356
+ "buttonBackground": "#374151",
4357
+ "buttonSelectedBackground": "#1F2937",
4358
+ "cancelButton": "#EF4444",
4359
+ "confirmButton": "#22C55E",
4360
+ "focusBorder": "#3B82F6",
4361
+ "inputBackground": "#1F2937",
4362
+ "inputBorder": "#3B82F6",
4363
+ "inputCursor": "#3B82F6",
4364
+ "inputPlaceholder": "#6B7280",
4365
+ "inputText": "#F9FAFB",
4366
+ "optionSelected": "#3B82F6",
4367
+ "optionSelectedBackground": "#1E3A5F",
4368
+ "optionText": "#E5E7EB",
4369
+ "optionTextDim": "#9CA3AF",
4370
+ "question": "#F9FAFB",
4371
+ },
4372
+ "separator": {
4373
+ "line": "#374151",
4374
+ "text": "#6B7280",
4375
+ },
4376
+ "sidebar": {
4377
+ "background": undefined,
4378
+ "badge": "#3B82F6",
4379
+ "border": "#374151",
4380
+ "focusBorder": "#3B82F6",
4381
+ "hoverBackground": "#374151",
4382
+ "selectedBackground": "#1F293780",
4383
+ "text": "#E5E7EB",
4384
+ "textDim": "#6B7280",
4385
+ },
4386
+ "statusIndicators": {
4387
+ "fail": {
4388
+ "color": "#EF4444",
4389
+ "icon": "✗",
4390
+ },
4391
+ "pending": {
4392
+ "color": "#F59E0B",
4393
+ "icon": "◐",
4394
+ },
4395
+ "static": {
4396
+ "color": "#3B82F6",
4397
+ "icon": "●",
4398
+ },
4399
+ "success": {
4400
+ "color": "#22C55E",
4401
+ "icon": "✓",
4402
+ },
4403
+ "waiting": {
4404
+ "color": "#6B7280",
4405
+ "icon": "○",
4406
+ },
4407
+ },
4408
+ "table": {
4409
+ "background": "#3B82F615",
4410
+ "border": "#3B82F6",
4411
+ "cellText": "#E5E7EB",
4412
+ "headerText": "#F9FAFB",
4413
+ "separator": "#3B82F650",
4414
+ "title": "#F9FAFB",
4415
+ },
4416
+ },
4417
+ },
4418
+ "ref": null,
4419
+ "type": [Function: LoggerProvider],
4420
+ }
4421
+ `;
4422
+
4423
+ exports[`FilterBar search input should render search input 1`] = `
4424
+ {
4425
+ "$$typeof": Symbol(react.transitional.element),
4426
+ "_debugInfo": null,
4427
+ "_debugStack": [Error: react-stack-top-frame],
4428
+ "_debugTask": null,
4429
+ "_owner": null,
4430
+ "_store": {
4431
+ "validated": 0,
4432
+ },
4433
+ "key": null,
4434
+ "props": {
4435
+ "children": {
4436
+ "$$typeof": Symbol(react.transitional.element),
4437
+ "_debugInfo": null,
4438
+ "_debugStack": [Error: react-stack-top-frame],
4439
+ "_debugTask": null,
4440
+ "_owner": null,
4441
+ "_store": {
4442
+ "validated": 1,
4443
+ },
4444
+ "key": null,
4445
+ "props": {
4446
+ "filter": {
4447
+ "enabledLevels":
4448
+ Set {
4449
+ "verbose",
4450
+ "debug",
4451
+ "log",
4452
+ "warn",
4453
+ "error",
4454
+ "fatal",
4455
+ }
4456
+ ,
4457
+ "focusedField": "search",
4458
+ "isVisible": false,
4459
+ "searchQuery": "",
4460
+ },
4461
+ "levelCounts": {
4462
+ "debug": 0,
4463
+ "error": 0,
4464
+ "fatal": 0,
4465
+ "log": 0,
4466
+ "verbose": 0,
4467
+ "warn": 0,
4468
+ },
4469
+ },
4470
+ "ref": null,
4471
+ "type": [Function: FilterBar],
4472
+ },
4473
+ "levelColors": undefined,
4474
+ "theme": {
4475
+ "colors": {
4476
+ "background": "#111827",
4477
+ "error": "#EF4444",
4478
+ "foreground": "#F9FAFB",
4479
+ "muted": "#6B7280",
4480
+ "primary": "#3B82F6",
4481
+ "secondary": "#8B5CF6",
4482
+ "success": "#22C55E",
4483
+ "warning": "#F59E0B",
4484
+ },
4485
+ "errorHighlight": {
4486
+ "background": "#EF444425",
4487
+ "border": "#EF4444",
4488
+ "gutterBackground": "#EF444440",
4489
+ },
4490
+ "file": {
4491
+ "background": "#3B82F615",
4492
+ "border": "#3B82F6",
4493
+ "headerBackground": "#3B82F625",
4494
+ "headerText": "#F9FAFB",
4495
+ },
4496
+ "filter": {
4497
+ "activeLevel": "#3B82F6",
4498
+ "background": "#1F293780",
4499
+ "border": "#3B82F6",
4500
+ "cursor": "#3B82F6",
4501
+ "inactiveLevel": "#4B5563",
4502
+ "inputBackground": "#1F2937",
4503
+ "inputPlaceholder": "#6B7280",
4504
+ "inputText": "#F9FAFB",
4505
+ "text": "#E5E7EB",
4506
+ "textDim": "#6B7280",
4507
+ },
4508
+ "group": {
4509
+ "background": "#6B728010",
4510
+ "border": "#6B7280",
4511
+ "headerText": "#E5E7EB",
4512
+ "icon": "#9CA3AF",
4513
+ },
4514
+ "header": {
4515
+ "background": undefined,
4516
+ "border": "#374151",
4517
+ "text": "#F9FAFB",
4518
+ },
4519
+ "help": {
4520
+ "background": "#1F2937",
4521
+ "border": "#3B82F6",
4522
+ "category": "#3B82F6",
4523
+ "description": "#E5E7EB",
4524
+ "hint": "#6B7280",
4525
+ "key": "#F59E0B",
4526
+ "title": "#F9FAFB",
4527
+ },
4528
+ "logLevels": {
4529
+ "debug": {
4530
+ "background": "#8B5CF615",
4531
+ "border": "#8B5CF6",
4532
+ },
4533
+ "error": {
4534
+ "background": "#EF444415",
4535
+ "border": "#EF4444",
4536
+ },
4537
+ "fatal": {
4538
+ "background": "#DC262625",
4539
+ "border": "#DC2626",
4540
+ "text": "#FCA5A5",
4541
+ },
4542
+ "log": {
4543
+ "background": "#3B82F615",
4544
+ "border": "#3B82F6",
4545
+ },
4546
+ "verbose": {
4547
+ "background": "#6B728015",
4548
+ "border": "#6B7280",
4549
+ },
4550
+ "warn": {
4551
+ "background": "#F59E0B15",
4552
+ "border": "#F59E0B",
4553
+ },
4554
+ },
4555
+ "name": "dark",
4556
+ "progress": {
4557
+ "background": "#3B82F615",
4558
+ "barEmpty": "#374151",
4559
+ "barFilled": "#3B82F6",
4560
+ "border": "#3B82F6",
4561
+ "complete": "#22C55E",
4562
+ "completeBackground": "#22C55E15",
4563
+ "failed": "#EF4444",
4564
+ "failedBackground": "#EF444415",
4565
+ "text": "#E5E7EB",
4566
+ "textDim": "#9CA3AF",
4567
+ },
4568
+ "prompt": {
4569
+ "border": "#374151",
4570
+ "buttonBackground": "#374151",
4571
+ "buttonSelectedBackground": "#1F2937",
4572
+ "cancelButton": "#EF4444",
4573
+ "confirmButton": "#22C55E",
4574
+ "focusBorder": "#3B82F6",
4575
+ "inputBackground": "#1F2937",
4576
+ "inputBorder": "#3B82F6",
4577
+ "inputCursor": "#3B82F6",
4578
+ "inputPlaceholder": "#6B7280",
4579
+ "inputText": "#F9FAFB",
4580
+ "optionSelected": "#3B82F6",
4581
+ "optionSelectedBackground": "#1E3A5F",
4582
+ "optionText": "#E5E7EB",
4583
+ "optionTextDim": "#9CA3AF",
4584
+ "question": "#F9FAFB",
4585
+ },
4586
+ "separator": {
4587
+ "line": "#374151",
4588
+ "text": "#6B7280",
4589
+ },
4590
+ "sidebar": {
4591
+ "background": undefined,
4592
+ "badge": "#3B82F6",
4593
+ "border": "#374151",
4594
+ "focusBorder": "#3B82F6",
4595
+ "hoverBackground": "#374151",
4596
+ "selectedBackground": "#1F293780",
4597
+ "text": "#E5E7EB",
4598
+ "textDim": "#6B7280",
4599
+ },
4600
+ "statusIndicators": {
4601
+ "fail": {
4602
+ "color": "#EF4444",
4603
+ "icon": "✗",
4604
+ },
4605
+ "pending": {
4606
+ "color": "#F59E0B",
4607
+ "icon": "◐",
4608
+ },
4609
+ "static": {
4610
+ "color": "#3B82F6",
4611
+ "icon": "●",
4612
+ },
4613
+ "success": {
4614
+ "color": "#22C55E",
4615
+ "icon": "✓",
4616
+ },
4617
+ "waiting": {
4618
+ "color": "#6B7280",
4619
+ "icon": "○",
4620
+ },
4621
+ },
4622
+ "table": {
4623
+ "background": "#3B82F615",
4624
+ "border": "#3B82F6",
4625
+ "cellText": "#E5E7EB",
4626
+ "headerText": "#F9FAFB",
4627
+ "separator": "#3B82F650",
4628
+ "title": "#F9FAFB",
4629
+ },
4630
+ },
4631
+ },
4632
+ "ref": null,
4633
+ "type": [Function: LoggerProvider],
4634
+ }
4635
+ `;
4636
+
4637
+ exports[`FilterBar search input should render with active search query 1`] = `
4638
+ {
4639
+ "$$typeof": Symbol(react.transitional.element),
4640
+ "_debugInfo": null,
4641
+ "_debugStack": [Error: react-stack-top-frame],
4642
+ "_debugTask": null,
4643
+ "_owner": null,
4644
+ "_store": {
4645
+ "validated": 0,
4646
+ },
4647
+ "key": null,
4648
+ "props": {
4649
+ "children": {
4650
+ "$$typeof": Symbol(react.transitional.element),
4651
+ "_debugInfo": null,
4652
+ "_debugStack": [Error: react-stack-top-frame],
4653
+ "_debugTask": null,
4654
+ "_owner": null,
4655
+ "_store": {
4656
+ "validated": 1,
4657
+ },
4658
+ "key": null,
4659
+ "props": {
4660
+ "filter": {
4661
+ "enabledLevels":
4662
+ Set {
4663
+ "verbose",
4664
+ "debug",
4665
+ "log",
4666
+ "warn",
4667
+ "error",
4668
+ "fatal",
4669
+ }
4670
+ ,
4671
+ "focusedField": "search",
4672
+ "isVisible": false,
4673
+ "searchQuery": "error message",
4674
+ },
4675
+ "levelCounts": {
4676
+ "debug": 0,
4677
+ "error": 0,
4678
+ "fatal": 0,
4679
+ "log": 0,
4680
+ "verbose": 0,
4681
+ "warn": 0,
4682
+ },
4683
+ },
4684
+ "ref": null,
4685
+ "type": [Function: FilterBar],
4686
+ },
4687
+ "levelColors": undefined,
4688
+ "theme": {
4689
+ "colors": {
4690
+ "background": "#111827",
4691
+ "error": "#EF4444",
4692
+ "foreground": "#F9FAFB",
4693
+ "muted": "#6B7280",
4694
+ "primary": "#3B82F6",
4695
+ "secondary": "#8B5CF6",
4696
+ "success": "#22C55E",
4697
+ "warning": "#F59E0B",
4698
+ },
4699
+ "errorHighlight": {
4700
+ "background": "#EF444425",
4701
+ "border": "#EF4444",
4702
+ "gutterBackground": "#EF444440",
4703
+ },
4704
+ "file": {
4705
+ "background": "#3B82F615",
4706
+ "border": "#3B82F6",
4707
+ "headerBackground": "#3B82F625",
4708
+ "headerText": "#F9FAFB",
4709
+ },
4710
+ "filter": {
4711
+ "activeLevel": "#3B82F6",
4712
+ "background": "#1F293780",
4713
+ "border": "#3B82F6",
4714
+ "cursor": "#3B82F6",
4715
+ "inactiveLevel": "#4B5563",
4716
+ "inputBackground": "#1F2937",
4717
+ "inputPlaceholder": "#6B7280",
4718
+ "inputText": "#F9FAFB",
4719
+ "text": "#E5E7EB",
4720
+ "textDim": "#6B7280",
4721
+ },
4722
+ "group": {
4723
+ "background": "#6B728010",
4724
+ "border": "#6B7280",
4725
+ "headerText": "#E5E7EB",
4726
+ "icon": "#9CA3AF",
4727
+ },
4728
+ "header": {
4729
+ "background": undefined,
4730
+ "border": "#374151",
4731
+ "text": "#F9FAFB",
4732
+ },
4733
+ "help": {
4734
+ "background": "#1F2937",
4735
+ "border": "#3B82F6",
4736
+ "category": "#3B82F6",
4737
+ "description": "#E5E7EB",
4738
+ "hint": "#6B7280",
4739
+ "key": "#F59E0B",
4740
+ "title": "#F9FAFB",
4741
+ },
4742
+ "logLevels": {
4743
+ "debug": {
4744
+ "background": "#8B5CF615",
4745
+ "border": "#8B5CF6",
4746
+ },
4747
+ "error": {
4748
+ "background": "#EF444415",
4749
+ "border": "#EF4444",
4750
+ },
4751
+ "fatal": {
4752
+ "background": "#DC262625",
4753
+ "border": "#DC2626",
4754
+ "text": "#FCA5A5",
4755
+ },
4756
+ "log": {
4757
+ "background": "#3B82F615",
4758
+ "border": "#3B82F6",
4759
+ },
4760
+ "verbose": {
4761
+ "background": "#6B728015",
4762
+ "border": "#6B7280",
4763
+ },
4764
+ "warn": {
4765
+ "background": "#F59E0B15",
4766
+ "border": "#F59E0B",
4767
+ },
4768
+ },
4769
+ "name": "dark",
4770
+ "progress": {
4771
+ "background": "#3B82F615",
4772
+ "barEmpty": "#374151",
4773
+ "barFilled": "#3B82F6",
4774
+ "border": "#3B82F6",
4775
+ "complete": "#22C55E",
4776
+ "completeBackground": "#22C55E15",
4777
+ "failed": "#EF4444",
4778
+ "failedBackground": "#EF444415",
4779
+ "text": "#E5E7EB",
4780
+ "textDim": "#9CA3AF",
4781
+ },
4782
+ "prompt": {
4783
+ "border": "#374151",
4784
+ "buttonBackground": "#374151",
4785
+ "buttonSelectedBackground": "#1F2937",
4786
+ "cancelButton": "#EF4444",
4787
+ "confirmButton": "#22C55E",
4788
+ "focusBorder": "#3B82F6",
4789
+ "inputBackground": "#1F2937",
4790
+ "inputBorder": "#3B82F6",
4791
+ "inputCursor": "#3B82F6",
4792
+ "inputPlaceholder": "#6B7280",
4793
+ "inputText": "#F9FAFB",
4794
+ "optionSelected": "#3B82F6",
4795
+ "optionSelectedBackground": "#1E3A5F",
4796
+ "optionText": "#E5E7EB",
4797
+ "optionTextDim": "#9CA3AF",
4798
+ "question": "#F9FAFB",
4799
+ },
4800
+ "separator": {
4801
+ "line": "#374151",
4802
+ "text": "#6B7280",
4803
+ },
4804
+ "sidebar": {
4805
+ "background": undefined,
4806
+ "badge": "#3B82F6",
4807
+ "border": "#374151",
4808
+ "focusBorder": "#3B82F6",
4809
+ "hoverBackground": "#374151",
4810
+ "selectedBackground": "#1F293780",
4811
+ "text": "#E5E7EB",
4812
+ "textDim": "#6B7280",
4813
+ },
4814
+ "statusIndicators": {
4815
+ "fail": {
4816
+ "color": "#EF4444",
4817
+ "icon": "✗",
4818
+ },
4819
+ "pending": {
4820
+ "color": "#F59E0B",
4821
+ "icon": "◐",
4822
+ },
4823
+ "static": {
4824
+ "color": "#3B82F6",
4825
+ "icon": "●",
4826
+ },
4827
+ "success": {
4828
+ "color": "#22C55E",
4829
+ "icon": "✓",
4830
+ },
4831
+ "waiting": {
4832
+ "color": "#6B7280",
4833
+ "icon": "○",
4834
+ },
4835
+ },
4836
+ "table": {
4837
+ "background": "#3B82F615",
4838
+ "border": "#3B82F6",
4839
+ "cellText": "#E5E7EB",
4840
+ "headerText": "#F9FAFB",
4841
+ "separator": "#3B82F650",
4842
+ "title": "#F9FAFB",
4843
+ },
4844
+ },
4845
+ },
4846
+ "ref": null,
4847
+ "type": [Function: LoggerProvider],
4848
+ }
4849
+ `;