testio-tailwind 3.24.0 → 3.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,26 @@
1
1
  # Test IO Tailwind Design System - AI Reference Guide
2
2
 
3
- **Version:** 3.22.0
3
+ **Version:** 3.23.0
4
4
  **Framework:** Tailwind CSS 4.x
5
5
  **Package:** `testio-tailwind`
6
- **Last Updated:** January 2026
6
+ **Last Updated:** February 2026
7
7
  **Node Version:** v23.11.0
8
8
 
9
9
  This document serves as a comprehensive reference for AI Agents to utilize the Test IO Tailwind design system when building pages and components in other projects.
10
10
 
11
- ## Recent Updates (January 2026)
11
+ ## Recent Updates (February 2026)
12
+
13
+ - 📚 **AgenticQA Documentation Expansion**: Comprehensive documentation for all AgenticQA components with use cases and patterns
14
+ - ✨ **Enhanced Chat Components**: Detailed documentation for chat messages, collapsable messages, history, and forms
15
+ - 🎯 **Splitview Components**: Complete documentation for grouped check display with turbo-frame support
16
+ - 📊 **Grid & Form Row Tables**: Comprehensive table documentation with grid layout and inline editing patterns
17
+ - 📋 **List Items with Attachments**: Enhanced documentation for collapsable list items with screenshot support
18
+ - 🎨 **Navigation Headers**: Complete AgenticQA header documentation with profile menu and mobile support
19
+ - ✨ **Status Tracking**: Detailed status stepper and progress tracking component documentation
20
+ - 📱 **Responsive Patterns**: Mobile-first responsive design patterns for all AgenticQA components
21
+ - 🌙 **Dark Mode Integration**: Full dark mode support across all AgenticQA components
22
+
23
+ ## Version 3.22.0 - January 2026
12
24
 
13
25
  - ✨ **Centered Layout**: New centered application layout documentation and examples
14
26
  - ✨ **Dark Mode Examples**: Comprehensive dark mode layout examples and documentation
@@ -2406,9 +2418,45 @@ A horizontal stepper component for visualizing multi-step processes.
2406
2418
 
2407
2419
  ## AgenticQA Components
2408
2420
 
2409
- Product-specific components for the AgenticQA platform.
2421
+ Comprehensive component library specifically designed for the AgenticQA platform. These components provide AI-driven quality assurance workflow interfaces with sophisticated chat, progress tracking, and detailed testing result displays.
2422
+
2423
+ **View Live Examples:** `http://localhost:8080/agenticqa/`
2424
+
2425
+ ### Recent AgenticQA Updates (February 2026)
2426
+
2427
+ - ✨ **Enhanced Chat Components**: Improved collapsable chat messages with better visual hierarchy
2428
+ - ✨ **Splitview Items**: Advanced component for displaying grouped checks with status tracking and turbo-frame support
2429
+ - 🎯 **Form Row Tables**: Grid-based table with integrated form controls for inline editing
2430
+ - 📊 **Grid Tables**: Flexible grid-based table layout with URL collapsables and action menus
2431
+ - 📋 **List Items**: Collapsable list items with attachments support for AI screenshots
2432
+ - 🎨 **Chat Form Component**: Specialized form for check re-runs with additional instructions
2433
+ - 🔄 **Status Stepper**: Progress tracking component showing completed, active, and pending states
2434
+ - 📱 **Responsive Layouts**: All components optimized for mobile and desktop viewing
2435
+ - 🌙 **Dark Mode Support**: Full dark mode styling across all AgenticQA components
2436
+
2437
+ ---
2410
2438
 
2411
2439
  ### AgenticQA Page Header
2440
+
2441
+ **Purpose:** Display session/test details with metadata and action buttons. Includes optional chart display for progress visualization.
2442
+
2443
+ **Use Cases:**
2444
+ - Test session overview with metadata (creation date, last run, session ID)
2445
+ - Test suite information and status display
2446
+ - Session control actions (start test, re-run tests, show report)
2447
+ - Optional progress chart visualization
2448
+
2449
+ **Key Classes:**
2450
+ - `.page-header` - Main container
2451
+ - `.page-maincard` - Primary information card (use with `.p-card-padding`)
2452
+ - `.page-session-title` - Large session title text
2453
+ - `.page-meta-info` - Definition list for metadata display
2454
+ - `.page-actions` - Container for action buttons
2455
+ - `.with-chart` - Modifier for charts display
2456
+ - `.page-chart` - Chart container
2457
+ - `.btn-main` - Main action button (primary CTA)
2458
+
2459
+ **HTML Structure:**
2412
2460
  ```html
2413
2461
  <div class="page-header">
2414
2462
  <div class="card page-maincard p-card-padding">
@@ -2416,7 +2464,13 @@ Product-specific components for the AgenticQA platform.
2416
2464
  <h2 class="page-session-title">Test Session title</h2>
2417
2465
  <dl class="page-meta-info">
2418
2466
  <dt class="label">Created on:</dt>
2419
- <dd>2025-07-23 19:11</dd>
2467
+ <dd>2025-07-23 19:11 10:45 AM</dd>
2468
+ <dt class="label">Last test:</dt>
2469
+ <dd>2025-07-23 19:11 10:45 AM</dd>
2470
+ <dt class="label">ID:</dt>
2471
+ <dd>321456987</dd>
2472
+ <dt class="label">URL:</dt>
2473
+ <dd><a class="label" href="">Test Suite name</a></dd>
2420
2474
  <dt class="label">Status:</dt>
2421
2475
  <dd class="text-white">Running</dd>
2422
2476
  </dl>
@@ -2430,37 +2484,689 @@ Product-specific components for the AgenticQA platform.
2430
2484
  </div>
2431
2485
  ```
2432
2486
 
2433
- ### AgenticQA Status Stepper
2487
+ **With Chart:**
2434
2488
  ```html
2435
- <div class="status-stepper">
2436
- <div class="status-step completed">
2437
- <div class="icon icon-check-thick-centered"></div>
2438
- 3 done
2439
- </div>
2440
- <div class="status-step active">
2441
- <div class="icon icon-sync"></div>
2442
- Executing checks
2489
+ <div class="page-header with-chart">
2490
+ <!-- ... main card ... -->
2491
+ <div class="page-chart card p-card-padding">
2492
+ <div class="echarts-container" id="echarts-testinator"></div>
2443
2493
  </div>
2444
- <div class="status-step">
2445
- + 3 to do
2494
+ <div class="page-actions">
2495
+ <a class="btn btn-primary btn-main" href="">
2496
+ <span class="icon icon-review-xl"></span>
2497
+ Show report
2498
+ </a>
2446
2499
  </div>
2447
2500
  </div>
2448
2501
  ```
2449
2502
 
2450
- ### AgenticQA List Item
2451
- ```html
2452
- <div class="listitem agenticqa">
2453
- <!-- AgenticQA-specific list item styling -->
2454
- </div>
2503
+ ---
2504
+
2505
+ ### AgenticQA Chat Components
2506
+
2507
+ **Purpose:** Display conversational exchanges between users and the AI system for test instructions, feedback, and results discussion.
2508
+
2509
+ #### Chat Messages (Standard)
2510
+
2511
+ Display chat message items in a thread format with user identification and timestamps.
2512
+
2513
+ **Use Cases:**
2514
+ - AI justifications for test results
2515
+ - User feedback and instructions
2516
+ - Test check descriptions and explanations
2517
+ - Bidirectional message threads
2518
+
2519
+ **Key Classes:**
2520
+ - `.list-chat-messages` - Container for message list
2521
+ - `.chat-message-item` - Individual message wrapper
2522
+ - `.your-message` - Modifier for user messages (right-aligned)
2523
+ - `.chat-avatar` - User profile image
2524
+ - `.chat-header` - Message header with title and timestamp
2525
+ - `.chat-title` - Message title/label
2526
+ - `.chat-message` - Message body content
2527
+ - `.collapsable` - Modifier for expandable messages
2528
+ - `.chat-action-row` - Container for action buttons after messages
2529
+
2530
+ **HAML Structure:**
2531
+ ```haml
2532
+ .list-chat-messages.full-width
2533
+ .chat-message-item
2534
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
2535
+ .chat-header
2536
+ %span.chat-title.label Justification
2537
+ %span.label 5 mins ago
2538
+ .chat-message
2539
+ Here's a message with analysis...
2540
+ .chat-message-item.your-message
2541
+ %img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
2542
+ .chat-header
2543
+ %span.chat-title.label Your message
2544
+ %span.label 5 mins ago
2545
+ .chat-message
2546
+ Here's your feedback...
2547
+ .chat-action-row
2548
+ %a.btn.btn-primary.rounded-full re-run check
2549
+ %a.btn.btn-secondary.rounded-full update check
2550
+ ```
2551
+
2552
+ #### Collapsable Chat Messages
2553
+
2554
+ Expandable chat messages for long content with `<details>` element.
2555
+
2556
+ **Use Cases:**
2557
+ - Long AI justifications or explanations
2558
+ - Detailed test results or error messages
2559
+ - Optional content expansion to save space
2560
+
2561
+ **Key Classes:**
2562
+ - `.collapsable` - Modifier for expandable messages
2563
+ - `details` - HTML details element for collapse functionality
2564
+ - `.chat-header` - Summary header inside details
2565
+
2566
+ ```haml
2567
+ .chat-message-item.collapsable
2568
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
2569
+ %details
2570
+ %summary.chat-header
2571
+ %span.chat-title.label Collapsable message
2572
+ %span.label 5 mins ago
2573
+ .chat-message
2574
+ Here's a long message with extensive lorem ipsum...
2575
+ ```
2576
+
2577
+ #### Chat History
2578
+
2579
+ Collapsable container for viewing full conversation history.
2580
+
2581
+ **Purpose:** Show/hide complete chat thread to reduce visual clutter while maintaining access to full context.
2582
+
2583
+ **Use Cases:**
2584
+ - Full conversation history display
2585
+ - Context for test decisions
2586
+ - Audit trail of AI reasoning
2587
+
2588
+ ```haml
2589
+ .card.p-card-padding
2590
+ %details.chat-history-collapsable
2591
+ %summary.chat-history-header
2592
+ .chat-history-title Show complete history
2593
+ .list-chat-messages.full-width
2594
+ .chat-message-item
2595
+ %img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
2596
+ .chat-header
2597
+ %span.chat-title.label Justification
2598
+ %span.label 5 mins ago
2599
+ .chat-message
2600
+ Historical message content...
2601
+ ```
2602
+
2603
+ #### Chat Form
2604
+
2605
+ **Purpose:** Allow users to re-run checks or update test parameters with additional instructions.
2606
+
2607
+ **Use Cases:**
2608
+ - Re-running a failed check with new instructions
2609
+ - Providing additional context for test execution
2610
+ - Sending feedback to AI system
2611
+
2612
+ **Key Classes:**
2613
+ - `.chat-form-row` - Container for form
2614
+ - `.chat-form` - Form element
2615
+ - `.form-actions` - Button container
2616
+
2617
+ ```haml
2618
+ .chat-form-row
2619
+ %form.chat-form
2620
+ %h5.text-card-header.mb-xxs Re-Run this check
2621
+ %p.font-light.mb-md Add additional instructions for re-running this check.
2622
+ %textarea.form-control{placeholder:"Add your instructions or feedback"}
2623
+ .form-actions
2624
+ %a.btn.btn-primary.rounded-full
2625
+ %span.icon.icon-sync.mr-icon-spacing
2626
+ re-run check
2627
+ %button.btn.btn-secondary.rounded-full Cancel
2628
+ ```
2629
+
2630
+ ---
2631
+
2632
+ ### AgenticQA Status Stepper
2633
+
2634
+ **Purpose:** Display progress of test execution with completed, active, and pending states.
2635
+
2636
+ **Use Cases:**
2637
+ - Overall progress tracking in splitview
2638
+ - Check execution status summary
2639
+ - Visual progress indicator
2640
+
2641
+ **Key Classes:**
2642
+ - `.status-stepper` - Main container
2643
+ - `.status-step` - Individual step
2644
+ - `.completed` - Modifier for completed steps
2645
+ - `.active` - Modifier for active step
2646
+ - `.counter` - Optional counter display
2647
+ - `.icon` - Status icon
2648
+
2649
+ **HAML Structure:**
2650
+ ```haml
2651
+ .status-stepper
2652
+ .status-step.completed
2653
+ .icon.icon-check-thick-centered
2654
+ 3 done
2655
+ .status-step.active
2656
+ .icon.icon-sync
2657
+ Executing checks
2658
+ .status-step
2659
+ + 3 to do
2660
+ ```
2661
+
2662
+ **With Counters:**
2663
+ ```haml
2664
+ .status-stepper
2665
+ .status-step.completed
2666
+ .counter 99
2667
+ Completed
2668
+ .status-step.active
2669
+ .counter 99
2670
+ Active
2671
+ .status-step
2672
+ .counter 99
2673
+ Initial
2674
+ ```
2675
+
2676
+ ---
2677
+
2678
+ ### AgenticQA Splitview Components
2679
+
2680
+ **Purpose:** Display grouped checks and their individual test results in an expandable/collapsable interface.
2681
+
2682
+ **Use Cases:**
2683
+ - List of checks for a specific URL/page
2684
+ - Detailed check results with status indicators
2685
+ - Grouped by page/URL for organization
2686
+ - Turbo-frame integration for dynamic updates
2687
+
2688
+ **Key Classes:**
2689
+ - `.splitview-group` - Collapsable group container
2690
+ - `.splitview-item` - Individual check item
2691
+ - `.splitview-item-icon` - Status icon
2692
+ - `.splitview-item-text` - Check description
2693
+ - `.splitview-item-title` - URL or group title
2694
+ - `.splitview-item-status` - Status label/icon
2695
+ - `.splitview-group-status` - Group-level status stepper
2696
+ - `.selected` - Modifier for selected item
2697
+ - `.unread` - Modifier for unread items
2698
+ - `.text-with-icon` - Icon + text combination
2699
+ - `.splitview-btn` - Show more button
2700
+ - `.turbo-frame` - Turbo frame wrapper
2701
+
2702
+ **Status Icons:**
2703
+ - `.icon-check-circle-filled.success` - Passed check
2704
+ - `.icon-cross-circle-filled.danger` - Failed check
2705
+ - `.icon-blocked.blocked` - Blocked/skipped check
2706
+ - `.icon-sync.pending` - Pending/executing check
2707
+ - `.icon-circle-empty` - Not started/placeholder
2708
+
2709
+ **HAML Structure:**
2710
+ ```haml
2711
+ %details.splitview-group
2712
+ %summary.splitview-item.unread
2713
+ .splitview-item-icon.icon.icon-circle-empty.text-chart-empty
2714
+ .splitview-item-text
2715
+ .splitview-item-title https://www.example.com/product
2716
+ .splitview-item-status
2717
+ .text-with-icon
2718
+ .icon.icon-sync
2719
+ executing checks
2720
+ .splitview-group-status.status-stepper
2721
+ .status-step.completed
2722
+ .icon.icon-check-thick-centered
2723
+ 3 done
2724
+ .status-step.active
2725
+ .icon.icon-sync
2726
+ Executing checks
2727
+ .status-step
2728
+ + 3 to do
2729
+ .splitview-item.selected
2730
+ .splitview-item-icon.icon.icon-cross-circle-filled.danger
2731
+ .splitview-item-text Check title
2732
+ .splitview-item.unread
2733
+ .splitview-item-icon.icon.icon-check-circle-filled.success
2734
+ .splitview-item-text Check title
2735
+ ```
2736
+
2737
+ **With Turbo Frames (Dynamic Updates):**
2738
+ ```haml
2739
+ %details.splitview-group
2740
+ %summary.splitview-item
2741
+ .splitview-item-icon.icon.icon-circle-empty.text-chart-empty
2742
+ .splitview-item-text
2743
+ .splitview-item-title https://url.com
2744
+ .splitview-group-status.status-stepper
2745
+ .status-step.active
2746
+ Pending start
2747
+ .status-step
2748
+ + 6 to do
2749
+ %turbo-frame.turbo-wrapper
2750
+ %a.splitview-item
2751
+ .splitview-item-icon.icon.icon-check-circle-filled.success
2752
+ .splitview-item-text Navigation Menu Hover
2753
+ %turbo-frame.turbo-wrapper
2754
+ %a.splitview-item
2755
+ .splitview-item-icon.icon.icon-cross-circle-filled.danger
2756
+ .splitview-item-text No Results Message
2757
+ %btn.btn.splitview-btn Show 99 dismissed checks
2758
+ ```
2759
+
2760
+ ---
2761
+
2762
+ ### AgenticQA List Items
2763
+
2764
+ **Purpose:** Display detailed check results or findings with expandable content and attachments (screenshots).
2765
+
2766
+ **Use Cases:**
2767
+ - Individual bug/issue details
2768
+ - Screenshot and evidence display
2769
+ - Detailed findings with descriptions
2770
+ - AI analysis and justification
2771
+
2772
+ **Key Classes:**
2773
+ - `.list-listitems` - Container
2774
+ - `.listitem` - Individual item wrapper
2775
+ - `details` - Collapsable wrapper
2776
+ - `.listitem-header` - Header with title and expand button
2777
+ - `.listitem-badge` - Number/index badge
2778
+ - `.listitem-title` - Item title
2779
+ - `.listitem-actions` - Header actions
2780
+ - `.collapse-btn` - Expand/collapse button
2781
+ - `.listitem-content` - Expanded content
2782
+ - `.listitem-subheadline` - Section subheading
2783
+ - `.listitem-card` - Text content wrapper
2784
+ - `.listitem-attachments` - Attachments container
2785
+ - `.attachment` - Individual attachment
2786
+ - `.attachment-thumb` - Attachment preview image
2787
+
2788
+ **HAML Structure:**
2789
+ ```haml
2790
+ .list-listitems
2791
+ %details.listitem
2792
+ %summary.listitem-header
2793
+ .listitem-badge 1
2794
+ .listitem-title List item collapsable
2795
+ .listitem-actions
2796
+ .btn.collapse-btn
2797
+ .listitem-content
2798
+ .listitem-subheadline Subheadline
2799
+ .listitem-card
2800
+ %p Here's a detailed message with findings and analysis...
2801
+ .listitem-subheadline AI Screenshots
2802
+ .listitem-attachments
2803
+ .attachment
2804
+ %a.attachment-thumb{href:"/assets/images/placeholders/bugdetails.png"}
2805
+ %img{src:'/assets/images/placeholders/bugdetails.png', alt:'Bug details'}
2806
+ .attachment
2807
+ %a.attachment-thumb{href:"/assets/images/placeholders/screenshot.png"}
2808
+ %img{src:'/assets/images/placeholders/screenshot.png', alt:'Screenshot'}
2809
+ ```
2810
+
2811
+ ---
2812
+
2813
+ ### AgenticQA Tables
2814
+
2815
+ **Purpose:** Display test checks in organized grid format with filtering, editing, and status tracking.
2816
+
2817
+ #### Grid Table (Read-Only)
2818
+
2819
+ Display checks in a grid layout with status icons, URLs, results, and action buttons.
2820
+
2821
+ **Use Cases:**
2822
+ - Overview of all checks for a test suite
2823
+ - Status tracking and filtering
2824
+ - Quick actions (edit, duplicate, delete)
2825
+ - URL grouping and expansion
2826
+
2827
+ **Key Classes:**
2828
+ - `.table-grid` - Grid-based table container
2829
+ - `.table-rowgroups` - Modifier for grouped styling
2830
+ - `.thead` - Header row group
2831
+ - `.tbody` - Body rows
2832
+ - `.tr` - Table row
2833
+ - `.th` - Header cell
2834
+ - `.td` - Data cell
2835
+ - `.checkbox-column` - Checkbox cell
2836
+ - `.action-column` - Actions cell (right-aligned)
2837
+ - `.url-collapsable` - Collapsable URL list
2838
+ - `.dropdown-actions` - Dropdown menu for actions
2839
+ - `.form-check` - Checkbox wrapper
2840
+ - `.text-with-icon` - Icon + text combination
2841
+
2842
+ **Grid Configuration:**
2843
+ ```
2844
+ grid-template-columns: repeat(2, auto) repeat(2, minmax(12rem, 1fr)) repeat(5, auto);
2845
+ ```
2846
+
2847
+ **HAML Structure:**
2848
+ ```haml
2849
+ .table-grid.table-rowgroups{style:"grid-template-columns: repeat(2, auto) repeat(2, minmax(12rem, 1fr)) repeat(5, auto);"}
2850
+ .thead
2851
+ .tr
2852
+ .th
2853
+ .form-check.sm
2854
+ %input#check1sm{type:'checkbox'}
2855
+ .th status
2856
+ .th title
2857
+ .th urls
2858
+ .th check suite
2859
+ .th results
2860
+ .th executions
2861
+ .th executed
2862
+ .th
2863
+ .tbody
2864
+ .tr
2865
+ .btn.btn-sm.btn-block.btn-subtile.mb-xxs.col-span-9
2866
+ .icon.icon-plus.mr-icon-spacing
2867
+ Add new check
2868
+ .tr
2869
+ .td.checkbox-column
2870
+ .form-check.sm
2871
+ %input#check1sm{type:'checkbox'}
2872
+ .td status
2873
+ .td
2874
+ %a.white.font-normal{href:"#"} Short Title
2875
+ .td
2876
+ %details.url-collapsable
2877
+ %summary
2878
+ %p https://url.com
2879
+ .trigger
2880
+ .text-closed Show 3 more
2881
+ .text-open Show less
2882
+ %p https://url.com/1
2883
+ %p https://url.com/2
2884
+ %p https://url.com/3
2885
+ .td
2886
+ %a.white.font-normal{href:"#"} Check suite title
2887
+ .td
2888
+ .flex.flex-row
2889
+ .text-with-icon.mr-sm
2890
+ .icon.icon-check-circle-filled.text-success
2891
+ 999
2892
+ .text-with-icon.mr-sm
2893
+ .icon.icon-cross-circle-filled.text-danger
2894
+ 999
2895
+ .text-with-icon
2896
+ .icon.icon-blocked.text-blocked
2897
+ 999
2898
+ .td 6
2899
+ .td 13h ago
2900
+ .td.action-column
2901
+ %a.btn.btn-square{href:'#'}
2902
+ .icon.icon-pencil
2903
+ %details.dropdown-actions.dropright
2904
+ %summary
2905
+ .btn.btn-square
2906
+ .icon.icon-more
2907
+ .popover-menu
2908
+ %a.popover-action{href:'#'}
2909
+ .icon.icon-pencil
2910
+ Edit
2911
+ %a.popover-action{href:'#'}
2912
+ .icon.icon-copy
2913
+ Duplicate
2914
+ %a.popover-action{href:'#'}
2915
+ .icon.icon-delete
2916
+ Delete
2917
+ ```
2918
+
2919
+ #### Form Row Table (Editable)
2920
+
2921
+ Grid-based table with inline form controls for editing check parameters.
2922
+
2923
+ **Purpose:** Create or edit multiple checks in a structured table layout with form validation.
2924
+
2925
+ **Use Cases:**
2926
+ - Creating new checks for a test suite
2927
+ - Editing existing check parameters
2928
+ - Inline validation and feedback
2929
+ - Responsive mobile-friendly editing
2930
+
2931
+ **Key Classes:**
2932
+ - `.formrow` - Form-based table row
2933
+ - `.form-group` - Form field wrapper
2934
+ - `.formrow-actions` - Button actions for save/discard
2935
+ - Responsive modifiers: `col-span-4 lg:col-span-1`
2936
+
2937
+ **HAML Structure:**
2938
+ ```haml
2939
+ .table-grid.table-rowgroups{style:"grid-template-columns: repeat(3, auto) repeat(1, minmax(12rem, 1fr)) auto;"}
2940
+ .thead
2941
+ .tr
2942
+ .th
2943
+ .form-check.sm
2944
+ %input{type:'checkbox'}
2945
+ .th check title
2946
+ .th page type
2947
+ .th check description
2948
+ .th
2949
+ .tbody
2950
+ .tr
2951
+ .btn.btn-sm.btn-block.btn-subtile.mb-xxs.col-span-5
2952
+ .icon.icon-plus.mr-icon-spacing
2953
+ Add new check
2954
+ %form.formrow.tr
2955
+ .td.checkbox-column.row-span-4{class:"lg:row-span-1"}
2956
+ .form-check.sm
2957
+ %input{type:'checkbox', disabled:"true"}
2958
+ .td.col-span-4{class:"lg:col-span-1"}
2959
+ .label.mb-xxs{class:"lg:hidden"} Check title
2960
+ %input.form-control{type:'text', placeholder:"An input field"}
2961
+ .td.col-span-4{class:"lg:col-span-1"}
2962
+ .label.mb-xxs{class:"lg:hidden"} Page type
2963
+ %select.tom-select{placeholder: "Please select"}
2964
+ %option{value: ""}
2965
+ %option{value:"Option 1"} Option 1
2966
+ %option{value:"Option 2"} Option 2
2967
+ .td.col-span-4{class:"lg:col-span-1"}
2968
+ .label.mb-xxs{class:"lg:hidden"} Check description
2969
+ %textarea.form-control{rows:'1', placeholder:"Textarea"}
2970
+ .td.formrow-actions.col-span-4{class:"lg:col-span-1"}
2971
+ %button.btn.btn-sm.btn-block.btn-primary Save changes
2972
+ %button.btn.btn-sm.btn-block.btn-danger Discard
2973
+ ```
2974
+
2975
+ #### URL Collapsable
2976
+
2977
+ **Purpose:** Expand/collapse long URLs to save table space.
2978
+
2979
+ **Use Cases:**
2980
+ - Multiple URLs per check
2981
+ - Long domain paths
2982
+ - Grouped URL display
2983
+
2984
+ ```haml
2985
+ %details.url-collapsable
2986
+ %summary
2987
+ %p https://example.invalid/nebula-saffron/research/data/sets/long-format/experimental/phase-2
2988
+ .trigger
2989
+ .text-closed Show 6 more
2990
+ .text-open Show less
2991
+ %p https://example.invalid/data/sets/long-format/experimental/1
2992
+ %p https://example.invalid/data/sets/long-format/experimental/2
2993
+ %p https://example.invalid/data/sets/long-format/experimental/3
2455
2994
  ```
2456
2995
 
2996
+ ---
2997
+
2457
2998
  ### AgenticQA Header
2999
+
3000
+ **Purpose:** Navigation header for AgenticQA application with user profile, dropdowns, and mobile menu.
3001
+
3002
+ **Use Cases:**
3003
+ - Main application navigation
3004
+ - User profile and settings access
3005
+ - Quick navigation links
3006
+ - Responsive mobile menu
3007
+
3008
+ **Key Classes:**
3009
+ - `.header.agenticqa` - AgenticQA header variant
3010
+ - `.header-wrapper` - Header content wrapper
3011
+ - `.navlinks` - Link group container
3012
+ - `.navlink` - Navigation link
3013
+ - `.active` - Modifier for active link
3014
+ - `.header-logo` - Logo link
3015
+ - `.header-dropdown` - Dropdown menu
3016
+ - `.dropdown-menu` - Dropdown content
3017
+ - `.mobile-links` - Mobile menu container
3018
+ - `.mobile-menu` - Mobile menu content
3019
+ - `.mobile-menu-btn` - Mobile menu toggle
3020
+ - `.user-menu` - User profile menu
3021
+ - `.btn-profile` - Profile button
3022
+ - `.user-profile` - Profile image
3023
+ - `.user-details` - User info (role, name)
3024
+ - `.profile-role` - User role text
3025
+ - `.profile-name` - User name text
3026
+
3027
+ **HAML Structure:**
3028
+ ```haml
3029
+ %nav.header.agenticqa
3030
+ .header-wrapper
3031
+ .navlinks.logo-wrapper
3032
+ %a.navlink.header-logo{href:'#'}
3033
+ .navlinks.left
3034
+ %a.navlink.active{href:'#'} Navlink active
3035
+ %a.navlink{href:'#'} Navlink
3036
+ %a.navlink{href:'#'}
3037
+ %span.icon.icon-check-circle-filled
3038
+ %span Navlink
3039
+ %details.header-dropdown
3040
+ %summary.navlink Collapsable
3041
+ .dropdown-menu
3042
+ %a.navlink{href:'#'}
3043
+ %span.icon.icon-user
3044
+ Dropdown-item
3045
+ %a.navlink{href:'#'}
3046
+ %span.icon.icon-cog
3047
+ Dropdown-item
3048
+ %a.navlink{href:'#'}
3049
+ %span.icon.icon-shutdown
3050
+ Sign out
3051
+ %details.mobile-links
3052
+ %summary.mobile-menu-btn
3053
+ .navlink
3054
+ %span.sr-only Open main menu
3055
+ %span.icon.icon-menu
3056
+ .mobile-menu.sidebar
3057
+ %a.navlink.active{href:'#'}
3058
+ %span.navlink-badge.icon.icon-home
3059
+ Navlink active
3060
+ %details
3061
+ %summary.navlink
3062
+ %span.icon.icon-product
3063
+ Collapsable
3064
+ %a.navlink{href:'#'}
3065
+ %span.icon.icon-test
3066
+ Navlink child
3067
+ .navlinks.right
3068
+ %details.header-dropdown.user-menu
3069
+ %summary.btn-profile.navlink
3070
+ %span.sr-only Open user menu
3071
+ %img.user-profile{src:'/assets/images/placeholders/profile_supergirl.png'}
3072
+ .user-details
3073
+ .profile-role Admin
3074
+ .profile-name Anja Berger
3075
+ .dropdown-menu.profile-dropdown
3076
+ %a.dropdown-link{href:'#'}
3077
+ %span.icon.icon-user
3078
+ Your Profile
3079
+ %a.dropdown-link{href:'#'}
3080
+ %span.icon.icon-cog
3081
+ Settings
3082
+ %a.dropdown-link{href:'#'}
3083
+ %span.icon.icon-shutdown
3084
+ Sign out
3085
+ ```
3086
+
3087
+ ---
3088
+
3089
+ ### AgenticQA Asset References
3090
+
3091
+ **Logo Assets:**
3092
+ - Logo files: `/src/assets/images/logo_agenticqa/`
3093
+ - Formats: PNG (raster) and SVG (vector)
3094
+ - Variants: Purple/Teal with white/black text
3095
+
3096
+ **Email Header Assets:**
3097
+ - Email templates: `/src/assets/images/assets_agenticqa/`
3098
+ - Email styling: `src/pages/agenticqa/email.njk`
3099
+
3100
+ ---
3101
+
3102
+ ### AgenticQA Layout Structure
3103
+
3104
+ All AgenticQA pages use a dark sidebar layout structure:
3105
+
2458
3106
  ```html
2459
- <header class="header agenticqa_header">
2460
- <!-- AgenticQA navigation -->
2461
- </header>
3107
+ <body class="app-body">
3108
+ <header class="header agenticqa">
3109
+ <!-- AgenticQA navigation -->
3110
+ </header>
3111
+ <main class="main-content">
3112
+ <div class="app-layout">
3113
+ <aside class="sidebar dark">
3114
+ <!-- Sidebar navigation with dark background -->
3115
+ </aside>
3116
+ <div class="content-area">
3117
+ <!-- Main content area -->
3118
+ </div>
3119
+ </div>
3120
+ </main>
3121
+ </body>
2462
3122
  ```
2463
3123
 
3124
+ **Layout Classes:**
3125
+ - `.page-with-sidebar-dark` - Dark sidebar layout (AgenticQA standard)
3126
+ - `.page-with-sidebar-nocode` - Sidebar without code blocks
3127
+ - `.page-with-sidebar` - Standard sidebar layout
3128
+
3129
+ ---
3130
+
3131
+ ### AgenticQA Best Practices
3132
+
3133
+ 1. **Chat Interactions**
3134
+ - Keep messages concise and focused
3135
+ - Use collapsable messages for long content
3136
+ - Always include timestamps and speaker identification
3137
+ - Use appropriate icons for message context
3138
+
3139
+ 2. **Status Tracking**
3140
+ - Use status stepper for overall progress
3141
+ - Use splitview for URL/page grouping
3142
+ - Provide clear status indicators (completed, active, pending)
3143
+ - Include counter badges for progress
3144
+
3145
+ 3. **Table Design**
3146
+ - Use grid tables for read-only displays
3147
+ - Use form row tables for inline editing
3148
+ - Always include status column first
3149
+ - Provide expandable URL/details sections
3150
+ - Include action buttons for quick operations
3151
+
3152
+ 4. **List Items**
3153
+ - Use collapsable structure for detail preservation
3154
+ - Include attachments/screenshots for evidence
3155
+ - Provide clear subheadings and sections
3156
+ - Use consistent styling for findings
3157
+
3158
+ 5. **Navigation**
3159
+ - Follow AgenticQA header pattern for consistency
3160
+ - Include user profile in top-right
3161
+ - Support mobile menu for responsive design
3162
+ - Highlight active navigation item
3163
+
3164
+ 6. **Dark Mode**
3165
+ - All AgenticQA components include dark mode support
3166
+ - Dark sidebar is primary navigation pattern
3167
+ - Sufficient contrast for readability
3168
+ - Test on actual dark backgrounds
3169
+
2464
3170
  ---
2465
3171
 
2466
3172
  ## Dark Mode
@@ -2658,6 +3364,28 @@ The design system includes comprehensive dark mode support with customized theme
2658
3364
 
2659
3365
  ## Change Log
2660
3366
 
3367
+ ### Version 3.23.0 - February 2026
3368
+
3369
+ **AgenticQA Documentation:**
3370
+ - 📚 Comprehensive expansion of AgenticQA components section
3371
+ - ✨ Detailed use cases for all AgenticQA components
3372
+ - 🎯 Chat components documentation (standard, collapsable, history, form)
3373
+ - 📊 Table components documentation (grid layout and form row editing)
3374
+ - 📋 List items with attachment support documentation
3375
+ - 🎨 Navigation header with user profile and mobile menu documentation
3376
+ - 📱 Status stepper and progress tracking component documentation
3377
+ - 🌙 Dark mode integration across all AgenticQA components
3378
+ - 🔗 Splitview components with turbo-frame support documentation
3379
+ - 📐 URL collapsable component for space-efficient display
3380
+ - ✅ AgenticQA best practices for AI agents
3381
+
3382
+ **Features:**
3383
+ - Live example links for all AgenticQA components
3384
+ - Complete HAML/HTML structure examples for each component
3385
+ - Key classes and modifiers documented
3386
+ - Responsive design patterns for mobile and desktop
3387
+ - Status icon reference and usage guide
3388
+
2661
3389
  ### Version 3.22.0 - January 2026
2662
3390
 
2663
3391
  **New Features:**