@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[`Sidebar > badge counts > should render badge counts 1`] = `
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": "✓",
@@ -334,6 +338,10 @@ exports[`Sidebar > focus state > should render focused state 1`] = `
334
338
  "color": "#F59E0B",
335
339
  "icon": "◐",
336
340
  },
341
+ "static": {
342
+ "color": "#3B82F6",
343
+ "icon": "●",
344
+ },
337
345
  "success": {
338
346
  "color": "#22C55E",
339
347
  "icon": "✓",
@@ -514,6 +522,10 @@ exports[`Sidebar > focus state > should render unfocused state 1`] = `
514
522
  "color": "#F59E0B",
515
523
  "icon": "◐",
516
524
  },
525
+ "static": {
526
+ "color": "#3B82F6",
527
+ "icon": "●",
528
+ },
517
529
  "success": {
518
530
  "color": "#22C55E",
519
531
  "icon": "✓",
@@ -694,6 +706,10 @@ exports[`Sidebar > icons > should render icons 1`] = `
694
706
  "color": "#F59E0B",
695
707
  "icon": "◐",
696
708
  },
709
+ "static": {
710
+ "color": "#3B82F6",
711
+ "icon": "●",
712
+ },
697
713
  "success": {
698
714
  "color": "#22C55E",
699
715
  "icon": "✓",
@@ -890,6 +906,10 @@ exports[`Sidebar > pending vs completed screens > should not show separator if n
890
906
  "color": "#F59E0B",
891
907
  "icon": "◐",
892
908
  },
909
+ "static": {
910
+ "color": "#3B82F6",
911
+ "icon": "●",
912
+ },
893
913
  "success": {
894
914
  "color": "#22C55E",
895
915
  "icon": "✓",
@@ -1078,6 +1098,10 @@ exports[`Sidebar > pending vs completed screens > should separate pending from o
1078
1098
  "color": "#F59E0B",
1079
1099
  "icon": "◐",
1080
1100
  },
1101
+ "static": {
1102
+ "color": "#3B82F6",
1103
+ "icon": "●",
1104
+ },
1081
1105
  "success": {
1082
1106
  "color": "#22C55E",
1083
1107
  "icon": "✓",
@@ -1282,6 +1306,10 @@ exports[`Sidebar > pending vs completed screens > should show separator between
1282
1306
  "color": "#F59E0B",
1283
1307
  "icon": "◐",
1284
1308
  },
1309
+ "static": {
1310
+ "color": "#3B82F6",
1311
+ "icon": "●",
1312
+ },
1285
1313
  "success": {
1286
1314
  "color": "#22C55E",
1287
1315
  "icon": "✓",
@@ -1470,6 +1498,10 @@ exports[`Sidebar > screen list > should render active screen highlighted 1`] = `
1470
1498
  "color": "#F59E0B",
1471
1499
  "icon": "◐",
1472
1500
  },
1501
+ "static": {
1502
+ "color": "#3B82F6",
1503
+ "icon": "●",
1504
+ },
1473
1505
  "success": {
1474
1506
  "color": "#22C55E",
1475
1507
  "icon": "✓",
@@ -1658,6 +1690,10 @@ exports[`Sidebar > screen list > should render screen list 1`] = `
1658
1690
  "color": "#F59E0B",
1659
1691
  "icon": "◐",
1660
1692
  },
1693
+ "static": {
1694
+ "color": "#3B82F6",
1695
+ "icon": "●",
1696
+ },
1661
1697
  "success": {
1662
1698
  "color": "#22C55E",
1663
1699
  "icon": "✓",
@@ -1854,6 +1890,10 @@ exports[`Sidebar > status indicators > should render fail status 1`] = `
1854
1890
  "color": "#F59E0B",
1855
1891
  "icon": "◐",
1856
1892
  },
1893
+ "static": {
1894
+ "color": "#3B82F6",
1895
+ "icon": "●",
1896
+ },
1857
1897
  "success": {
1858
1898
  "color": "#22C55E",
1859
1899
  "icon": "✓",
@@ -2034,6 +2074,194 @@ exports[`Sidebar > status indicators > should render pending status 1`] = `
2034
2074
  "color": "#F59E0B",
2035
2075
  "icon": "◐",
2036
2076
  },
2077
+ "static": {
2078
+ "color": "#3B82F6",
2079
+ "icon": "●",
2080
+ },
2081
+ "success": {
2082
+ "color": "#22C55E",
2083
+ "icon": "✓",
2084
+ },
2085
+ "waiting": {
2086
+ "color": "#6B7280",
2087
+ "icon": "○",
2088
+ },
2089
+ },
2090
+ "table": {
2091
+ "background": "#3B82F615",
2092
+ "border": "#3B82F6",
2093
+ "cellText": "#E5E7EB",
2094
+ "headerText": "#F9FAFB",
2095
+ "separator": "#3B82F650",
2096
+ "title": "#F9FAFB",
2097
+ },
2098
+ }
2099
+ }
2100
+ >
2101
+ <Sidebar
2102
+ activeScreenId="1"
2103
+ focused={true}
2104
+ screens={
2105
+ [
2106
+ {
2107
+ "getBadgeCount": [MockFunction],
2108
+ "getIcon": [MockFunction],
2109
+ "getId": [MockFunction],
2110
+ "getName": [MockFunction],
2111
+ "getStatus": [MockFunction],
2112
+ "isHidden": [MockFunction],
2113
+ },
2114
+ ]
2115
+ }
2116
+ selectedIndex={0}
2117
+ title="Screens"
2118
+ width={30}
2119
+ />
2120
+ </LoggerProvider>
2121
+ `;
2122
+
2123
+ exports[`Sidebar > status indicators > should render static status 1`] = `
2124
+ <LoggerProvider
2125
+ theme={
2126
+ {
2127
+ "colors": {
2128
+ "background": "#111827",
2129
+ "error": "#EF4444",
2130
+ "foreground": "#F9FAFB",
2131
+ "muted": "#6B7280",
2132
+ "primary": "#3B82F6",
2133
+ "secondary": "#8B5CF6",
2134
+ "success": "#22C55E",
2135
+ "warning": "#F59E0B",
2136
+ },
2137
+ "errorHighlight": {
2138
+ "background": "#EF444425",
2139
+ "border": "#EF4444",
2140
+ "gutterBackground": "#EF444440",
2141
+ },
2142
+ "file": {
2143
+ "background": "#3B82F615",
2144
+ "border": "#3B82F6",
2145
+ "headerBackground": "#3B82F625",
2146
+ "headerText": "#F9FAFB",
2147
+ },
2148
+ "filter": {
2149
+ "activeLevel": "#3B82F6",
2150
+ "background": "#1F293780",
2151
+ "border": "#3B82F6",
2152
+ "cursor": "#3B82F6",
2153
+ "inactiveLevel": "#4B5563",
2154
+ "inputBackground": "#1F2937",
2155
+ "inputPlaceholder": "#6B7280",
2156
+ "inputText": "#F9FAFB",
2157
+ "text": "#E5E7EB",
2158
+ "textDim": "#6B7280",
2159
+ },
2160
+ "group": {
2161
+ "background": "#6B728010",
2162
+ "border": "#6B7280",
2163
+ "headerText": "#E5E7EB",
2164
+ "icon": "#9CA3AF",
2165
+ },
2166
+ "header": {
2167
+ "background": undefined,
2168
+ "border": "#374151",
2169
+ "text": "#F9FAFB",
2170
+ },
2171
+ "help": {
2172
+ "background": "#1F2937",
2173
+ "border": "#3B82F6",
2174
+ "category": "#3B82F6",
2175
+ "description": "#E5E7EB",
2176
+ "hint": "#6B7280",
2177
+ "key": "#F59E0B",
2178
+ "title": "#F9FAFB",
2179
+ },
2180
+ "logLevels": {
2181
+ "debug": {
2182
+ "background": "#8B5CF615",
2183
+ "border": "#8B5CF6",
2184
+ },
2185
+ "error": {
2186
+ "background": "#EF444415",
2187
+ "border": "#EF4444",
2188
+ },
2189
+ "fatal": {
2190
+ "background": "#DC262625",
2191
+ "border": "#DC2626",
2192
+ "text": "#FCA5A5",
2193
+ },
2194
+ "log": {
2195
+ "background": "#3B82F615",
2196
+ "border": "#3B82F6",
2197
+ },
2198
+ "verbose": {
2199
+ "background": "#6B728015",
2200
+ "border": "#6B7280",
2201
+ },
2202
+ "warn": {
2203
+ "background": "#F59E0B15",
2204
+ "border": "#F59E0B",
2205
+ },
2206
+ },
2207
+ "name": "dark",
2208
+ "progress": {
2209
+ "background": "#3B82F615",
2210
+ "barEmpty": "#374151",
2211
+ "barFilled": "#3B82F6",
2212
+ "border": "#3B82F6",
2213
+ "complete": "#22C55E",
2214
+ "completeBackground": "#22C55E15",
2215
+ "failed": "#EF4444",
2216
+ "failedBackground": "#EF444415",
2217
+ "text": "#E5E7EB",
2218
+ "textDim": "#9CA3AF",
2219
+ },
2220
+ "prompt": {
2221
+ "border": "#374151",
2222
+ "buttonBackground": "#374151",
2223
+ "buttonSelectedBackground": "#1F2937",
2224
+ "cancelButton": "#EF4444",
2225
+ "confirmButton": "#22C55E",
2226
+ "focusBorder": "#3B82F6",
2227
+ "inputBackground": "#1F2937",
2228
+ "inputBorder": "#3B82F6",
2229
+ "inputCursor": "#3B82F6",
2230
+ "inputPlaceholder": "#6B7280",
2231
+ "inputText": "#F9FAFB",
2232
+ "optionSelected": "#3B82F6",
2233
+ "optionSelectedBackground": "#1E3A5F",
2234
+ "optionText": "#E5E7EB",
2235
+ "optionTextDim": "#9CA3AF",
2236
+ "question": "#F9FAFB",
2237
+ },
2238
+ "separator": {
2239
+ "line": "#374151",
2240
+ "text": "#6B7280",
2241
+ },
2242
+ "sidebar": {
2243
+ "background": undefined,
2244
+ "badge": "#3B82F6",
2245
+ "border": "#374151",
2246
+ "focusBorder": "#3B82F6",
2247
+ "hoverBackground": "#374151",
2248
+ "selectedBackground": "#1F293780",
2249
+ "text": "#E5E7EB",
2250
+ "textDim": "#6B7280",
2251
+ },
2252
+ "statusIndicators": {
2253
+ "fail": {
2254
+ "color": "#EF4444",
2255
+ "icon": "✗",
2256
+ },
2257
+ "pending": {
2258
+ "color": "#F59E0B",
2259
+ "icon": "◐",
2260
+ },
2261
+ "static": {
2262
+ "color": "#3B82F6",
2263
+ "icon": "●",
2264
+ },
2037
2265
  "success": {
2038
2266
  "color": "#22C55E",
2039
2267
  "icon": "✓",
@@ -2214,6 +2442,10 @@ exports[`Sidebar > status indicators > should render success status 1`] = `
2214
2442
  "color": "#F59E0B",
2215
2443
  "icon": "◐",
2216
2444
  },
2445
+ "static": {
2446
+ "color": "#3B82F6",
2447
+ "icon": "●",
2448
+ },
2217
2449
  "success": {
2218
2450
  "color": "#22C55E",
2219
2451
  "icon": "✓",
@@ -2394,6 +2626,10 @@ exports[`Sidebar > status indicators > should render waiting status 1`] = `
2394
2626
  "color": "#F59E0B",
2395
2627
  "icon": "◐",
2396
2628
  },
2629
+ "static": {
2630
+ "color": "#3B82F6",
2631
+ "icon": "●",
2632
+ },
2397
2633
  "success": {
2398
2634
  "color": "#22C55E",
2399
2635
  "icon": "✓",
@@ -2574,6 +2810,10 @@ exports[`Sidebar > title > should render custom title 1`] = `
2574
2810
  "color": "#F59E0B",
2575
2811
  "icon": "◐",
2576
2812
  },
2813
+ "static": {
2814
+ "color": "#3B82F6",
2815
+ "icon": "●",
2816
+ },
2577
2817
  "success": {
2578
2818
  "color": "#22C55E",
2579
2819
  "icon": "✓",
@@ -2615,3 +2855,3189 @@ exports[`Sidebar > title > should render custom title 1`] = `
2615
2855
  />
2616
2856
  </LoggerProvider>
2617
2857
  `;
2858
+
2859
+ exports[`Sidebar badge counts should render badge counts 1`] = `
2860
+ {
2861
+ "$$typeof": Symbol(react.transitional.element),
2862
+ "_debugInfo": null,
2863
+ "_debugStack": [Error: react-stack-top-frame],
2864
+ "_debugTask": null,
2865
+ "_owner": null,
2866
+ "_store": {
2867
+ "validated": 0,
2868
+ },
2869
+ "key": null,
2870
+ "props": {
2871
+ "children": {
2872
+ "$$typeof": Symbol(react.transitional.element),
2873
+ "_debugInfo": null,
2874
+ "_debugStack": [Error: react-stack-top-frame],
2875
+ "_debugTask": null,
2876
+ "_owner": null,
2877
+ "_store": {
2878
+ "validated": 1,
2879
+ },
2880
+ "key": null,
2881
+ "props": {
2882
+ "activeScreenId": "1",
2883
+ "focused": true,
2884
+ "screens": [
2885
+ {
2886
+ "getBadgeCount": [class Function],
2887
+ "getIcon": [class Function],
2888
+ "getId": [class Function],
2889
+ "getName": [class Function],
2890
+ "getStatus": [class Function],
2891
+ "isHidden": [class Function],
2892
+ },
2893
+ {
2894
+ "getBadgeCount": [class Function],
2895
+ "getIcon": [class Function],
2896
+ "getId": [class Function],
2897
+ "getName": [class Function],
2898
+ "getStatus": [class Function],
2899
+ "isHidden": [class Function],
2900
+ },
2901
+ {
2902
+ "getBadgeCount": [class Function],
2903
+ "getIcon": [class Function],
2904
+ "getId": [class Function],
2905
+ "getName": [class Function],
2906
+ "getStatus": [class Function],
2907
+ "isHidden": [class Function],
2908
+ },
2909
+ ],
2910
+ "selectedIndex": 0,
2911
+ "title": "Screens",
2912
+ "width": 30,
2913
+ },
2914
+ "ref": null,
2915
+ "type": [Function: Sidebar],
2916
+ },
2917
+ "levelColors": undefined,
2918
+ "theme": {
2919
+ "colors": {
2920
+ "background": "#111827",
2921
+ "error": "#EF4444",
2922
+ "foreground": "#F9FAFB",
2923
+ "muted": "#6B7280",
2924
+ "primary": "#3B82F6",
2925
+ "secondary": "#8B5CF6",
2926
+ "success": "#22C55E",
2927
+ "warning": "#F59E0B",
2928
+ },
2929
+ "errorHighlight": {
2930
+ "background": "#EF444425",
2931
+ "border": "#EF4444",
2932
+ "gutterBackground": "#EF444440",
2933
+ },
2934
+ "file": {
2935
+ "background": "#3B82F615",
2936
+ "border": "#3B82F6",
2937
+ "headerBackground": "#3B82F625",
2938
+ "headerText": "#F9FAFB",
2939
+ },
2940
+ "filter": {
2941
+ "activeLevel": "#3B82F6",
2942
+ "background": "#1F293780",
2943
+ "border": "#3B82F6",
2944
+ "cursor": "#3B82F6",
2945
+ "inactiveLevel": "#4B5563",
2946
+ "inputBackground": "#1F2937",
2947
+ "inputPlaceholder": "#6B7280",
2948
+ "inputText": "#F9FAFB",
2949
+ "text": "#E5E7EB",
2950
+ "textDim": "#6B7280",
2951
+ },
2952
+ "group": {
2953
+ "background": "#6B728010",
2954
+ "border": "#6B7280",
2955
+ "headerText": "#E5E7EB",
2956
+ "icon": "#9CA3AF",
2957
+ },
2958
+ "header": {
2959
+ "background": undefined,
2960
+ "border": "#374151",
2961
+ "text": "#F9FAFB",
2962
+ },
2963
+ "help": {
2964
+ "background": "#1F2937",
2965
+ "border": "#3B82F6",
2966
+ "category": "#3B82F6",
2967
+ "description": "#E5E7EB",
2968
+ "hint": "#6B7280",
2969
+ "key": "#F59E0B",
2970
+ "title": "#F9FAFB",
2971
+ },
2972
+ "logLevels": {
2973
+ "debug": {
2974
+ "background": "#8B5CF615",
2975
+ "border": "#8B5CF6",
2976
+ },
2977
+ "error": {
2978
+ "background": "#EF444415",
2979
+ "border": "#EF4444",
2980
+ },
2981
+ "fatal": {
2982
+ "background": "#DC262625",
2983
+ "border": "#DC2626",
2984
+ "text": "#FCA5A5",
2985
+ },
2986
+ "log": {
2987
+ "background": "#3B82F615",
2988
+ "border": "#3B82F6",
2989
+ },
2990
+ "verbose": {
2991
+ "background": "#6B728015",
2992
+ "border": "#6B7280",
2993
+ },
2994
+ "warn": {
2995
+ "background": "#F59E0B15",
2996
+ "border": "#F59E0B",
2997
+ },
2998
+ },
2999
+ "name": "dark",
3000
+ "progress": {
3001
+ "background": "#3B82F615",
3002
+ "barEmpty": "#374151",
3003
+ "barFilled": "#3B82F6",
3004
+ "border": "#3B82F6",
3005
+ "complete": "#22C55E",
3006
+ "completeBackground": "#22C55E15",
3007
+ "failed": "#EF4444",
3008
+ "failedBackground": "#EF444415",
3009
+ "text": "#E5E7EB",
3010
+ "textDim": "#9CA3AF",
3011
+ },
3012
+ "prompt": {
3013
+ "border": "#374151",
3014
+ "buttonBackground": "#374151",
3015
+ "buttonSelectedBackground": "#1F2937",
3016
+ "cancelButton": "#EF4444",
3017
+ "confirmButton": "#22C55E",
3018
+ "focusBorder": "#3B82F6",
3019
+ "inputBackground": "#1F2937",
3020
+ "inputBorder": "#3B82F6",
3021
+ "inputCursor": "#3B82F6",
3022
+ "inputPlaceholder": "#6B7280",
3023
+ "inputText": "#F9FAFB",
3024
+ "optionSelected": "#3B82F6",
3025
+ "optionSelectedBackground": "#1E3A5F",
3026
+ "optionText": "#E5E7EB",
3027
+ "optionTextDim": "#9CA3AF",
3028
+ "question": "#F9FAFB",
3029
+ },
3030
+ "separator": {
3031
+ "line": "#374151",
3032
+ "text": "#6B7280",
3033
+ },
3034
+ "sidebar": {
3035
+ "background": undefined,
3036
+ "badge": "#3B82F6",
3037
+ "border": "#374151",
3038
+ "focusBorder": "#3B82F6",
3039
+ "hoverBackground": "#374151",
3040
+ "selectedBackground": "#1F293780",
3041
+ "text": "#E5E7EB",
3042
+ "textDim": "#6B7280",
3043
+ },
3044
+ "statusIndicators": {
3045
+ "fail": {
3046
+ "color": "#EF4444",
3047
+ "icon": "✗",
3048
+ },
3049
+ "pending": {
3050
+ "color": "#F59E0B",
3051
+ "icon": "◐",
3052
+ },
3053
+ "static": {
3054
+ "color": "#3B82F6",
3055
+ "icon": "●",
3056
+ },
3057
+ "success": {
3058
+ "color": "#22C55E",
3059
+ "icon": "✓",
3060
+ },
3061
+ "waiting": {
3062
+ "color": "#6B7280",
3063
+ "icon": "○",
3064
+ },
3065
+ },
3066
+ "table": {
3067
+ "background": "#3B82F615",
3068
+ "border": "#3B82F6",
3069
+ "cellText": "#E5E7EB",
3070
+ "headerText": "#F9FAFB",
3071
+ "separator": "#3B82F650",
3072
+ "title": "#F9FAFB",
3073
+ },
3074
+ },
3075
+ },
3076
+ "ref": null,
3077
+ "type": [Function: LoggerProvider],
3078
+ }
3079
+ `;
3080
+
3081
+ exports[`Sidebar focus state should render focused state 1`] = `
3082
+ {
3083
+ "$$typeof": Symbol(react.transitional.element),
3084
+ "_debugInfo": null,
3085
+ "_debugStack": [Error: react-stack-top-frame],
3086
+ "_debugTask": null,
3087
+ "_owner": null,
3088
+ "_store": {
3089
+ "validated": 0,
3090
+ },
3091
+ "key": null,
3092
+ "props": {
3093
+ "children": {
3094
+ "$$typeof": Symbol(react.transitional.element),
3095
+ "_debugInfo": null,
3096
+ "_debugStack": [Error: react-stack-top-frame],
3097
+ "_debugTask": null,
3098
+ "_owner": null,
3099
+ "_store": {
3100
+ "validated": 1,
3101
+ },
3102
+ "key": null,
3103
+ "props": {
3104
+ "activeScreenId": "1",
3105
+ "focused": true,
3106
+ "screens": [
3107
+ {
3108
+ "getBadgeCount": [class Function],
3109
+ "getIcon": [class Function],
3110
+ "getId": [class Function],
3111
+ "getName": [class Function],
3112
+ "getStatus": [class Function],
3113
+ "isHidden": [class Function],
3114
+ },
3115
+ ],
3116
+ "selectedIndex": 0,
3117
+ "title": "Screens",
3118
+ "width": 30,
3119
+ },
3120
+ "ref": null,
3121
+ "type": [Function: Sidebar],
3122
+ },
3123
+ "levelColors": undefined,
3124
+ "theme": {
3125
+ "colors": {
3126
+ "background": "#111827",
3127
+ "error": "#EF4444",
3128
+ "foreground": "#F9FAFB",
3129
+ "muted": "#6B7280",
3130
+ "primary": "#3B82F6",
3131
+ "secondary": "#8B5CF6",
3132
+ "success": "#22C55E",
3133
+ "warning": "#F59E0B",
3134
+ },
3135
+ "errorHighlight": {
3136
+ "background": "#EF444425",
3137
+ "border": "#EF4444",
3138
+ "gutterBackground": "#EF444440",
3139
+ },
3140
+ "file": {
3141
+ "background": "#3B82F615",
3142
+ "border": "#3B82F6",
3143
+ "headerBackground": "#3B82F625",
3144
+ "headerText": "#F9FAFB",
3145
+ },
3146
+ "filter": {
3147
+ "activeLevel": "#3B82F6",
3148
+ "background": "#1F293780",
3149
+ "border": "#3B82F6",
3150
+ "cursor": "#3B82F6",
3151
+ "inactiveLevel": "#4B5563",
3152
+ "inputBackground": "#1F2937",
3153
+ "inputPlaceholder": "#6B7280",
3154
+ "inputText": "#F9FAFB",
3155
+ "text": "#E5E7EB",
3156
+ "textDim": "#6B7280",
3157
+ },
3158
+ "group": {
3159
+ "background": "#6B728010",
3160
+ "border": "#6B7280",
3161
+ "headerText": "#E5E7EB",
3162
+ "icon": "#9CA3AF",
3163
+ },
3164
+ "header": {
3165
+ "background": undefined,
3166
+ "border": "#374151",
3167
+ "text": "#F9FAFB",
3168
+ },
3169
+ "help": {
3170
+ "background": "#1F2937",
3171
+ "border": "#3B82F6",
3172
+ "category": "#3B82F6",
3173
+ "description": "#E5E7EB",
3174
+ "hint": "#6B7280",
3175
+ "key": "#F59E0B",
3176
+ "title": "#F9FAFB",
3177
+ },
3178
+ "logLevels": {
3179
+ "debug": {
3180
+ "background": "#8B5CF615",
3181
+ "border": "#8B5CF6",
3182
+ },
3183
+ "error": {
3184
+ "background": "#EF444415",
3185
+ "border": "#EF4444",
3186
+ },
3187
+ "fatal": {
3188
+ "background": "#DC262625",
3189
+ "border": "#DC2626",
3190
+ "text": "#FCA5A5",
3191
+ },
3192
+ "log": {
3193
+ "background": "#3B82F615",
3194
+ "border": "#3B82F6",
3195
+ },
3196
+ "verbose": {
3197
+ "background": "#6B728015",
3198
+ "border": "#6B7280",
3199
+ },
3200
+ "warn": {
3201
+ "background": "#F59E0B15",
3202
+ "border": "#F59E0B",
3203
+ },
3204
+ },
3205
+ "name": "dark",
3206
+ "progress": {
3207
+ "background": "#3B82F615",
3208
+ "barEmpty": "#374151",
3209
+ "barFilled": "#3B82F6",
3210
+ "border": "#3B82F6",
3211
+ "complete": "#22C55E",
3212
+ "completeBackground": "#22C55E15",
3213
+ "failed": "#EF4444",
3214
+ "failedBackground": "#EF444415",
3215
+ "text": "#E5E7EB",
3216
+ "textDim": "#9CA3AF",
3217
+ },
3218
+ "prompt": {
3219
+ "border": "#374151",
3220
+ "buttonBackground": "#374151",
3221
+ "buttonSelectedBackground": "#1F2937",
3222
+ "cancelButton": "#EF4444",
3223
+ "confirmButton": "#22C55E",
3224
+ "focusBorder": "#3B82F6",
3225
+ "inputBackground": "#1F2937",
3226
+ "inputBorder": "#3B82F6",
3227
+ "inputCursor": "#3B82F6",
3228
+ "inputPlaceholder": "#6B7280",
3229
+ "inputText": "#F9FAFB",
3230
+ "optionSelected": "#3B82F6",
3231
+ "optionSelectedBackground": "#1E3A5F",
3232
+ "optionText": "#E5E7EB",
3233
+ "optionTextDim": "#9CA3AF",
3234
+ "question": "#F9FAFB",
3235
+ },
3236
+ "separator": {
3237
+ "line": "#374151",
3238
+ "text": "#6B7280",
3239
+ },
3240
+ "sidebar": {
3241
+ "background": undefined,
3242
+ "badge": "#3B82F6",
3243
+ "border": "#374151",
3244
+ "focusBorder": "#3B82F6",
3245
+ "hoverBackground": "#374151",
3246
+ "selectedBackground": "#1F293780",
3247
+ "text": "#E5E7EB",
3248
+ "textDim": "#6B7280",
3249
+ },
3250
+ "statusIndicators": {
3251
+ "fail": {
3252
+ "color": "#EF4444",
3253
+ "icon": "✗",
3254
+ },
3255
+ "pending": {
3256
+ "color": "#F59E0B",
3257
+ "icon": "◐",
3258
+ },
3259
+ "static": {
3260
+ "color": "#3B82F6",
3261
+ "icon": "●",
3262
+ },
3263
+ "success": {
3264
+ "color": "#22C55E",
3265
+ "icon": "✓",
3266
+ },
3267
+ "waiting": {
3268
+ "color": "#6B7280",
3269
+ "icon": "○",
3270
+ },
3271
+ },
3272
+ "table": {
3273
+ "background": "#3B82F615",
3274
+ "border": "#3B82F6",
3275
+ "cellText": "#E5E7EB",
3276
+ "headerText": "#F9FAFB",
3277
+ "separator": "#3B82F650",
3278
+ "title": "#F9FAFB",
3279
+ },
3280
+ },
3281
+ },
3282
+ "ref": null,
3283
+ "type": [Function: LoggerProvider],
3284
+ }
3285
+ `;
3286
+
3287
+ exports[`Sidebar focus state should render unfocused state 1`] = `
3288
+ {
3289
+ "$$typeof": Symbol(react.transitional.element),
3290
+ "_debugInfo": null,
3291
+ "_debugStack": [Error: react-stack-top-frame],
3292
+ "_debugTask": null,
3293
+ "_owner": null,
3294
+ "_store": {
3295
+ "validated": 0,
3296
+ },
3297
+ "key": null,
3298
+ "props": {
3299
+ "children": {
3300
+ "$$typeof": Symbol(react.transitional.element),
3301
+ "_debugInfo": null,
3302
+ "_debugStack": [Error: react-stack-top-frame],
3303
+ "_debugTask": null,
3304
+ "_owner": null,
3305
+ "_store": {
3306
+ "validated": 1,
3307
+ },
3308
+ "key": null,
3309
+ "props": {
3310
+ "activeScreenId": "1",
3311
+ "focused": false,
3312
+ "screens": [
3313
+ {
3314
+ "getBadgeCount": [class Function],
3315
+ "getIcon": [class Function],
3316
+ "getId": [class Function],
3317
+ "getName": [class Function],
3318
+ "getStatus": [class Function],
3319
+ "isHidden": [class Function],
3320
+ },
3321
+ ],
3322
+ "selectedIndex": 0,
3323
+ "title": "Screens",
3324
+ "width": 30,
3325
+ },
3326
+ "ref": null,
3327
+ "type": [Function: Sidebar],
3328
+ },
3329
+ "levelColors": undefined,
3330
+ "theme": {
3331
+ "colors": {
3332
+ "background": "#111827",
3333
+ "error": "#EF4444",
3334
+ "foreground": "#F9FAFB",
3335
+ "muted": "#6B7280",
3336
+ "primary": "#3B82F6",
3337
+ "secondary": "#8B5CF6",
3338
+ "success": "#22C55E",
3339
+ "warning": "#F59E0B",
3340
+ },
3341
+ "errorHighlight": {
3342
+ "background": "#EF444425",
3343
+ "border": "#EF4444",
3344
+ "gutterBackground": "#EF444440",
3345
+ },
3346
+ "file": {
3347
+ "background": "#3B82F615",
3348
+ "border": "#3B82F6",
3349
+ "headerBackground": "#3B82F625",
3350
+ "headerText": "#F9FAFB",
3351
+ },
3352
+ "filter": {
3353
+ "activeLevel": "#3B82F6",
3354
+ "background": "#1F293780",
3355
+ "border": "#3B82F6",
3356
+ "cursor": "#3B82F6",
3357
+ "inactiveLevel": "#4B5563",
3358
+ "inputBackground": "#1F2937",
3359
+ "inputPlaceholder": "#6B7280",
3360
+ "inputText": "#F9FAFB",
3361
+ "text": "#E5E7EB",
3362
+ "textDim": "#6B7280",
3363
+ },
3364
+ "group": {
3365
+ "background": "#6B728010",
3366
+ "border": "#6B7280",
3367
+ "headerText": "#E5E7EB",
3368
+ "icon": "#9CA3AF",
3369
+ },
3370
+ "header": {
3371
+ "background": undefined,
3372
+ "border": "#374151",
3373
+ "text": "#F9FAFB",
3374
+ },
3375
+ "help": {
3376
+ "background": "#1F2937",
3377
+ "border": "#3B82F6",
3378
+ "category": "#3B82F6",
3379
+ "description": "#E5E7EB",
3380
+ "hint": "#6B7280",
3381
+ "key": "#F59E0B",
3382
+ "title": "#F9FAFB",
3383
+ },
3384
+ "logLevels": {
3385
+ "debug": {
3386
+ "background": "#8B5CF615",
3387
+ "border": "#8B5CF6",
3388
+ },
3389
+ "error": {
3390
+ "background": "#EF444415",
3391
+ "border": "#EF4444",
3392
+ },
3393
+ "fatal": {
3394
+ "background": "#DC262625",
3395
+ "border": "#DC2626",
3396
+ "text": "#FCA5A5",
3397
+ },
3398
+ "log": {
3399
+ "background": "#3B82F615",
3400
+ "border": "#3B82F6",
3401
+ },
3402
+ "verbose": {
3403
+ "background": "#6B728015",
3404
+ "border": "#6B7280",
3405
+ },
3406
+ "warn": {
3407
+ "background": "#F59E0B15",
3408
+ "border": "#F59E0B",
3409
+ },
3410
+ },
3411
+ "name": "dark",
3412
+ "progress": {
3413
+ "background": "#3B82F615",
3414
+ "barEmpty": "#374151",
3415
+ "barFilled": "#3B82F6",
3416
+ "border": "#3B82F6",
3417
+ "complete": "#22C55E",
3418
+ "completeBackground": "#22C55E15",
3419
+ "failed": "#EF4444",
3420
+ "failedBackground": "#EF444415",
3421
+ "text": "#E5E7EB",
3422
+ "textDim": "#9CA3AF",
3423
+ },
3424
+ "prompt": {
3425
+ "border": "#374151",
3426
+ "buttonBackground": "#374151",
3427
+ "buttonSelectedBackground": "#1F2937",
3428
+ "cancelButton": "#EF4444",
3429
+ "confirmButton": "#22C55E",
3430
+ "focusBorder": "#3B82F6",
3431
+ "inputBackground": "#1F2937",
3432
+ "inputBorder": "#3B82F6",
3433
+ "inputCursor": "#3B82F6",
3434
+ "inputPlaceholder": "#6B7280",
3435
+ "inputText": "#F9FAFB",
3436
+ "optionSelected": "#3B82F6",
3437
+ "optionSelectedBackground": "#1E3A5F",
3438
+ "optionText": "#E5E7EB",
3439
+ "optionTextDim": "#9CA3AF",
3440
+ "question": "#F9FAFB",
3441
+ },
3442
+ "separator": {
3443
+ "line": "#374151",
3444
+ "text": "#6B7280",
3445
+ },
3446
+ "sidebar": {
3447
+ "background": undefined,
3448
+ "badge": "#3B82F6",
3449
+ "border": "#374151",
3450
+ "focusBorder": "#3B82F6",
3451
+ "hoverBackground": "#374151",
3452
+ "selectedBackground": "#1F293780",
3453
+ "text": "#E5E7EB",
3454
+ "textDim": "#6B7280",
3455
+ },
3456
+ "statusIndicators": {
3457
+ "fail": {
3458
+ "color": "#EF4444",
3459
+ "icon": "✗",
3460
+ },
3461
+ "pending": {
3462
+ "color": "#F59E0B",
3463
+ "icon": "◐",
3464
+ },
3465
+ "static": {
3466
+ "color": "#3B82F6",
3467
+ "icon": "●",
3468
+ },
3469
+ "success": {
3470
+ "color": "#22C55E",
3471
+ "icon": "✓",
3472
+ },
3473
+ "waiting": {
3474
+ "color": "#6B7280",
3475
+ "icon": "○",
3476
+ },
3477
+ },
3478
+ "table": {
3479
+ "background": "#3B82F615",
3480
+ "border": "#3B82F6",
3481
+ "cellText": "#E5E7EB",
3482
+ "headerText": "#F9FAFB",
3483
+ "separator": "#3B82F650",
3484
+ "title": "#F9FAFB",
3485
+ },
3486
+ },
3487
+ },
3488
+ "ref": null,
3489
+ "type": [Function: LoggerProvider],
3490
+ }
3491
+ `;
3492
+
3493
+ exports[`Sidebar icons should render icons 1`] = `
3494
+ {
3495
+ "$$typeof": Symbol(react.transitional.element),
3496
+ "_debugInfo": null,
3497
+ "_debugStack": [Error: react-stack-top-frame],
3498
+ "_debugTask": null,
3499
+ "_owner": null,
3500
+ "_store": {
3501
+ "validated": 0,
3502
+ },
3503
+ "key": null,
3504
+ "props": {
3505
+ "children": {
3506
+ "$$typeof": Symbol(react.transitional.element),
3507
+ "_debugInfo": null,
3508
+ "_debugStack": [Error: react-stack-top-frame],
3509
+ "_debugTask": null,
3510
+ "_owner": null,
3511
+ "_store": {
3512
+ "validated": 1,
3513
+ },
3514
+ "key": null,
3515
+ "props": {
3516
+ "activeScreenId": "1",
3517
+ "focused": true,
3518
+ "screens": [
3519
+ {
3520
+ "getBadgeCount": [class Function],
3521
+ "getIcon": [class Function],
3522
+ "getId": [class Function],
3523
+ "getName": [class Function],
3524
+ "getStatus": [class Function],
3525
+ "isHidden": [class Function],
3526
+ },
3527
+ {
3528
+ "getBadgeCount": [class Function],
3529
+ "getIcon": [class Function],
3530
+ "getId": [class Function],
3531
+ "getName": [class Function],
3532
+ "getStatus": [class Function],
3533
+ "isHidden": [class Function],
3534
+ },
3535
+ {
3536
+ "getBadgeCount": [class Function],
3537
+ "getIcon": [class Function],
3538
+ "getId": [class Function],
3539
+ "getName": [class Function],
3540
+ "getStatus": [class Function],
3541
+ "isHidden": [class Function],
3542
+ },
3543
+ ],
3544
+ "selectedIndex": 0,
3545
+ "title": "Pipeline",
3546
+ "width": 30,
3547
+ },
3548
+ "ref": null,
3549
+ "type": [Function: Sidebar],
3550
+ },
3551
+ "levelColors": undefined,
3552
+ "theme": {
3553
+ "colors": {
3554
+ "background": "#111827",
3555
+ "error": "#EF4444",
3556
+ "foreground": "#F9FAFB",
3557
+ "muted": "#6B7280",
3558
+ "primary": "#3B82F6",
3559
+ "secondary": "#8B5CF6",
3560
+ "success": "#22C55E",
3561
+ "warning": "#F59E0B",
3562
+ },
3563
+ "errorHighlight": {
3564
+ "background": "#EF444425",
3565
+ "border": "#EF4444",
3566
+ "gutterBackground": "#EF444440",
3567
+ },
3568
+ "file": {
3569
+ "background": "#3B82F615",
3570
+ "border": "#3B82F6",
3571
+ "headerBackground": "#3B82F625",
3572
+ "headerText": "#F9FAFB",
3573
+ },
3574
+ "filter": {
3575
+ "activeLevel": "#3B82F6",
3576
+ "background": "#1F293780",
3577
+ "border": "#3B82F6",
3578
+ "cursor": "#3B82F6",
3579
+ "inactiveLevel": "#4B5563",
3580
+ "inputBackground": "#1F2937",
3581
+ "inputPlaceholder": "#6B7280",
3582
+ "inputText": "#F9FAFB",
3583
+ "text": "#E5E7EB",
3584
+ "textDim": "#6B7280",
3585
+ },
3586
+ "group": {
3587
+ "background": "#6B728010",
3588
+ "border": "#6B7280",
3589
+ "headerText": "#E5E7EB",
3590
+ "icon": "#9CA3AF",
3591
+ },
3592
+ "header": {
3593
+ "background": undefined,
3594
+ "border": "#374151",
3595
+ "text": "#F9FAFB",
3596
+ },
3597
+ "help": {
3598
+ "background": "#1F2937",
3599
+ "border": "#3B82F6",
3600
+ "category": "#3B82F6",
3601
+ "description": "#E5E7EB",
3602
+ "hint": "#6B7280",
3603
+ "key": "#F59E0B",
3604
+ "title": "#F9FAFB",
3605
+ },
3606
+ "logLevels": {
3607
+ "debug": {
3608
+ "background": "#8B5CF615",
3609
+ "border": "#8B5CF6",
3610
+ },
3611
+ "error": {
3612
+ "background": "#EF444415",
3613
+ "border": "#EF4444",
3614
+ },
3615
+ "fatal": {
3616
+ "background": "#DC262625",
3617
+ "border": "#DC2626",
3618
+ "text": "#FCA5A5",
3619
+ },
3620
+ "log": {
3621
+ "background": "#3B82F615",
3622
+ "border": "#3B82F6",
3623
+ },
3624
+ "verbose": {
3625
+ "background": "#6B728015",
3626
+ "border": "#6B7280",
3627
+ },
3628
+ "warn": {
3629
+ "background": "#F59E0B15",
3630
+ "border": "#F59E0B",
3631
+ },
3632
+ },
3633
+ "name": "dark",
3634
+ "progress": {
3635
+ "background": "#3B82F615",
3636
+ "barEmpty": "#374151",
3637
+ "barFilled": "#3B82F6",
3638
+ "border": "#3B82F6",
3639
+ "complete": "#22C55E",
3640
+ "completeBackground": "#22C55E15",
3641
+ "failed": "#EF4444",
3642
+ "failedBackground": "#EF444415",
3643
+ "text": "#E5E7EB",
3644
+ "textDim": "#9CA3AF",
3645
+ },
3646
+ "prompt": {
3647
+ "border": "#374151",
3648
+ "buttonBackground": "#374151",
3649
+ "buttonSelectedBackground": "#1F2937",
3650
+ "cancelButton": "#EF4444",
3651
+ "confirmButton": "#22C55E",
3652
+ "focusBorder": "#3B82F6",
3653
+ "inputBackground": "#1F2937",
3654
+ "inputBorder": "#3B82F6",
3655
+ "inputCursor": "#3B82F6",
3656
+ "inputPlaceholder": "#6B7280",
3657
+ "inputText": "#F9FAFB",
3658
+ "optionSelected": "#3B82F6",
3659
+ "optionSelectedBackground": "#1E3A5F",
3660
+ "optionText": "#E5E7EB",
3661
+ "optionTextDim": "#9CA3AF",
3662
+ "question": "#F9FAFB",
3663
+ },
3664
+ "separator": {
3665
+ "line": "#374151",
3666
+ "text": "#6B7280",
3667
+ },
3668
+ "sidebar": {
3669
+ "background": undefined,
3670
+ "badge": "#3B82F6",
3671
+ "border": "#374151",
3672
+ "focusBorder": "#3B82F6",
3673
+ "hoverBackground": "#374151",
3674
+ "selectedBackground": "#1F293780",
3675
+ "text": "#E5E7EB",
3676
+ "textDim": "#6B7280",
3677
+ },
3678
+ "statusIndicators": {
3679
+ "fail": {
3680
+ "color": "#EF4444",
3681
+ "icon": "✗",
3682
+ },
3683
+ "pending": {
3684
+ "color": "#F59E0B",
3685
+ "icon": "◐",
3686
+ },
3687
+ "static": {
3688
+ "color": "#3B82F6",
3689
+ "icon": "●",
3690
+ },
3691
+ "success": {
3692
+ "color": "#22C55E",
3693
+ "icon": "✓",
3694
+ },
3695
+ "waiting": {
3696
+ "color": "#6B7280",
3697
+ "icon": "○",
3698
+ },
3699
+ },
3700
+ "table": {
3701
+ "background": "#3B82F615",
3702
+ "border": "#3B82F6",
3703
+ "cellText": "#E5E7EB",
3704
+ "headerText": "#F9FAFB",
3705
+ "separator": "#3B82F650",
3706
+ "title": "#F9FAFB",
3707
+ },
3708
+ },
3709
+ },
3710
+ "ref": null,
3711
+ "type": [Function: LoggerProvider],
3712
+ }
3713
+ `;
3714
+
3715
+ exports[`Sidebar pending vs completed screens should not show separator if no mix 1`] = `
3716
+ {
3717
+ "$$typeof": Symbol(react.transitional.element),
3718
+ "_debugInfo": null,
3719
+ "_debugStack": [Error: react-stack-top-frame],
3720
+ "_debugTask": null,
3721
+ "_owner": null,
3722
+ "_store": {
3723
+ "validated": 0,
3724
+ },
3725
+ "key": null,
3726
+ "props": {
3727
+ "children": {
3728
+ "$$typeof": Symbol(react.transitional.element),
3729
+ "_debugInfo": null,
3730
+ "_debugStack": [Error: react-stack-top-frame],
3731
+ "_debugTask": null,
3732
+ "_owner": null,
3733
+ "_store": {
3734
+ "validated": 1,
3735
+ },
3736
+ "key": null,
3737
+ "props": {
3738
+ "activeScreenId": "1",
3739
+ "focused": true,
3740
+ "screens": [
3741
+ {
3742
+ "getBadgeCount": [class Function],
3743
+ "getIcon": [class Function],
3744
+ "getId": [class Function],
3745
+ "getName": [class Function],
3746
+ "getStatus": [class Function],
3747
+ "isHidden": [class Function],
3748
+ },
3749
+ {
3750
+ "getBadgeCount": [class Function],
3751
+ "getIcon": [class Function],
3752
+ "getId": [class Function],
3753
+ "getName": [class Function],
3754
+ "getStatus": [class Function],
3755
+ "isHidden": [class Function],
3756
+ },
3757
+ ],
3758
+ "selectedIndex": 0,
3759
+ "title": "Tasks",
3760
+ "width": 30,
3761
+ },
3762
+ "ref": null,
3763
+ "type": [Function: Sidebar],
3764
+ },
3765
+ "levelColors": undefined,
3766
+ "theme": {
3767
+ "colors": {
3768
+ "background": "#111827",
3769
+ "error": "#EF4444",
3770
+ "foreground": "#F9FAFB",
3771
+ "muted": "#6B7280",
3772
+ "primary": "#3B82F6",
3773
+ "secondary": "#8B5CF6",
3774
+ "success": "#22C55E",
3775
+ "warning": "#F59E0B",
3776
+ },
3777
+ "errorHighlight": {
3778
+ "background": "#EF444425",
3779
+ "border": "#EF4444",
3780
+ "gutterBackground": "#EF444440",
3781
+ },
3782
+ "file": {
3783
+ "background": "#3B82F615",
3784
+ "border": "#3B82F6",
3785
+ "headerBackground": "#3B82F625",
3786
+ "headerText": "#F9FAFB",
3787
+ },
3788
+ "filter": {
3789
+ "activeLevel": "#3B82F6",
3790
+ "background": "#1F293780",
3791
+ "border": "#3B82F6",
3792
+ "cursor": "#3B82F6",
3793
+ "inactiveLevel": "#4B5563",
3794
+ "inputBackground": "#1F2937",
3795
+ "inputPlaceholder": "#6B7280",
3796
+ "inputText": "#F9FAFB",
3797
+ "text": "#E5E7EB",
3798
+ "textDim": "#6B7280",
3799
+ },
3800
+ "group": {
3801
+ "background": "#6B728010",
3802
+ "border": "#6B7280",
3803
+ "headerText": "#E5E7EB",
3804
+ "icon": "#9CA3AF",
3805
+ },
3806
+ "header": {
3807
+ "background": undefined,
3808
+ "border": "#374151",
3809
+ "text": "#F9FAFB",
3810
+ },
3811
+ "help": {
3812
+ "background": "#1F2937",
3813
+ "border": "#3B82F6",
3814
+ "category": "#3B82F6",
3815
+ "description": "#E5E7EB",
3816
+ "hint": "#6B7280",
3817
+ "key": "#F59E0B",
3818
+ "title": "#F9FAFB",
3819
+ },
3820
+ "logLevels": {
3821
+ "debug": {
3822
+ "background": "#8B5CF615",
3823
+ "border": "#8B5CF6",
3824
+ },
3825
+ "error": {
3826
+ "background": "#EF444415",
3827
+ "border": "#EF4444",
3828
+ },
3829
+ "fatal": {
3830
+ "background": "#DC262625",
3831
+ "border": "#DC2626",
3832
+ "text": "#FCA5A5",
3833
+ },
3834
+ "log": {
3835
+ "background": "#3B82F615",
3836
+ "border": "#3B82F6",
3837
+ },
3838
+ "verbose": {
3839
+ "background": "#6B728015",
3840
+ "border": "#6B7280",
3841
+ },
3842
+ "warn": {
3843
+ "background": "#F59E0B15",
3844
+ "border": "#F59E0B",
3845
+ },
3846
+ },
3847
+ "name": "dark",
3848
+ "progress": {
3849
+ "background": "#3B82F615",
3850
+ "barEmpty": "#374151",
3851
+ "barFilled": "#3B82F6",
3852
+ "border": "#3B82F6",
3853
+ "complete": "#22C55E",
3854
+ "completeBackground": "#22C55E15",
3855
+ "failed": "#EF4444",
3856
+ "failedBackground": "#EF444415",
3857
+ "text": "#E5E7EB",
3858
+ "textDim": "#9CA3AF",
3859
+ },
3860
+ "prompt": {
3861
+ "border": "#374151",
3862
+ "buttonBackground": "#374151",
3863
+ "buttonSelectedBackground": "#1F2937",
3864
+ "cancelButton": "#EF4444",
3865
+ "confirmButton": "#22C55E",
3866
+ "focusBorder": "#3B82F6",
3867
+ "inputBackground": "#1F2937",
3868
+ "inputBorder": "#3B82F6",
3869
+ "inputCursor": "#3B82F6",
3870
+ "inputPlaceholder": "#6B7280",
3871
+ "inputText": "#F9FAFB",
3872
+ "optionSelected": "#3B82F6",
3873
+ "optionSelectedBackground": "#1E3A5F",
3874
+ "optionText": "#E5E7EB",
3875
+ "optionTextDim": "#9CA3AF",
3876
+ "question": "#F9FAFB",
3877
+ },
3878
+ "separator": {
3879
+ "line": "#374151",
3880
+ "text": "#6B7280",
3881
+ },
3882
+ "sidebar": {
3883
+ "background": undefined,
3884
+ "badge": "#3B82F6",
3885
+ "border": "#374151",
3886
+ "focusBorder": "#3B82F6",
3887
+ "hoverBackground": "#374151",
3888
+ "selectedBackground": "#1F293780",
3889
+ "text": "#E5E7EB",
3890
+ "textDim": "#6B7280",
3891
+ },
3892
+ "statusIndicators": {
3893
+ "fail": {
3894
+ "color": "#EF4444",
3895
+ "icon": "✗",
3896
+ },
3897
+ "pending": {
3898
+ "color": "#F59E0B",
3899
+ "icon": "◐",
3900
+ },
3901
+ "static": {
3902
+ "color": "#3B82F6",
3903
+ "icon": "●",
3904
+ },
3905
+ "success": {
3906
+ "color": "#22C55E",
3907
+ "icon": "✓",
3908
+ },
3909
+ "waiting": {
3910
+ "color": "#6B7280",
3911
+ "icon": "○",
3912
+ },
3913
+ },
3914
+ "table": {
3915
+ "background": "#3B82F615",
3916
+ "border": "#3B82F6",
3917
+ "cellText": "#E5E7EB",
3918
+ "headerText": "#F9FAFB",
3919
+ "separator": "#3B82F650",
3920
+ "title": "#F9FAFB",
3921
+ },
3922
+ },
3923
+ },
3924
+ "ref": null,
3925
+ "type": [Function: LoggerProvider],
3926
+ }
3927
+ `;
3928
+
3929
+ exports[`Sidebar pending vs completed screens should separate pending from other screens 1`] = `
3930
+ {
3931
+ "$$typeof": Symbol(react.transitional.element),
3932
+ "_debugInfo": null,
3933
+ "_debugStack": [Error: react-stack-top-frame],
3934
+ "_debugTask": null,
3935
+ "_owner": null,
3936
+ "_store": {
3937
+ "validated": 0,
3938
+ },
3939
+ "key": null,
3940
+ "props": {
3941
+ "children": {
3942
+ "$$typeof": Symbol(react.transitional.element),
3943
+ "_debugInfo": null,
3944
+ "_debugStack": [Error: react-stack-top-frame],
3945
+ "_debugTask": null,
3946
+ "_owner": null,
3947
+ "_store": {
3948
+ "validated": 1,
3949
+ },
3950
+ "key": null,
3951
+ "props": {
3952
+ "activeScreenId": "1",
3953
+ "focused": true,
3954
+ "screens": [
3955
+ {
3956
+ "getBadgeCount": [class Function],
3957
+ "getIcon": [class Function],
3958
+ "getId": [class Function],
3959
+ "getName": [class Function],
3960
+ "getStatus": [class Function],
3961
+ "isHidden": [class Function],
3962
+ },
3963
+ {
3964
+ "getBadgeCount": [class Function],
3965
+ "getIcon": [class Function],
3966
+ "getId": [class Function],
3967
+ "getName": [class Function],
3968
+ "getStatus": [class Function],
3969
+ "isHidden": [class Function],
3970
+ },
3971
+ {
3972
+ "getBadgeCount": [class Function],
3973
+ "getIcon": [class Function],
3974
+ "getId": [class Function],
3975
+ "getName": [class Function],
3976
+ "getStatus": [class Function],
3977
+ "isHidden": [class Function],
3978
+ },
3979
+ {
3980
+ "getBadgeCount": [class Function],
3981
+ "getIcon": [class Function],
3982
+ "getId": [class Function],
3983
+ "getName": [class Function],
3984
+ "getStatus": [class Function],
3985
+ "isHidden": [class Function],
3986
+ },
3987
+ ],
3988
+ "selectedIndex": 0,
3989
+ "title": "Tasks",
3990
+ "width": 30,
3991
+ },
3992
+ "ref": null,
3993
+ "type": [Function: Sidebar],
3994
+ },
3995
+ "levelColors": undefined,
3996
+ "theme": {
3997
+ "colors": {
3998
+ "background": "#111827",
3999
+ "error": "#EF4444",
4000
+ "foreground": "#F9FAFB",
4001
+ "muted": "#6B7280",
4002
+ "primary": "#3B82F6",
4003
+ "secondary": "#8B5CF6",
4004
+ "success": "#22C55E",
4005
+ "warning": "#F59E0B",
4006
+ },
4007
+ "errorHighlight": {
4008
+ "background": "#EF444425",
4009
+ "border": "#EF4444",
4010
+ "gutterBackground": "#EF444440",
4011
+ },
4012
+ "file": {
4013
+ "background": "#3B82F615",
4014
+ "border": "#3B82F6",
4015
+ "headerBackground": "#3B82F625",
4016
+ "headerText": "#F9FAFB",
4017
+ },
4018
+ "filter": {
4019
+ "activeLevel": "#3B82F6",
4020
+ "background": "#1F293780",
4021
+ "border": "#3B82F6",
4022
+ "cursor": "#3B82F6",
4023
+ "inactiveLevel": "#4B5563",
4024
+ "inputBackground": "#1F2937",
4025
+ "inputPlaceholder": "#6B7280",
4026
+ "inputText": "#F9FAFB",
4027
+ "text": "#E5E7EB",
4028
+ "textDim": "#6B7280",
4029
+ },
4030
+ "group": {
4031
+ "background": "#6B728010",
4032
+ "border": "#6B7280",
4033
+ "headerText": "#E5E7EB",
4034
+ "icon": "#9CA3AF",
4035
+ },
4036
+ "header": {
4037
+ "background": undefined,
4038
+ "border": "#374151",
4039
+ "text": "#F9FAFB",
4040
+ },
4041
+ "help": {
4042
+ "background": "#1F2937",
4043
+ "border": "#3B82F6",
4044
+ "category": "#3B82F6",
4045
+ "description": "#E5E7EB",
4046
+ "hint": "#6B7280",
4047
+ "key": "#F59E0B",
4048
+ "title": "#F9FAFB",
4049
+ },
4050
+ "logLevels": {
4051
+ "debug": {
4052
+ "background": "#8B5CF615",
4053
+ "border": "#8B5CF6",
4054
+ },
4055
+ "error": {
4056
+ "background": "#EF444415",
4057
+ "border": "#EF4444",
4058
+ },
4059
+ "fatal": {
4060
+ "background": "#DC262625",
4061
+ "border": "#DC2626",
4062
+ "text": "#FCA5A5",
4063
+ },
4064
+ "log": {
4065
+ "background": "#3B82F615",
4066
+ "border": "#3B82F6",
4067
+ },
4068
+ "verbose": {
4069
+ "background": "#6B728015",
4070
+ "border": "#6B7280",
4071
+ },
4072
+ "warn": {
4073
+ "background": "#F59E0B15",
4074
+ "border": "#F59E0B",
4075
+ },
4076
+ },
4077
+ "name": "dark",
4078
+ "progress": {
4079
+ "background": "#3B82F615",
4080
+ "barEmpty": "#374151",
4081
+ "barFilled": "#3B82F6",
4082
+ "border": "#3B82F6",
4083
+ "complete": "#22C55E",
4084
+ "completeBackground": "#22C55E15",
4085
+ "failed": "#EF4444",
4086
+ "failedBackground": "#EF444415",
4087
+ "text": "#E5E7EB",
4088
+ "textDim": "#9CA3AF",
4089
+ },
4090
+ "prompt": {
4091
+ "border": "#374151",
4092
+ "buttonBackground": "#374151",
4093
+ "buttonSelectedBackground": "#1F2937",
4094
+ "cancelButton": "#EF4444",
4095
+ "confirmButton": "#22C55E",
4096
+ "focusBorder": "#3B82F6",
4097
+ "inputBackground": "#1F2937",
4098
+ "inputBorder": "#3B82F6",
4099
+ "inputCursor": "#3B82F6",
4100
+ "inputPlaceholder": "#6B7280",
4101
+ "inputText": "#F9FAFB",
4102
+ "optionSelected": "#3B82F6",
4103
+ "optionSelectedBackground": "#1E3A5F",
4104
+ "optionText": "#E5E7EB",
4105
+ "optionTextDim": "#9CA3AF",
4106
+ "question": "#F9FAFB",
4107
+ },
4108
+ "separator": {
4109
+ "line": "#374151",
4110
+ "text": "#6B7280",
4111
+ },
4112
+ "sidebar": {
4113
+ "background": undefined,
4114
+ "badge": "#3B82F6",
4115
+ "border": "#374151",
4116
+ "focusBorder": "#3B82F6",
4117
+ "hoverBackground": "#374151",
4118
+ "selectedBackground": "#1F293780",
4119
+ "text": "#E5E7EB",
4120
+ "textDim": "#6B7280",
4121
+ },
4122
+ "statusIndicators": {
4123
+ "fail": {
4124
+ "color": "#EF4444",
4125
+ "icon": "✗",
4126
+ },
4127
+ "pending": {
4128
+ "color": "#F59E0B",
4129
+ "icon": "◐",
4130
+ },
4131
+ "static": {
4132
+ "color": "#3B82F6",
4133
+ "icon": "●",
4134
+ },
4135
+ "success": {
4136
+ "color": "#22C55E",
4137
+ "icon": "✓",
4138
+ },
4139
+ "waiting": {
4140
+ "color": "#6B7280",
4141
+ "icon": "○",
4142
+ },
4143
+ },
4144
+ "table": {
4145
+ "background": "#3B82F615",
4146
+ "border": "#3B82F6",
4147
+ "cellText": "#E5E7EB",
4148
+ "headerText": "#F9FAFB",
4149
+ "separator": "#3B82F650",
4150
+ "title": "#F9FAFB",
4151
+ },
4152
+ },
4153
+ },
4154
+ "ref": null,
4155
+ "type": [Function: LoggerProvider],
4156
+ }
4157
+ `;
4158
+
4159
+ exports[`Sidebar pending vs completed screens should show separator between pending and completed 1`] = `
4160
+ {
4161
+ "$$typeof": Symbol(react.transitional.element),
4162
+ "_debugInfo": null,
4163
+ "_debugStack": [Error: react-stack-top-frame],
4164
+ "_debugTask": null,
4165
+ "_owner": null,
4166
+ "_store": {
4167
+ "validated": 0,
4168
+ },
4169
+ "key": null,
4170
+ "props": {
4171
+ "children": {
4172
+ "$$typeof": Symbol(react.transitional.element),
4173
+ "_debugInfo": null,
4174
+ "_debugStack": [Error: react-stack-top-frame],
4175
+ "_debugTask": null,
4176
+ "_owner": null,
4177
+ "_store": {
4178
+ "validated": 1,
4179
+ },
4180
+ "key": null,
4181
+ "props": {
4182
+ "activeScreenId": "1",
4183
+ "focused": true,
4184
+ "screens": [
4185
+ {
4186
+ "getBadgeCount": [class Function],
4187
+ "getIcon": [class Function],
4188
+ "getId": [class Function],
4189
+ "getName": [class Function],
4190
+ "getStatus": [class Function],
4191
+ "isHidden": [class Function],
4192
+ },
4193
+ {
4194
+ "getBadgeCount": [class Function],
4195
+ "getIcon": [class Function],
4196
+ "getId": [class Function],
4197
+ "getName": [class Function],
4198
+ "getStatus": [class Function],
4199
+ "isHidden": [class Function],
4200
+ },
4201
+ ],
4202
+ "selectedIndex": 0,
4203
+ "title": "Tasks",
4204
+ "width": 30,
4205
+ },
4206
+ "ref": null,
4207
+ "type": [Function: Sidebar],
4208
+ },
4209
+ "levelColors": undefined,
4210
+ "theme": {
4211
+ "colors": {
4212
+ "background": "#111827",
4213
+ "error": "#EF4444",
4214
+ "foreground": "#F9FAFB",
4215
+ "muted": "#6B7280",
4216
+ "primary": "#3B82F6",
4217
+ "secondary": "#8B5CF6",
4218
+ "success": "#22C55E",
4219
+ "warning": "#F59E0B",
4220
+ },
4221
+ "errorHighlight": {
4222
+ "background": "#EF444425",
4223
+ "border": "#EF4444",
4224
+ "gutterBackground": "#EF444440",
4225
+ },
4226
+ "file": {
4227
+ "background": "#3B82F615",
4228
+ "border": "#3B82F6",
4229
+ "headerBackground": "#3B82F625",
4230
+ "headerText": "#F9FAFB",
4231
+ },
4232
+ "filter": {
4233
+ "activeLevel": "#3B82F6",
4234
+ "background": "#1F293780",
4235
+ "border": "#3B82F6",
4236
+ "cursor": "#3B82F6",
4237
+ "inactiveLevel": "#4B5563",
4238
+ "inputBackground": "#1F2937",
4239
+ "inputPlaceholder": "#6B7280",
4240
+ "inputText": "#F9FAFB",
4241
+ "text": "#E5E7EB",
4242
+ "textDim": "#6B7280",
4243
+ },
4244
+ "group": {
4245
+ "background": "#6B728010",
4246
+ "border": "#6B7280",
4247
+ "headerText": "#E5E7EB",
4248
+ "icon": "#9CA3AF",
4249
+ },
4250
+ "header": {
4251
+ "background": undefined,
4252
+ "border": "#374151",
4253
+ "text": "#F9FAFB",
4254
+ },
4255
+ "help": {
4256
+ "background": "#1F2937",
4257
+ "border": "#3B82F6",
4258
+ "category": "#3B82F6",
4259
+ "description": "#E5E7EB",
4260
+ "hint": "#6B7280",
4261
+ "key": "#F59E0B",
4262
+ "title": "#F9FAFB",
4263
+ },
4264
+ "logLevels": {
4265
+ "debug": {
4266
+ "background": "#8B5CF615",
4267
+ "border": "#8B5CF6",
4268
+ },
4269
+ "error": {
4270
+ "background": "#EF444415",
4271
+ "border": "#EF4444",
4272
+ },
4273
+ "fatal": {
4274
+ "background": "#DC262625",
4275
+ "border": "#DC2626",
4276
+ "text": "#FCA5A5",
4277
+ },
4278
+ "log": {
4279
+ "background": "#3B82F615",
4280
+ "border": "#3B82F6",
4281
+ },
4282
+ "verbose": {
4283
+ "background": "#6B728015",
4284
+ "border": "#6B7280",
4285
+ },
4286
+ "warn": {
4287
+ "background": "#F59E0B15",
4288
+ "border": "#F59E0B",
4289
+ },
4290
+ },
4291
+ "name": "dark",
4292
+ "progress": {
4293
+ "background": "#3B82F615",
4294
+ "barEmpty": "#374151",
4295
+ "barFilled": "#3B82F6",
4296
+ "border": "#3B82F6",
4297
+ "complete": "#22C55E",
4298
+ "completeBackground": "#22C55E15",
4299
+ "failed": "#EF4444",
4300
+ "failedBackground": "#EF444415",
4301
+ "text": "#E5E7EB",
4302
+ "textDim": "#9CA3AF",
4303
+ },
4304
+ "prompt": {
4305
+ "border": "#374151",
4306
+ "buttonBackground": "#374151",
4307
+ "buttonSelectedBackground": "#1F2937",
4308
+ "cancelButton": "#EF4444",
4309
+ "confirmButton": "#22C55E",
4310
+ "focusBorder": "#3B82F6",
4311
+ "inputBackground": "#1F2937",
4312
+ "inputBorder": "#3B82F6",
4313
+ "inputCursor": "#3B82F6",
4314
+ "inputPlaceholder": "#6B7280",
4315
+ "inputText": "#F9FAFB",
4316
+ "optionSelected": "#3B82F6",
4317
+ "optionSelectedBackground": "#1E3A5F",
4318
+ "optionText": "#E5E7EB",
4319
+ "optionTextDim": "#9CA3AF",
4320
+ "question": "#F9FAFB",
4321
+ },
4322
+ "separator": {
4323
+ "line": "#374151",
4324
+ "text": "#6B7280",
4325
+ },
4326
+ "sidebar": {
4327
+ "background": undefined,
4328
+ "badge": "#3B82F6",
4329
+ "border": "#374151",
4330
+ "focusBorder": "#3B82F6",
4331
+ "hoverBackground": "#374151",
4332
+ "selectedBackground": "#1F293780",
4333
+ "text": "#E5E7EB",
4334
+ "textDim": "#6B7280",
4335
+ },
4336
+ "statusIndicators": {
4337
+ "fail": {
4338
+ "color": "#EF4444",
4339
+ "icon": "✗",
4340
+ },
4341
+ "pending": {
4342
+ "color": "#F59E0B",
4343
+ "icon": "◐",
4344
+ },
4345
+ "static": {
4346
+ "color": "#3B82F6",
4347
+ "icon": "●",
4348
+ },
4349
+ "success": {
4350
+ "color": "#22C55E",
4351
+ "icon": "✓",
4352
+ },
4353
+ "waiting": {
4354
+ "color": "#6B7280",
4355
+ "icon": "○",
4356
+ },
4357
+ },
4358
+ "table": {
4359
+ "background": "#3B82F615",
4360
+ "border": "#3B82F6",
4361
+ "cellText": "#E5E7EB",
4362
+ "headerText": "#F9FAFB",
4363
+ "separator": "#3B82F650",
4364
+ "title": "#F9FAFB",
4365
+ },
4366
+ },
4367
+ },
4368
+ "ref": null,
4369
+ "type": [Function: LoggerProvider],
4370
+ }
4371
+ `;
4372
+
4373
+ exports[`Sidebar screen list should render active screen highlighted 1`] = `
4374
+ {
4375
+ "$$typeof": Symbol(react.transitional.element),
4376
+ "_debugInfo": null,
4377
+ "_debugStack": [Error: react-stack-top-frame],
4378
+ "_debugTask": null,
4379
+ "_owner": null,
4380
+ "_store": {
4381
+ "validated": 0,
4382
+ },
4383
+ "key": null,
4384
+ "props": {
4385
+ "children": {
4386
+ "$$typeof": Symbol(react.transitional.element),
4387
+ "_debugInfo": null,
4388
+ "_debugStack": [Error: react-stack-top-frame],
4389
+ "_debugTask": null,
4390
+ "_owner": null,
4391
+ "_store": {
4392
+ "validated": 1,
4393
+ },
4394
+ "key": null,
4395
+ "props": {
4396
+ "activeScreenId": "2",
4397
+ "focused": true,
4398
+ "screens": [
4399
+ {
4400
+ "getBadgeCount": [class Function],
4401
+ "getIcon": [class Function],
4402
+ "getId": [class Function],
4403
+ "getName": [class Function],
4404
+ "getStatus": [class Function],
4405
+ "isHidden": [class Function],
4406
+ },
4407
+ {
4408
+ "getBadgeCount": [class Function],
4409
+ "getIcon": [class Function],
4410
+ "getId": [class Function],
4411
+ "getName": [class Function],
4412
+ "getStatus": [class Function],
4413
+ "isHidden": [class Function],
4414
+ },
4415
+ ],
4416
+ "selectedIndex": 1,
4417
+ "title": "Screens",
4418
+ "width": 30,
4419
+ },
4420
+ "ref": null,
4421
+ "type": [Function: Sidebar],
4422
+ },
4423
+ "levelColors": undefined,
4424
+ "theme": {
4425
+ "colors": {
4426
+ "background": "#111827",
4427
+ "error": "#EF4444",
4428
+ "foreground": "#F9FAFB",
4429
+ "muted": "#6B7280",
4430
+ "primary": "#3B82F6",
4431
+ "secondary": "#8B5CF6",
4432
+ "success": "#22C55E",
4433
+ "warning": "#F59E0B",
4434
+ },
4435
+ "errorHighlight": {
4436
+ "background": "#EF444425",
4437
+ "border": "#EF4444",
4438
+ "gutterBackground": "#EF444440",
4439
+ },
4440
+ "file": {
4441
+ "background": "#3B82F615",
4442
+ "border": "#3B82F6",
4443
+ "headerBackground": "#3B82F625",
4444
+ "headerText": "#F9FAFB",
4445
+ },
4446
+ "filter": {
4447
+ "activeLevel": "#3B82F6",
4448
+ "background": "#1F293780",
4449
+ "border": "#3B82F6",
4450
+ "cursor": "#3B82F6",
4451
+ "inactiveLevel": "#4B5563",
4452
+ "inputBackground": "#1F2937",
4453
+ "inputPlaceholder": "#6B7280",
4454
+ "inputText": "#F9FAFB",
4455
+ "text": "#E5E7EB",
4456
+ "textDim": "#6B7280",
4457
+ },
4458
+ "group": {
4459
+ "background": "#6B728010",
4460
+ "border": "#6B7280",
4461
+ "headerText": "#E5E7EB",
4462
+ "icon": "#9CA3AF",
4463
+ },
4464
+ "header": {
4465
+ "background": undefined,
4466
+ "border": "#374151",
4467
+ "text": "#F9FAFB",
4468
+ },
4469
+ "help": {
4470
+ "background": "#1F2937",
4471
+ "border": "#3B82F6",
4472
+ "category": "#3B82F6",
4473
+ "description": "#E5E7EB",
4474
+ "hint": "#6B7280",
4475
+ "key": "#F59E0B",
4476
+ "title": "#F9FAFB",
4477
+ },
4478
+ "logLevels": {
4479
+ "debug": {
4480
+ "background": "#8B5CF615",
4481
+ "border": "#8B5CF6",
4482
+ },
4483
+ "error": {
4484
+ "background": "#EF444415",
4485
+ "border": "#EF4444",
4486
+ },
4487
+ "fatal": {
4488
+ "background": "#DC262625",
4489
+ "border": "#DC2626",
4490
+ "text": "#FCA5A5",
4491
+ },
4492
+ "log": {
4493
+ "background": "#3B82F615",
4494
+ "border": "#3B82F6",
4495
+ },
4496
+ "verbose": {
4497
+ "background": "#6B728015",
4498
+ "border": "#6B7280",
4499
+ },
4500
+ "warn": {
4501
+ "background": "#F59E0B15",
4502
+ "border": "#F59E0B",
4503
+ },
4504
+ },
4505
+ "name": "dark",
4506
+ "progress": {
4507
+ "background": "#3B82F615",
4508
+ "barEmpty": "#374151",
4509
+ "barFilled": "#3B82F6",
4510
+ "border": "#3B82F6",
4511
+ "complete": "#22C55E",
4512
+ "completeBackground": "#22C55E15",
4513
+ "failed": "#EF4444",
4514
+ "failedBackground": "#EF444415",
4515
+ "text": "#E5E7EB",
4516
+ "textDim": "#9CA3AF",
4517
+ },
4518
+ "prompt": {
4519
+ "border": "#374151",
4520
+ "buttonBackground": "#374151",
4521
+ "buttonSelectedBackground": "#1F2937",
4522
+ "cancelButton": "#EF4444",
4523
+ "confirmButton": "#22C55E",
4524
+ "focusBorder": "#3B82F6",
4525
+ "inputBackground": "#1F2937",
4526
+ "inputBorder": "#3B82F6",
4527
+ "inputCursor": "#3B82F6",
4528
+ "inputPlaceholder": "#6B7280",
4529
+ "inputText": "#F9FAFB",
4530
+ "optionSelected": "#3B82F6",
4531
+ "optionSelectedBackground": "#1E3A5F",
4532
+ "optionText": "#E5E7EB",
4533
+ "optionTextDim": "#9CA3AF",
4534
+ "question": "#F9FAFB",
4535
+ },
4536
+ "separator": {
4537
+ "line": "#374151",
4538
+ "text": "#6B7280",
4539
+ },
4540
+ "sidebar": {
4541
+ "background": undefined,
4542
+ "badge": "#3B82F6",
4543
+ "border": "#374151",
4544
+ "focusBorder": "#3B82F6",
4545
+ "hoverBackground": "#374151",
4546
+ "selectedBackground": "#1F293780",
4547
+ "text": "#E5E7EB",
4548
+ "textDim": "#6B7280",
4549
+ },
4550
+ "statusIndicators": {
4551
+ "fail": {
4552
+ "color": "#EF4444",
4553
+ "icon": "✗",
4554
+ },
4555
+ "pending": {
4556
+ "color": "#F59E0B",
4557
+ "icon": "◐",
4558
+ },
4559
+ "static": {
4560
+ "color": "#3B82F6",
4561
+ "icon": "●",
4562
+ },
4563
+ "success": {
4564
+ "color": "#22C55E",
4565
+ "icon": "✓",
4566
+ },
4567
+ "waiting": {
4568
+ "color": "#6B7280",
4569
+ "icon": "○",
4570
+ },
4571
+ },
4572
+ "table": {
4573
+ "background": "#3B82F615",
4574
+ "border": "#3B82F6",
4575
+ "cellText": "#E5E7EB",
4576
+ "headerText": "#F9FAFB",
4577
+ "separator": "#3B82F650",
4578
+ "title": "#F9FAFB",
4579
+ },
4580
+ },
4581
+ },
4582
+ "ref": null,
4583
+ "type": [Function: LoggerProvider],
4584
+ }
4585
+ `;
4586
+
4587
+ exports[`Sidebar screen list should render screen list 1`] = `
4588
+ {
4589
+ "$$typeof": Symbol(react.transitional.element),
4590
+ "_debugInfo": null,
4591
+ "_debugStack": [Error: react-stack-top-frame],
4592
+ "_debugTask": null,
4593
+ "_owner": null,
4594
+ "_store": {
4595
+ "validated": 0,
4596
+ },
4597
+ "key": null,
4598
+ "props": {
4599
+ "children": {
4600
+ "$$typeof": Symbol(react.transitional.element),
4601
+ "_debugInfo": null,
4602
+ "_debugStack": [Error: react-stack-top-frame],
4603
+ "_debugTask": null,
4604
+ "_owner": null,
4605
+ "_store": {
4606
+ "validated": 1,
4607
+ },
4608
+ "key": null,
4609
+ "props": {
4610
+ "activeScreenId": "1",
4611
+ "focused": true,
4612
+ "screens": [
4613
+ {
4614
+ "getBadgeCount": [class Function],
4615
+ "getIcon": [class Function],
4616
+ "getId": [class Function],
4617
+ "getName": [class Function],
4618
+ "getStatus": [class Function],
4619
+ "isHidden": [class Function],
4620
+ },
4621
+ {
4622
+ "getBadgeCount": [class Function],
4623
+ "getIcon": [class Function],
4624
+ "getId": [class Function],
4625
+ "getName": [class Function],
4626
+ "getStatus": [class Function],
4627
+ "isHidden": [class Function],
4628
+ },
4629
+ {
4630
+ "getBadgeCount": [class Function],
4631
+ "getIcon": [class Function],
4632
+ "getId": [class Function],
4633
+ "getName": [class Function],
4634
+ "getStatus": [class Function],
4635
+ "isHidden": [class Function],
4636
+ },
4637
+ ],
4638
+ "selectedIndex": 0,
4639
+ "title": "Screens",
4640
+ "width": 30,
4641
+ },
4642
+ "ref": null,
4643
+ "type": [Function: Sidebar],
4644
+ },
4645
+ "levelColors": undefined,
4646
+ "theme": {
4647
+ "colors": {
4648
+ "background": "#111827",
4649
+ "error": "#EF4444",
4650
+ "foreground": "#F9FAFB",
4651
+ "muted": "#6B7280",
4652
+ "primary": "#3B82F6",
4653
+ "secondary": "#8B5CF6",
4654
+ "success": "#22C55E",
4655
+ "warning": "#F59E0B",
4656
+ },
4657
+ "errorHighlight": {
4658
+ "background": "#EF444425",
4659
+ "border": "#EF4444",
4660
+ "gutterBackground": "#EF444440",
4661
+ },
4662
+ "file": {
4663
+ "background": "#3B82F615",
4664
+ "border": "#3B82F6",
4665
+ "headerBackground": "#3B82F625",
4666
+ "headerText": "#F9FAFB",
4667
+ },
4668
+ "filter": {
4669
+ "activeLevel": "#3B82F6",
4670
+ "background": "#1F293780",
4671
+ "border": "#3B82F6",
4672
+ "cursor": "#3B82F6",
4673
+ "inactiveLevel": "#4B5563",
4674
+ "inputBackground": "#1F2937",
4675
+ "inputPlaceholder": "#6B7280",
4676
+ "inputText": "#F9FAFB",
4677
+ "text": "#E5E7EB",
4678
+ "textDim": "#6B7280",
4679
+ },
4680
+ "group": {
4681
+ "background": "#6B728010",
4682
+ "border": "#6B7280",
4683
+ "headerText": "#E5E7EB",
4684
+ "icon": "#9CA3AF",
4685
+ },
4686
+ "header": {
4687
+ "background": undefined,
4688
+ "border": "#374151",
4689
+ "text": "#F9FAFB",
4690
+ },
4691
+ "help": {
4692
+ "background": "#1F2937",
4693
+ "border": "#3B82F6",
4694
+ "category": "#3B82F6",
4695
+ "description": "#E5E7EB",
4696
+ "hint": "#6B7280",
4697
+ "key": "#F59E0B",
4698
+ "title": "#F9FAFB",
4699
+ },
4700
+ "logLevels": {
4701
+ "debug": {
4702
+ "background": "#8B5CF615",
4703
+ "border": "#8B5CF6",
4704
+ },
4705
+ "error": {
4706
+ "background": "#EF444415",
4707
+ "border": "#EF4444",
4708
+ },
4709
+ "fatal": {
4710
+ "background": "#DC262625",
4711
+ "border": "#DC2626",
4712
+ "text": "#FCA5A5",
4713
+ },
4714
+ "log": {
4715
+ "background": "#3B82F615",
4716
+ "border": "#3B82F6",
4717
+ },
4718
+ "verbose": {
4719
+ "background": "#6B728015",
4720
+ "border": "#6B7280",
4721
+ },
4722
+ "warn": {
4723
+ "background": "#F59E0B15",
4724
+ "border": "#F59E0B",
4725
+ },
4726
+ },
4727
+ "name": "dark",
4728
+ "progress": {
4729
+ "background": "#3B82F615",
4730
+ "barEmpty": "#374151",
4731
+ "barFilled": "#3B82F6",
4732
+ "border": "#3B82F6",
4733
+ "complete": "#22C55E",
4734
+ "completeBackground": "#22C55E15",
4735
+ "failed": "#EF4444",
4736
+ "failedBackground": "#EF444415",
4737
+ "text": "#E5E7EB",
4738
+ "textDim": "#9CA3AF",
4739
+ },
4740
+ "prompt": {
4741
+ "border": "#374151",
4742
+ "buttonBackground": "#374151",
4743
+ "buttonSelectedBackground": "#1F2937",
4744
+ "cancelButton": "#EF4444",
4745
+ "confirmButton": "#22C55E",
4746
+ "focusBorder": "#3B82F6",
4747
+ "inputBackground": "#1F2937",
4748
+ "inputBorder": "#3B82F6",
4749
+ "inputCursor": "#3B82F6",
4750
+ "inputPlaceholder": "#6B7280",
4751
+ "inputText": "#F9FAFB",
4752
+ "optionSelected": "#3B82F6",
4753
+ "optionSelectedBackground": "#1E3A5F",
4754
+ "optionText": "#E5E7EB",
4755
+ "optionTextDim": "#9CA3AF",
4756
+ "question": "#F9FAFB",
4757
+ },
4758
+ "separator": {
4759
+ "line": "#374151",
4760
+ "text": "#6B7280",
4761
+ },
4762
+ "sidebar": {
4763
+ "background": undefined,
4764
+ "badge": "#3B82F6",
4765
+ "border": "#374151",
4766
+ "focusBorder": "#3B82F6",
4767
+ "hoverBackground": "#374151",
4768
+ "selectedBackground": "#1F293780",
4769
+ "text": "#E5E7EB",
4770
+ "textDim": "#6B7280",
4771
+ },
4772
+ "statusIndicators": {
4773
+ "fail": {
4774
+ "color": "#EF4444",
4775
+ "icon": "✗",
4776
+ },
4777
+ "pending": {
4778
+ "color": "#F59E0B",
4779
+ "icon": "◐",
4780
+ },
4781
+ "static": {
4782
+ "color": "#3B82F6",
4783
+ "icon": "●",
4784
+ },
4785
+ "success": {
4786
+ "color": "#22C55E",
4787
+ "icon": "✓",
4788
+ },
4789
+ "waiting": {
4790
+ "color": "#6B7280",
4791
+ "icon": "○",
4792
+ },
4793
+ },
4794
+ "table": {
4795
+ "background": "#3B82F615",
4796
+ "border": "#3B82F6",
4797
+ "cellText": "#E5E7EB",
4798
+ "headerText": "#F9FAFB",
4799
+ "separator": "#3B82F650",
4800
+ "title": "#F9FAFB",
4801
+ },
4802
+ },
4803
+ },
4804
+ "ref": null,
4805
+ "type": [Function: LoggerProvider],
4806
+ }
4807
+ `;
4808
+
4809
+ exports[`Sidebar status indicators should render fail status 1`] = `
4810
+ {
4811
+ "$$typeof": Symbol(react.transitional.element),
4812
+ "_debugInfo": null,
4813
+ "_debugStack": [Error: react-stack-top-frame],
4814
+ "_debugTask": null,
4815
+ "_owner": null,
4816
+ "_store": {
4817
+ "validated": 0,
4818
+ },
4819
+ "key": null,
4820
+ "props": {
4821
+ "children": {
4822
+ "$$typeof": Symbol(react.transitional.element),
4823
+ "_debugInfo": null,
4824
+ "_debugStack": [Error: react-stack-top-frame],
4825
+ "_debugTask": null,
4826
+ "_owner": null,
4827
+ "_store": {
4828
+ "validated": 1,
4829
+ },
4830
+ "key": null,
4831
+ "props": {
4832
+ "activeScreenId": "1",
4833
+ "focused": true,
4834
+ "screens": [
4835
+ {
4836
+ "getBadgeCount": [class Function],
4837
+ "getIcon": [class Function],
4838
+ "getId": [class Function],
4839
+ "getName": [class Function],
4840
+ "getStatus": [class Function],
4841
+ "isHidden": [class Function],
4842
+ },
4843
+ ],
4844
+ "selectedIndex": 0,
4845
+ "title": "Screens",
4846
+ "width": 30,
4847
+ },
4848
+ "ref": null,
4849
+ "type": [Function: Sidebar],
4850
+ },
4851
+ "levelColors": undefined,
4852
+ "theme": {
4853
+ "colors": {
4854
+ "background": "#111827",
4855
+ "error": "#EF4444",
4856
+ "foreground": "#F9FAFB",
4857
+ "muted": "#6B7280",
4858
+ "primary": "#3B82F6",
4859
+ "secondary": "#8B5CF6",
4860
+ "success": "#22C55E",
4861
+ "warning": "#F59E0B",
4862
+ },
4863
+ "errorHighlight": {
4864
+ "background": "#EF444425",
4865
+ "border": "#EF4444",
4866
+ "gutterBackground": "#EF444440",
4867
+ },
4868
+ "file": {
4869
+ "background": "#3B82F615",
4870
+ "border": "#3B82F6",
4871
+ "headerBackground": "#3B82F625",
4872
+ "headerText": "#F9FAFB",
4873
+ },
4874
+ "filter": {
4875
+ "activeLevel": "#3B82F6",
4876
+ "background": "#1F293780",
4877
+ "border": "#3B82F6",
4878
+ "cursor": "#3B82F6",
4879
+ "inactiveLevel": "#4B5563",
4880
+ "inputBackground": "#1F2937",
4881
+ "inputPlaceholder": "#6B7280",
4882
+ "inputText": "#F9FAFB",
4883
+ "text": "#E5E7EB",
4884
+ "textDim": "#6B7280",
4885
+ },
4886
+ "group": {
4887
+ "background": "#6B728010",
4888
+ "border": "#6B7280",
4889
+ "headerText": "#E5E7EB",
4890
+ "icon": "#9CA3AF",
4891
+ },
4892
+ "header": {
4893
+ "background": undefined,
4894
+ "border": "#374151",
4895
+ "text": "#F9FAFB",
4896
+ },
4897
+ "help": {
4898
+ "background": "#1F2937",
4899
+ "border": "#3B82F6",
4900
+ "category": "#3B82F6",
4901
+ "description": "#E5E7EB",
4902
+ "hint": "#6B7280",
4903
+ "key": "#F59E0B",
4904
+ "title": "#F9FAFB",
4905
+ },
4906
+ "logLevels": {
4907
+ "debug": {
4908
+ "background": "#8B5CF615",
4909
+ "border": "#8B5CF6",
4910
+ },
4911
+ "error": {
4912
+ "background": "#EF444415",
4913
+ "border": "#EF4444",
4914
+ },
4915
+ "fatal": {
4916
+ "background": "#DC262625",
4917
+ "border": "#DC2626",
4918
+ "text": "#FCA5A5",
4919
+ },
4920
+ "log": {
4921
+ "background": "#3B82F615",
4922
+ "border": "#3B82F6",
4923
+ },
4924
+ "verbose": {
4925
+ "background": "#6B728015",
4926
+ "border": "#6B7280",
4927
+ },
4928
+ "warn": {
4929
+ "background": "#F59E0B15",
4930
+ "border": "#F59E0B",
4931
+ },
4932
+ },
4933
+ "name": "dark",
4934
+ "progress": {
4935
+ "background": "#3B82F615",
4936
+ "barEmpty": "#374151",
4937
+ "barFilled": "#3B82F6",
4938
+ "border": "#3B82F6",
4939
+ "complete": "#22C55E",
4940
+ "completeBackground": "#22C55E15",
4941
+ "failed": "#EF4444",
4942
+ "failedBackground": "#EF444415",
4943
+ "text": "#E5E7EB",
4944
+ "textDim": "#9CA3AF",
4945
+ },
4946
+ "prompt": {
4947
+ "border": "#374151",
4948
+ "buttonBackground": "#374151",
4949
+ "buttonSelectedBackground": "#1F2937",
4950
+ "cancelButton": "#EF4444",
4951
+ "confirmButton": "#22C55E",
4952
+ "focusBorder": "#3B82F6",
4953
+ "inputBackground": "#1F2937",
4954
+ "inputBorder": "#3B82F6",
4955
+ "inputCursor": "#3B82F6",
4956
+ "inputPlaceholder": "#6B7280",
4957
+ "inputText": "#F9FAFB",
4958
+ "optionSelected": "#3B82F6",
4959
+ "optionSelectedBackground": "#1E3A5F",
4960
+ "optionText": "#E5E7EB",
4961
+ "optionTextDim": "#9CA3AF",
4962
+ "question": "#F9FAFB",
4963
+ },
4964
+ "separator": {
4965
+ "line": "#374151",
4966
+ "text": "#6B7280",
4967
+ },
4968
+ "sidebar": {
4969
+ "background": undefined,
4970
+ "badge": "#3B82F6",
4971
+ "border": "#374151",
4972
+ "focusBorder": "#3B82F6",
4973
+ "hoverBackground": "#374151",
4974
+ "selectedBackground": "#1F293780",
4975
+ "text": "#E5E7EB",
4976
+ "textDim": "#6B7280",
4977
+ },
4978
+ "statusIndicators": {
4979
+ "fail": {
4980
+ "color": "#EF4444",
4981
+ "icon": "✗",
4982
+ },
4983
+ "pending": {
4984
+ "color": "#F59E0B",
4985
+ "icon": "◐",
4986
+ },
4987
+ "static": {
4988
+ "color": "#3B82F6",
4989
+ "icon": "●",
4990
+ },
4991
+ "success": {
4992
+ "color": "#22C55E",
4993
+ "icon": "✓",
4994
+ },
4995
+ "waiting": {
4996
+ "color": "#6B7280",
4997
+ "icon": "○",
4998
+ },
4999
+ },
5000
+ "table": {
5001
+ "background": "#3B82F615",
5002
+ "border": "#3B82F6",
5003
+ "cellText": "#E5E7EB",
5004
+ "headerText": "#F9FAFB",
5005
+ "separator": "#3B82F650",
5006
+ "title": "#F9FAFB",
5007
+ },
5008
+ },
5009
+ },
5010
+ "ref": null,
5011
+ "type": [Function: LoggerProvider],
5012
+ }
5013
+ `;
5014
+
5015
+ exports[`Sidebar status indicators should render pending status 1`] = `
5016
+ {
5017
+ "$$typeof": Symbol(react.transitional.element),
5018
+ "_debugInfo": null,
5019
+ "_debugStack": [Error: react-stack-top-frame],
5020
+ "_debugTask": null,
5021
+ "_owner": null,
5022
+ "_store": {
5023
+ "validated": 0,
5024
+ },
5025
+ "key": null,
5026
+ "props": {
5027
+ "children": {
5028
+ "$$typeof": Symbol(react.transitional.element),
5029
+ "_debugInfo": null,
5030
+ "_debugStack": [Error: react-stack-top-frame],
5031
+ "_debugTask": null,
5032
+ "_owner": null,
5033
+ "_store": {
5034
+ "validated": 1,
5035
+ },
5036
+ "key": null,
5037
+ "props": {
5038
+ "activeScreenId": "1",
5039
+ "focused": true,
5040
+ "screens": [
5041
+ {
5042
+ "getBadgeCount": [class Function],
5043
+ "getIcon": [class Function],
5044
+ "getId": [class Function],
5045
+ "getName": [class Function],
5046
+ "getStatus": [class Function],
5047
+ "isHidden": [class Function],
5048
+ },
5049
+ ],
5050
+ "selectedIndex": 0,
5051
+ "title": "Screens",
5052
+ "width": 30,
5053
+ },
5054
+ "ref": null,
5055
+ "type": [Function: Sidebar],
5056
+ },
5057
+ "levelColors": undefined,
5058
+ "theme": {
5059
+ "colors": {
5060
+ "background": "#111827",
5061
+ "error": "#EF4444",
5062
+ "foreground": "#F9FAFB",
5063
+ "muted": "#6B7280",
5064
+ "primary": "#3B82F6",
5065
+ "secondary": "#8B5CF6",
5066
+ "success": "#22C55E",
5067
+ "warning": "#F59E0B",
5068
+ },
5069
+ "errorHighlight": {
5070
+ "background": "#EF444425",
5071
+ "border": "#EF4444",
5072
+ "gutterBackground": "#EF444440",
5073
+ },
5074
+ "file": {
5075
+ "background": "#3B82F615",
5076
+ "border": "#3B82F6",
5077
+ "headerBackground": "#3B82F625",
5078
+ "headerText": "#F9FAFB",
5079
+ },
5080
+ "filter": {
5081
+ "activeLevel": "#3B82F6",
5082
+ "background": "#1F293780",
5083
+ "border": "#3B82F6",
5084
+ "cursor": "#3B82F6",
5085
+ "inactiveLevel": "#4B5563",
5086
+ "inputBackground": "#1F2937",
5087
+ "inputPlaceholder": "#6B7280",
5088
+ "inputText": "#F9FAFB",
5089
+ "text": "#E5E7EB",
5090
+ "textDim": "#6B7280",
5091
+ },
5092
+ "group": {
5093
+ "background": "#6B728010",
5094
+ "border": "#6B7280",
5095
+ "headerText": "#E5E7EB",
5096
+ "icon": "#9CA3AF",
5097
+ },
5098
+ "header": {
5099
+ "background": undefined,
5100
+ "border": "#374151",
5101
+ "text": "#F9FAFB",
5102
+ },
5103
+ "help": {
5104
+ "background": "#1F2937",
5105
+ "border": "#3B82F6",
5106
+ "category": "#3B82F6",
5107
+ "description": "#E5E7EB",
5108
+ "hint": "#6B7280",
5109
+ "key": "#F59E0B",
5110
+ "title": "#F9FAFB",
5111
+ },
5112
+ "logLevels": {
5113
+ "debug": {
5114
+ "background": "#8B5CF615",
5115
+ "border": "#8B5CF6",
5116
+ },
5117
+ "error": {
5118
+ "background": "#EF444415",
5119
+ "border": "#EF4444",
5120
+ },
5121
+ "fatal": {
5122
+ "background": "#DC262625",
5123
+ "border": "#DC2626",
5124
+ "text": "#FCA5A5",
5125
+ },
5126
+ "log": {
5127
+ "background": "#3B82F615",
5128
+ "border": "#3B82F6",
5129
+ },
5130
+ "verbose": {
5131
+ "background": "#6B728015",
5132
+ "border": "#6B7280",
5133
+ },
5134
+ "warn": {
5135
+ "background": "#F59E0B15",
5136
+ "border": "#F59E0B",
5137
+ },
5138
+ },
5139
+ "name": "dark",
5140
+ "progress": {
5141
+ "background": "#3B82F615",
5142
+ "barEmpty": "#374151",
5143
+ "barFilled": "#3B82F6",
5144
+ "border": "#3B82F6",
5145
+ "complete": "#22C55E",
5146
+ "completeBackground": "#22C55E15",
5147
+ "failed": "#EF4444",
5148
+ "failedBackground": "#EF444415",
5149
+ "text": "#E5E7EB",
5150
+ "textDim": "#9CA3AF",
5151
+ },
5152
+ "prompt": {
5153
+ "border": "#374151",
5154
+ "buttonBackground": "#374151",
5155
+ "buttonSelectedBackground": "#1F2937",
5156
+ "cancelButton": "#EF4444",
5157
+ "confirmButton": "#22C55E",
5158
+ "focusBorder": "#3B82F6",
5159
+ "inputBackground": "#1F2937",
5160
+ "inputBorder": "#3B82F6",
5161
+ "inputCursor": "#3B82F6",
5162
+ "inputPlaceholder": "#6B7280",
5163
+ "inputText": "#F9FAFB",
5164
+ "optionSelected": "#3B82F6",
5165
+ "optionSelectedBackground": "#1E3A5F",
5166
+ "optionText": "#E5E7EB",
5167
+ "optionTextDim": "#9CA3AF",
5168
+ "question": "#F9FAFB",
5169
+ },
5170
+ "separator": {
5171
+ "line": "#374151",
5172
+ "text": "#6B7280",
5173
+ },
5174
+ "sidebar": {
5175
+ "background": undefined,
5176
+ "badge": "#3B82F6",
5177
+ "border": "#374151",
5178
+ "focusBorder": "#3B82F6",
5179
+ "hoverBackground": "#374151",
5180
+ "selectedBackground": "#1F293780",
5181
+ "text": "#E5E7EB",
5182
+ "textDim": "#6B7280",
5183
+ },
5184
+ "statusIndicators": {
5185
+ "fail": {
5186
+ "color": "#EF4444",
5187
+ "icon": "✗",
5188
+ },
5189
+ "pending": {
5190
+ "color": "#F59E0B",
5191
+ "icon": "◐",
5192
+ },
5193
+ "static": {
5194
+ "color": "#3B82F6",
5195
+ "icon": "●",
5196
+ },
5197
+ "success": {
5198
+ "color": "#22C55E",
5199
+ "icon": "✓",
5200
+ },
5201
+ "waiting": {
5202
+ "color": "#6B7280",
5203
+ "icon": "○",
5204
+ },
5205
+ },
5206
+ "table": {
5207
+ "background": "#3B82F615",
5208
+ "border": "#3B82F6",
5209
+ "cellText": "#E5E7EB",
5210
+ "headerText": "#F9FAFB",
5211
+ "separator": "#3B82F650",
5212
+ "title": "#F9FAFB",
5213
+ },
5214
+ },
5215
+ },
5216
+ "ref": null,
5217
+ "type": [Function: LoggerProvider],
5218
+ }
5219
+ `;
5220
+
5221
+ exports[`Sidebar status indicators should render static status 1`] = `
5222
+ {
5223
+ "$$typeof": Symbol(react.transitional.element),
5224
+ "_debugInfo": null,
5225
+ "_debugStack": [Error: react-stack-top-frame],
5226
+ "_debugTask": null,
5227
+ "_owner": null,
5228
+ "_store": {
5229
+ "validated": 0,
5230
+ },
5231
+ "key": null,
5232
+ "props": {
5233
+ "children": {
5234
+ "$$typeof": Symbol(react.transitional.element),
5235
+ "_debugInfo": null,
5236
+ "_debugStack": [Error: react-stack-top-frame],
5237
+ "_debugTask": null,
5238
+ "_owner": null,
5239
+ "_store": {
5240
+ "validated": 1,
5241
+ },
5242
+ "key": null,
5243
+ "props": {
5244
+ "activeScreenId": "1",
5245
+ "focused": true,
5246
+ "screens": [
5247
+ {
5248
+ "getBadgeCount": [class Function],
5249
+ "getIcon": [class Function],
5250
+ "getId": [class Function],
5251
+ "getName": [class Function],
5252
+ "getStatus": [class Function],
5253
+ "isHidden": [class Function],
5254
+ },
5255
+ ],
5256
+ "selectedIndex": 0,
5257
+ "title": "Screens",
5258
+ "width": 30,
5259
+ },
5260
+ "ref": null,
5261
+ "type": [Function: Sidebar],
5262
+ },
5263
+ "levelColors": undefined,
5264
+ "theme": {
5265
+ "colors": {
5266
+ "background": "#111827",
5267
+ "error": "#EF4444",
5268
+ "foreground": "#F9FAFB",
5269
+ "muted": "#6B7280",
5270
+ "primary": "#3B82F6",
5271
+ "secondary": "#8B5CF6",
5272
+ "success": "#22C55E",
5273
+ "warning": "#F59E0B",
5274
+ },
5275
+ "errorHighlight": {
5276
+ "background": "#EF444425",
5277
+ "border": "#EF4444",
5278
+ "gutterBackground": "#EF444440",
5279
+ },
5280
+ "file": {
5281
+ "background": "#3B82F615",
5282
+ "border": "#3B82F6",
5283
+ "headerBackground": "#3B82F625",
5284
+ "headerText": "#F9FAFB",
5285
+ },
5286
+ "filter": {
5287
+ "activeLevel": "#3B82F6",
5288
+ "background": "#1F293780",
5289
+ "border": "#3B82F6",
5290
+ "cursor": "#3B82F6",
5291
+ "inactiveLevel": "#4B5563",
5292
+ "inputBackground": "#1F2937",
5293
+ "inputPlaceholder": "#6B7280",
5294
+ "inputText": "#F9FAFB",
5295
+ "text": "#E5E7EB",
5296
+ "textDim": "#6B7280",
5297
+ },
5298
+ "group": {
5299
+ "background": "#6B728010",
5300
+ "border": "#6B7280",
5301
+ "headerText": "#E5E7EB",
5302
+ "icon": "#9CA3AF",
5303
+ },
5304
+ "header": {
5305
+ "background": undefined,
5306
+ "border": "#374151",
5307
+ "text": "#F9FAFB",
5308
+ },
5309
+ "help": {
5310
+ "background": "#1F2937",
5311
+ "border": "#3B82F6",
5312
+ "category": "#3B82F6",
5313
+ "description": "#E5E7EB",
5314
+ "hint": "#6B7280",
5315
+ "key": "#F59E0B",
5316
+ "title": "#F9FAFB",
5317
+ },
5318
+ "logLevels": {
5319
+ "debug": {
5320
+ "background": "#8B5CF615",
5321
+ "border": "#8B5CF6",
5322
+ },
5323
+ "error": {
5324
+ "background": "#EF444415",
5325
+ "border": "#EF4444",
5326
+ },
5327
+ "fatal": {
5328
+ "background": "#DC262625",
5329
+ "border": "#DC2626",
5330
+ "text": "#FCA5A5",
5331
+ },
5332
+ "log": {
5333
+ "background": "#3B82F615",
5334
+ "border": "#3B82F6",
5335
+ },
5336
+ "verbose": {
5337
+ "background": "#6B728015",
5338
+ "border": "#6B7280",
5339
+ },
5340
+ "warn": {
5341
+ "background": "#F59E0B15",
5342
+ "border": "#F59E0B",
5343
+ },
5344
+ },
5345
+ "name": "dark",
5346
+ "progress": {
5347
+ "background": "#3B82F615",
5348
+ "barEmpty": "#374151",
5349
+ "barFilled": "#3B82F6",
5350
+ "border": "#3B82F6",
5351
+ "complete": "#22C55E",
5352
+ "completeBackground": "#22C55E15",
5353
+ "failed": "#EF4444",
5354
+ "failedBackground": "#EF444415",
5355
+ "text": "#E5E7EB",
5356
+ "textDim": "#9CA3AF",
5357
+ },
5358
+ "prompt": {
5359
+ "border": "#374151",
5360
+ "buttonBackground": "#374151",
5361
+ "buttonSelectedBackground": "#1F2937",
5362
+ "cancelButton": "#EF4444",
5363
+ "confirmButton": "#22C55E",
5364
+ "focusBorder": "#3B82F6",
5365
+ "inputBackground": "#1F2937",
5366
+ "inputBorder": "#3B82F6",
5367
+ "inputCursor": "#3B82F6",
5368
+ "inputPlaceholder": "#6B7280",
5369
+ "inputText": "#F9FAFB",
5370
+ "optionSelected": "#3B82F6",
5371
+ "optionSelectedBackground": "#1E3A5F",
5372
+ "optionText": "#E5E7EB",
5373
+ "optionTextDim": "#9CA3AF",
5374
+ "question": "#F9FAFB",
5375
+ },
5376
+ "separator": {
5377
+ "line": "#374151",
5378
+ "text": "#6B7280",
5379
+ },
5380
+ "sidebar": {
5381
+ "background": undefined,
5382
+ "badge": "#3B82F6",
5383
+ "border": "#374151",
5384
+ "focusBorder": "#3B82F6",
5385
+ "hoverBackground": "#374151",
5386
+ "selectedBackground": "#1F293780",
5387
+ "text": "#E5E7EB",
5388
+ "textDim": "#6B7280",
5389
+ },
5390
+ "statusIndicators": {
5391
+ "fail": {
5392
+ "color": "#EF4444",
5393
+ "icon": "✗",
5394
+ },
5395
+ "pending": {
5396
+ "color": "#F59E0B",
5397
+ "icon": "◐",
5398
+ },
5399
+ "static": {
5400
+ "color": "#3B82F6",
5401
+ "icon": "●",
5402
+ },
5403
+ "success": {
5404
+ "color": "#22C55E",
5405
+ "icon": "✓",
5406
+ },
5407
+ "waiting": {
5408
+ "color": "#6B7280",
5409
+ "icon": "○",
5410
+ },
5411
+ },
5412
+ "table": {
5413
+ "background": "#3B82F615",
5414
+ "border": "#3B82F6",
5415
+ "cellText": "#E5E7EB",
5416
+ "headerText": "#F9FAFB",
5417
+ "separator": "#3B82F650",
5418
+ "title": "#F9FAFB",
5419
+ },
5420
+ },
5421
+ },
5422
+ "ref": null,
5423
+ "type": [Function: LoggerProvider],
5424
+ }
5425
+ `;
5426
+
5427
+ exports[`Sidebar status indicators should render success status 1`] = `
5428
+ {
5429
+ "$$typeof": Symbol(react.transitional.element),
5430
+ "_debugInfo": null,
5431
+ "_debugStack": [Error: react-stack-top-frame],
5432
+ "_debugTask": null,
5433
+ "_owner": null,
5434
+ "_store": {
5435
+ "validated": 0,
5436
+ },
5437
+ "key": null,
5438
+ "props": {
5439
+ "children": {
5440
+ "$$typeof": Symbol(react.transitional.element),
5441
+ "_debugInfo": null,
5442
+ "_debugStack": [Error: react-stack-top-frame],
5443
+ "_debugTask": null,
5444
+ "_owner": null,
5445
+ "_store": {
5446
+ "validated": 1,
5447
+ },
5448
+ "key": null,
5449
+ "props": {
5450
+ "activeScreenId": "1",
5451
+ "focused": true,
5452
+ "screens": [
5453
+ {
5454
+ "getBadgeCount": [class Function],
5455
+ "getIcon": [class Function],
5456
+ "getId": [class Function],
5457
+ "getName": [class Function],
5458
+ "getStatus": [class Function],
5459
+ "isHidden": [class Function],
5460
+ },
5461
+ ],
5462
+ "selectedIndex": 0,
5463
+ "title": "Screens",
5464
+ "width": 30,
5465
+ },
5466
+ "ref": null,
5467
+ "type": [Function: Sidebar],
5468
+ },
5469
+ "levelColors": undefined,
5470
+ "theme": {
5471
+ "colors": {
5472
+ "background": "#111827",
5473
+ "error": "#EF4444",
5474
+ "foreground": "#F9FAFB",
5475
+ "muted": "#6B7280",
5476
+ "primary": "#3B82F6",
5477
+ "secondary": "#8B5CF6",
5478
+ "success": "#22C55E",
5479
+ "warning": "#F59E0B",
5480
+ },
5481
+ "errorHighlight": {
5482
+ "background": "#EF444425",
5483
+ "border": "#EF4444",
5484
+ "gutterBackground": "#EF444440",
5485
+ },
5486
+ "file": {
5487
+ "background": "#3B82F615",
5488
+ "border": "#3B82F6",
5489
+ "headerBackground": "#3B82F625",
5490
+ "headerText": "#F9FAFB",
5491
+ },
5492
+ "filter": {
5493
+ "activeLevel": "#3B82F6",
5494
+ "background": "#1F293780",
5495
+ "border": "#3B82F6",
5496
+ "cursor": "#3B82F6",
5497
+ "inactiveLevel": "#4B5563",
5498
+ "inputBackground": "#1F2937",
5499
+ "inputPlaceholder": "#6B7280",
5500
+ "inputText": "#F9FAFB",
5501
+ "text": "#E5E7EB",
5502
+ "textDim": "#6B7280",
5503
+ },
5504
+ "group": {
5505
+ "background": "#6B728010",
5506
+ "border": "#6B7280",
5507
+ "headerText": "#E5E7EB",
5508
+ "icon": "#9CA3AF",
5509
+ },
5510
+ "header": {
5511
+ "background": undefined,
5512
+ "border": "#374151",
5513
+ "text": "#F9FAFB",
5514
+ },
5515
+ "help": {
5516
+ "background": "#1F2937",
5517
+ "border": "#3B82F6",
5518
+ "category": "#3B82F6",
5519
+ "description": "#E5E7EB",
5520
+ "hint": "#6B7280",
5521
+ "key": "#F59E0B",
5522
+ "title": "#F9FAFB",
5523
+ },
5524
+ "logLevels": {
5525
+ "debug": {
5526
+ "background": "#8B5CF615",
5527
+ "border": "#8B5CF6",
5528
+ },
5529
+ "error": {
5530
+ "background": "#EF444415",
5531
+ "border": "#EF4444",
5532
+ },
5533
+ "fatal": {
5534
+ "background": "#DC262625",
5535
+ "border": "#DC2626",
5536
+ "text": "#FCA5A5",
5537
+ },
5538
+ "log": {
5539
+ "background": "#3B82F615",
5540
+ "border": "#3B82F6",
5541
+ },
5542
+ "verbose": {
5543
+ "background": "#6B728015",
5544
+ "border": "#6B7280",
5545
+ },
5546
+ "warn": {
5547
+ "background": "#F59E0B15",
5548
+ "border": "#F59E0B",
5549
+ },
5550
+ },
5551
+ "name": "dark",
5552
+ "progress": {
5553
+ "background": "#3B82F615",
5554
+ "barEmpty": "#374151",
5555
+ "barFilled": "#3B82F6",
5556
+ "border": "#3B82F6",
5557
+ "complete": "#22C55E",
5558
+ "completeBackground": "#22C55E15",
5559
+ "failed": "#EF4444",
5560
+ "failedBackground": "#EF444415",
5561
+ "text": "#E5E7EB",
5562
+ "textDim": "#9CA3AF",
5563
+ },
5564
+ "prompt": {
5565
+ "border": "#374151",
5566
+ "buttonBackground": "#374151",
5567
+ "buttonSelectedBackground": "#1F2937",
5568
+ "cancelButton": "#EF4444",
5569
+ "confirmButton": "#22C55E",
5570
+ "focusBorder": "#3B82F6",
5571
+ "inputBackground": "#1F2937",
5572
+ "inputBorder": "#3B82F6",
5573
+ "inputCursor": "#3B82F6",
5574
+ "inputPlaceholder": "#6B7280",
5575
+ "inputText": "#F9FAFB",
5576
+ "optionSelected": "#3B82F6",
5577
+ "optionSelectedBackground": "#1E3A5F",
5578
+ "optionText": "#E5E7EB",
5579
+ "optionTextDim": "#9CA3AF",
5580
+ "question": "#F9FAFB",
5581
+ },
5582
+ "separator": {
5583
+ "line": "#374151",
5584
+ "text": "#6B7280",
5585
+ },
5586
+ "sidebar": {
5587
+ "background": undefined,
5588
+ "badge": "#3B82F6",
5589
+ "border": "#374151",
5590
+ "focusBorder": "#3B82F6",
5591
+ "hoverBackground": "#374151",
5592
+ "selectedBackground": "#1F293780",
5593
+ "text": "#E5E7EB",
5594
+ "textDim": "#6B7280",
5595
+ },
5596
+ "statusIndicators": {
5597
+ "fail": {
5598
+ "color": "#EF4444",
5599
+ "icon": "✗",
5600
+ },
5601
+ "pending": {
5602
+ "color": "#F59E0B",
5603
+ "icon": "◐",
5604
+ },
5605
+ "static": {
5606
+ "color": "#3B82F6",
5607
+ "icon": "●",
5608
+ },
5609
+ "success": {
5610
+ "color": "#22C55E",
5611
+ "icon": "✓",
5612
+ },
5613
+ "waiting": {
5614
+ "color": "#6B7280",
5615
+ "icon": "○",
5616
+ },
5617
+ },
5618
+ "table": {
5619
+ "background": "#3B82F615",
5620
+ "border": "#3B82F6",
5621
+ "cellText": "#E5E7EB",
5622
+ "headerText": "#F9FAFB",
5623
+ "separator": "#3B82F650",
5624
+ "title": "#F9FAFB",
5625
+ },
5626
+ },
5627
+ },
5628
+ "ref": null,
5629
+ "type": [Function: LoggerProvider],
5630
+ }
5631
+ `;
5632
+
5633
+ exports[`Sidebar status indicators should render waiting status 1`] = `
5634
+ {
5635
+ "$$typeof": Symbol(react.transitional.element),
5636
+ "_debugInfo": null,
5637
+ "_debugStack": [Error: react-stack-top-frame],
5638
+ "_debugTask": null,
5639
+ "_owner": null,
5640
+ "_store": {
5641
+ "validated": 0,
5642
+ },
5643
+ "key": null,
5644
+ "props": {
5645
+ "children": {
5646
+ "$$typeof": Symbol(react.transitional.element),
5647
+ "_debugInfo": null,
5648
+ "_debugStack": [Error: react-stack-top-frame],
5649
+ "_debugTask": null,
5650
+ "_owner": null,
5651
+ "_store": {
5652
+ "validated": 1,
5653
+ },
5654
+ "key": null,
5655
+ "props": {
5656
+ "activeScreenId": "1",
5657
+ "focused": true,
5658
+ "screens": [
5659
+ {
5660
+ "getBadgeCount": [class Function],
5661
+ "getIcon": [class Function],
5662
+ "getId": [class Function],
5663
+ "getName": [class Function],
5664
+ "getStatus": [class Function],
5665
+ "isHidden": [class Function],
5666
+ },
5667
+ ],
5668
+ "selectedIndex": 0,
5669
+ "title": "Screens",
5670
+ "width": 30,
5671
+ },
5672
+ "ref": null,
5673
+ "type": [Function: Sidebar],
5674
+ },
5675
+ "levelColors": undefined,
5676
+ "theme": {
5677
+ "colors": {
5678
+ "background": "#111827",
5679
+ "error": "#EF4444",
5680
+ "foreground": "#F9FAFB",
5681
+ "muted": "#6B7280",
5682
+ "primary": "#3B82F6",
5683
+ "secondary": "#8B5CF6",
5684
+ "success": "#22C55E",
5685
+ "warning": "#F59E0B",
5686
+ },
5687
+ "errorHighlight": {
5688
+ "background": "#EF444425",
5689
+ "border": "#EF4444",
5690
+ "gutterBackground": "#EF444440",
5691
+ },
5692
+ "file": {
5693
+ "background": "#3B82F615",
5694
+ "border": "#3B82F6",
5695
+ "headerBackground": "#3B82F625",
5696
+ "headerText": "#F9FAFB",
5697
+ },
5698
+ "filter": {
5699
+ "activeLevel": "#3B82F6",
5700
+ "background": "#1F293780",
5701
+ "border": "#3B82F6",
5702
+ "cursor": "#3B82F6",
5703
+ "inactiveLevel": "#4B5563",
5704
+ "inputBackground": "#1F2937",
5705
+ "inputPlaceholder": "#6B7280",
5706
+ "inputText": "#F9FAFB",
5707
+ "text": "#E5E7EB",
5708
+ "textDim": "#6B7280",
5709
+ },
5710
+ "group": {
5711
+ "background": "#6B728010",
5712
+ "border": "#6B7280",
5713
+ "headerText": "#E5E7EB",
5714
+ "icon": "#9CA3AF",
5715
+ },
5716
+ "header": {
5717
+ "background": undefined,
5718
+ "border": "#374151",
5719
+ "text": "#F9FAFB",
5720
+ },
5721
+ "help": {
5722
+ "background": "#1F2937",
5723
+ "border": "#3B82F6",
5724
+ "category": "#3B82F6",
5725
+ "description": "#E5E7EB",
5726
+ "hint": "#6B7280",
5727
+ "key": "#F59E0B",
5728
+ "title": "#F9FAFB",
5729
+ },
5730
+ "logLevels": {
5731
+ "debug": {
5732
+ "background": "#8B5CF615",
5733
+ "border": "#8B5CF6",
5734
+ },
5735
+ "error": {
5736
+ "background": "#EF444415",
5737
+ "border": "#EF4444",
5738
+ },
5739
+ "fatal": {
5740
+ "background": "#DC262625",
5741
+ "border": "#DC2626",
5742
+ "text": "#FCA5A5",
5743
+ },
5744
+ "log": {
5745
+ "background": "#3B82F615",
5746
+ "border": "#3B82F6",
5747
+ },
5748
+ "verbose": {
5749
+ "background": "#6B728015",
5750
+ "border": "#6B7280",
5751
+ },
5752
+ "warn": {
5753
+ "background": "#F59E0B15",
5754
+ "border": "#F59E0B",
5755
+ },
5756
+ },
5757
+ "name": "dark",
5758
+ "progress": {
5759
+ "background": "#3B82F615",
5760
+ "barEmpty": "#374151",
5761
+ "barFilled": "#3B82F6",
5762
+ "border": "#3B82F6",
5763
+ "complete": "#22C55E",
5764
+ "completeBackground": "#22C55E15",
5765
+ "failed": "#EF4444",
5766
+ "failedBackground": "#EF444415",
5767
+ "text": "#E5E7EB",
5768
+ "textDim": "#9CA3AF",
5769
+ },
5770
+ "prompt": {
5771
+ "border": "#374151",
5772
+ "buttonBackground": "#374151",
5773
+ "buttonSelectedBackground": "#1F2937",
5774
+ "cancelButton": "#EF4444",
5775
+ "confirmButton": "#22C55E",
5776
+ "focusBorder": "#3B82F6",
5777
+ "inputBackground": "#1F2937",
5778
+ "inputBorder": "#3B82F6",
5779
+ "inputCursor": "#3B82F6",
5780
+ "inputPlaceholder": "#6B7280",
5781
+ "inputText": "#F9FAFB",
5782
+ "optionSelected": "#3B82F6",
5783
+ "optionSelectedBackground": "#1E3A5F",
5784
+ "optionText": "#E5E7EB",
5785
+ "optionTextDim": "#9CA3AF",
5786
+ "question": "#F9FAFB",
5787
+ },
5788
+ "separator": {
5789
+ "line": "#374151",
5790
+ "text": "#6B7280",
5791
+ },
5792
+ "sidebar": {
5793
+ "background": undefined,
5794
+ "badge": "#3B82F6",
5795
+ "border": "#374151",
5796
+ "focusBorder": "#3B82F6",
5797
+ "hoverBackground": "#374151",
5798
+ "selectedBackground": "#1F293780",
5799
+ "text": "#E5E7EB",
5800
+ "textDim": "#6B7280",
5801
+ },
5802
+ "statusIndicators": {
5803
+ "fail": {
5804
+ "color": "#EF4444",
5805
+ "icon": "✗",
5806
+ },
5807
+ "pending": {
5808
+ "color": "#F59E0B",
5809
+ "icon": "◐",
5810
+ },
5811
+ "static": {
5812
+ "color": "#3B82F6",
5813
+ "icon": "●",
5814
+ },
5815
+ "success": {
5816
+ "color": "#22C55E",
5817
+ "icon": "✓",
5818
+ },
5819
+ "waiting": {
5820
+ "color": "#6B7280",
5821
+ "icon": "○",
5822
+ },
5823
+ },
5824
+ "table": {
5825
+ "background": "#3B82F615",
5826
+ "border": "#3B82F6",
5827
+ "cellText": "#E5E7EB",
5828
+ "headerText": "#F9FAFB",
5829
+ "separator": "#3B82F650",
5830
+ "title": "#F9FAFB",
5831
+ },
5832
+ },
5833
+ },
5834
+ "ref": null,
5835
+ "type": [Function: LoggerProvider],
5836
+ }
5837
+ `;
5838
+
5839
+ exports[`Sidebar title should render custom title 1`] = `
5840
+ {
5841
+ "$$typeof": Symbol(react.transitional.element),
5842
+ "_debugInfo": null,
5843
+ "_debugStack": [Error: react-stack-top-frame],
5844
+ "_debugTask": null,
5845
+ "_owner": null,
5846
+ "_store": {
5847
+ "validated": 0,
5848
+ },
5849
+ "key": null,
5850
+ "props": {
5851
+ "children": {
5852
+ "$$typeof": Symbol(react.transitional.element),
5853
+ "_debugInfo": null,
5854
+ "_debugStack": [Error: react-stack-top-frame],
5855
+ "_debugTask": null,
5856
+ "_owner": null,
5857
+ "_store": {
5858
+ "validated": 1,
5859
+ },
5860
+ "key": null,
5861
+ "props": {
5862
+ "activeScreenId": "1",
5863
+ "focused": true,
5864
+ "screens": [
5865
+ {
5866
+ "getBadgeCount": [class Function],
5867
+ "getIcon": [class Function],
5868
+ "getId": [class Function],
5869
+ "getName": [class Function],
5870
+ "getStatus": [class Function],
5871
+ "isHidden": [class Function],
5872
+ },
5873
+ ],
5874
+ "selectedIndex": 0,
5875
+ "title": "Custom Title",
5876
+ "width": 30,
5877
+ },
5878
+ "ref": null,
5879
+ "type": [Function: Sidebar],
5880
+ },
5881
+ "levelColors": undefined,
5882
+ "theme": {
5883
+ "colors": {
5884
+ "background": "#111827",
5885
+ "error": "#EF4444",
5886
+ "foreground": "#F9FAFB",
5887
+ "muted": "#6B7280",
5888
+ "primary": "#3B82F6",
5889
+ "secondary": "#8B5CF6",
5890
+ "success": "#22C55E",
5891
+ "warning": "#F59E0B",
5892
+ },
5893
+ "errorHighlight": {
5894
+ "background": "#EF444425",
5895
+ "border": "#EF4444",
5896
+ "gutterBackground": "#EF444440",
5897
+ },
5898
+ "file": {
5899
+ "background": "#3B82F615",
5900
+ "border": "#3B82F6",
5901
+ "headerBackground": "#3B82F625",
5902
+ "headerText": "#F9FAFB",
5903
+ },
5904
+ "filter": {
5905
+ "activeLevel": "#3B82F6",
5906
+ "background": "#1F293780",
5907
+ "border": "#3B82F6",
5908
+ "cursor": "#3B82F6",
5909
+ "inactiveLevel": "#4B5563",
5910
+ "inputBackground": "#1F2937",
5911
+ "inputPlaceholder": "#6B7280",
5912
+ "inputText": "#F9FAFB",
5913
+ "text": "#E5E7EB",
5914
+ "textDim": "#6B7280",
5915
+ },
5916
+ "group": {
5917
+ "background": "#6B728010",
5918
+ "border": "#6B7280",
5919
+ "headerText": "#E5E7EB",
5920
+ "icon": "#9CA3AF",
5921
+ },
5922
+ "header": {
5923
+ "background": undefined,
5924
+ "border": "#374151",
5925
+ "text": "#F9FAFB",
5926
+ },
5927
+ "help": {
5928
+ "background": "#1F2937",
5929
+ "border": "#3B82F6",
5930
+ "category": "#3B82F6",
5931
+ "description": "#E5E7EB",
5932
+ "hint": "#6B7280",
5933
+ "key": "#F59E0B",
5934
+ "title": "#F9FAFB",
5935
+ },
5936
+ "logLevels": {
5937
+ "debug": {
5938
+ "background": "#8B5CF615",
5939
+ "border": "#8B5CF6",
5940
+ },
5941
+ "error": {
5942
+ "background": "#EF444415",
5943
+ "border": "#EF4444",
5944
+ },
5945
+ "fatal": {
5946
+ "background": "#DC262625",
5947
+ "border": "#DC2626",
5948
+ "text": "#FCA5A5",
5949
+ },
5950
+ "log": {
5951
+ "background": "#3B82F615",
5952
+ "border": "#3B82F6",
5953
+ },
5954
+ "verbose": {
5955
+ "background": "#6B728015",
5956
+ "border": "#6B7280",
5957
+ },
5958
+ "warn": {
5959
+ "background": "#F59E0B15",
5960
+ "border": "#F59E0B",
5961
+ },
5962
+ },
5963
+ "name": "dark",
5964
+ "progress": {
5965
+ "background": "#3B82F615",
5966
+ "barEmpty": "#374151",
5967
+ "barFilled": "#3B82F6",
5968
+ "border": "#3B82F6",
5969
+ "complete": "#22C55E",
5970
+ "completeBackground": "#22C55E15",
5971
+ "failed": "#EF4444",
5972
+ "failedBackground": "#EF444415",
5973
+ "text": "#E5E7EB",
5974
+ "textDim": "#9CA3AF",
5975
+ },
5976
+ "prompt": {
5977
+ "border": "#374151",
5978
+ "buttonBackground": "#374151",
5979
+ "buttonSelectedBackground": "#1F2937",
5980
+ "cancelButton": "#EF4444",
5981
+ "confirmButton": "#22C55E",
5982
+ "focusBorder": "#3B82F6",
5983
+ "inputBackground": "#1F2937",
5984
+ "inputBorder": "#3B82F6",
5985
+ "inputCursor": "#3B82F6",
5986
+ "inputPlaceholder": "#6B7280",
5987
+ "inputText": "#F9FAFB",
5988
+ "optionSelected": "#3B82F6",
5989
+ "optionSelectedBackground": "#1E3A5F",
5990
+ "optionText": "#E5E7EB",
5991
+ "optionTextDim": "#9CA3AF",
5992
+ "question": "#F9FAFB",
5993
+ },
5994
+ "separator": {
5995
+ "line": "#374151",
5996
+ "text": "#6B7280",
5997
+ },
5998
+ "sidebar": {
5999
+ "background": undefined,
6000
+ "badge": "#3B82F6",
6001
+ "border": "#374151",
6002
+ "focusBorder": "#3B82F6",
6003
+ "hoverBackground": "#374151",
6004
+ "selectedBackground": "#1F293780",
6005
+ "text": "#E5E7EB",
6006
+ "textDim": "#6B7280",
6007
+ },
6008
+ "statusIndicators": {
6009
+ "fail": {
6010
+ "color": "#EF4444",
6011
+ "icon": "✗",
6012
+ },
6013
+ "pending": {
6014
+ "color": "#F59E0B",
6015
+ "icon": "◐",
6016
+ },
6017
+ "static": {
6018
+ "color": "#3B82F6",
6019
+ "icon": "●",
6020
+ },
6021
+ "success": {
6022
+ "color": "#22C55E",
6023
+ "icon": "✓",
6024
+ },
6025
+ "waiting": {
6026
+ "color": "#6B7280",
6027
+ "icon": "○",
6028
+ },
6029
+ },
6030
+ "table": {
6031
+ "background": "#3B82F615",
6032
+ "border": "#3B82F6",
6033
+ "cellText": "#E5E7EB",
6034
+ "headerText": "#F9FAFB",
6035
+ "separator": "#3B82F650",
6036
+ "title": "#F9FAFB",
6037
+ },
6038
+ },
6039
+ },
6040
+ "ref": null,
6041
+ "type": [Function: LoggerProvider],
6042
+ }
6043
+ `;