@navios/commander-tui 1.1.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 (37) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +27 -0
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/lib/index.cjs +321 -14
  5. package/lib/index.cjs.map +1 -1
  6. package/lib/index.d.cts +160 -126
  7. package/lib/index.d.cts.map +1 -1
  8. package/lib/index.d.mts +146 -112
  9. package/lib/index.d.mts.map +1 -1
  10. package/lib/index.mjs +316 -16
  11. package/lib/index.mjs.map +1 -1
  12. package/lib/{screen_manager_bridge-DT-l0rxa.mjs → screen_manager_bridge-Bk1i53h5.mjs} +1 -1
  13. package/lib/{screen_manager_bridge-D2BBwKcF.mjs → screen_manager_bridge-BwPVr0bX.mjs} +5 -3
  14. package/lib/screen_manager_bridge-BwPVr0bX.mjs.map +1 -0
  15. package/lib/{screen_manager_bridge-hMUrLiBP.cjs → screen_manager_bridge-CWxLO0CK.cjs} +5 -3
  16. package/lib/screen_manager_bridge-CWxLO0CK.cjs.map +1 -0
  17. package/lib/{screen_manager_bridge-Cp2p1Ix3.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 +2556 -0
  20. package/src/__tests__/components/__snapshots__/loading_message.spec.tsx.snap +1589 -0
  21. package/src/__tests__/components/__snapshots__/log_message.spec.tsx.snap +3681 -0
  22. package/src/__tests__/components/__snapshots__/progress_message.spec.tsx.snap +2002 -0
  23. package/src/__tests__/components/__snapshots__/prompt_renderer.spec.tsx.snap +3584 -0
  24. package/src/__tests__/components/__snapshots__/sidebar.spec.tsx.snap +3186 -0
  25. package/src/__tests__/services/logger.spec.ts +5 -3
  26. package/src/factories/index.ts +1 -0
  27. package/src/factories/isomorphic-logger.factory.ts +23 -0
  28. package/src/index.ts +5 -0
  29. package/src/interfaces/index.ts +1 -0
  30. package/src/interfaces/isomorphic-logger.ts +9 -0
  31. package/src/services/logger.ts +1 -1
  32. package/src/services/screen_manager.tsx +1 -1
  33. package/src/tokens/logger.ts +9 -0
  34. package/src/types/screen.types.ts +1 -1
  35. package/src/utils/format.ts +3 -2
  36. package/lib/screen_manager_bridge-D2BBwKcF.mjs.map +0 -1
  37. package/lib/screen_manager_bridge-hMUrLiBP.cjs.map +0 -1
@@ -3243,3 +3243,3684 @@ exports[`LogMessage > with trace content > should render with trace 1`] = `
3243
3243
  </LogMessage>
3244
3244
  </LoggerProvider>
3245
3245
  `;
3246
+
3247
+ exports[`LogMessage border styles should render with thick border style 1`] = `
3248
+ {
3249
+ "$$typeof": Symbol(react.transitional.element),
3250
+ "_debugInfo": null,
3251
+ "_debugStack": [Error: react-stack-top-frame],
3252
+ "_debugTask": null,
3253
+ "_owner": null,
3254
+ "_store": {
3255
+ "validated": 0,
3256
+ },
3257
+ "key": null,
3258
+ "props": {
3259
+ "children": {
3260
+ "$$typeof": Symbol(react.transitional.element),
3261
+ "_debugInfo": null,
3262
+ "_debugStack": [Error: react-stack-top-frame],
3263
+ "_debugTask": null,
3264
+ "_owner": null,
3265
+ "_store": {
3266
+ "validated": 1,
3267
+ },
3268
+ "key": null,
3269
+ "props": {
3270
+ "borderStyle": "thick",
3271
+ "children": "Thick border",
3272
+ "level": "log",
3273
+ },
3274
+ "ref": null,
3275
+ "type": [Function: LogMessage],
3276
+ },
3277
+ "levelColors": undefined,
3278
+ "theme": {
3279
+ "colors": {
3280
+ "background": "#111827",
3281
+ "error": "#EF4444",
3282
+ "foreground": "#F9FAFB",
3283
+ "muted": "#6B7280",
3284
+ "primary": "#3B82F6",
3285
+ "secondary": "#8B5CF6",
3286
+ "success": "#22C55E",
3287
+ "warning": "#F59E0B",
3288
+ },
3289
+ "errorHighlight": {
3290
+ "background": "#EF444425",
3291
+ "border": "#EF4444",
3292
+ "gutterBackground": "#EF444440",
3293
+ },
3294
+ "file": {
3295
+ "background": "#3B82F615",
3296
+ "border": "#3B82F6",
3297
+ "headerBackground": "#3B82F625",
3298
+ "headerText": "#F9FAFB",
3299
+ },
3300
+ "filter": {
3301
+ "activeLevel": "#3B82F6",
3302
+ "background": "#1F293780",
3303
+ "border": "#3B82F6",
3304
+ "cursor": "#3B82F6",
3305
+ "inactiveLevel": "#4B5563",
3306
+ "inputBackground": "#1F2937",
3307
+ "inputPlaceholder": "#6B7280",
3308
+ "inputText": "#F9FAFB",
3309
+ "text": "#E5E7EB",
3310
+ "textDim": "#6B7280",
3311
+ },
3312
+ "group": {
3313
+ "background": "#6B728010",
3314
+ "border": "#6B7280",
3315
+ "headerText": "#E5E7EB",
3316
+ "icon": "#9CA3AF",
3317
+ },
3318
+ "header": {
3319
+ "background": undefined,
3320
+ "border": "#374151",
3321
+ "text": "#F9FAFB",
3322
+ },
3323
+ "help": {
3324
+ "background": "#1F2937",
3325
+ "border": "#3B82F6",
3326
+ "category": "#3B82F6",
3327
+ "description": "#E5E7EB",
3328
+ "hint": "#6B7280",
3329
+ "key": "#F59E0B",
3330
+ "title": "#F9FAFB",
3331
+ },
3332
+ "logLevels": {
3333
+ "debug": {
3334
+ "background": "#8B5CF615",
3335
+ "border": "#8B5CF6",
3336
+ },
3337
+ "error": {
3338
+ "background": "#EF444415",
3339
+ "border": "#EF4444",
3340
+ },
3341
+ "fatal": {
3342
+ "background": "#DC262625",
3343
+ "border": "#DC2626",
3344
+ "text": "#FCA5A5",
3345
+ },
3346
+ "log": {
3347
+ "background": "#3B82F615",
3348
+ "border": "#3B82F6",
3349
+ },
3350
+ "verbose": {
3351
+ "background": "#6B728015",
3352
+ "border": "#6B7280",
3353
+ },
3354
+ "warn": {
3355
+ "background": "#F59E0B15",
3356
+ "border": "#F59E0B",
3357
+ },
3358
+ },
3359
+ "name": "dark",
3360
+ "progress": {
3361
+ "background": "#3B82F615",
3362
+ "barEmpty": "#374151",
3363
+ "barFilled": "#3B82F6",
3364
+ "border": "#3B82F6",
3365
+ "complete": "#22C55E",
3366
+ "completeBackground": "#22C55E15",
3367
+ "failed": "#EF4444",
3368
+ "failedBackground": "#EF444415",
3369
+ "text": "#E5E7EB",
3370
+ "textDim": "#9CA3AF",
3371
+ },
3372
+ "prompt": {
3373
+ "border": "#374151",
3374
+ "buttonBackground": "#374151",
3375
+ "buttonSelectedBackground": "#1F2937",
3376
+ "cancelButton": "#EF4444",
3377
+ "confirmButton": "#22C55E",
3378
+ "focusBorder": "#3B82F6",
3379
+ "inputBackground": "#1F2937",
3380
+ "inputBorder": "#3B82F6",
3381
+ "inputCursor": "#3B82F6",
3382
+ "inputPlaceholder": "#6B7280",
3383
+ "inputText": "#F9FAFB",
3384
+ "optionSelected": "#3B82F6",
3385
+ "optionSelectedBackground": "#1E3A5F",
3386
+ "optionText": "#E5E7EB",
3387
+ "optionTextDim": "#9CA3AF",
3388
+ "question": "#F9FAFB",
3389
+ },
3390
+ "separator": {
3391
+ "line": "#374151",
3392
+ "text": "#6B7280",
3393
+ },
3394
+ "sidebar": {
3395
+ "background": undefined,
3396
+ "badge": "#3B82F6",
3397
+ "border": "#374151",
3398
+ "focusBorder": "#3B82F6",
3399
+ "hoverBackground": "#374151",
3400
+ "selectedBackground": "#1F293780",
3401
+ "text": "#E5E7EB",
3402
+ "textDim": "#6B7280",
3403
+ },
3404
+ "statusIndicators": {
3405
+ "fail": {
3406
+ "color": "#EF4444",
3407
+ "icon": "✗",
3408
+ },
3409
+ "pending": {
3410
+ "color": "#F59E0B",
3411
+ "icon": "◐",
3412
+ },
3413
+ "static": {
3414
+ "color": "#3B82F6",
3415
+ "icon": "●",
3416
+ },
3417
+ "success": {
3418
+ "color": "#22C55E",
3419
+ "icon": "✓",
3420
+ },
3421
+ "waiting": {
3422
+ "color": "#6B7280",
3423
+ "icon": "○",
3424
+ },
3425
+ },
3426
+ "table": {
3427
+ "background": "#3B82F615",
3428
+ "border": "#3B82F6",
3429
+ "cellText": "#E5E7EB",
3430
+ "headerText": "#F9FAFB",
3431
+ "separator": "#3B82F650",
3432
+ "title": "#F9FAFB",
3433
+ },
3434
+ },
3435
+ },
3436
+ "ref": null,
3437
+ "type": [Function: LoggerProvider],
3438
+ }
3439
+ `;
3440
+
3441
+ exports[`LogMessage border styles should render with thin border style (default) 1`] = `
3442
+ {
3443
+ "$$typeof": Symbol(react.transitional.element),
3444
+ "_debugInfo": null,
3445
+ "_debugStack": [Error: react-stack-top-frame],
3446
+ "_debugTask": null,
3447
+ "_owner": null,
3448
+ "_store": {
3449
+ "validated": 0,
3450
+ },
3451
+ "key": null,
3452
+ "props": {
3453
+ "children": {
3454
+ "$$typeof": Symbol(react.transitional.element),
3455
+ "_debugInfo": null,
3456
+ "_debugStack": [Error: react-stack-top-frame],
3457
+ "_debugTask": null,
3458
+ "_owner": null,
3459
+ "_store": {
3460
+ "validated": 1,
3461
+ },
3462
+ "key": null,
3463
+ "props": {
3464
+ "borderStyle": "thin",
3465
+ "children": "Thin border",
3466
+ "level": "log",
3467
+ },
3468
+ "ref": null,
3469
+ "type": [Function: LogMessage],
3470
+ },
3471
+ "levelColors": undefined,
3472
+ "theme": {
3473
+ "colors": {
3474
+ "background": "#111827",
3475
+ "error": "#EF4444",
3476
+ "foreground": "#F9FAFB",
3477
+ "muted": "#6B7280",
3478
+ "primary": "#3B82F6",
3479
+ "secondary": "#8B5CF6",
3480
+ "success": "#22C55E",
3481
+ "warning": "#F59E0B",
3482
+ },
3483
+ "errorHighlight": {
3484
+ "background": "#EF444425",
3485
+ "border": "#EF4444",
3486
+ "gutterBackground": "#EF444440",
3487
+ },
3488
+ "file": {
3489
+ "background": "#3B82F615",
3490
+ "border": "#3B82F6",
3491
+ "headerBackground": "#3B82F625",
3492
+ "headerText": "#F9FAFB",
3493
+ },
3494
+ "filter": {
3495
+ "activeLevel": "#3B82F6",
3496
+ "background": "#1F293780",
3497
+ "border": "#3B82F6",
3498
+ "cursor": "#3B82F6",
3499
+ "inactiveLevel": "#4B5563",
3500
+ "inputBackground": "#1F2937",
3501
+ "inputPlaceholder": "#6B7280",
3502
+ "inputText": "#F9FAFB",
3503
+ "text": "#E5E7EB",
3504
+ "textDim": "#6B7280",
3505
+ },
3506
+ "group": {
3507
+ "background": "#6B728010",
3508
+ "border": "#6B7280",
3509
+ "headerText": "#E5E7EB",
3510
+ "icon": "#9CA3AF",
3511
+ },
3512
+ "header": {
3513
+ "background": undefined,
3514
+ "border": "#374151",
3515
+ "text": "#F9FAFB",
3516
+ },
3517
+ "help": {
3518
+ "background": "#1F2937",
3519
+ "border": "#3B82F6",
3520
+ "category": "#3B82F6",
3521
+ "description": "#E5E7EB",
3522
+ "hint": "#6B7280",
3523
+ "key": "#F59E0B",
3524
+ "title": "#F9FAFB",
3525
+ },
3526
+ "logLevels": {
3527
+ "debug": {
3528
+ "background": "#8B5CF615",
3529
+ "border": "#8B5CF6",
3530
+ },
3531
+ "error": {
3532
+ "background": "#EF444415",
3533
+ "border": "#EF4444",
3534
+ },
3535
+ "fatal": {
3536
+ "background": "#DC262625",
3537
+ "border": "#DC2626",
3538
+ "text": "#FCA5A5",
3539
+ },
3540
+ "log": {
3541
+ "background": "#3B82F615",
3542
+ "border": "#3B82F6",
3543
+ },
3544
+ "verbose": {
3545
+ "background": "#6B728015",
3546
+ "border": "#6B7280",
3547
+ },
3548
+ "warn": {
3549
+ "background": "#F59E0B15",
3550
+ "border": "#F59E0B",
3551
+ },
3552
+ },
3553
+ "name": "dark",
3554
+ "progress": {
3555
+ "background": "#3B82F615",
3556
+ "barEmpty": "#374151",
3557
+ "barFilled": "#3B82F6",
3558
+ "border": "#3B82F6",
3559
+ "complete": "#22C55E",
3560
+ "completeBackground": "#22C55E15",
3561
+ "failed": "#EF4444",
3562
+ "failedBackground": "#EF444415",
3563
+ "text": "#E5E7EB",
3564
+ "textDim": "#9CA3AF",
3565
+ },
3566
+ "prompt": {
3567
+ "border": "#374151",
3568
+ "buttonBackground": "#374151",
3569
+ "buttonSelectedBackground": "#1F2937",
3570
+ "cancelButton": "#EF4444",
3571
+ "confirmButton": "#22C55E",
3572
+ "focusBorder": "#3B82F6",
3573
+ "inputBackground": "#1F2937",
3574
+ "inputBorder": "#3B82F6",
3575
+ "inputCursor": "#3B82F6",
3576
+ "inputPlaceholder": "#6B7280",
3577
+ "inputText": "#F9FAFB",
3578
+ "optionSelected": "#3B82F6",
3579
+ "optionSelectedBackground": "#1E3A5F",
3580
+ "optionText": "#E5E7EB",
3581
+ "optionTextDim": "#9CA3AF",
3582
+ "question": "#F9FAFB",
3583
+ },
3584
+ "separator": {
3585
+ "line": "#374151",
3586
+ "text": "#6B7280",
3587
+ },
3588
+ "sidebar": {
3589
+ "background": undefined,
3590
+ "badge": "#3B82F6",
3591
+ "border": "#374151",
3592
+ "focusBorder": "#3B82F6",
3593
+ "hoverBackground": "#374151",
3594
+ "selectedBackground": "#1F293780",
3595
+ "text": "#E5E7EB",
3596
+ "textDim": "#6B7280",
3597
+ },
3598
+ "statusIndicators": {
3599
+ "fail": {
3600
+ "color": "#EF4444",
3601
+ "icon": "✗",
3602
+ },
3603
+ "pending": {
3604
+ "color": "#F59E0B",
3605
+ "icon": "◐",
3606
+ },
3607
+ "static": {
3608
+ "color": "#3B82F6",
3609
+ "icon": "●",
3610
+ },
3611
+ "success": {
3612
+ "color": "#22C55E",
3613
+ "icon": "✓",
3614
+ },
3615
+ "waiting": {
3616
+ "color": "#6B7280",
3617
+ "icon": "○",
3618
+ },
3619
+ },
3620
+ "table": {
3621
+ "background": "#3B82F615",
3622
+ "border": "#3B82F6",
3623
+ "cellText": "#E5E7EB",
3624
+ "headerText": "#F9FAFB",
3625
+ "separator": "#3B82F650",
3626
+ "title": "#F9FAFB",
3627
+ },
3628
+ },
3629
+ },
3630
+ "ref": null,
3631
+ "type": [Function: LoggerProvider],
3632
+ }
3633
+ `;
3634
+
3635
+ exports[`LogMessage renders log levels should render debug level 1`] = `
3636
+ {
3637
+ "$$typeof": Symbol(react.transitional.element),
3638
+ "_debugInfo": null,
3639
+ "_debugStack": [Error: react-stack-top-frame],
3640
+ "_debugTask": null,
3641
+ "_owner": null,
3642
+ "_store": {
3643
+ "validated": 0,
3644
+ },
3645
+ "key": null,
3646
+ "props": {
3647
+ "children": {
3648
+ "$$typeof": Symbol(react.transitional.element),
3649
+ "_debugInfo": null,
3650
+ "_debugStack": [Error: react-stack-top-frame],
3651
+ "_debugTask": null,
3652
+ "_owner": null,
3653
+ "_store": {
3654
+ "validated": 1,
3655
+ },
3656
+ "key": null,
3657
+ "props": {
3658
+ "children": "Test message",
3659
+ "level": "debug",
3660
+ },
3661
+ "ref": null,
3662
+ "type": [Function: LogMessage],
3663
+ },
3664
+ "levelColors": undefined,
3665
+ "theme": {
3666
+ "colors": {
3667
+ "background": "#111827",
3668
+ "error": "#EF4444",
3669
+ "foreground": "#F9FAFB",
3670
+ "muted": "#6B7280",
3671
+ "primary": "#3B82F6",
3672
+ "secondary": "#8B5CF6",
3673
+ "success": "#22C55E",
3674
+ "warning": "#F59E0B",
3675
+ },
3676
+ "errorHighlight": {
3677
+ "background": "#EF444425",
3678
+ "border": "#EF4444",
3679
+ "gutterBackground": "#EF444440",
3680
+ },
3681
+ "file": {
3682
+ "background": "#3B82F615",
3683
+ "border": "#3B82F6",
3684
+ "headerBackground": "#3B82F625",
3685
+ "headerText": "#F9FAFB",
3686
+ },
3687
+ "filter": {
3688
+ "activeLevel": "#3B82F6",
3689
+ "background": "#1F293780",
3690
+ "border": "#3B82F6",
3691
+ "cursor": "#3B82F6",
3692
+ "inactiveLevel": "#4B5563",
3693
+ "inputBackground": "#1F2937",
3694
+ "inputPlaceholder": "#6B7280",
3695
+ "inputText": "#F9FAFB",
3696
+ "text": "#E5E7EB",
3697
+ "textDim": "#6B7280",
3698
+ },
3699
+ "group": {
3700
+ "background": "#6B728010",
3701
+ "border": "#6B7280",
3702
+ "headerText": "#E5E7EB",
3703
+ "icon": "#9CA3AF",
3704
+ },
3705
+ "header": {
3706
+ "background": undefined,
3707
+ "border": "#374151",
3708
+ "text": "#F9FAFB",
3709
+ },
3710
+ "help": {
3711
+ "background": "#1F2937",
3712
+ "border": "#3B82F6",
3713
+ "category": "#3B82F6",
3714
+ "description": "#E5E7EB",
3715
+ "hint": "#6B7280",
3716
+ "key": "#F59E0B",
3717
+ "title": "#F9FAFB",
3718
+ },
3719
+ "logLevels": {
3720
+ "debug": {
3721
+ "background": "#8B5CF615",
3722
+ "border": "#8B5CF6",
3723
+ },
3724
+ "error": {
3725
+ "background": "#EF444415",
3726
+ "border": "#EF4444",
3727
+ },
3728
+ "fatal": {
3729
+ "background": "#DC262625",
3730
+ "border": "#DC2626",
3731
+ "text": "#FCA5A5",
3732
+ },
3733
+ "log": {
3734
+ "background": "#3B82F615",
3735
+ "border": "#3B82F6",
3736
+ },
3737
+ "verbose": {
3738
+ "background": "#6B728015",
3739
+ "border": "#6B7280",
3740
+ },
3741
+ "warn": {
3742
+ "background": "#F59E0B15",
3743
+ "border": "#F59E0B",
3744
+ },
3745
+ },
3746
+ "name": "dark",
3747
+ "progress": {
3748
+ "background": "#3B82F615",
3749
+ "barEmpty": "#374151",
3750
+ "barFilled": "#3B82F6",
3751
+ "border": "#3B82F6",
3752
+ "complete": "#22C55E",
3753
+ "completeBackground": "#22C55E15",
3754
+ "failed": "#EF4444",
3755
+ "failedBackground": "#EF444415",
3756
+ "text": "#E5E7EB",
3757
+ "textDim": "#9CA3AF",
3758
+ },
3759
+ "prompt": {
3760
+ "border": "#374151",
3761
+ "buttonBackground": "#374151",
3762
+ "buttonSelectedBackground": "#1F2937",
3763
+ "cancelButton": "#EF4444",
3764
+ "confirmButton": "#22C55E",
3765
+ "focusBorder": "#3B82F6",
3766
+ "inputBackground": "#1F2937",
3767
+ "inputBorder": "#3B82F6",
3768
+ "inputCursor": "#3B82F6",
3769
+ "inputPlaceholder": "#6B7280",
3770
+ "inputText": "#F9FAFB",
3771
+ "optionSelected": "#3B82F6",
3772
+ "optionSelectedBackground": "#1E3A5F",
3773
+ "optionText": "#E5E7EB",
3774
+ "optionTextDim": "#9CA3AF",
3775
+ "question": "#F9FAFB",
3776
+ },
3777
+ "separator": {
3778
+ "line": "#374151",
3779
+ "text": "#6B7280",
3780
+ },
3781
+ "sidebar": {
3782
+ "background": undefined,
3783
+ "badge": "#3B82F6",
3784
+ "border": "#374151",
3785
+ "focusBorder": "#3B82F6",
3786
+ "hoverBackground": "#374151",
3787
+ "selectedBackground": "#1F293780",
3788
+ "text": "#E5E7EB",
3789
+ "textDim": "#6B7280",
3790
+ },
3791
+ "statusIndicators": {
3792
+ "fail": {
3793
+ "color": "#EF4444",
3794
+ "icon": "✗",
3795
+ },
3796
+ "pending": {
3797
+ "color": "#F59E0B",
3798
+ "icon": "◐",
3799
+ },
3800
+ "static": {
3801
+ "color": "#3B82F6",
3802
+ "icon": "●",
3803
+ },
3804
+ "success": {
3805
+ "color": "#22C55E",
3806
+ "icon": "✓",
3807
+ },
3808
+ "waiting": {
3809
+ "color": "#6B7280",
3810
+ "icon": "○",
3811
+ },
3812
+ },
3813
+ "table": {
3814
+ "background": "#3B82F615",
3815
+ "border": "#3B82F6",
3816
+ "cellText": "#E5E7EB",
3817
+ "headerText": "#F9FAFB",
3818
+ "separator": "#3B82F650",
3819
+ "title": "#F9FAFB",
3820
+ },
3821
+ },
3822
+ },
3823
+ "ref": null,
3824
+ "type": [Function: LoggerProvider],
3825
+ }
3826
+ `;
3827
+
3828
+ exports[`LogMessage renders log levels should render error level 1`] = `
3829
+ {
3830
+ "$$typeof": Symbol(react.transitional.element),
3831
+ "_debugInfo": null,
3832
+ "_debugStack": [Error: react-stack-top-frame],
3833
+ "_debugTask": null,
3834
+ "_owner": null,
3835
+ "_store": {
3836
+ "validated": 0,
3837
+ },
3838
+ "key": null,
3839
+ "props": {
3840
+ "children": {
3841
+ "$$typeof": Symbol(react.transitional.element),
3842
+ "_debugInfo": null,
3843
+ "_debugStack": [Error: react-stack-top-frame],
3844
+ "_debugTask": null,
3845
+ "_owner": null,
3846
+ "_store": {
3847
+ "validated": 1,
3848
+ },
3849
+ "key": null,
3850
+ "props": {
3851
+ "children": "Test message",
3852
+ "level": "error",
3853
+ },
3854
+ "ref": null,
3855
+ "type": [Function: LogMessage],
3856
+ },
3857
+ "levelColors": undefined,
3858
+ "theme": {
3859
+ "colors": {
3860
+ "background": "#111827",
3861
+ "error": "#EF4444",
3862
+ "foreground": "#F9FAFB",
3863
+ "muted": "#6B7280",
3864
+ "primary": "#3B82F6",
3865
+ "secondary": "#8B5CF6",
3866
+ "success": "#22C55E",
3867
+ "warning": "#F59E0B",
3868
+ },
3869
+ "errorHighlight": {
3870
+ "background": "#EF444425",
3871
+ "border": "#EF4444",
3872
+ "gutterBackground": "#EF444440",
3873
+ },
3874
+ "file": {
3875
+ "background": "#3B82F615",
3876
+ "border": "#3B82F6",
3877
+ "headerBackground": "#3B82F625",
3878
+ "headerText": "#F9FAFB",
3879
+ },
3880
+ "filter": {
3881
+ "activeLevel": "#3B82F6",
3882
+ "background": "#1F293780",
3883
+ "border": "#3B82F6",
3884
+ "cursor": "#3B82F6",
3885
+ "inactiveLevel": "#4B5563",
3886
+ "inputBackground": "#1F2937",
3887
+ "inputPlaceholder": "#6B7280",
3888
+ "inputText": "#F9FAFB",
3889
+ "text": "#E5E7EB",
3890
+ "textDim": "#6B7280",
3891
+ },
3892
+ "group": {
3893
+ "background": "#6B728010",
3894
+ "border": "#6B7280",
3895
+ "headerText": "#E5E7EB",
3896
+ "icon": "#9CA3AF",
3897
+ },
3898
+ "header": {
3899
+ "background": undefined,
3900
+ "border": "#374151",
3901
+ "text": "#F9FAFB",
3902
+ },
3903
+ "help": {
3904
+ "background": "#1F2937",
3905
+ "border": "#3B82F6",
3906
+ "category": "#3B82F6",
3907
+ "description": "#E5E7EB",
3908
+ "hint": "#6B7280",
3909
+ "key": "#F59E0B",
3910
+ "title": "#F9FAFB",
3911
+ },
3912
+ "logLevels": {
3913
+ "debug": {
3914
+ "background": "#8B5CF615",
3915
+ "border": "#8B5CF6",
3916
+ },
3917
+ "error": {
3918
+ "background": "#EF444415",
3919
+ "border": "#EF4444",
3920
+ },
3921
+ "fatal": {
3922
+ "background": "#DC262625",
3923
+ "border": "#DC2626",
3924
+ "text": "#FCA5A5",
3925
+ },
3926
+ "log": {
3927
+ "background": "#3B82F615",
3928
+ "border": "#3B82F6",
3929
+ },
3930
+ "verbose": {
3931
+ "background": "#6B728015",
3932
+ "border": "#6B7280",
3933
+ },
3934
+ "warn": {
3935
+ "background": "#F59E0B15",
3936
+ "border": "#F59E0B",
3937
+ },
3938
+ },
3939
+ "name": "dark",
3940
+ "progress": {
3941
+ "background": "#3B82F615",
3942
+ "barEmpty": "#374151",
3943
+ "barFilled": "#3B82F6",
3944
+ "border": "#3B82F6",
3945
+ "complete": "#22C55E",
3946
+ "completeBackground": "#22C55E15",
3947
+ "failed": "#EF4444",
3948
+ "failedBackground": "#EF444415",
3949
+ "text": "#E5E7EB",
3950
+ "textDim": "#9CA3AF",
3951
+ },
3952
+ "prompt": {
3953
+ "border": "#374151",
3954
+ "buttonBackground": "#374151",
3955
+ "buttonSelectedBackground": "#1F2937",
3956
+ "cancelButton": "#EF4444",
3957
+ "confirmButton": "#22C55E",
3958
+ "focusBorder": "#3B82F6",
3959
+ "inputBackground": "#1F2937",
3960
+ "inputBorder": "#3B82F6",
3961
+ "inputCursor": "#3B82F6",
3962
+ "inputPlaceholder": "#6B7280",
3963
+ "inputText": "#F9FAFB",
3964
+ "optionSelected": "#3B82F6",
3965
+ "optionSelectedBackground": "#1E3A5F",
3966
+ "optionText": "#E5E7EB",
3967
+ "optionTextDim": "#9CA3AF",
3968
+ "question": "#F9FAFB",
3969
+ },
3970
+ "separator": {
3971
+ "line": "#374151",
3972
+ "text": "#6B7280",
3973
+ },
3974
+ "sidebar": {
3975
+ "background": undefined,
3976
+ "badge": "#3B82F6",
3977
+ "border": "#374151",
3978
+ "focusBorder": "#3B82F6",
3979
+ "hoverBackground": "#374151",
3980
+ "selectedBackground": "#1F293780",
3981
+ "text": "#E5E7EB",
3982
+ "textDim": "#6B7280",
3983
+ },
3984
+ "statusIndicators": {
3985
+ "fail": {
3986
+ "color": "#EF4444",
3987
+ "icon": "✗",
3988
+ },
3989
+ "pending": {
3990
+ "color": "#F59E0B",
3991
+ "icon": "◐",
3992
+ },
3993
+ "static": {
3994
+ "color": "#3B82F6",
3995
+ "icon": "●",
3996
+ },
3997
+ "success": {
3998
+ "color": "#22C55E",
3999
+ "icon": "✓",
4000
+ },
4001
+ "waiting": {
4002
+ "color": "#6B7280",
4003
+ "icon": "○",
4004
+ },
4005
+ },
4006
+ "table": {
4007
+ "background": "#3B82F615",
4008
+ "border": "#3B82F6",
4009
+ "cellText": "#E5E7EB",
4010
+ "headerText": "#F9FAFB",
4011
+ "separator": "#3B82F650",
4012
+ "title": "#F9FAFB",
4013
+ },
4014
+ },
4015
+ },
4016
+ "ref": null,
4017
+ "type": [Function: LoggerProvider],
4018
+ }
4019
+ `;
4020
+
4021
+ exports[`LogMessage renders log levels should render fatal level 1`] = `
4022
+ {
4023
+ "$$typeof": Symbol(react.transitional.element),
4024
+ "_debugInfo": null,
4025
+ "_debugStack": [Error: react-stack-top-frame],
4026
+ "_debugTask": null,
4027
+ "_owner": null,
4028
+ "_store": {
4029
+ "validated": 0,
4030
+ },
4031
+ "key": null,
4032
+ "props": {
4033
+ "children": {
4034
+ "$$typeof": Symbol(react.transitional.element),
4035
+ "_debugInfo": null,
4036
+ "_debugStack": [Error: react-stack-top-frame],
4037
+ "_debugTask": null,
4038
+ "_owner": null,
4039
+ "_store": {
4040
+ "validated": 1,
4041
+ },
4042
+ "key": null,
4043
+ "props": {
4044
+ "children": "Test message",
4045
+ "level": "fatal",
4046
+ },
4047
+ "ref": null,
4048
+ "type": [Function: LogMessage],
4049
+ },
4050
+ "levelColors": undefined,
4051
+ "theme": {
4052
+ "colors": {
4053
+ "background": "#111827",
4054
+ "error": "#EF4444",
4055
+ "foreground": "#F9FAFB",
4056
+ "muted": "#6B7280",
4057
+ "primary": "#3B82F6",
4058
+ "secondary": "#8B5CF6",
4059
+ "success": "#22C55E",
4060
+ "warning": "#F59E0B",
4061
+ },
4062
+ "errorHighlight": {
4063
+ "background": "#EF444425",
4064
+ "border": "#EF4444",
4065
+ "gutterBackground": "#EF444440",
4066
+ },
4067
+ "file": {
4068
+ "background": "#3B82F615",
4069
+ "border": "#3B82F6",
4070
+ "headerBackground": "#3B82F625",
4071
+ "headerText": "#F9FAFB",
4072
+ },
4073
+ "filter": {
4074
+ "activeLevel": "#3B82F6",
4075
+ "background": "#1F293780",
4076
+ "border": "#3B82F6",
4077
+ "cursor": "#3B82F6",
4078
+ "inactiveLevel": "#4B5563",
4079
+ "inputBackground": "#1F2937",
4080
+ "inputPlaceholder": "#6B7280",
4081
+ "inputText": "#F9FAFB",
4082
+ "text": "#E5E7EB",
4083
+ "textDim": "#6B7280",
4084
+ },
4085
+ "group": {
4086
+ "background": "#6B728010",
4087
+ "border": "#6B7280",
4088
+ "headerText": "#E5E7EB",
4089
+ "icon": "#9CA3AF",
4090
+ },
4091
+ "header": {
4092
+ "background": undefined,
4093
+ "border": "#374151",
4094
+ "text": "#F9FAFB",
4095
+ },
4096
+ "help": {
4097
+ "background": "#1F2937",
4098
+ "border": "#3B82F6",
4099
+ "category": "#3B82F6",
4100
+ "description": "#E5E7EB",
4101
+ "hint": "#6B7280",
4102
+ "key": "#F59E0B",
4103
+ "title": "#F9FAFB",
4104
+ },
4105
+ "logLevels": {
4106
+ "debug": {
4107
+ "background": "#8B5CF615",
4108
+ "border": "#8B5CF6",
4109
+ },
4110
+ "error": {
4111
+ "background": "#EF444415",
4112
+ "border": "#EF4444",
4113
+ },
4114
+ "fatal": {
4115
+ "background": "#DC262625",
4116
+ "border": "#DC2626",
4117
+ "text": "#FCA5A5",
4118
+ },
4119
+ "log": {
4120
+ "background": "#3B82F615",
4121
+ "border": "#3B82F6",
4122
+ },
4123
+ "verbose": {
4124
+ "background": "#6B728015",
4125
+ "border": "#6B7280",
4126
+ },
4127
+ "warn": {
4128
+ "background": "#F59E0B15",
4129
+ "border": "#F59E0B",
4130
+ },
4131
+ },
4132
+ "name": "dark",
4133
+ "progress": {
4134
+ "background": "#3B82F615",
4135
+ "barEmpty": "#374151",
4136
+ "barFilled": "#3B82F6",
4137
+ "border": "#3B82F6",
4138
+ "complete": "#22C55E",
4139
+ "completeBackground": "#22C55E15",
4140
+ "failed": "#EF4444",
4141
+ "failedBackground": "#EF444415",
4142
+ "text": "#E5E7EB",
4143
+ "textDim": "#9CA3AF",
4144
+ },
4145
+ "prompt": {
4146
+ "border": "#374151",
4147
+ "buttonBackground": "#374151",
4148
+ "buttonSelectedBackground": "#1F2937",
4149
+ "cancelButton": "#EF4444",
4150
+ "confirmButton": "#22C55E",
4151
+ "focusBorder": "#3B82F6",
4152
+ "inputBackground": "#1F2937",
4153
+ "inputBorder": "#3B82F6",
4154
+ "inputCursor": "#3B82F6",
4155
+ "inputPlaceholder": "#6B7280",
4156
+ "inputText": "#F9FAFB",
4157
+ "optionSelected": "#3B82F6",
4158
+ "optionSelectedBackground": "#1E3A5F",
4159
+ "optionText": "#E5E7EB",
4160
+ "optionTextDim": "#9CA3AF",
4161
+ "question": "#F9FAFB",
4162
+ },
4163
+ "separator": {
4164
+ "line": "#374151",
4165
+ "text": "#6B7280",
4166
+ },
4167
+ "sidebar": {
4168
+ "background": undefined,
4169
+ "badge": "#3B82F6",
4170
+ "border": "#374151",
4171
+ "focusBorder": "#3B82F6",
4172
+ "hoverBackground": "#374151",
4173
+ "selectedBackground": "#1F293780",
4174
+ "text": "#E5E7EB",
4175
+ "textDim": "#6B7280",
4176
+ },
4177
+ "statusIndicators": {
4178
+ "fail": {
4179
+ "color": "#EF4444",
4180
+ "icon": "✗",
4181
+ },
4182
+ "pending": {
4183
+ "color": "#F59E0B",
4184
+ "icon": "◐",
4185
+ },
4186
+ "static": {
4187
+ "color": "#3B82F6",
4188
+ "icon": "●",
4189
+ },
4190
+ "success": {
4191
+ "color": "#22C55E",
4192
+ "icon": "✓",
4193
+ },
4194
+ "waiting": {
4195
+ "color": "#6B7280",
4196
+ "icon": "○",
4197
+ },
4198
+ },
4199
+ "table": {
4200
+ "background": "#3B82F615",
4201
+ "border": "#3B82F6",
4202
+ "cellText": "#E5E7EB",
4203
+ "headerText": "#F9FAFB",
4204
+ "separator": "#3B82F650",
4205
+ "title": "#F9FAFB",
4206
+ },
4207
+ },
4208
+ },
4209
+ "ref": null,
4210
+ "type": [Function: LoggerProvider],
4211
+ }
4212
+ `;
4213
+
4214
+ exports[`LogMessage renders log levels should render log level 1`] = `
4215
+ {
4216
+ "$$typeof": Symbol(react.transitional.element),
4217
+ "_debugInfo": null,
4218
+ "_debugStack": [Error: react-stack-top-frame],
4219
+ "_debugTask": null,
4220
+ "_owner": null,
4221
+ "_store": {
4222
+ "validated": 0,
4223
+ },
4224
+ "key": null,
4225
+ "props": {
4226
+ "children": {
4227
+ "$$typeof": Symbol(react.transitional.element),
4228
+ "_debugInfo": null,
4229
+ "_debugStack": [Error: react-stack-top-frame],
4230
+ "_debugTask": null,
4231
+ "_owner": null,
4232
+ "_store": {
4233
+ "validated": 1,
4234
+ },
4235
+ "key": null,
4236
+ "props": {
4237
+ "children": "Test message",
4238
+ "level": "log",
4239
+ },
4240
+ "ref": null,
4241
+ "type": [Function: LogMessage],
4242
+ },
4243
+ "levelColors": undefined,
4244
+ "theme": {
4245
+ "colors": {
4246
+ "background": "#111827",
4247
+ "error": "#EF4444",
4248
+ "foreground": "#F9FAFB",
4249
+ "muted": "#6B7280",
4250
+ "primary": "#3B82F6",
4251
+ "secondary": "#8B5CF6",
4252
+ "success": "#22C55E",
4253
+ "warning": "#F59E0B",
4254
+ },
4255
+ "errorHighlight": {
4256
+ "background": "#EF444425",
4257
+ "border": "#EF4444",
4258
+ "gutterBackground": "#EF444440",
4259
+ },
4260
+ "file": {
4261
+ "background": "#3B82F615",
4262
+ "border": "#3B82F6",
4263
+ "headerBackground": "#3B82F625",
4264
+ "headerText": "#F9FAFB",
4265
+ },
4266
+ "filter": {
4267
+ "activeLevel": "#3B82F6",
4268
+ "background": "#1F293780",
4269
+ "border": "#3B82F6",
4270
+ "cursor": "#3B82F6",
4271
+ "inactiveLevel": "#4B5563",
4272
+ "inputBackground": "#1F2937",
4273
+ "inputPlaceholder": "#6B7280",
4274
+ "inputText": "#F9FAFB",
4275
+ "text": "#E5E7EB",
4276
+ "textDim": "#6B7280",
4277
+ },
4278
+ "group": {
4279
+ "background": "#6B728010",
4280
+ "border": "#6B7280",
4281
+ "headerText": "#E5E7EB",
4282
+ "icon": "#9CA3AF",
4283
+ },
4284
+ "header": {
4285
+ "background": undefined,
4286
+ "border": "#374151",
4287
+ "text": "#F9FAFB",
4288
+ },
4289
+ "help": {
4290
+ "background": "#1F2937",
4291
+ "border": "#3B82F6",
4292
+ "category": "#3B82F6",
4293
+ "description": "#E5E7EB",
4294
+ "hint": "#6B7280",
4295
+ "key": "#F59E0B",
4296
+ "title": "#F9FAFB",
4297
+ },
4298
+ "logLevels": {
4299
+ "debug": {
4300
+ "background": "#8B5CF615",
4301
+ "border": "#8B5CF6",
4302
+ },
4303
+ "error": {
4304
+ "background": "#EF444415",
4305
+ "border": "#EF4444",
4306
+ },
4307
+ "fatal": {
4308
+ "background": "#DC262625",
4309
+ "border": "#DC2626",
4310
+ "text": "#FCA5A5",
4311
+ },
4312
+ "log": {
4313
+ "background": "#3B82F615",
4314
+ "border": "#3B82F6",
4315
+ },
4316
+ "verbose": {
4317
+ "background": "#6B728015",
4318
+ "border": "#6B7280",
4319
+ },
4320
+ "warn": {
4321
+ "background": "#F59E0B15",
4322
+ "border": "#F59E0B",
4323
+ },
4324
+ },
4325
+ "name": "dark",
4326
+ "progress": {
4327
+ "background": "#3B82F615",
4328
+ "barEmpty": "#374151",
4329
+ "barFilled": "#3B82F6",
4330
+ "border": "#3B82F6",
4331
+ "complete": "#22C55E",
4332
+ "completeBackground": "#22C55E15",
4333
+ "failed": "#EF4444",
4334
+ "failedBackground": "#EF444415",
4335
+ "text": "#E5E7EB",
4336
+ "textDim": "#9CA3AF",
4337
+ },
4338
+ "prompt": {
4339
+ "border": "#374151",
4340
+ "buttonBackground": "#374151",
4341
+ "buttonSelectedBackground": "#1F2937",
4342
+ "cancelButton": "#EF4444",
4343
+ "confirmButton": "#22C55E",
4344
+ "focusBorder": "#3B82F6",
4345
+ "inputBackground": "#1F2937",
4346
+ "inputBorder": "#3B82F6",
4347
+ "inputCursor": "#3B82F6",
4348
+ "inputPlaceholder": "#6B7280",
4349
+ "inputText": "#F9FAFB",
4350
+ "optionSelected": "#3B82F6",
4351
+ "optionSelectedBackground": "#1E3A5F",
4352
+ "optionText": "#E5E7EB",
4353
+ "optionTextDim": "#9CA3AF",
4354
+ "question": "#F9FAFB",
4355
+ },
4356
+ "separator": {
4357
+ "line": "#374151",
4358
+ "text": "#6B7280",
4359
+ },
4360
+ "sidebar": {
4361
+ "background": undefined,
4362
+ "badge": "#3B82F6",
4363
+ "border": "#374151",
4364
+ "focusBorder": "#3B82F6",
4365
+ "hoverBackground": "#374151",
4366
+ "selectedBackground": "#1F293780",
4367
+ "text": "#E5E7EB",
4368
+ "textDim": "#6B7280",
4369
+ },
4370
+ "statusIndicators": {
4371
+ "fail": {
4372
+ "color": "#EF4444",
4373
+ "icon": "✗",
4374
+ },
4375
+ "pending": {
4376
+ "color": "#F59E0B",
4377
+ "icon": "◐",
4378
+ },
4379
+ "static": {
4380
+ "color": "#3B82F6",
4381
+ "icon": "●",
4382
+ },
4383
+ "success": {
4384
+ "color": "#22C55E",
4385
+ "icon": "✓",
4386
+ },
4387
+ "waiting": {
4388
+ "color": "#6B7280",
4389
+ "icon": "○",
4390
+ },
4391
+ },
4392
+ "table": {
4393
+ "background": "#3B82F615",
4394
+ "border": "#3B82F6",
4395
+ "cellText": "#E5E7EB",
4396
+ "headerText": "#F9FAFB",
4397
+ "separator": "#3B82F650",
4398
+ "title": "#F9FAFB",
4399
+ },
4400
+ },
4401
+ },
4402
+ "ref": null,
4403
+ "type": [Function: LoggerProvider],
4404
+ }
4405
+ `;
4406
+
4407
+ exports[`LogMessage renders log levels should render verbose level 1`] = `
4408
+ {
4409
+ "$$typeof": Symbol(react.transitional.element),
4410
+ "_debugInfo": null,
4411
+ "_debugStack": [Error: react-stack-top-frame],
4412
+ "_debugTask": null,
4413
+ "_owner": null,
4414
+ "_store": {
4415
+ "validated": 0,
4416
+ },
4417
+ "key": null,
4418
+ "props": {
4419
+ "children": {
4420
+ "$$typeof": Symbol(react.transitional.element),
4421
+ "_debugInfo": null,
4422
+ "_debugStack": [Error: react-stack-top-frame],
4423
+ "_debugTask": null,
4424
+ "_owner": null,
4425
+ "_store": {
4426
+ "validated": 1,
4427
+ },
4428
+ "key": null,
4429
+ "props": {
4430
+ "children": "Test message",
4431
+ "level": "verbose",
4432
+ },
4433
+ "ref": null,
4434
+ "type": [Function: LogMessage],
4435
+ },
4436
+ "levelColors": undefined,
4437
+ "theme": {
4438
+ "colors": {
4439
+ "background": "#111827",
4440
+ "error": "#EF4444",
4441
+ "foreground": "#F9FAFB",
4442
+ "muted": "#6B7280",
4443
+ "primary": "#3B82F6",
4444
+ "secondary": "#8B5CF6",
4445
+ "success": "#22C55E",
4446
+ "warning": "#F59E0B",
4447
+ },
4448
+ "errorHighlight": {
4449
+ "background": "#EF444425",
4450
+ "border": "#EF4444",
4451
+ "gutterBackground": "#EF444440",
4452
+ },
4453
+ "file": {
4454
+ "background": "#3B82F615",
4455
+ "border": "#3B82F6",
4456
+ "headerBackground": "#3B82F625",
4457
+ "headerText": "#F9FAFB",
4458
+ },
4459
+ "filter": {
4460
+ "activeLevel": "#3B82F6",
4461
+ "background": "#1F293780",
4462
+ "border": "#3B82F6",
4463
+ "cursor": "#3B82F6",
4464
+ "inactiveLevel": "#4B5563",
4465
+ "inputBackground": "#1F2937",
4466
+ "inputPlaceholder": "#6B7280",
4467
+ "inputText": "#F9FAFB",
4468
+ "text": "#E5E7EB",
4469
+ "textDim": "#6B7280",
4470
+ },
4471
+ "group": {
4472
+ "background": "#6B728010",
4473
+ "border": "#6B7280",
4474
+ "headerText": "#E5E7EB",
4475
+ "icon": "#9CA3AF",
4476
+ },
4477
+ "header": {
4478
+ "background": undefined,
4479
+ "border": "#374151",
4480
+ "text": "#F9FAFB",
4481
+ },
4482
+ "help": {
4483
+ "background": "#1F2937",
4484
+ "border": "#3B82F6",
4485
+ "category": "#3B82F6",
4486
+ "description": "#E5E7EB",
4487
+ "hint": "#6B7280",
4488
+ "key": "#F59E0B",
4489
+ "title": "#F9FAFB",
4490
+ },
4491
+ "logLevels": {
4492
+ "debug": {
4493
+ "background": "#8B5CF615",
4494
+ "border": "#8B5CF6",
4495
+ },
4496
+ "error": {
4497
+ "background": "#EF444415",
4498
+ "border": "#EF4444",
4499
+ },
4500
+ "fatal": {
4501
+ "background": "#DC262625",
4502
+ "border": "#DC2626",
4503
+ "text": "#FCA5A5",
4504
+ },
4505
+ "log": {
4506
+ "background": "#3B82F615",
4507
+ "border": "#3B82F6",
4508
+ },
4509
+ "verbose": {
4510
+ "background": "#6B728015",
4511
+ "border": "#6B7280",
4512
+ },
4513
+ "warn": {
4514
+ "background": "#F59E0B15",
4515
+ "border": "#F59E0B",
4516
+ },
4517
+ },
4518
+ "name": "dark",
4519
+ "progress": {
4520
+ "background": "#3B82F615",
4521
+ "barEmpty": "#374151",
4522
+ "barFilled": "#3B82F6",
4523
+ "border": "#3B82F6",
4524
+ "complete": "#22C55E",
4525
+ "completeBackground": "#22C55E15",
4526
+ "failed": "#EF4444",
4527
+ "failedBackground": "#EF444415",
4528
+ "text": "#E5E7EB",
4529
+ "textDim": "#9CA3AF",
4530
+ },
4531
+ "prompt": {
4532
+ "border": "#374151",
4533
+ "buttonBackground": "#374151",
4534
+ "buttonSelectedBackground": "#1F2937",
4535
+ "cancelButton": "#EF4444",
4536
+ "confirmButton": "#22C55E",
4537
+ "focusBorder": "#3B82F6",
4538
+ "inputBackground": "#1F2937",
4539
+ "inputBorder": "#3B82F6",
4540
+ "inputCursor": "#3B82F6",
4541
+ "inputPlaceholder": "#6B7280",
4542
+ "inputText": "#F9FAFB",
4543
+ "optionSelected": "#3B82F6",
4544
+ "optionSelectedBackground": "#1E3A5F",
4545
+ "optionText": "#E5E7EB",
4546
+ "optionTextDim": "#9CA3AF",
4547
+ "question": "#F9FAFB",
4548
+ },
4549
+ "separator": {
4550
+ "line": "#374151",
4551
+ "text": "#6B7280",
4552
+ },
4553
+ "sidebar": {
4554
+ "background": undefined,
4555
+ "badge": "#3B82F6",
4556
+ "border": "#374151",
4557
+ "focusBorder": "#3B82F6",
4558
+ "hoverBackground": "#374151",
4559
+ "selectedBackground": "#1F293780",
4560
+ "text": "#E5E7EB",
4561
+ "textDim": "#6B7280",
4562
+ },
4563
+ "statusIndicators": {
4564
+ "fail": {
4565
+ "color": "#EF4444",
4566
+ "icon": "✗",
4567
+ },
4568
+ "pending": {
4569
+ "color": "#F59E0B",
4570
+ "icon": "◐",
4571
+ },
4572
+ "static": {
4573
+ "color": "#3B82F6",
4574
+ "icon": "●",
4575
+ },
4576
+ "success": {
4577
+ "color": "#22C55E",
4578
+ "icon": "✓",
4579
+ },
4580
+ "waiting": {
4581
+ "color": "#6B7280",
4582
+ "icon": "○",
4583
+ },
4584
+ },
4585
+ "table": {
4586
+ "background": "#3B82F615",
4587
+ "border": "#3B82F6",
4588
+ "cellText": "#E5E7EB",
4589
+ "headerText": "#F9FAFB",
4590
+ "separator": "#3B82F650",
4591
+ "title": "#F9FAFB",
4592
+ },
4593
+ },
4594
+ },
4595
+ "ref": null,
4596
+ "type": [Function: LoggerProvider],
4597
+ }
4598
+ `;
4599
+
4600
+ exports[`LogMessage renders log levels should render warn level 1`] = `
4601
+ {
4602
+ "$$typeof": Symbol(react.transitional.element),
4603
+ "_debugInfo": null,
4604
+ "_debugStack": [Error: react-stack-top-frame],
4605
+ "_debugTask": null,
4606
+ "_owner": null,
4607
+ "_store": {
4608
+ "validated": 0,
4609
+ },
4610
+ "key": null,
4611
+ "props": {
4612
+ "children": {
4613
+ "$$typeof": Symbol(react.transitional.element),
4614
+ "_debugInfo": null,
4615
+ "_debugStack": [Error: react-stack-top-frame],
4616
+ "_debugTask": null,
4617
+ "_owner": null,
4618
+ "_store": {
4619
+ "validated": 1,
4620
+ },
4621
+ "key": null,
4622
+ "props": {
4623
+ "children": "Test message",
4624
+ "level": "warn",
4625
+ },
4626
+ "ref": null,
4627
+ "type": [Function: LogMessage],
4628
+ },
4629
+ "levelColors": undefined,
4630
+ "theme": {
4631
+ "colors": {
4632
+ "background": "#111827",
4633
+ "error": "#EF4444",
4634
+ "foreground": "#F9FAFB",
4635
+ "muted": "#6B7280",
4636
+ "primary": "#3B82F6",
4637
+ "secondary": "#8B5CF6",
4638
+ "success": "#22C55E",
4639
+ "warning": "#F59E0B",
4640
+ },
4641
+ "errorHighlight": {
4642
+ "background": "#EF444425",
4643
+ "border": "#EF4444",
4644
+ "gutterBackground": "#EF444440",
4645
+ },
4646
+ "file": {
4647
+ "background": "#3B82F615",
4648
+ "border": "#3B82F6",
4649
+ "headerBackground": "#3B82F625",
4650
+ "headerText": "#F9FAFB",
4651
+ },
4652
+ "filter": {
4653
+ "activeLevel": "#3B82F6",
4654
+ "background": "#1F293780",
4655
+ "border": "#3B82F6",
4656
+ "cursor": "#3B82F6",
4657
+ "inactiveLevel": "#4B5563",
4658
+ "inputBackground": "#1F2937",
4659
+ "inputPlaceholder": "#6B7280",
4660
+ "inputText": "#F9FAFB",
4661
+ "text": "#E5E7EB",
4662
+ "textDim": "#6B7280",
4663
+ },
4664
+ "group": {
4665
+ "background": "#6B728010",
4666
+ "border": "#6B7280",
4667
+ "headerText": "#E5E7EB",
4668
+ "icon": "#9CA3AF",
4669
+ },
4670
+ "header": {
4671
+ "background": undefined,
4672
+ "border": "#374151",
4673
+ "text": "#F9FAFB",
4674
+ },
4675
+ "help": {
4676
+ "background": "#1F2937",
4677
+ "border": "#3B82F6",
4678
+ "category": "#3B82F6",
4679
+ "description": "#E5E7EB",
4680
+ "hint": "#6B7280",
4681
+ "key": "#F59E0B",
4682
+ "title": "#F9FAFB",
4683
+ },
4684
+ "logLevels": {
4685
+ "debug": {
4686
+ "background": "#8B5CF615",
4687
+ "border": "#8B5CF6",
4688
+ },
4689
+ "error": {
4690
+ "background": "#EF444415",
4691
+ "border": "#EF4444",
4692
+ },
4693
+ "fatal": {
4694
+ "background": "#DC262625",
4695
+ "border": "#DC2626",
4696
+ "text": "#FCA5A5",
4697
+ },
4698
+ "log": {
4699
+ "background": "#3B82F615",
4700
+ "border": "#3B82F6",
4701
+ },
4702
+ "verbose": {
4703
+ "background": "#6B728015",
4704
+ "border": "#6B7280",
4705
+ },
4706
+ "warn": {
4707
+ "background": "#F59E0B15",
4708
+ "border": "#F59E0B",
4709
+ },
4710
+ },
4711
+ "name": "dark",
4712
+ "progress": {
4713
+ "background": "#3B82F615",
4714
+ "barEmpty": "#374151",
4715
+ "barFilled": "#3B82F6",
4716
+ "border": "#3B82F6",
4717
+ "complete": "#22C55E",
4718
+ "completeBackground": "#22C55E15",
4719
+ "failed": "#EF4444",
4720
+ "failedBackground": "#EF444415",
4721
+ "text": "#E5E7EB",
4722
+ "textDim": "#9CA3AF",
4723
+ },
4724
+ "prompt": {
4725
+ "border": "#374151",
4726
+ "buttonBackground": "#374151",
4727
+ "buttonSelectedBackground": "#1F2937",
4728
+ "cancelButton": "#EF4444",
4729
+ "confirmButton": "#22C55E",
4730
+ "focusBorder": "#3B82F6",
4731
+ "inputBackground": "#1F2937",
4732
+ "inputBorder": "#3B82F6",
4733
+ "inputCursor": "#3B82F6",
4734
+ "inputPlaceholder": "#6B7280",
4735
+ "inputText": "#F9FAFB",
4736
+ "optionSelected": "#3B82F6",
4737
+ "optionSelectedBackground": "#1E3A5F",
4738
+ "optionText": "#E5E7EB",
4739
+ "optionTextDim": "#9CA3AF",
4740
+ "question": "#F9FAFB",
4741
+ },
4742
+ "separator": {
4743
+ "line": "#374151",
4744
+ "text": "#6B7280",
4745
+ },
4746
+ "sidebar": {
4747
+ "background": undefined,
4748
+ "badge": "#3B82F6",
4749
+ "border": "#374151",
4750
+ "focusBorder": "#3B82F6",
4751
+ "hoverBackground": "#374151",
4752
+ "selectedBackground": "#1F293780",
4753
+ "text": "#E5E7EB",
4754
+ "textDim": "#6B7280",
4755
+ },
4756
+ "statusIndicators": {
4757
+ "fail": {
4758
+ "color": "#EF4444",
4759
+ "icon": "✗",
4760
+ },
4761
+ "pending": {
4762
+ "color": "#F59E0B",
4763
+ "icon": "◐",
4764
+ },
4765
+ "static": {
4766
+ "color": "#3B82F6",
4767
+ "icon": "●",
4768
+ },
4769
+ "success": {
4770
+ "color": "#22C55E",
4771
+ "icon": "✓",
4772
+ },
4773
+ "waiting": {
4774
+ "color": "#6B7280",
4775
+ "icon": "○",
4776
+ },
4777
+ },
4778
+ "table": {
4779
+ "background": "#3B82F615",
4780
+ "border": "#3B82F6",
4781
+ "cellText": "#E5E7EB",
4782
+ "headerText": "#F9FAFB",
4783
+ "separator": "#3B82F650",
4784
+ "title": "#F9FAFB",
4785
+ },
4786
+ },
4787
+ },
4788
+ "ref": null,
4789
+ "type": [Function: LoggerProvider],
4790
+ }
4791
+ `;
4792
+
4793
+ exports[`LogMessage variants should render with success variant 1`] = `
4794
+ {
4795
+ "$$typeof": Symbol(react.transitional.element),
4796
+ "_debugInfo": null,
4797
+ "_debugStack": [Error: react-stack-top-frame],
4798
+ "_debugTask": null,
4799
+ "_owner": null,
4800
+ "_store": {
4801
+ "validated": 0,
4802
+ },
4803
+ "key": null,
4804
+ "props": {
4805
+ "children": {
4806
+ "$$typeof": Symbol(react.transitional.element),
4807
+ "_debugInfo": null,
4808
+ "_debugStack": [Error: react-stack-top-frame],
4809
+ "_debugTask": null,
4810
+ "_owner": null,
4811
+ "_store": {
4812
+ "validated": 1,
4813
+ },
4814
+ "key": null,
4815
+ "props": {
4816
+ "children": "Success message",
4817
+ "level": "log",
4818
+ "variant": "success",
4819
+ },
4820
+ "ref": null,
4821
+ "type": [Function: LogMessage],
4822
+ },
4823
+ "levelColors": undefined,
4824
+ "theme": {
4825
+ "colors": {
4826
+ "background": "#111827",
4827
+ "error": "#EF4444",
4828
+ "foreground": "#F9FAFB",
4829
+ "muted": "#6B7280",
4830
+ "primary": "#3B82F6",
4831
+ "secondary": "#8B5CF6",
4832
+ "success": "#22C55E",
4833
+ "warning": "#F59E0B",
4834
+ },
4835
+ "errorHighlight": {
4836
+ "background": "#EF444425",
4837
+ "border": "#EF4444",
4838
+ "gutterBackground": "#EF444440",
4839
+ },
4840
+ "file": {
4841
+ "background": "#3B82F615",
4842
+ "border": "#3B82F6",
4843
+ "headerBackground": "#3B82F625",
4844
+ "headerText": "#F9FAFB",
4845
+ },
4846
+ "filter": {
4847
+ "activeLevel": "#3B82F6",
4848
+ "background": "#1F293780",
4849
+ "border": "#3B82F6",
4850
+ "cursor": "#3B82F6",
4851
+ "inactiveLevel": "#4B5563",
4852
+ "inputBackground": "#1F2937",
4853
+ "inputPlaceholder": "#6B7280",
4854
+ "inputText": "#F9FAFB",
4855
+ "text": "#E5E7EB",
4856
+ "textDim": "#6B7280",
4857
+ },
4858
+ "group": {
4859
+ "background": "#6B728010",
4860
+ "border": "#6B7280",
4861
+ "headerText": "#E5E7EB",
4862
+ "icon": "#9CA3AF",
4863
+ },
4864
+ "header": {
4865
+ "background": undefined,
4866
+ "border": "#374151",
4867
+ "text": "#F9FAFB",
4868
+ },
4869
+ "help": {
4870
+ "background": "#1F2937",
4871
+ "border": "#3B82F6",
4872
+ "category": "#3B82F6",
4873
+ "description": "#E5E7EB",
4874
+ "hint": "#6B7280",
4875
+ "key": "#F59E0B",
4876
+ "title": "#F9FAFB",
4877
+ },
4878
+ "logLevels": {
4879
+ "debug": {
4880
+ "background": "#8B5CF615",
4881
+ "border": "#8B5CF6",
4882
+ },
4883
+ "error": {
4884
+ "background": "#EF444415",
4885
+ "border": "#EF4444",
4886
+ },
4887
+ "fatal": {
4888
+ "background": "#DC262625",
4889
+ "border": "#DC2626",
4890
+ "text": "#FCA5A5",
4891
+ },
4892
+ "log": {
4893
+ "background": "#3B82F615",
4894
+ "border": "#3B82F6",
4895
+ },
4896
+ "verbose": {
4897
+ "background": "#6B728015",
4898
+ "border": "#6B7280",
4899
+ },
4900
+ "warn": {
4901
+ "background": "#F59E0B15",
4902
+ "border": "#F59E0B",
4903
+ },
4904
+ },
4905
+ "name": "dark",
4906
+ "progress": {
4907
+ "background": "#3B82F615",
4908
+ "barEmpty": "#374151",
4909
+ "barFilled": "#3B82F6",
4910
+ "border": "#3B82F6",
4911
+ "complete": "#22C55E",
4912
+ "completeBackground": "#22C55E15",
4913
+ "failed": "#EF4444",
4914
+ "failedBackground": "#EF444415",
4915
+ "text": "#E5E7EB",
4916
+ "textDim": "#9CA3AF",
4917
+ },
4918
+ "prompt": {
4919
+ "border": "#374151",
4920
+ "buttonBackground": "#374151",
4921
+ "buttonSelectedBackground": "#1F2937",
4922
+ "cancelButton": "#EF4444",
4923
+ "confirmButton": "#22C55E",
4924
+ "focusBorder": "#3B82F6",
4925
+ "inputBackground": "#1F2937",
4926
+ "inputBorder": "#3B82F6",
4927
+ "inputCursor": "#3B82F6",
4928
+ "inputPlaceholder": "#6B7280",
4929
+ "inputText": "#F9FAFB",
4930
+ "optionSelected": "#3B82F6",
4931
+ "optionSelectedBackground": "#1E3A5F",
4932
+ "optionText": "#E5E7EB",
4933
+ "optionTextDim": "#9CA3AF",
4934
+ "question": "#F9FAFB",
4935
+ },
4936
+ "separator": {
4937
+ "line": "#374151",
4938
+ "text": "#6B7280",
4939
+ },
4940
+ "sidebar": {
4941
+ "background": undefined,
4942
+ "badge": "#3B82F6",
4943
+ "border": "#374151",
4944
+ "focusBorder": "#3B82F6",
4945
+ "hoverBackground": "#374151",
4946
+ "selectedBackground": "#1F293780",
4947
+ "text": "#E5E7EB",
4948
+ "textDim": "#6B7280",
4949
+ },
4950
+ "statusIndicators": {
4951
+ "fail": {
4952
+ "color": "#EF4444",
4953
+ "icon": "✗",
4954
+ },
4955
+ "pending": {
4956
+ "color": "#F59E0B",
4957
+ "icon": "◐",
4958
+ },
4959
+ "static": {
4960
+ "color": "#3B82F6",
4961
+ "icon": "●",
4962
+ },
4963
+ "success": {
4964
+ "color": "#22C55E",
4965
+ "icon": "✓",
4966
+ },
4967
+ "waiting": {
4968
+ "color": "#6B7280",
4969
+ "icon": "○",
4970
+ },
4971
+ },
4972
+ "table": {
4973
+ "background": "#3B82F615",
4974
+ "border": "#3B82F6",
4975
+ "cellText": "#E5E7EB",
4976
+ "headerText": "#F9FAFB",
4977
+ "separator": "#3B82F650",
4978
+ "title": "#F9FAFB",
4979
+ },
4980
+ },
4981
+ },
4982
+ "ref": null,
4983
+ "type": [Function: LoggerProvider],
4984
+ }
4985
+ `;
4986
+
4987
+ exports[`LogMessage variants should render with trace variant 1`] = `
4988
+ {
4989
+ "$$typeof": Symbol(react.transitional.element),
4990
+ "_debugInfo": null,
4991
+ "_debugStack": [Error: react-stack-top-frame],
4992
+ "_debugTask": null,
4993
+ "_owner": null,
4994
+ "_store": {
4995
+ "validated": 0,
4996
+ },
4997
+ "key": null,
4998
+ "props": {
4999
+ "children": {
5000
+ "$$typeof": Symbol(react.transitional.element),
5001
+ "_debugInfo": null,
5002
+ "_debugStack": [Error: react-stack-top-frame],
5003
+ "_debugTask": null,
5004
+ "_owner": null,
5005
+ "_store": {
5006
+ "validated": 1,
5007
+ },
5008
+ "key": null,
5009
+ "props": {
5010
+ "children": "Trace message",
5011
+ "level": "verbose",
5012
+ "variant": "trace",
5013
+ },
5014
+ "ref": null,
5015
+ "type": [Function: LogMessage],
5016
+ },
5017
+ "levelColors": undefined,
5018
+ "theme": {
5019
+ "colors": {
5020
+ "background": "#111827",
5021
+ "error": "#EF4444",
5022
+ "foreground": "#F9FAFB",
5023
+ "muted": "#6B7280",
5024
+ "primary": "#3B82F6",
5025
+ "secondary": "#8B5CF6",
5026
+ "success": "#22C55E",
5027
+ "warning": "#F59E0B",
5028
+ },
5029
+ "errorHighlight": {
5030
+ "background": "#EF444425",
5031
+ "border": "#EF4444",
5032
+ "gutterBackground": "#EF444440",
5033
+ },
5034
+ "file": {
5035
+ "background": "#3B82F615",
5036
+ "border": "#3B82F6",
5037
+ "headerBackground": "#3B82F625",
5038
+ "headerText": "#F9FAFB",
5039
+ },
5040
+ "filter": {
5041
+ "activeLevel": "#3B82F6",
5042
+ "background": "#1F293780",
5043
+ "border": "#3B82F6",
5044
+ "cursor": "#3B82F6",
5045
+ "inactiveLevel": "#4B5563",
5046
+ "inputBackground": "#1F2937",
5047
+ "inputPlaceholder": "#6B7280",
5048
+ "inputText": "#F9FAFB",
5049
+ "text": "#E5E7EB",
5050
+ "textDim": "#6B7280",
5051
+ },
5052
+ "group": {
5053
+ "background": "#6B728010",
5054
+ "border": "#6B7280",
5055
+ "headerText": "#E5E7EB",
5056
+ "icon": "#9CA3AF",
5057
+ },
5058
+ "header": {
5059
+ "background": undefined,
5060
+ "border": "#374151",
5061
+ "text": "#F9FAFB",
5062
+ },
5063
+ "help": {
5064
+ "background": "#1F2937",
5065
+ "border": "#3B82F6",
5066
+ "category": "#3B82F6",
5067
+ "description": "#E5E7EB",
5068
+ "hint": "#6B7280",
5069
+ "key": "#F59E0B",
5070
+ "title": "#F9FAFB",
5071
+ },
5072
+ "logLevels": {
5073
+ "debug": {
5074
+ "background": "#8B5CF615",
5075
+ "border": "#8B5CF6",
5076
+ },
5077
+ "error": {
5078
+ "background": "#EF444415",
5079
+ "border": "#EF4444",
5080
+ },
5081
+ "fatal": {
5082
+ "background": "#DC262625",
5083
+ "border": "#DC2626",
5084
+ "text": "#FCA5A5",
5085
+ },
5086
+ "log": {
5087
+ "background": "#3B82F615",
5088
+ "border": "#3B82F6",
5089
+ },
5090
+ "verbose": {
5091
+ "background": "#6B728015",
5092
+ "border": "#6B7280",
5093
+ },
5094
+ "warn": {
5095
+ "background": "#F59E0B15",
5096
+ "border": "#F59E0B",
5097
+ },
5098
+ },
5099
+ "name": "dark",
5100
+ "progress": {
5101
+ "background": "#3B82F615",
5102
+ "barEmpty": "#374151",
5103
+ "barFilled": "#3B82F6",
5104
+ "border": "#3B82F6",
5105
+ "complete": "#22C55E",
5106
+ "completeBackground": "#22C55E15",
5107
+ "failed": "#EF4444",
5108
+ "failedBackground": "#EF444415",
5109
+ "text": "#E5E7EB",
5110
+ "textDim": "#9CA3AF",
5111
+ },
5112
+ "prompt": {
5113
+ "border": "#374151",
5114
+ "buttonBackground": "#374151",
5115
+ "buttonSelectedBackground": "#1F2937",
5116
+ "cancelButton": "#EF4444",
5117
+ "confirmButton": "#22C55E",
5118
+ "focusBorder": "#3B82F6",
5119
+ "inputBackground": "#1F2937",
5120
+ "inputBorder": "#3B82F6",
5121
+ "inputCursor": "#3B82F6",
5122
+ "inputPlaceholder": "#6B7280",
5123
+ "inputText": "#F9FAFB",
5124
+ "optionSelected": "#3B82F6",
5125
+ "optionSelectedBackground": "#1E3A5F",
5126
+ "optionText": "#E5E7EB",
5127
+ "optionTextDim": "#9CA3AF",
5128
+ "question": "#F9FAFB",
5129
+ },
5130
+ "separator": {
5131
+ "line": "#374151",
5132
+ "text": "#6B7280",
5133
+ },
5134
+ "sidebar": {
5135
+ "background": undefined,
5136
+ "badge": "#3B82F6",
5137
+ "border": "#374151",
5138
+ "focusBorder": "#3B82F6",
5139
+ "hoverBackground": "#374151",
5140
+ "selectedBackground": "#1F293780",
5141
+ "text": "#E5E7EB",
5142
+ "textDim": "#6B7280",
5143
+ },
5144
+ "statusIndicators": {
5145
+ "fail": {
5146
+ "color": "#EF4444",
5147
+ "icon": "✗",
5148
+ },
5149
+ "pending": {
5150
+ "color": "#F59E0B",
5151
+ "icon": "◐",
5152
+ },
5153
+ "static": {
5154
+ "color": "#3B82F6",
5155
+ "icon": "●",
5156
+ },
5157
+ "success": {
5158
+ "color": "#22C55E",
5159
+ "icon": "✓",
5160
+ },
5161
+ "waiting": {
5162
+ "color": "#6B7280",
5163
+ "icon": "○",
5164
+ },
5165
+ },
5166
+ "table": {
5167
+ "background": "#3B82F615",
5168
+ "border": "#3B82F6",
5169
+ "cellText": "#E5E7EB",
5170
+ "headerText": "#F9FAFB",
5171
+ "separator": "#3B82F650",
5172
+ "title": "#F9FAFB",
5173
+ },
5174
+ },
5175
+ },
5176
+ "ref": null,
5177
+ "type": [Function: LoggerProvider],
5178
+ }
5179
+ `;
5180
+
5181
+ exports[`LogMessage with custom colors should render with custom backgroundColor 1`] = `
5182
+ {
5183
+ "$$typeof": Symbol(react.transitional.element),
5184
+ "_debugInfo": null,
5185
+ "_debugStack": [Error: react-stack-top-frame],
5186
+ "_debugTask": null,
5187
+ "_owner": null,
5188
+ "_store": {
5189
+ "validated": 0,
5190
+ },
5191
+ "key": null,
5192
+ "props": {
5193
+ "children": {
5194
+ "$$typeof": Symbol(react.transitional.element),
5195
+ "_debugInfo": null,
5196
+ "_debugStack": [Error: react-stack-top-frame],
5197
+ "_debugTask": null,
5198
+ "_owner": null,
5199
+ "_store": {
5200
+ "validated": 1,
5201
+ },
5202
+ "key": null,
5203
+ "props": {
5204
+ "backgroundColor": "#111111",
5205
+ "children": "Custom background color",
5206
+ "level": "log",
5207
+ },
5208
+ "ref": null,
5209
+ "type": [Function: LogMessage],
5210
+ },
5211
+ "levelColors": undefined,
5212
+ "theme": {
5213
+ "colors": {
5214
+ "background": "#111827",
5215
+ "error": "#EF4444",
5216
+ "foreground": "#F9FAFB",
5217
+ "muted": "#6B7280",
5218
+ "primary": "#3B82F6",
5219
+ "secondary": "#8B5CF6",
5220
+ "success": "#22C55E",
5221
+ "warning": "#F59E0B",
5222
+ },
5223
+ "errorHighlight": {
5224
+ "background": "#EF444425",
5225
+ "border": "#EF4444",
5226
+ "gutterBackground": "#EF444440",
5227
+ },
5228
+ "file": {
5229
+ "background": "#3B82F615",
5230
+ "border": "#3B82F6",
5231
+ "headerBackground": "#3B82F625",
5232
+ "headerText": "#F9FAFB",
5233
+ },
5234
+ "filter": {
5235
+ "activeLevel": "#3B82F6",
5236
+ "background": "#1F293780",
5237
+ "border": "#3B82F6",
5238
+ "cursor": "#3B82F6",
5239
+ "inactiveLevel": "#4B5563",
5240
+ "inputBackground": "#1F2937",
5241
+ "inputPlaceholder": "#6B7280",
5242
+ "inputText": "#F9FAFB",
5243
+ "text": "#E5E7EB",
5244
+ "textDim": "#6B7280",
5245
+ },
5246
+ "group": {
5247
+ "background": "#6B728010",
5248
+ "border": "#6B7280",
5249
+ "headerText": "#E5E7EB",
5250
+ "icon": "#9CA3AF",
5251
+ },
5252
+ "header": {
5253
+ "background": undefined,
5254
+ "border": "#374151",
5255
+ "text": "#F9FAFB",
5256
+ },
5257
+ "help": {
5258
+ "background": "#1F2937",
5259
+ "border": "#3B82F6",
5260
+ "category": "#3B82F6",
5261
+ "description": "#E5E7EB",
5262
+ "hint": "#6B7280",
5263
+ "key": "#F59E0B",
5264
+ "title": "#F9FAFB",
5265
+ },
5266
+ "logLevels": {
5267
+ "debug": {
5268
+ "background": "#8B5CF615",
5269
+ "border": "#8B5CF6",
5270
+ },
5271
+ "error": {
5272
+ "background": "#EF444415",
5273
+ "border": "#EF4444",
5274
+ },
5275
+ "fatal": {
5276
+ "background": "#DC262625",
5277
+ "border": "#DC2626",
5278
+ "text": "#FCA5A5",
5279
+ },
5280
+ "log": {
5281
+ "background": "#3B82F615",
5282
+ "border": "#3B82F6",
5283
+ },
5284
+ "verbose": {
5285
+ "background": "#6B728015",
5286
+ "border": "#6B7280",
5287
+ },
5288
+ "warn": {
5289
+ "background": "#F59E0B15",
5290
+ "border": "#F59E0B",
5291
+ },
5292
+ },
5293
+ "name": "dark",
5294
+ "progress": {
5295
+ "background": "#3B82F615",
5296
+ "barEmpty": "#374151",
5297
+ "barFilled": "#3B82F6",
5298
+ "border": "#3B82F6",
5299
+ "complete": "#22C55E",
5300
+ "completeBackground": "#22C55E15",
5301
+ "failed": "#EF4444",
5302
+ "failedBackground": "#EF444415",
5303
+ "text": "#E5E7EB",
5304
+ "textDim": "#9CA3AF",
5305
+ },
5306
+ "prompt": {
5307
+ "border": "#374151",
5308
+ "buttonBackground": "#374151",
5309
+ "buttonSelectedBackground": "#1F2937",
5310
+ "cancelButton": "#EF4444",
5311
+ "confirmButton": "#22C55E",
5312
+ "focusBorder": "#3B82F6",
5313
+ "inputBackground": "#1F2937",
5314
+ "inputBorder": "#3B82F6",
5315
+ "inputCursor": "#3B82F6",
5316
+ "inputPlaceholder": "#6B7280",
5317
+ "inputText": "#F9FAFB",
5318
+ "optionSelected": "#3B82F6",
5319
+ "optionSelectedBackground": "#1E3A5F",
5320
+ "optionText": "#E5E7EB",
5321
+ "optionTextDim": "#9CA3AF",
5322
+ "question": "#F9FAFB",
5323
+ },
5324
+ "separator": {
5325
+ "line": "#374151",
5326
+ "text": "#6B7280",
5327
+ },
5328
+ "sidebar": {
5329
+ "background": undefined,
5330
+ "badge": "#3B82F6",
5331
+ "border": "#374151",
5332
+ "focusBorder": "#3B82F6",
5333
+ "hoverBackground": "#374151",
5334
+ "selectedBackground": "#1F293780",
5335
+ "text": "#E5E7EB",
5336
+ "textDim": "#6B7280",
5337
+ },
5338
+ "statusIndicators": {
5339
+ "fail": {
5340
+ "color": "#EF4444",
5341
+ "icon": "✗",
5342
+ },
5343
+ "pending": {
5344
+ "color": "#F59E0B",
5345
+ "icon": "◐",
5346
+ },
5347
+ "static": {
5348
+ "color": "#3B82F6",
5349
+ "icon": "●",
5350
+ },
5351
+ "success": {
5352
+ "color": "#22C55E",
5353
+ "icon": "✓",
5354
+ },
5355
+ "waiting": {
5356
+ "color": "#6B7280",
5357
+ "icon": "○",
5358
+ },
5359
+ },
5360
+ "table": {
5361
+ "background": "#3B82F615",
5362
+ "border": "#3B82F6",
5363
+ "cellText": "#E5E7EB",
5364
+ "headerText": "#F9FAFB",
5365
+ "separator": "#3B82F650",
5366
+ "title": "#F9FAFB",
5367
+ },
5368
+ },
5369
+ },
5370
+ "ref": null,
5371
+ "type": [Function: LoggerProvider],
5372
+ }
5373
+ `;
5374
+
5375
+ exports[`LogMessage with custom colors should render with custom borderColor 1`] = `
5376
+ {
5377
+ "$$typeof": Symbol(react.transitional.element),
5378
+ "_debugInfo": null,
5379
+ "_debugStack": [Error: react-stack-top-frame],
5380
+ "_debugTask": null,
5381
+ "_owner": null,
5382
+ "_store": {
5383
+ "validated": 0,
5384
+ },
5385
+ "key": null,
5386
+ "props": {
5387
+ "children": {
5388
+ "$$typeof": Symbol(react.transitional.element),
5389
+ "_debugInfo": null,
5390
+ "_debugStack": [Error: react-stack-top-frame],
5391
+ "_debugTask": null,
5392
+ "_owner": null,
5393
+ "_store": {
5394
+ "validated": 1,
5395
+ },
5396
+ "key": null,
5397
+ "props": {
5398
+ "borderColor": "#ff0000",
5399
+ "children": "Custom border color",
5400
+ "level": "log",
5401
+ },
5402
+ "ref": null,
5403
+ "type": [Function: LogMessage],
5404
+ },
5405
+ "levelColors": undefined,
5406
+ "theme": {
5407
+ "colors": {
5408
+ "background": "#111827",
5409
+ "error": "#EF4444",
5410
+ "foreground": "#F9FAFB",
5411
+ "muted": "#6B7280",
5412
+ "primary": "#3B82F6",
5413
+ "secondary": "#8B5CF6",
5414
+ "success": "#22C55E",
5415
+ "warning": "#F59E0B",
5416
+ },
5417
+ "errorHighlight": {
5418
+ "background": "#EF444425",
5419
+ "border": "#EF4444",
5420
+ "gutterBackground": "#EF444440",
5421
+ },
5422
+ "file": {
5423
+ "background": "#3B82F615",
5424
+ "border": "#3B82F6",
5425
+ "headerBackground": "#3B82F625",
5426
+ "headerText": "#F9FAFB",
5427
+ },
5428
+ "filter": {
5429
+ "activeLevel": "#3B82F6",
5430
+ "background": "#1F293780",
5431
+ "border": "#3B82F6",
5432
+ "cursor": "#3B82F6",
5433
+ "inactiveLevel": "#4B5563",
5434
+ "inputBackground": "#1F2937",
5435
+ "inputPlaceholder": "#6B7280",
5436
+ "inputText": "#F9FAFB",
5437
+ "text": "#E5E7EB",
5438
+ "textDim": "#6B7280",
5439
+ },
5440
+ "group": {
5441
+ "background": "#6B728010",
5442
+ "border": "#6B7280",
5443
+ "headerText": "#E5E7EB",
5444
+ "icon": "#9CA3AF",
5445
+ },
5446
+ "header": {
5447
+ "background": undefined,
5448
+ "border": "#374151",
5449
+ "text": "#F9FAFB",
5450
+ },
5451
+ "help": {
5452
+ "background": "#1F2937",
5453
+ "border": "#3B82F6",
5454
+ "category": "#3B82F6",
5455
+ "description": "#E5E7EB",
5456
+ "hint": "#6B7280",
5457
+ "key": "#F59E0B",
5458
+ "title": "#F9FAFB",
5459
+ },
5460
+ "logLevels": {
5461
+ "debug": {
5462
+ "background": "#8B5CF615",
5463
+ "border": "#8B5CF6",
5464
+ },
5465
+ "error": {
5466
+ "background": "#EF444415",
5467
+ "border": "#EF4444",
5468
+ },
5469
+ "fatal": {
5470
+ "background": "#DC262625",
5471
+ "border": "#DC2626",
5472
+ "text": "#FCA5A5",
5473
+ },
5474
+ "log": {
5475
+ "background": "#3B82F615",
5476
+ "border": "#3B82F6",
5477
+ },
5478
+ "verbose": {
5479
+ "background": "#6B728015",
5480
+ "border": "#6B7280",
5481
+ },
5482
+ "warn": {
5483
+ "background": "#F59E0B15",
5484
+ "border": "#F59E0B",
5485
+ },
5486
+ },
5487
+ "name": "dark",
5488
+ "progress": {
5489
+ "background": "#3B82F615",
5490
+ "barEmpty": "#374151",
5491
+ "barFilled": "#3B82F6",
5492
+ "border": "#3B82F6",
5493
+ "complete": "#22C55E",
5494
+ "completeBackground": "#22C55E15",
5495
+ "failed": "#EF4444",
5496
+ "failedBackground": "#EF444415",
5497
+ "text": "#E5E7EB",
5498
+ "textDim": "#9CA3AF",
5499
+ },
5500
+ "prompt": {
5501
+ "border": "#374151",
5502
+ "buttonBackground": "#374151",
5503
+ "buttonSelectedBackground": "#1F2937",
5504
+ "cancelButton": "#EF4444",
5505
+ "confirmButton": "#22C55E",
5506
+ "focusBorder": "#3B82F6",
5507
+ "inputBackground": "#1F2937",
5508
+ "inputBorder": "#3B82F6",
5509
+ "inputCursor": "#3B82F6",
5510
+ "inputPlaceholder": "#6B7280",
5511
+ "inputText": "#F9FAFB",
5512
+ "optionSelected": "#3B82F6",
5513
+ "optionSelectedBackground": "#1E3A5F",
5514
+ "optionText": "#E5E7EB",
5515
+ "optionTextDim": "#9CA3AF",
5516
+ "question": "#F9FAFB",
5517
+ },
5518
+ "separator": {
5519
+ "line": "#374151",
5520
+ "text": "#6B7280",
5521
+ },
5522
+ "sidebar": {
5523
+ "background": undefined,
5524
+ "badge": "#3B82F6",
5525
+ "border": "#374151",
5526
+ "focusBorder": "#3B82F6",
5527
+ "hoverBackground": "#374151",
5528
+ "selectedBackground": "#1F293780",
5529
+ "text": "#E5E7EB",
5530
+ "textDim": "#6B7280",
5531
+ },
5532
+ "statusIndicators": {
5533
+ "fail": {
5534
+ "color": "#EF4444",
5535
+ "icon": "✗",
5536
+ },
5537
+ "pending": {
5538
+ "color": "#F59E0B",
5539
+ "icon": "◐",
5540
+ },
5541
+ "static": {
5542
+ "color": "#3B82F6",
5543
+ "icon": "●",
5544
+ },
5545
+ "success": {
5546
+ "color": "#22C55E",
5547
+ "icon": "✓",
5548
+ },
5549
+ "waiting": {
5550
+ "color": "#6B7280",
5551
+ "icon": "○",
5552
+ },
5553
+ },
5554
+ "table": {
5555
+ "background": "#3B82F615",
5556
+ "border": "#3B82F6",
5557
+ "cellText": "#E5E7EB",
5558
+ "headerText": "#F9FAFB",
5559
+ "separator": "#3B82F650",
5560
+ "title": "#F9FAFB",
5561
+ },
5562
+ },
5563
+ },
5564
+ "ref": null,
5565
+ "type": [Function: LoggerProvider],
5566
+ }
5567
+ `;
5568
+
5569
+ exports[`LogMessage with label should render with label 1`] = `
5570
+ {
5571
+ "$$typeof": Symbol(react.transitional.element),
5572
+ "_debugInfo": null,
5573
+ "_debugStack": [Error: react-stack-top-frame],
5574
+ "_debugTask": null,
5575
+ "_owner": null,
5576
+ "_store": {
5577
+ "validated": 0,
5578
+ },
5579
+ "key": null,
5580
+ "props": {
5581
+ "children": {
5582
+ "$$typeof": Symbol(react.transitional.element),
5583
+ "_debugInfo": null,
5584
+ "_debugStack": [Error: react-stack-top-frame],
5585
+ "_debugTask": null,
5586
+ "_owner": null,
5587
+ "_store": {
5588
+ "validated": 1,
5589
+ },
5590
+ "key": null,
5591
+ "props": {
5592
+ "children": "Message with label",
5593
+ "label": "API",
5594
+ "level": "log",
5595
+ },
5596
+ "ref": null,
5597
+ "type": [Function: LogMessage],
5598
+ },
5599
+ "levelColors": undefined,
5600
+ "theme": {
5601
+ "colors": {
5602
+ "background": "#111827",
5603
+ "error": "#EF4444",
5604
+ "foreground": "#F9FAFB",
5605
+ "muted": "#6B7280",
5606
+ "primary": "#3B82F6",
5607
+ "secondary": "#8B5CF6",
5608
+ "success": "#22C55E",
5609
+ "warning": "#F59E0B",
5610
+ },
5611
+ "errorHighlight": {
5612
+ "background": "#EF444425",
5613
+ "border": "#EF4444",
5614
+ "gutterBackground": "#EF444440",
5615
+ },
5616
+ "file": {
5617
+ "background": "#3B82F615",
5618
+ "border": "#3B82F6",
5619
+ "headerBackground": "#3B82F625",
5620
+ "headerText": "#F9FAFB",
5621
+ },
5622
+ "filter": {
5623
+ "activeLevel": "#3B82F6",
5624
+ "background": "#1F293780",
5625
+ "border": "#3B82F6",
5626
+ "cursor": "#3B82F6",
5627
+ "inactiveLevel": "#4B5563",
5628
+ "inputBackground": "#1F2937",
5629
+ "inputPlaceholder": "#6B7280",
5630
+ "inputText": "#F9FAFB",
5631
+ "text": "#E5E7EB",
5632
+ "textDim": "#6B7280",
5633
+ },
5634
+ "group": {
5635
+ "background": "#6B728010",
5636
+ "border": "#6B7280",
5637
+ "headerText": "#E5E7EB",
5638
+ "icon": "#9CA3AF",
5639
+ },
5640
+ "header": {
5641
+ "background": undefined,
5642
+ "border": "#374151",
5643
+ "text": "#F9FAFB",
5644
+ },
5645
+ "help": {
5646
+ "background": "#1F2937",
5647
+ "border": "#3B82F6",
5648
+ "category": "#3B82F6",
5649
+ "description": "#E5E7EB",
5650
+ "hint": "#6B7280",
5651
+ "key": "#F59E0B",
5652
+ "title": "#F9FAFB",
5653
+ },
5654
+ "logLevels": {
5655
+ "debug": {
5656
+ "background": "#8B5CF615",
5657
+ "border": "#8B5CF6",
5658
+ },
5659
+ "error": {
5660
+ "background": "#EF444415",
5661
+ "border": "#EF4444",
5662
+ },
5663
+ "fatal": {
5664
+ "background": "#DC262625",
5665
+ "border": "#DC2626",
5666
+ "text": "#FCA5A5",
5667
+ },
5668
+ "log": {
5669
+ "background": "#3B82F615",
5670
+ "border": "#3B82F6",
5671
+ },
5672
+ "verbose": {
5673
+ "background": "#6B728015",
5674
+ "border": "#6B7280",
5675
+ },
5676
+ "warn": {
5677
+ "background": "#F59E0B15",
5678
+ "border": "#F59E0B",
5679
+ },
5680
+ },
5681
+ "name": "dark",
5682
+ "progress": {
5683
+ "background": "#3B82F615",
5684
+ "barEmpty": "#374151",
5685
+ "barFilled": "#3B82F6",
5686
+ "border": "#3B82F6",
5687
+ "complete": "#22C55E",
5688
+ "completeBackground": "#22C55E15",
5689
+ "failed": "#EF4444",
5690
+ "failedBackground": "#EF444415",
5691
+ "text": "#E5E7EB",
5692
+ "textDim": "#9CA3AF",
5693
+ },
5694
+ "prompt": {
5695
+ "border": "#374151",
5696
+ "buttonBackground": "#374151",
5697
+ "buttonSelectedBackground": "#1F2937",
5698
+ "cancelButton": "#EF4444",
5699
+ "confirmButton": "#22C55E",
5700
+ "focusBorder": "#3B82F6",
5701
+ "inputBackground": "#1F2937",
5702
+ "inputBorder": "#3B82F6",
5703
+ "inputCursor": "#3B82F6",
5704
+ "inputPlaceholder": "#6B7280",
5705
+ "inputText": "#F9FAFB",
5706
+ "optionSelected": "#3B82F6",
5707
+ "optionSelectedBackground": "#1E3A5F",
5708
+ "optionText": "#E5E7EB",
5709
+ "optionTextDim": "#9CA3AF",
5710
+ "question": "#F9FAFB",
5711
+ },
5712
+ "separator": {
5713
+ "line": "#374151",
5714
+ "text": "#6B7280",
5715
+ },
5716
+ "sidebar": {
5717
+ "background": undefined,
5718
+ "badge": "#3B82F6",
5719
+ "border": "#374151",
5720
+ "focusBorder": "#3B82F6",
5721
+ "hoverBackground": "#374151",
5722
+ "selectedBackground": "#1F293780",
5723
+ "text": "#E5E7EB",
5724
+ "textDim": "#6B7280",
5725
+ },
5726
+ "statusIndicators": {
5727
+ "fail": {
5728
+ "color": "#EF4444",
5729
+ "icon": "✗",
5730
+ },
5731
+ "pending": {
5732
+ "color": "#F59E0B",
5733
+ "icon": "◐",
5734
+ },
5735
+ "static": {
5736
+ "color": "#3B82F6",
5737
+ "icon": "●",
5738
+ },
5739
+ "success": {
5740
+ "color": "#22C55E",
5741
+ "icon": "✓",
5742
+ },
5743
+ "waiting": {
5744
+ "color": "#6B7280",
5745
+ "icon": "○",
5746
+ },
5747
+ },
5748
+ "table": {
5749
+ "background": "#3B82F615",
5750
+ "border": "#3B82F6",
5751
+ "cellText": "#E5E7EB",
5752
+ "headerText": "#F9FAFB",
5753
+ "separator": "#3B82F650",
5754
+ "title": "#F9FAFB",
5755
+ },
5756
+ },
5757
+ },
5758
+ "ref": null,
5759
+ "type": [Function: LoggerProvider],
5760
+ }
5761
+ `;
5762
+
5763
+ exports[`LogMessage with label should render with label and timestamp 1`] = `
5764
+ {
5765
+ "$$typeof": Symbol(react.transitional.element),
5766
+ "_debugInfo": null,
5767
+ "_debugStack": [Error: react-stack-top-frame],
5768
+ "_debugTask": null,
5769
+ "_owner": null,
5770
+ "_store": {
5771
+ "validated": 0,
5772
+ },
5773
+ "key": null,
5774
+ "props": {
5775
+ "children": {
5776
+ "$$typeof": Symbol(react.transitional.element),
5777
+ "_debugInfo": null,
5778
+ "_debugStack": [Error: react-stack-top-frame],
5779
+ "_debugTask": null,
5780
+ "_owner": null,
5781
+ "_store": {
5782
+ "validated": 1,
5783
+ },
5784
+ "key": null,
5785
+ "props": {
5786
+ "children": "Message with both",
5787
+ "label": "Database",
5788
+ "level": "log",
5789
+ "timestamp": 2024-01-15T10:30:00.000Z,
5790
+ },
5791
+ "ref": null,
5792
+ "type": [Function: LogMessage],
5793
+ },
5794
+ "levelColors": undefined,
5795
+ "theme": {
5796
+ "colors": {
5797
+ "background": "#111827",
5798
+ "error": "#EF4444",
5799
+ "foreground": "#F9FAFB",
5800
+ "muted": "#6B7280",
5801
+ "primary": "#3B82F6",
5802
+ "secondary": "#8B5CF6",
5803
+ "success": "#22C55E",
5804
+ "warning": "#F59E0B",
5805
+ },
5806
+ "errorHighlight": {
5807
+ "background": "#EF444425",
5808
+ "border": "#EF4444",
5809
+ "gutterBackground": "#EF444440",
5810
+ },
5811
+ "file": {
5812
+ "background": "#3B82F615",
5813
+ "border": "#3B82F6",
5814
+ "headerBackground": "#3B82F625",
5815
+ "headerText": "#F9FAFB",
5816
+ },
5817
+ "filter": {
5818
+ "activeLevel": "#3B82F6",
5819
+ "background": "#1F293780",
5820
+ "border": "#3B82F6",
5821
+ "cursor": "#3B82F6",
5822
+ "inactiveLevel": "#4B5563",
5823
+ "inputBackground": "#1F2937",
5824
+ "inputPlaceholder": "#6B7280",
5825
+ "inputText": "#F9FAFB",
5826
+ "text": "#E5E7EB",
5827
+ "textDim": "#6B7280",
5828
+ },
5829
+ "group": {
5830
+ "background": "#6B728010",
5831
+ "border": "#6B7280",
5832
+ "headerText": "#E5E7EB",
5833
+ "icon": "#9CA3AF",
5834
+ },
5835
+ "header": {
5836
+ "background": undefined,
5837
+ "border": "#374151",
5838
+ "text": "#F9FAFB",
5839
+ },
5840
+ "help": {
5841
+ "background": "#1F2937",
5842
+ "border": "#3B82F6",
5843
+ "category": "#3B82F6",
5844
+ "description": "#E5E7EB",
5845
+ "hint": "#6B7280",
5846
+ "key": "#F59E0B",
5847
+ "title": "#F9FAFB",
5848
+ },
5849
+ "logLevels": {
5850
+ "debug": {
5851
+ "background": "#8B5CF615",
5852
+ "border": "#8B5CF6",
5853
+ },
5854
+ "error": {
5855
+ "background": "#EF444415",
5856
+ "border": "#EF4444",
5857
+ },
5858
+ "fatal": {
5859
+ "background": "#DC262625",
5860
+ "border": "#DC2626",
5861
+ "text": "#FCA5A5",
5862
+ },
5863
+ "log": {
5864
+ "background": "#3B82F615",
5865
+ "border": "#3B82F6",
5866
+ },
5867
+ "verbose": {
5868
+ "background": "#6B728015",
5869
+ "border": "#6B7280",
5870
+ },
5871
+ "warn": {
5872
+ "background": "#F59E0B15",
5873
+ "border": "#F59E0B",
5874
+ },
5875
+ },
5876
+ "name": "dark",
5877
+ "progress": {
5878
+ "background": "#3B82F615",
5879
+ "barEmpty": "#374151",
5880
+ "barFilled": "#3B82F6",
5881
+ "border": "#3B82F6",
5882
+ "complete": "#22C55E",
5883
+ "completeBackground": "#22C55E15",
5884
+ "failed": "#EF4444",
5885
+ "failedBackground": "#EF444415",
5886
+ "text": "#E5E7EB",
5887
+ "textDim": "#9CA3AF",
5888
+ },
5889
+ "prompt": {
5890
+ "border": "#374151",
5891
+ "buttonBackground": "#374151",
5892
+ "buttonSelectedBackground": "#1F2937",
5893
+ "cancelButton": "#EF4444",
5894
+ "confirmButton": "#22C55E",
5895
+ "focusBorder": "#3B82F6",
5896
+ "inputBackground": "#1F2937",
5897
+ "inputBorder": "#3B82F6",
5898
+ "inputCursor": "#3B82F6",
5899
+ "inputPlaceholder": "#6B7280",
5900
+ "inputText": "#F9FAFB",
5901
+ "optionSelected": "#3B82F6",
5902
+ "optionSelectedBackground": "#1E3A5F",
5903
+ "optionText": "#E5E7EB",
5904
+ "optionTextDim": "#9CA3AF",
5905
+ "question": "#F9FAFB",
5906
+ },
5907
+ "separator": {
5908
+ "line": "#374151",
5909
+ "text": "#6B7280",
5910
+ },
5911
+ "sidebar": {
5912
+ "background": undefined,
5913
+ "badge": "#3B82F6",
5914
+ "border": "#374151",
5915
+ "focusBorder": "#3B82F6",
5916
+ "hoverBackground": "#374151",
5917
+ "selectedBackground": "#1F293780",
5918
+ "text": "#E5E7EB",
5919
+ "textDim": "#6B7280",
5920
+ },
5921
+ "statusIndicators": {
5922
+ "fail": {
5923
+ "color": "#EF4444",
5924
+ "icon": "✗",
5925
+ },
5926
+ "pending": {
5927
+ "color": "#F59E0B",
5928
+ "icon": "◐",
5929
+ },
5930
+ "static": {
5931
+ "color": "#3B82F6",
5932
+ "icon": "●",
5933
+ },
5934
+ "success": {
5935
+ "color": "#22C55E",
5936
+ "icon": "✓",
5937
+ },
5938
+ "waiting": {
5939
+ "color": "#6B7280",
5940
+ "icon": "○",
5941
+ },
5942
+ },
5943
+ "table": {
5944
+ "background": "#3B82F615",
5945
+ "border": "#3B82F6",
5946
+ "cellText": "#E5E7EB",
5947
+ "headerText": "#F9FAFB",
5948
+ "separator": "#3B82F650",
5949
+ "title": "#F9FAFB",
5950
+ },
5951
+ },
5952
+ },
5953
+ "ref": null,
5954
+ "type": [Function: LoggerProvider],
5955
+ }
5956
+ `;
5957
+
5958
+ exports[`LogMessage with padding and margin should render with custom margin 1`] = `
5959
+ {
5960
+ "$$typeof": Symbol(react.transitional.element),
5961
+ "_debugInfo": null,
5962
+ "_debugStack": [Error: react-stack-top-frame],
5963
+ "_debugTask": null,
5964
+ "_owner": null,
5965
+ "_store": {
5966
+ "validated": 0,
5967
+ },
5968
+ "key": null,
5969
+ "props": {
5970
+ "children": {
5971
+ "$$typeof": Symbol(react.transitional.element),
5972
+ "_debugInfo": null,
5973
+ "_debugStack": [Error: react-stack-top-frame],
5974
+ "_debugTask": null,
5975
+ "_owner": null,
5976
+ "_store": {
5977
+ "validated": 1,
5978
+ },
5979
+ "key": null,
5980
+ "props": {
5981
+ "children": "Custom margin",
5982
+ "level": "log",
5983
+ "margin": 1,
5984
+ },
5985
+ "ref": null,
5986
+ "type": [Function: LogMessage],
5987
+ },
5988
+ "levelColors": undefined,
5989
+ "theme": {
5990
+ "colors": {
5991
+ "background": "#111827",
5992
+ "error": "#EF4444",
5993
+ "foreground": "#F9FAFB",
5994
+ "muted": "#6B7280",
5995
+ "primary": "#3B82F6",
5996
+ "secondary": "#8B5CF6",
5997
+ "success": "#22C55E",
5998
+ "warning": "#F59E0B",
5999
+ },
6000
+ "errorHighlight": {
6001
+ "background": "#EF444425",
6002
+ "border": "#EF4444",
6003
+ "gutterBackground": "#EF444440",
6004
+ },
6005
+ "file": {
6006
+ "background": "#3B82F615",
6007
+ "border": "#3B82F6",
6008
+ "headerBackground": "#3B82F625",
6009
+ "headerText": "#F9FAFB",
6010
+ },
6011
+ "filter": {
6012
+ "activeLevel": "#3B82F6",
6013
+ "background": "#1F293780",
6014
+ "border": "#3B82F6",
6015
+ "cursor": "#3B82F6",
6016
+ "inactiveLevel": "#4B5563",
6017
+ "inputBackground": "#1F2937",
6018
+ "inputPlaceholder": "#6B7280",
6019
+ "inputText": "#F9FAFB",
6020
+ "text": "#E5E7EB",
6021
+ "textDim": "#6B7280",
6022
+ },
6023
+ "group": {
6024
+ "background": "#6B728010",
6025
+ "border": "#6B7280",
6026
+ "headerText": "#E5E7EB",
6027
+ "icon": "#9CA3AF",
6028
+ },
6029
+ "header": {
6030
+ "background": undefined,
6031
+ "border": "#374151",
6032
+ "text": "#F9FAFB",
6033
+ },
6034
+ "help": {
6035
+ "background": "#1F2937",
6036
+ "border": "#3B82F6",
6037
+ "category": "#3B82F6",
6038
+ "description": "#E5E7EB",
6039
+ "hint": "#6B7280",
6040
+ "key": "#F59E0B",
6041
+ "title": "#F9FAFB",
6042
+ },
6043
+ "logLevels": {
6044
+ "debug": {
6045
+ "background": "#8B5CF615",
6046
+ "border": "#8B5CF6",
6047
+ },
6048
+ "error": {
6049
+ "background": "#EF444415",
6050
+ "border": "#EF4444",
6051
+ },
6052
+ "fatal": {
6053
+ "background": "#DC262625",
6054
+ "border": "#DC2626",
6055
+ "text": "#FCA5A5",
6056
+ },
6057
+ "log": {
6058
+ "background": "#3B82F615",
6059
+ "border": "#3B82F6",
6060
+ },
6061
+ "verbose": {
6062
+ "background": "#6B728015",
6063
+ "border": "#6B7280",
6064
+ },
6065
+ "warn": {
6066
+ "background": "#F59E0B15",
6067
+ "border": "#F59E0B",
6068
+ },
6069
+ },
6070
+ "name": "dark",
6071
+ "progress": {
6072
+ "background": "#3B82F615",
6073
+ "barEmpty": "#374151",
6074
+ "barFilled": "#3B82F6",
6075
+ "border": "#3B82F6",
6076
+ "complete": "#22C55E",
6077
+ "completeBackground": "#22C55E15",
6078
+ "failed": "#EF4444",
6079
+ "failedBackground": "#EF444415",
6080
+ "text": "#E5E7EB",
6081
+ "textDim": "#9CA3AF",
6082
+ },
6083
+ "prompt": {
6084
+ "border": "#374151",
6085
+ "buttonBackground": "#374151",
6086
+ "buttonSelectedBackground": "#1F2937",
6087
+ "cancelButton": "#EF4444",
6088
+ "confirmButton": "#22C55E",
6089
+ "focusBorder": "#3B82F6",
6090
+ "inputBackground": "#1F2937",
6091
+ "inputBorder": "#3B82F6",
6092
+ "inputCursor": "#3B82F6",
6093
+ "inputPlaceholder": "#6B7280",
6094
+ "inputText": "#F9FAFB",
6095
+ "optionSelected": "#3B82F6",
6096
+ "optionSelectedBackground": "#1E3A5F",
6097
+ "optionText": "#E5E7EB",
6098
+ "optionTextDim": "#9CA3AF",
6099
+ "question": "#F9FAFB",
6100
+ },
6101
+ "separator": {
6102
+ "line": "#374151",
6103
+ "text": "#6B7280",
6104
+ },
6105
+ "sidebar": {
6106
+ "background": undefined,
6107
+ "badge": "#3B82F6",
6108
+ "border": "#374151",
6109
+ "focusBorder": "#3B82F6",
6110
+ "hoverBackground": "#374151",
6111
+ "selectedBackground": "#1F293780",
6112
+ "text": "#E5E7EB",
6113
+ "textDim": "#6B7280",
6114
+ },
6115
+ "statusIndicators": {
6116
+ "fail": {
6117
+ "color": "#EF4444",
6118
+ "icon": "✗",
6119
+ },
6120
+ "pending": {
6121
+ "color": "#F59E0B",
6122
+ "icon": "◐",
6123
+ },
6124
+ "static": {
6125
+ "color": "#3B82F6",
6126
+ "icon": "●",
6127
+ },
6128
+ "success": {
6129
+ "color": "#22C55E",
6130
+ "icon": "✓",
6131
+ },
6132
+ "waiting": {
6133
+ "color": "#6B7280",
6134
+ "icon": "○",
6135
+ },
6136
+ },
6137
+ "table": {
6138
+ "background": "#3B82F615",
6139
+ "border": "#3B82F6",
6140
+ "cellText": "#E5E7EB",
6141
+ "headerText": "#F9FAFB",
6142
+ "separator": "#3B82F650",
6143
+ "title": "#F9FAFB",
6144
+ },
6145
+ },
6146
+ },
6147
+ "ref": null,
6148
+ "type": [Function: LoggerProvider],
6149
+ }
6150
+ `;
6151
+
6152
+ exports[`LogMessage with padding and margin should render with custom padding 1`] = `
6153
+ {
6154
+ "$$typeof": Symbol(react.transitional.element),
6155
+ "_debugInfo": null,
6156
+ "_debugStack": [Error: react-stack-top-frame],
6157
+ "_debugTask": null,
6158
+ "_owner": null,
6159
+ "_store": {
6160
+ "validated": 0,
6161
+ },
6162
+ "key": null,
6163
+ "props": {
6164
+ "children": {
6165
+ "$$typeof": Symbol(react.transitional.element),
6166
+ "_debugInfo": null,
6167
+ "_debugStack": [Error: react-stack-top-frame],
6168
+ "_debugTask": null,
6169
+ "_owner": null,
6170
+ "_store": {
6171
+ "validated": 1,
6172
+ },
6173
+ "key": null,
6174
+ "props": {
6175
+ "children": "Custom padding",
6176
+ "level": "log",
6177
+ "padding": 2,
6178
+ },
6179
+ "ref": null,
6180
+ "type": [Function: LogMessage],
6181
+ },
6182
+ "levelColors": undefined,
6183
+ "theme": {
6184
+ "colors": {
6185
+ "background": "#111827",
6186
+ "error": "#EF4444",
6187
+ "foreground": "#F9FAFB",
6188
+ "muted": "#6B7280",
6189
+ "primary": "#3B82F6",
6190
+ "secondary": "#8B5CF6",
6191
+ "success": "#22C55E",
6192
+ "warning": "#F59E0B",
6193
+ },
6194
+ "errorHighlight": {
6195
+ "background": "#EF444425",
6196
+ "border": "#EF4444",
6197
+ "gutterBackground": "#EF444440",
6198
+ },
6199
+ "file": {
6200
+ "background": "#3B82F615",
6201
+ "border": "#3B82F6",
6202
+ "headerBackground": "#3B82F625",
6203
+ "headerText": "#F9FAFB",
6204
+ },
6205
+ "filter": {
6206
+ "activeLevel": "#3B82F6",
6207
+ "background": "#1F293780",
6208
+ "border": "#3B82F6",
6209
+ "cursor": "#3B82F6",
6210
+ "inactiveLevel": "#4B5563",
6211
+ "inputBackground": "#1F2937",
6212
+ "inputPlaceholder": "#6B7280",
6213
+ "inputText": "#F9FAFB",
6214
+ "text": "#E5E7EB",
6215
+ "textDim": "#6B7280",
6216
+ },
6217
+ "group": {
6218
+ "background": "#6B728010",
6219
+ "border": "#6B7280",
6220
+ "headerText": "#E5E7EB",
6221
+ "icon": "#9CA3AF",
6222
+ },
6223
+ "header": {
6224
+ "background": undefined,
6225
+ "border": "#374151",
6226
+ "text": "#F9FAFB",
6227
+ },
6228
+ "help": {
6229
+ "background": "#1F2937",
6230
+ "border": "#3B82F6",
6231
+ "category": "#3B82F6",
6232
+ "description": "#E5E7EB",
6233
+ "hint": "#6B7280",
6234
+ "key": "#F59E0B",
6235
+ "title": "#F9FAFB",
6236
+ },
6237
+ "logLevels": {
6238
+ "debug": {
6239
+ "background": "#8B5CF615",
6240
+ "border": "#8B5CF6",
6241
+ },
6242
+ "error": {
6243
+ "background": "#EF444415",
6244
+ "border": "#EF4444",
6245
+ },
6246
+ "fatal": {
6247
+ "background": "#DC262625",
6248
+ "border": "#DC2626",
6249
+ "text": "#FCA5A5",
6250
+ },
6251
+ "log": {
6252
+ "background": "#3B82F615",
6253
+ "border": "#3B82F6",
6254
+ },
6255
+ "verbose": {
6256
+ "background": "#6B728015",
6257
+ "border": "#6B7280",
6258
+ },
6259
+ "warn": {
6260
+ "background": "#F59E0B15",
6261
+ "border": "#F59E0B",
6262
+ },
6263
+ },
6264
+ "name": "dark",
6265
+ "progress": {
6266
+ "background": "#3B82F615",
6267
+ "barEmpty": "#374151",
6268
+ "barFilled": "#3B82F6",
6269
+ "border": "#3B82F6",
6270
+ "complete": "#22C55E",
6271
+ "completeBackground": "#22C55E15",
6272
+ "failed": "#EF4444",
6273
+ "failedBackground": "#EF444415",
6274
+ "text": "#E5E7EB",
6275
+ "textDim": "#9CA3AF",
6276
+ },
6277
+ "prompt": {
6278
+ "border": "#374151",
6279
+ "buttonBackground": "#374151",
6280
+ "buttonSelectedBackground": "#1F2937",
6281
+ "cancelButton": "#EF4444",
6282
+ "confirmButton": "#22C55E",
6283
+ "focusBorder": "#3B82F6",
6284
+ "inputBackground": "#1F2937",
6285
+ "inputBorder": "#3B82F6",
6286
+ "inputCursor": "#3B82F6",
6287
+ "inputPlaceholder": "#6B7280",
6288
+ "inputText": "#F9FAFB",
6289
+ "optionSelected": "#3B82F6",
6290
+ "optionSelectedBackground": "#1E3A5F",
6291
+ "optionText": "#E5E7EB",
6292
+ "optionTextDim": "#9CA3AF",
6293
+ "question": "#F9FAFB",
6294
+ },
6295
+ "separator": {
6296
+ "line": "#374151",
6297
+ "text": "#6B7280",
6298
+ },
6299
+ "sidebar": {
6300
+ "background": undefined,
6301
+ "badge": "#3B82F6",
6302
+ "border": "#374151",
6303
+ "focusBorder": "#3B82F6",
6304
+ "hoverBackground": "#374151",
6305
+ "selectedBackground": "#1F293780",
6306
+ "text": "#E5E7EB",
6307
+ "textDim": "#6B7280",
6308
+ },
6309
+ "statusIndicators": {
6310
+ "fail": {
6311
+ "color": "#EF4444",
6312
+ "icon": "✗",
6313
+ },
6314
+ "pending": {
6315
+ "color": "#F59E0B",
6316
+ "icon": "◐",
6317
+ },
6318
+ "static": {
6319
+ "color": "#3B82F6",
6320
+ "icon": "●",
6321
+ },
6322
+ "success": {
6323
+ "color": "#22C55E",
6324
+ "icon": "✓",
6325
+ },
6326
+ "waiting": {
6327
+ "color": "#6B7280",
6328
+ "icon": "○",
6329
+ },
6330
+ },
6331
+ "table": {
6332
+ "background": "#3B82F615",
6333
+ "border": "#3B82F6",
6334
+ "cellText": "#E5E7EB",
6335
+ "headerText": "#F9FAFB",
6336
+ "separator": "#3B82F650",
6337
+ "title": "#F9FAFB",
6338
+ },
6339
+ },
6340
+ },
6341
+ "ref": null,
6342
+ "type": [Function: LoggerProvider],
6343
+ }
6344
+ `;
6345
+
6346
+ exports[`LogMessage with timestamp should render with Date timestamp 1`] = `
6347
+ {
6348
+ "$$typeof": Symbol(react.transitional.element),
6349
+ "_debugInfo": null,
6350
+ "_debugStack": [Error: react-stack-top-frame],
6351
+ "_debugTask": null,
6352
+ "_owner": null,
6353
+ "_store": {
6354
+ "validated": 0,
6355
+ },
6356
+ "key": null,
6357
+ "props": {
6358
+ "children": {
6359
+ "$$typeof": Symbol(react.transitional.element),
6360
+ "_debugInfo": null,
6361
+ "_debugStack": [Error: react-stack-top-frame],
6362
+ "_debugTask": null,
6363
+ "_owner": null,
6364
+ "_store": {
6365
+ "validated": 1,
6366
+ },
6367
+ "key": null,
6368
+ "props": {
6369
+ "children": "Message with timestamp",
6370
+ "level": "log",
6371
+ "timestamp": 2024-01-15T10:30:00.000Z,
6372
+ },
6373
+ "ref": null,
6374
+ "type": [Function: LogMessage],
6375
+ },
6376
+ "levelColors": undefined,
6377
+ "theme": {
6378
+ "colors": {
6379
+ "background": "#111827",
6380
+ "error": "#EF4444",
6381
+ "foreground": "#F9FAFB",
6382
+ "muted": "#6B7280",
6383
+ "primary": "#3B82F6",
6384
+ "secondary": "#8B5CF6",
6385
+ "success": "#22C55E",
6386
+ "warning": "#F59E0B",
6387
+ },
6388
+ "errorHighlight": {
6389
+ "background": "#EF444425",
6390
+ "border": "#EF4444",
6391
+ "gutterBackground": "#EF444440",
6392
+ },
6393
+ "file": {
6394
+ "background": "#3B82F615",
6395
+ "border": "#3B82F6",
6396
+ "headerBackground": "#3B82F625",
6397
+ "headerText": "#F9FAFB",
6398
+ },
6399
+ "filter": {
6400
+ "activeLevel": "#3B82F6",
6401
+ "background": "#1F293780",
6402
+ "border": "#3B82F6",
6403
+ "cursor": "#3B82F6",
6404
+ "inactiveLevel": "#4B5563",
6405
+ "inputBackground": "#1F2937",
6406
+ "inputPlaceholder": "#6B7280",
6407
+ "inputText": "#F9FAFB",
6408
+ "text": "#E5E7EB",
6409
+ "textDim": "#6B7280",
6410
+ },
6411
+ "group": {
6412
+ "background": "#6B728010",
6413
+ "border": "#6B7280",
6414
+ "headerText": "#E5E7EB",
6415
+ "icon": "#9CA3AF",
6416
+ },
6417
+ "header": {
6418
+ "background": undefined,
6419
+ "border": "#374151",
6420
+ "text": "#F9FAFB",
6421
+ },
6422
+ "help": {
6423
+ "background": "#1F2937",
6424
+ "border": "#3B82F6",
6425
+ "category": "#3B82F6",
6426
+ "description": "#E5E7EB",
6427
+ "hint": "#6B7280",
6428
+ "key": "#F59E0B",
6429
+ "title": "#F9FAFB",
6430
+ },
6431
+ "logLevels": {
6432
+ "debug": {
6433
+ "background": "#8B5CF615",
6434
+ "border": "#8B5CF6",
6435
+ },
6436
+ "error": {
6437
+ "background": "#EF444415",
6438
+ "border": "#EF4444",
6439
+ },
6440
+ "fatal": {
6441
+ "background": "#DC262625",
6442
+ "border": "#DC2626",
6443
+ "text": "#FCA5A5",
6444
+ },
6445
+ "log": {
6446
+ "background": "#3B82F615",
6447
+ "border": "#3B82F6",
6448
+ },
6449
+ "verbose": {
6450
+ "background": "#6B728015",
6451
+ "border": "#6B7280",
6452
+ },
6453
+ "warn": {
6454
+ "background": "#F59E0B15",
6455
+ "border": "#F59E0B",
6456
+ },
6457
+ },
6458
+ "name": "dark",
6459
+ "progress": {
6460
+ "background": "#3B82F615",
6461
+ "barEmpty": "#374151",
6462
+ "barFilled": "#3B82F6",
6463
+ "border": "#3B82F6",
6464
+ "complete": "#22C55E",
6465
+ "completeBackground": "#22C55E15",
6466
+ "failed": "#EF4444",
6467
+ "failedBackground": "#EF444415",
6468
+ "text": "#E5E7EB",
6469
+ "textDim": "#9CA3AF",
6470
+ },
6471
+ "prompt": {
6472
+ "border": "#374151",
6473
+ "buttonBackground": "#374151",
6474
+ "buttonSelectedBackground": "#1F2937",
6475
+ "cancelButton": "#EF4444",
6476
+ "confirmButton": "#22C55E",
6477
+ "focusBorder": "#3B82F6",
6478
+ "inputBackground": "#1F2937",
6479
+ "inputBorder": "#3B82F6",
6480
+ "inputCursor": "#3B82F6",
6481
+ "inputPlaceholder": "#6B7280",
6482
+ "inputText": "#F9FAFB",
6483
+ "optionSelected": "#3B82F6",
6484
+ "optionSelectedBackground": "#1E3A5F",
6485
+ "optionText": "#E5E7EB",
6486
+ "optionTextDim": "#9CA3AF",
6487
+ "question": "#F9FAFB",
6488
+ },
6489
+ "separator": {
6490
+ "line": "#374151",
6491
+ "text": "#6B7280",
6492
+ },
6493
+ "sidebar": {
6494
+ "background": undefined,
6495
+ "badge": "#3B82F6",
6496
+ "border": "#374151",
6497
+ "focusBorder": "#3B82F6",
6498
+ "hoverBackground": "#374151",
6499
+ "selectedBackground": "#1F293780",
6500
+ "text": "#E5E7EB",
6501
+ "textDim": "#6B7280",
6502
+ },
6503
+ "statusIndicators": {
6504
+ "fail": {
6505
+ "color": "#EF4444",
6506
+ "icon": "✗",
6507
+ },
6508
+ "pending": {
6509
+ "color": "#F59E0B",
6510
+ "icon": "◐",
6511
+ },
6512
+ "static": {
6513
+ "color": "#3B82F6",
6514
+ "icon": "●",
6515
+ },
6516
+ "success": {
6517
+ "color": "#22C55E",
6518
+ "icon": "✓",
6519
+ },
6520
+ "waiting": {
6521
+ "color": "#6B7280",
6522
+ "icon": "○",
6523
+ },
6524
+ },
6525
+ "table": {
6526
+ "background": "#3B82F615",
6527
+ "border": "#3B82F6",
6528
+ "cellText": "#E5E7EB",
6529
+ "headerText": "#F9FAFB",
6530
+ "separator": "#3B82F650",
6531
+ "title": "#F9FAFB",
6532
+ },
6533
+ },
6534
+ },
6535
+ "ref": null,
6536
+ "type": [Function: LoggerProvider],
6537
+ }
6538
+ `;
6539
+
6540
+ exports[`LogMessage with timestamp should render with string timestamp 1`] = `
6541
+ {
6542
+ "$$typeof": Symbol(react.transitional.element),
6543
+ "_debugInfo": null,
6544
+ "_debugStack": [Error: react-stack-top-frame],
6545
+ "_debugTask": null,
6546
+ "_owner": null,
6547
+ "_store": {
6548
+ "validated": 0,
6549
+ },
6550
+ "key": null,
6551
+ "props": {
6552
+ "children": {
6553
+ "$$typeof": Symbol(react.transitional.element),
6554
+ "_debugInfo": null,
6555
+ "_debugStack": [Error: react-stack-top-frame],
6556
+ "_debugTask": null,
6557
+ "_owner": null,
6558
+ "_store": {
6559
+ "validated": 1,
6560
+ },
6561
+ "key": null,
6562
+ "props": {
6563
+ "children": "Message with string timestamp",
6564
+ "level": "log",
6565
+ "timestamp": "10:30:00",
6566
+ },
6567
+ "ref": null,
6568
+ "type": [Function: LogMessage],
6569
+ },
6570
+ "levelColors": undefined,
6571
+ "theme": {
6572
+ "colors": {
6573
+ "background": "#111827",
6574
+ "error": "#EF4444",
6575
+ "foreground": "#F9FAFB",
6576
+ "muted": "#6B7280",
6577
+ "primary": "#3B82F6",
6578
+ "secondary": "#8B5CF6",
6579
+ "success": "#22C55E",
6580
+ "warning": "#F59E0B",
6581
+ },
6582
+ "errorHighlight": {
6583
+ "background": "#EF444425",
6584
+ "border": "#EF4444",
6585
+ "gutterBackground": "#EF444440",
6586
+ },
6587
+ "file": {
6588
+ "background": "#3B82F615",
6589
+ "border": "#3B82F6",
6590
+ "headerBackground": "#3B82F625",
6591
+ "headerText": "#F9FAFB",
6592
+ },
6593
+ "filter": {
6594
+ "activeLevel": "#3B82F6",
6595
+ "background": "#1F293780",
6596
+ "border": "#3B82F6",
6597
+ "cursor": "#3B82F6",
6598
+ "inactiveLevel": "#4B5563",
6599
+ "inputBackground": "#1F2937",
6600
+ "inputPlaceholder": "#6B7280",
6601
+ "inputText": "#F9FAFB",
6602
+ "text": "#E5E7EB",
6603
+ "textDim": "#6B7280",
6604
+ },
6605
+ "group": {
6606
+ "background": "#6B728010",
6607
+ "border": "#6B7280",
6608
+ "headerText": "#E5E7EB",
6609
+ "icon": "#9CA3AF",
6610
+ },
6611
+ "header": {
6612
+ "background": undefined,
6613
+ "border": "#374151",
6614
+ "text": "#F9FAFB",
6615
+ },
6616
+ "help": {
6617
+ "background": "#1F2937",
6618
+ "border": "#3B82F6",
6619
+ "category": "#3B82F6",
6620
+ "description": "#E5E7EB",
6621
+ "hint": "#6B7280",
6622
+ "key": "#F59E0B",
6623
+ "title": "#F9FAFB",
6624
+ },
6625
+ "logLevels": {
6626
+ "debug": {
6627
+ "background": "#8B5CF615",
6628
+ "border": "#8B5CF6",
6629
+ },
6630
+ "error": {
6631
+ "background": "#EF444415",
6632
+ "border": "#EF4444",
6633
+ },
6634
+ "fatal": {
6635
+ "background": "#DC262625",
6636
+ "border": "#DC2626",
6637
+ "text": "#FCA5A5",
6638
+ },
6639
+ "log": {
6640
+ "background": "#3B82F615",
6641
+ "border": "#3B82F6",
6642
+ },
6643
+ "verbose": {
6644
+ "background": "#6B728015",
6645
+ "border": "#6B7280",
6646
+ },
6647
+ "warn": {
6648
+ "background": "#F59E0B15",
6649
+ "border": "#F59E0B",
6650
+ },
6651
+ },
6652
+ "name": "dark",
6653
+ "progress": {
6654
+ "background": "#3B82F615",
6655
+ "barEmpty": "#374151",
6656
+ "barFilled": "#3B82F6",
6657
+ "border": "#3B82F6",
6658
+ "complete": "#22C55E",
6659
+ "completeBackground": "#22C55E15",
6660
+ "failed": "#EF4444",
6661
+ "failedBackground": "#EF444415",
6662
+ "text": "#E5E7EB",
6663
+ "textDim": "#9CA3AF",
6664
+ },
6665
+ "prompt": {
6666
+ "border": "#374151",
6667
+ "buttonBackground": "#374151",
6668
+ "buttonSelectedBackground": "#1F2937",
6669
+ "cancelButton": "#EF4444",
6670
+ "confirmButton": "#22C55E",
6671
+ "focusBorder": "#3B82F6",
6672
+ "inputBackground": "#1F2937",
6673
+ "inputBorder": "#3B82F6",
6674
+ "inputCursor": "#3B82F6",
6675
+ "inputPlaceholder": "#6B7280",
6676
+ "inputText": "#F9FAFB",
6677
+ "optionSelected": "#3B82F6",
6678
+ "optionSelectedBackground": "#1E3A5F",
6679
+ "optionText": "#E5E7EB",
6680
+ "optionTextDim": "#9CA3AF",
6681
+ "question": "#F9FAFB",
6682
+ },
6683
+ "separator": {
6684
+ "line": "#374151",
6685
+ "text": "#6B7280",
6686
+ },
6687
+ "sidebar": {
6688
+ "background": undefined,
6689
+ "badge": "#3B82F6",
6690
+ "border": "#374151",
6691
+ "focusBorder": "#3B82F6",
6692
+ "hoverBackground": "#374151",
6693
+ "selectedBackground": "#1F293780",
6694
+ "text": "#E5E7EB",
6695
+ "textDim": "#6B7280",
6696
+ },
6697
+ "statusIndicators": {
6698
+ "fail": {
6699
+ "color": "#EF4444",
6700
+ "icon": "✗",
6701
+ },
6702
+ "pending": {
6703
+ "color": "#F59E0B",
6704
+ "icon": "◐",
6705
+ },
6706
+ "static": {
6707
+ "color": "#3B82F6",
6708
+ "icon": "●",
6709
+ },
6710
+ "success": {
6711
+ "color": "#22C55E",
6712
+ "icon": "✓",
6713
+ },
6714
+ "waiting": {
6715
+ "color": "#6B7280",
6716
+ "icon": "○",
6717
+ },
6718
+ },
6719
+ "table": {
6720
+ "background": "#3B82F615",
6721
+ "border": "#3B82F6",
6722
+ "cellText": "#E5E7EB",
6723
+ "headerText": "#F9FAFB",
6724
+ "separator": "#3B82F650",
6725
+ "title": "#F9FAFB",
6726
+ },
6727
+ },
6728
+ },
6729
+ "ref": null,
6730
+ "type": [Function: LoggerProvider],
6731
+ }
6732
+ `;
6733
+
6734
+ exports[`LogMessage with trace content should render with trace 1`] = `
6735
+ {
6736
+ "$$typeof": Symbol(react.transitional.element),
6737
+ "_debugInfo": null,
6738
+ "_debugStack": [Error: react-stack-top-frame],
6739
+ "_debugTask": null,
6740
+ "_owner": null,
6741
+ "_store": {
6742
+ "validated": 0,
6743
+ },
6744
+ "key": null,
6745
+ "props": {
6746
+ "children": {
6747
+ "$$typeof": Symbol(react.transitional.element),
6748
+ "_debugInfo": null,
6749
+ "_debugStack": [Error: react-stack-top-frame],
6750
+ "_debugTask": null,
6751
+ "_owner": null,
6752
+ "_store": {
6753
+ "validated": 1,
6754
+ },
6755
+ "key": null,
6756
+ "props": {
6757
+ "children": "Message with trace",
6758
+ "level": "verbose",
6759
+ "trace": " at someFunction (file.ts:10:5)\\n at main (index.ts:1:1)",
6760
+ },
6761
+ "ref": null,
6762
+ "type": [Function: LogMessage],
6763
+ },
6764
+ "levelColors": undefined,
6765
+ "theme": {
6766
+ "colors": {
6767
+ "background": "#111827",
6768
+ "error": "#EF4444",
6769
+ "foreground": "#F9FAFB",
6770
+ "muted": "#6B7280",
6771
+ "primary": "#3B82F6",
6772
+ "secondary": "#8B5CF6",
6773
+ "success": "#22C55E",
6774
+ "warning": "#F59E0B",
6775
+ },
6776
+ "errorHighlight": {
6777
+ "background": "#EF444425",
6778
+ "border": "#EF4444",
6779
+ "gutterBackground": "#EF444440",
6780
+ },
6781
+ "file": {
6782
+ "background": "#3B82F615",
6783
+ "border": "#3B82F6",
6784
+ "headerBackground": "#3B82F625",
6785
+ "headerText": "#F9FAFB",
6786
+ },
6787
+ "filter": {
6788
+ "activeLevel": "#3B82F6",
6789
+ "background": "#1F293780",
6790
+ "border": "#3B82F6",
6791
+ "cursor": "#3B82F6",
6792
+ "inactiveLevel": "#4B5563",
6793
+ "inputBackground": "#1F2937",
6794
+ "inputPlaceholder": "#6B7280",
6795
+ "inputText": "#F9FAFB",
6796
+ "text": "#E5E7EB",
6797
+ "textDim": "#6B7280",
6798
+ },
6799
+ "group": {
6800
+ "background": "#6B728010",
6801
+ "border": "#6B7280",
6802
+ "headerText": "#E5E7EB",
6803
+ "icon": "#9CA3AF",
6804
+ },
6805
+ "header": {
6806
+ "background": undefined,
6807
+ "border": "#374151",
6808
+ "text": "#F9FAFB",
6809
+ },
6810
+ "help": {
6811
+ "background": "#1F2937",
6812
+ "border": "#3B82F6",
6813
+ "category": "#3B82F6",
6814
+ "description": "#E5E7EB",
6815
+ "hint": "#6B7280",
6816
+ "key": "#F59E0B",
6817
+ "title": "#F9FAFB",
6818
+ },
6819
+ "logLevels": {
6820
+ "debug": {
6821
+ "background": "#8B5CF615",
6822
+ "border": "#8B5CF6",
6823
+ },
6824
+ "error": {
6825
+ "background": "#EF444415",
6826
+ "border": "#EF4444",
6827
+ },
6828
+ "fatal": {
6829
+ "background": "#DC262625",
6830
+ "border": "#DC2626",
6831
+ "text": "#FCA5A5",
6832
+ },
6833
+ "log": {
6834
+ "background": "#3B82F615",
6835
+ "border": "#3B82F6",
6836
+ },
6837
+ "verbose": {
6838
+ "background": "#6B728015",
6839
+ "border": "#6B7280",
6840
+ },
6841
+ "warn": {
6842
+ "background": "#F59E0B15",
6843
+ "border": "#F59E0B",
6844
+ },
6845
+ },
6846
+ "name": "dark",
6847
+ "progress": {
6848
+ "background": "#3B82F615",
6849
+ "barEmpty": "#374151",
6850
+ "barFilled": "#3B82F6",
6851
+ "border": "#3B82F6",
6852
+ "complete": "#22C55E",
6853
+ "completeBackground": "#22C55E15",
6854
+ "failed": "#EF4444",
6855
+ "failedBackground": "#EF444415",
6856
+ "text": "#E5E7EB",
6857
+ "textDim": "#9CA3AF",
6858
+ },
6859
+ "prompt": {
6860
+ "border": "#374151",
6861
+ "buttonBackground": "#374151",
6862
+ "buttonSelectedBackground": "#1F2937",
6863
+ "cancelButton": "#EF4444",
6864
+ "confirmButton": "#22C55E",
6865
+ "focusBorder": "#3B82F6",
6866
+ "inputBackground": "#1F2937",
6867
+ "inputBorder": "#3B82F6",
6868
+ "inputCursor": "#3B82F6",
6869
+ "inputPlaceholder": "#6B7280",
6870
+ "inputText": "#F9FAFB",
6871
+ "optionSelected": "#3B82F6",
6872
+ "optionSelectedBackground": "#1E3A5F",
6873
+ "optionText": "#E5E7EB",
6874
+ "optionTextDim": "#9CA3AF",
6875
+ "question": "#F9FAFB",
6876
+ },
6877
+ "separator": {
6878
+ "line": "#374151",
6879
+ "text": "#6B7280",
6880
+ },
6881
+ "sidebar": {
6882
+ "background": undefined,
6883
+ "badge": "#3B82F6",
6884
+ "border": "#374151",
6885
+ "focusBorder": "#3B82F6",
6886
+ "hoverBackground": "#374151",
6887
+ "selectedBackground": "#1F293780",
6888
+ "text": "#E5E7EB",
6889
+ "textDim": "#6B7280",
6890
+ },
6891
+ "statusIndicators": {
6892
+ "fail": {
6893
+ "color": "#EF4444",
6894
+ "icon": "✗",
6895
+ },
6896
+ "pending": {
6897
+ "color": "#F59E0B",
6898
+ "icon": "◐",
6899
+ },
6900
+ "static": {
6901
+ "color": "#3B82F6",
6902
+ "icon": "●",
6903
+ },
6904
+ "success": {
6905
+ "color": "#22C55E",
6906
+ "icon": "✓",
6907
+ },
6908
+ "waiting": {
6909
+ "color": "#6B7280",
6910
+ "icon": "○",
6911
+ },
6912
+ },
6913
+ "table": {
6914
+ "background": "#3B82F615",
6915
+ "border": "#3B82F6",
6916
+ "cellText": "#E5E7EB",
6917
+ "headerText": "#F9FAFB",
6918
+ "separator": "#3B82F650",
6919
+ "title": "#F9FAFB",
6920
+ },
6921
+ },
6922
+ },
6923
+ "ref": null,
6924
+ "type": [Function: LoggerProvider],
6925
+ }
6926
+ `;