tui-lipan 0.1.0

Opinionated, component-based TUI framework for Rust - declarative components, reconciliation, layout engine, focus, overlays, and rich widgets on top of ratatui.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
pub(crate) mod component;
mod matching;
mod render;

use std::sync::Arc;

use nucleo::pattern::{CaseMatching, Normalization};

use crate::callback::{Callback, KeyHandler};
use crate::core::element::Element;
use crate::style::{
    BorderStyle, CaretShape, Color, Length, Padding, ScrollbarConfig, Style, StyleSlot,
};
use crate::utils::gradient::{ColorGradient, GradientRange};
use crate::widgets::{ListConfig, ListItem, ListItemGutter, ListItemStatus};

pub(crate) const DEFAULT_SYNC_MATCH_LIMIT: usize = 100;

/// Structured description for a [`SearchItem`].
///
/// Supports a left segment (searchable, placed according to [`DescriptionPlacement`])
/// and a right segment (not searchable, always right-aligned). Both are styled with
/// `description_style`.
///
/// Plain strings convert to a left-only description via [`From`].
///
/// # Examples
///
/// ```
/// # use tui_lipan::prelude::ItemDescription;
/// // Left only (equivalent to a plain string):
/// let d = ItemDescription::new().left("Code editor");
///
/// // Right badge only:
/// let d = ItemDescription::new().right("Pro");
///
/// // Both:
/// let d = ItemDescription::new().left("Code editor").right("Free");
/// ```
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
pub struct ItemDescription {
    /// Left-aligned description text (searchable, respects [`DescriptionPlacement`]).
    pub left: Option<Arc<str>>,
    /// Right-aligned text (not searchable, always shown on the right).
    pub right: Option<Arc<str>>,
}

impl ItemDescription {
    /// Create an empty description.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the left (main) description text.
    pub fn left(mut self, text: impl Into<Arc<str>>) -> Self {
        self.left = Some(text.into());
        self
    }

    /// Set the right-aligned text (e.g. `"Free"`, `"Pro"`).
    pub fn right(mut self, text: impl Into<Arc<str>>) -> Self {
        self.right = Some(text.into());
        self
    }
}

impl From<&str> for ItemDescription {
    fn from(s: &str) -> Self {
        Self {
            left: Some(s.into()),
            right: None,
        }
    }
}

impl From<String> for ItemDescription {
    fn from(s: String) -> Self {
        Self {
            left: Some(s.into()),
            right: None,
        }
    }
}

impl From<Arc<str>> for ItemDescription {
    fn from(s: Arc<str>) -> Self {
        Self {
            left: Some(s),
            right: None,
        }
    }
}

/// A searchable item.
#[derive(Clone, Debug, PartialEq)]
pub struct SearchItem<T> {
    /// Item label (text to search).
    pub label: Arc<str>,
    /// Optional structured description.
    pub description: Option<ItemDescription>,
    /// Alternative names matched alongside the label. Each alias is scored
    /// independently and the best alias score competes with the label score
    /// (the match takes the maximum), so a row can rank well via either its
    /// canonical label or any alias. Aliases are not displayed.
    pub aliases: Vec<Arc<str>>,
    /// Whether the row should render in the list active state.
    pub active: bool,
    /// User data.
    pub value: T,
}

impl<T> SearchItem<T> {
    /// Create a new search item.
    pub fn new(label: impl Into<Arc<str>>, value: T) -> Self {
        Self {
            label: label.into(),
            description: None,
            aliases: Vec::new(),
            active: false,
            value,
        }
    }

    /// Set description. Accepts a plain string or an [`ItemDescription`].
    pub fn description(mut self, description: impl Into<ItemDescription>) -> Self {
        self.description = Some(description.into());
        self
    }

    /// Replace the aliases list.
    pub fn aliases<I, S>(mut self, aliases: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<Arc<str>>,
    {
        self.aliases = aliases.into_iter().map(Into::into).collect();
        self
    }

    /// Append a single alias.
    pub fn alias(mut self, alias: impl Into<Arc<str>>) -> Self {
        self.aliases.push(alias.into());
        self
    }

    /// Mark this item as active.
    pub fn active(mut self, active: bool) -> Self {
        self.active = active;
        self
    }
}

/// Returns indices into `items` in [`SearchPalette`] fuzzy-match order (best match first).
///
/// The query is trimmed; an empty query yields `0..items.len()` in definition order.
/// Matching uses the same nucleo settings as the widget (smart case matching and normalization).
pub fn rank_search_palette_indices<T: Clone + PartialEq>(
    items: &[SearchItem<T>],
    query: &str,
) -> Vec<usize> {
    rank_search_palette_indices_with_score(items, query, |_, _, score| score as f64)
}

/// Returns indices into `items` in [`SearchPalette`] fuzzy-match order after score adjustment.
///
/// The query is trimmed; an empty query yields `0..items.len()` in definition order and does not
/// call `score_fn`. For non-empty queries, matching uses the same nucleo settings as the widget
/// (smart case matching and normalization), then calls `score_fn` with the source item index, item,
/// and raw fuzzy score. Results are ordered by descending adjusted score, with the source item index
/// as the tie-breaker. `NaN` adjusted scores rank after finite scores, with the source item index
/// as the tie-breaker between `NaN` results.
pub fn rank_search_palette_indices_with_score<T: Clone + PartialEq, F>(
    items: &[SearchItem<T>],
    query: &str,
    mut score_fn: F,
) -> Vec<usize>
where
    F: FnMut(usize, &SearchItem<T>, u32) -> f64,
{
    let query = query.trim();
    if query.is_empty() {
        return (0..items.len()).collect();
    }
    let entries = matching::build_search_entries(items);
    let mut results: Vec<_> =
        matching::match_items(&entries, query, CaseMatching::Smart, Normalization::Smart)
            .into_iter()
            .map(|result| {
                let item_index = result.item_index;
                let adjusted_score = score_fn(item_index, &items[item_index], result.score);
                (item_index, adjusted_score)
            })
            .collect();

    results.sort_by(|(a_index, a_score), (b_index, b_score)| {
        match (a_score.is_nan(), b_score.is_nan()) {
            (true, true) => a_index.cmp(b_index),
            (true, false) => std::cmp::Ordering::Greater,
            (false, true) => std::cmp::Ordering::Less,
            (false, false) => b_score
                .partial_cmp(a_score)
                .unwrap_or(std::cmp::Ordering::Equal)
                .then(a_index.cmp(b_index)),
        }
    });

    results
        .into_iter()
        .map(|(item_index, _)| item_index)
        .collect()
}

#[cfg(test)]
mod tests {
    use super::{SearchItem, rank_search_palette_indices, rank_search_palette_indices_with_score};

    #[test]
    fn rank_search_palette_indices_uses_identity_scoring() {
        let items = vec![
            SearchItem::new("alpha", 0),
            SearchItem::new("alpine", 1),
            SearchItem::new("beta", 2),
        ];

        let ranked = rank_search_palette_indices(&items, "alp");
        let ranked_with_identity =
            rank_search_palette_indices_with_score(&items, "alp", |_, _, score| score as f64);

        assert_eq!(ranked_with_identity, ranked);
    }

    #[test]
    fn rank_search_palette_indices_with_score_can_reorder_matches() {
        let items = vec![
            SearchItem::new("alpha", 0),
            SearchItem::new("alpine", 1),
            SearchItem::new("beta", 2),
        ];

        let ranked = rank_search_palette_indices_with_score(&items, "alp", |index, _, score| {
            if index == 1 {
                score as f64 + 1_000_000.0
            } else {
                score as f64
            }
        });

        assert_eq!(ranked, vec![1, 0]);
    }

    #[test]
    fn rank_search_palette_indices_with_score_does_not_score_empty_query() {
        let items = vec![SearchItem::new("alpha", 0), SearchItem::new("alpine", 1)];

        let ranked = rank_search_palette_indices_with_score(&items, "  ", |_, _, _| {
            panic!("empty queries must not call custom scoring")
        });

        assert_eq!(ranked, vec![0, 1]);
    }

    #[test]
    fn rank_search_palette_indices_with_score_places_nan_after_finite_scores() {
        let items = vec![
            SearchItem::new("alpha", 0),
            SearchItem::new("alpine", 1),
            SearchItem::new("atlas", 2),
        ];

        let ranked = rank_search_palette_indices_with_score(&items, "a", |index, _, _| {
            if index == 1 { 1.0 } else { f64::NAN }
        });

        assert_eq!(ranked, vec![1, 0, 2]);
    }
}

/// A search event emitted when an item is selected/activated.
#[derive(Clone, Debug, PartialEq)]
pub struct SearchEvent<T> {
    /// Index in the matched list.
    pub match_index: usize,
    /// Index in the source item list.
    pub item_index: usize,
    /// The matched item.
    pub item: SearchItem<T>,
}

/// Match metadata passed to the custom renderer.
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct SearchHighlight {
    /// Matching character indices in the label.
    pub label_hits: Vec<u32>,
    /// Matching character indices in [`ItemDescription::left`].
    pub description_hits: Vec<u32>,
    /// Matching character indices in [`ItemDescription::right`].
    pub description_right_hits: Vec<u32>,
    /// Score reported by the matcher.
    pub score: u32,
}

/// Custom item renderer. Return [`Some`] to replace the default render, [`None`] to fall through.
type SearchRenderer<T> = Arc<dyn Fn(&SearchItem<T>, &SearchHighlight) -> Option<ListItem>>;

/// Custom item gutter renderer. Return [`Some`] to attach a left gutter to the row.
type SearchGutterRenderer<T> =
    Arc<dyn Fn(&SearchItem<T>, &SearchHighlight) -> Option<ListItemGutter>>;

/// Custom item status renderer. Return [`Some`] to attach content in the list symbol column.
type SearchStatusRenderer<T> =
    Arc<dyn Fn(&SearchItem<T>, &SearchHighlight) -> Option<ListItemStatus>>;

/// Placement for item descriptions.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub enum DescriptionPlacement {
    /// Render as `label - description` on the primary line.
    #[default]
    Inline,
    /// Render in the right-aligned slot on the primary line.
    Right,
    /// Render as a line above the label.
    Above,
    /// Render as a line below the label.
    Below,
}

/// Overflow policy for description text.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub enum DescriptionOverflow {
    /// Keep descriptions on one visual line and truncate with ellipsis.
    #[default]
    Truncate,
    /// Wrap descriptions onto additional lines for above/below placement.
    /// Wrapping prefers word boundaries.
    Wrap,
}

/// An entry in the search palette item list.
///
/// Use [`SearchEntry::item`] for searchable rows, [`SearchEntry::header`] for
/// section labels, and [`SearchEntry::spacer`] for blank separator rows.
/// Headers and spacers are excluded from fuzzy matching but are shown in the
/// list when results are displayed.
#[derive(Clone, Debug, PartialEq)]
pub enum SearchEntry<T> {
    /// A searchable, selectable item.
    Item(SearchItem<T>),
    /// A non-selectable section header.
    Header(Arc<str>),
    /// A non-selectable blank spacer row.
    Spacer,
}

impl<T> SearchEntry<T> {
    /// Create a searchable item entry.
    pub fn item(label: impl Into<Arc<str>>, value: T) -> Self {
        Self::Item(SearchItem::new(label, value))
    }

    /// Create a section header entry.
    pub fn header(label: impl Into<Arc<str>>) -> Self {
        Self::Header(label.into())
    }

    /// Create a blank spacer entry.
    pub fn spacer() -> Self {
        Self::Spacer
    }

    /// Set description on an item entry. Accepts a plain string or [`ItemDescription`].
    /// No-op if called on a header or spacer.
    pub fn description(self, description: impl Into<ItemDescription>) -> Self {
        match self {
            Self::Item(item) => Self::Item(item.description(description)),
            other => other,
        }
    }

    /// Mark an item entry as active. No-op for header and spacer entries.
    pub fn active(self, active: bool) -> Self {
        match self {
            Self::Item(item) => Self::Item(item.active(active)),
            other => other,
        }
    }
}

#[derive(Clone)]
#[allow(missing_docs)]
pub(crate) struct SearchPaletteProps<T> {
    items: Vec<SearchItem<T>>,
    entries: Vec<SearchEntry<T>>,
    sync_match_limit: usize,
    sync_selection: bool,
    initial_query: Arc<str>,
    /// Index into [`SearchPaletteProps::items`]. When this item appears in the
    /// current result list, keyboard selection starts on that row; otherwise the
    /// first result is selected.
    initial_selected_item_index: Option<usize>,
    /// Controlled mode: when `Some`, the query is driven by the caller, not by
    /// an internal `TextInput`. The `Input` widget is not rendered.
    query: Option<Arc<str>>,
    placeholder: Arc<str>,
    // Layout
    width: Length,
    height: Length,
    max_width: Option<Length>,
    max_height: Option<Length>,
    // Input forwarding props
    input_prefix: Option<Arc<str>>,
    input_suffix: Option<Arc<str>>,
    input_border: bool,
    input_divider: bool,
    input_divider_style: Style,
    input_divider_join_frame: bool,
    input_caret_shape: CaretShape,
    input_caret_color: Option<Color>,
    input_border_style: BorderStyle,
    input_padding: Padding,
    input_style: Style,
    input_hover_style: StyleSlot,
    input_focus_style: StyleSlot,
    input_focus_content_style: Style,
    input_placeholder_style: Style,
    input_focus_placeholder_style: Style,
    input_prefix_style: Style,
    input_focus_prefix_style: Style,
    input_suffix_style: Style,
    input_focus_suffix_style: Style,
    // List forwarding props
    list_config: ListConfig,
    list_symbol_column: Option<bool>,
    list_hover_style: StyleSlot,
    list_active_style: StyleSlot,
    list_active_symbol: Option<Arc<str>>,
    list_active_symbol_style: Option<Style>,
    list_unselected_symbol: Option<Arc<str>>,
    list_focusable: bool,
    empty_text: Option<Arc<str>>,
    // Item rendering props
    item_style: Style,
    active_item_style: Option<Style>,
    header_style: Style,
    description_style: Style,
    active_description_style: Option<Style>,
    focused_description_style: Option<Style>,
    description_placement: DescriptionPlacement,
    description_separator: Option<Arc<str>>,
    description_selection: bool,
    description_overflow: DescriptionOverflow,
    match_style: Style,
    show_scores: bool,
    score_gradient: Option<ColorGradient>,
    score_range: Option<GradientRange>,
    /// When `true`, entries (headers/spacers) remain visible during active
    /// search instead of being hidden. Matched items stay grouped under their
    /// original headers; empty groups are suppressed.  Navigation follows
    /// visual (definition) order rather than score order so that arrow keys
    /// move sequentially through the visible rows.
    preserve_groups: bool,
    navigation_wrap: bool,
    // Matching config
    case_matching: CaseMatching,
    normalization: Normalization,
    // Input key interceptor
    input_key_interceptor: Option<KeyHandler>,
    // Callbacks
    on_query_change: Option<Callback<Arc<str>>>,
    on_select: Option<Callback<SearchEvent<T>>>,
    on_activate: Option<Callback<SearchEvent<T>>>,
    render_item: Option<SearchRenderer<T>>,
    item_status: Option<SearchStatusRenderer<T>>,
    item_gutter: Option<SearchGutterRenderer<T>>,
}

impl<T: PartialEq> PartialEq for SearchPaletteProps<T> {
    fn eq(&self, other: &Self) -> bool {
        self.items == other.items
            && self.entries == other.entries
            && self.sync_match_limit == other.sync_match_limit
            && self.sync_selection == other.sync_selection
            && self.initial_query == other.initial_query
            && self.initial_selected_item_index == other.initial_selected_item_index
            && self.query == other.query
            && self.placeholder == other.placeholder
            && self.width == other.width
            && self.height == other.height
            && self.max_width == other.max_width
            && self.max_height == other.max_height
            && self.input_prefix == other.input_prefix
            && self.input_suffix == other.input_suffix
            && self.input_border == other.input_border
            && self.input_divider == other.input_divider
            && self.input_divider_style == other.input_divider_style
            && self.input_divider_join_frame == other.input_divider_join_frame
            && self.input_caret_shape == other.input_caret_shape
            && self.input_caret_color == other.input_caret_color
            && self.input_border_style == other.input_border_style
            && self.input_padding == other.input_padding
            && self.input_style == other.input_style
            && self.input_hover_style == other.input_hover_style
            && self.input_focus_style == other.input_focus_style
            && self.input_placeholder_style == other.input_placeholder_style
            && self.input_focus_placeholder_style == other.input_focus_placeholder_style
            && self.input_prefix_style == other.input_prefix_style
            && self.input_focus_prefix_style == other.input_focus_prefix_style
            && self.input_suffix_style == other.input_suffix_style
            && self.input_focus_suffix_style == other.input_focus_suffix_style
            && self.list_config == other.list_config
            && self.list_symbol_column == other.list_symbol_column
            && self.list_hover_style == other.list_hover_style
            && self.list_active_style == other.list_active_style
            && self.list_active_symbol == other.list_active_symbol
            && self.list_active_symbol_style == other.list_active_symbol_style
            && self.list_unselected_symbol == other.list_unselected_symbol
            && self.list_focusable == other.list_focusable
            && self.empty_text == other.empty_text
            && self.item_style == other.item_style
            && self.active_item_style == other.active_item_style
            && self.header_style == other.header_style
            && self.description_style == other.description_style
            && self.active_description_style == other.active_description_style
            && self.focused_description_style == other.focused_description_style
            && self.description_placement == other.description_placement
            && self.description_separator == other.description_separator
            && self.description_selection == other.description_selection
            && self.description_overflow == other.description_overflow
            && self.preserve_groups == other.preserve_groups
            && self.navigation_wrap == other.navigation_wrap
            && self.match_style == other.match_style
            && self.show_scores == other.show_scores
            && self.score_gradient == other.score_gradient
            && self.score_range == other.score_range
            && self.case_matching == other.case_matching
            && self.normalization == other.normalization
            && self.input_key_interceptor.is_some() == other.input_key_interceptor.is_some()
            && self.on_query_change == other.on_query_change
            && self.on_select == other.on_select
            && self.on_activate == other.on_activate
            && render_item_eq(&self.render_item, &other.render_item)
            && render_status_eq(&self.item_status, &other.item_status)
            && render_gutter_eq(&self.item_gutter, &other.item_gutter)
    }
}

fn render_item_eq<T>(left: &Option<SearchRenderer<T>>, right: &Option<SearchRenderer<T>>) -> bool {
    match (left, right) {
        (Some(left), Some(right)) => Arc::ptr_eq(left, right),
        (None, None) => true,
        _ => false,
    }
}

fn render_gutter_eq<T>(
    left: &Option<SearchGutterRenderer<T>>,
    right: &Option<SearchGutterRenderer<T>>,
) -> bool {
    match (left, right) {
        (Some(left), Some(right)) => Arc::ptr_eq(left, right),
        (None, None) => true,
        _ => false,
    }
}

fn render_status_eq<T>(
    left: &Option<SearchStatusRenderer<T>>,
    right: &Option<SearchStatusRenderer<T>>,
) -> bool {
    match (left, right) {
        (Some(left), Some(right)) => Arc::ptr_eq(left, right),
        (None, None) => true,
        _ => false,
    }
}

/// A fuzzy search palette powered by `nucleo`.
///
/// # Modes
///
/// `SearchPalette` supports two query ownership modes:
///
/// ## Uncontrolled (default)
///
/// The palette renders its own `Input` widget and owns the query state
/// (including undo/redo history). This is the fast path for the common
/// "modal search / command palette" use case.
///
/// ```no_run
/// # use tui_lipan::prelude::*;
/// # use std::sync::Arc;
/// SearchPalette::<Arc<str>>::new()
///     .initial_query("src/")
///     .on_activate(Callback::new(|ev: SearchEvent<Arc<str>>| {
///         // handle activation
///     }));
/// ```
///
/// ## Controlled
///
/// When [`query`](Self::query) is set the palette operates in controlled mode:
///
/// - **No `Input` widget is rendered** - the caller is responsible for
///   displaying and updating the query string (e.g. inside a `Frame` divider).
/// - **No `TextInput` or undo history is allocated** - only a single
///   `Arc<str>` is stored.
/// - Changes to the `query` prop are picked up automatically via
///   `on_props_changed`, which refreshes the result list.
/// - Navigation keys (`↑↓ Enter PgUp PgDn Home End`) are handled by the
///   component's `on_key` when the results list has focus.
///
/// ```no_run
/// # use tui_lipan::prelude::*;
/// # use std::sync::Arc;
/// // The caller owns `query: Arc<str>` and passes it every render.
/// // SearchPalette only rerenders the results list.
/// SearchPalette::<Arc<str>>::new()
///     .query(Arc::from("search text"))
///     .on_activate(Callback::new(|ev: SearchEvent<Arc<str>>| {
///         // handle activation
///     }));
/// ```
///
/// See `examples/search_palette_hub.rs` (Controlled tab) for a full example embedding
/// the query input inside a `Frame` divider with `join_frame(true)`.
#[derive(Clone)]
pub struct SearchPalette<T> {
    props: SearchPaletteProps<T>,
}

impl<T: Clone + PartialEq> Default for SearchPalette<T> {
    fn default() -> Self {
        Self {
            props: SearchPaletteProps {
                items: Vec::new(),
                entries: Vec::new(),
                sync_match_limit: DEFAULT_SYNC_MATCH_LIMIT,
                sync_selection: false,
                initial_query: "".into(),
                initial_selected_item_index: None,
                query: None,
                placeholder: "Search...".into(),
                width: Length::Flex(1),
                height: Length::Flex(1),
                max_width: None,
                max_height: None,
                input_prefix: None,
                input_suffix: None,
                input_border: false,
                input_divider: true,
                input_divider_style: Style::default(),
                input_divider_join_frame: true,
                input_caret_shape: CaretShape::default(),
                input_caret_color: None,
                input_border_style: BorderStyle::Plain,
                input_padding: Padding {
                    left: 1,
                    right: 1,
                    top: 0,
                    bottom: 0,
                },
                input_style: Style::default(),
                input_hover_style: StyleSlot::Inherit,
                input_focus_style: StyleSlot::Inherit,
                input_focus_content_style: Style::default(),
                input_placeholder_style: Style::default(),
                input_focus_placeholder_style: Style::default(),
                input_prefix_style: Style::default(),
                input_focus_prefix_style: Style::default(),
                input_suffix_style: Style::default(),
                input_focus_suffix_style: Style::default(),
                list_config: ListConfig {
                    border: false,
                    border_style: BorderStyle::Plain,
                    padding: Padding::default(),
                    style: Style::default(),
                    selection_style: StyleSlot::Inherit,
                    unfocused_selection_style: StyleSlot::Inherit,
                    selection_full_width: false,
                    selection_symbol: Some("> ".into()),
                    selection_symbol_right: None,
                    selection_symbol_style: None,
                    unfocused_selection_symbol_style: None,
                    symbol_column: true,
                    gutter_gap: 0,
                    gutter_for_non_selectable: false,
                    item_horizontal_padding: Padding::default(),
                    header_horizontal_padding: Padding::default(),
                    empty_text_style: Style::default(),
                    item_hover_style: None,
                    scrollbar: false,
                    scrollbar_config: ScrollbarConfig::default(),
                },
                list_symbol_column: None,
                list_hover_style: StyleSlot::Inherit,
                list_active_style: StyleSlot::Inherit,
                list_active_symbol: None,
                list_active_symbol_style: None,
                list_unselected_symbol: None,
                list_focusable: true,
                empty_text: Some("No matches".into()),
                item_style: Style::default(),
                active_item_style: None,
                header_style: Style::default(),
                description_style: Style::default(),
                active_description_style: None,
                focused_description_style: None,
                description_placement: DescriptionPlacement::Inline,
                description_separator: None,
                description_selection: true,
                description_overflow: DescriptionOverflow::Truncate,
                match_style: Style::default(),
                show_scores: false,
                score_gradient: None,
                score_range: None,
                preserve_groups: false,
                navigation_wrap: true,
                case_matching: CaseMatching::Smart,
                normalization: Normalization::Smart,
                input_key_interceptor: None,
                on_query_change: None,
                on_select: None,
                on_activate: None,
                render_item: None,
                item_status: None,
                item_gutter: None,
            },
        }
    }
}

impl<T: Clone + PartialEq> SearchPalette<T> {
    /// Create a new search palette.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set searchable items (no headers or spacers).
    pub fn items(mut self, items: impl IntoIterator<Item = SearchItem<T>>) -> Self {
        self.props.items = items.into_iter().collect();
        self.props.entries = Vec::new();
        self
    }

    /// Set items with optional headers and spacers.
    ///
    /// Use [`SearchEntry::item`] for searchable rows, [`SearchEntry::header`]
    /// for section labels, and [`SearchEntry::spacer`] for blank separators.
    /// Headers and spacers are excluded from fuzzy matching. They are shown in
    /// the results list only while the query is empty; active search renders a
    /// flat ranked result list for more stable navigation.
    pub fn entries(mut self, entries: impl IntoIterator<Item = SearchEntry<T>>) -> Self {
        let entries: Vec<SearchEntry<T>> = entries.into_iter().collect();
        self.props.items = entries
            .iter()
            .filter_map(|e| {
                if let SearchEntry::Item(item) = e {
                    Some(item.clone())
                } else {
                    None
                }
            })
            .collect();
        self.props.entries = entries;
        self
    }

    /// Set placeholder.
    pub fn placeholder(mut self, placeholder: impl Into<Arc<str>>) -> Self {
        self.props.placeholder = placeholder.into();
        self
    }

    /// Set the maximum item count that still uses synchronous matching.
    ///
    /// Lists at or below this size update immediately on each query change.
    /// Larger lists keep the previous results visible while a background fuzzy
    /// search computes the next result set.
    pub fn sync_match_limit(mut self, limit: usize) -> Self {
        self.props.sync_match_limit = limit;
        self
    }

    /// Keep `on_select` synchronized with the currently visible selection.
    ///
    /// When enabled, the palette also emits `on_select` when it establishes an
    /// initial selection or when query/result changes move the internal
    /// selection to a different row.
    pub fn sync_selection(mut self, sync: bool) -> Self {
        self.props.sync_selection = sync;
        self
    }

    /// Set an initial query to pre-populate the search field.
    ///
    /// Only used in uncontrolled mode (when [`query`](Self::query) is not set).
    pub fn initial_query(mut self, query: impl Into<Arc<str>>) -> Self {
        self.props.initial_query = query.into();
        self
    }

    /// Start with the result row that corresponds to this index in [`items`](Self::items).
    ///
    /// The item must be present in the current match list; otherwise selection falls back to the
    /// first row. Ignored when `None` (default).
    pub fn initial_selected_item_index(mut self, index: Option<usize>) -> Self {
        self.props.initial_selected_item_index = index;
        self
    }

    /// Control whether Up/Down navigation wraps at list boundaries.
    ///
    /// Enabled by default. Disable for boundary rows such as "current position"
    /// where wrapping from the last row to the first row would jump unexpectedly.
    pub fn navigation_wrap(mut self, wrap: bool) -> Self {
        self.props.navigation_wrap = wrap;
        self
    }

    /// Drive the search query from outside the widget (controlled mode).
    ///
    /// When set, the palette renders **without** an `Input` widget - the caller
    /// is responsible for displaying and updating the query elsewhere.
    /// Changes to this prop are detected via `on_props_changed` and trigger a
    /// new async search automatically.
    ///
    /// Do not combine with [`initial_query`](Self::initial_query); that prop is
    /// ignored in controlled mode.
    pub fn query(mut self, query: impl Into<Arc<str>>) -> Self {
        self.props.query = Some(query.into());
        self
    }

    /// Set requested palette width.
    pub fn width(mut self, width: Length) -> Self {
        self.props.width = width;
        self
    }

    /// Set requested palette height.
    pub fn height(mut self, height: Length) -> Self {
        self.props.height = height;
        self
    }

    /// Set maximum palette width constraint.
    pub fn max_width(mut self, width: Length) -> Self {
        self.props.max_width = Some(width);
        self
    }

    /// Set maximum palette height constraint.
    pub fn max_height(mut self, height: Length) -> Self {
        self.props.max_height = Some(height);
        self
    }

    /// Set query change callback.
    pub fn on_query_change(mut self, cb: Callback<Arc<str>>) -> Self {
        self.props.on_query_change = Some(cb);
        self
    }

    /// Set selection callback.
    ///
    /// By default this fires for explicit keyboard or mouse selection changes.
    /// Combine with [`sync_selection`](Self::sync_selection) to also receive the
    /// currently visible selection when the palette initializes or when query
    /// changes move the internal selection.
    pub fn on_select(mut self, cb: Callback<SearchEvent<T>>) -> Self {
        self.props.on_select = Some(cb);
        self
    }

    /// Set a pre-insertion key interceptor for the internal `Input` widget.
    ///
    /// This handler runs **before** text insertion. If it returns `true`, the
    /// key is consumed and no character is inserted. Use this to remap keys
    /// like spacebar to a different action (e.g. toggle) in the palette.
    ///
    /// Only effective in uncontrolled mode (when [`query`](Self::query) is not set).
    pub fn input_key_interceptor(mut self, handler: KeyHandler) -> Self {
        self.props.input_key_interceptor = Some(handler);
        self
    }

    /// Set activation callback.
    pub fn on_activate(mut self, cb: Callback<SearchEvent<T>>) -> Self {
        self.props.on_activate = Some(cb);
        self
    }

    // -- Input forwarding --

    /// Override the prefix shown before the query text (default: `" "`).
    pub fn input_prefix(mut self, prefix: impl Into<Arc<str>>) -> Self {
        self.props.input_prefix = Some(prefix.into());
        self
    }

    /// Override the suffix shown after the query text (default: `"{matches}/{total}"`).
    pub fn input_suffix(mut self, suffix: impl Into<Arc<str>>) -> Self {
        self.props.input_suffix = Some(suffix.into());
        self
    }

    /// Set input border.
    pub fn input_border(mut self, border: bool) -> Self {
        self.props.input_border = border;
        self
    }

    /// Control whether a divider is rendered below the input (uncontrolled mode).
    ///
    /// Default: `true`.
    pub fn input_divider(mut self, divider: bool) -> Self {
        self.props.input_divider = divider;
        self
    }

    /// Set the style of the divider below the input (uncontrolled mode).
    pub fn input_divider_style(mut self, style: Style) -> Self {
        self.props.input_divider_style = style;
        self
    }

    /// Control whether the divider joins the surrounding frame border.
    ///
    /// Default: `true`.
    pub fn input_divider_join_frame(mut self, join: bool) -> Self {
        self.props.input_divider_join_frame = join;
        self
    }

    /// Set input caret shape (block, bar, or underline).
    pub fn input_caret_shape(mut self, shape: CaretShape) -> Self {
        self.props.input_caret_shape = shape;
        self
    }

    /// Set input caret color (OSC 12 cursor color, terminal support required).
    pub fn input_caret_color(mut self, color: Color) -> Self {
        self.props.input_caret_color = Some(color);
        self
    }

    /// Set input border style.
    pub fn input_border_style(mut self, border_style: BorderStyle) -> Self {
        self.props.input_border_style = border_style;
        self
    }

    /// Set input padding.
    pub fn input_padding(mut self, padding: impl Into<Padding>) -> Self {
        self.props.input_padding = padding.into();
        self
    }

    /// Set input style.
    pub fn input_style(mut self, style: Style) -> Self {
        self.props.input_style = style;
        self
    }

    /// Set input hover style.
    pub fn input_hover_style(mut self, style: Style) -> Self {
        self.props.input_hover_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed input hover style.
    pub fn extend_input_hover_style(mut self, style: Style) -> Self {
        self.props.input_hover_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed input hover style.
    pub fn inherit_input_hover_style(mut self) -> Self {
        self.props.input_hover_style = StyleSlot::Inherit;
        self
    }

    /// Set input hover style slot directly for composite forwarding.
    pub fn input_hover_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.input_hover_style = slot;
        self
    }

    /// Set input focus chrome style.
    pub fn input_focus_style(mut self, style: Style) -> Self {
        self.props.input_focus_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed input focus style.
    pub fn extend_input_focus_style(mut self, style: Style) -> Self {
        self.props.input_focus_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed input focus style.
    pub fn inherit_input_focus_style(mut self) -> Self {
        self.props.input_focus_style = StyleSlot::Inherit;
        self
    }

    /// Set input focus style slot directly for composite forwarding.
    pub fn input_focus_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.input_focus_style = slot;
        self
    }

    /// Set focused input content text style.
    pub fn input_focus_content_style(mut self, style: Style) -> Self {
        self.props.input_focus_content_style = style;
        self
    }

    /// Set input placeholder style.
    pub fn input_placeholder_style(mut self, style: Style) -> Self {
        self.props.input_placeholder_style = style;
        self
    }

    /// Set input focus placeholder style.
    pub fn input_focus_placeholder_style(mut self, style: Style) -> Self {
        self.props.input_focus_placeholder_style = style;
        self
    }

    /// Set input prefix style.
    pub fn input_prefix_style(mut self, style: Style) -> Self {
        self.props.input_prefix_style = style;
        self
    }

    /// Set input focus prefix style.
    pub fn input_focus_prefix_style(mut self, style: Style) -> Self {
        self.props.input_focus_prefix_style = style;
        self
    }

    /// Set input suffix style.
    pub fn input_suffix_style(mut self, style: Style) -> Self {
        self.props.input_suffix_style = style;
        self
    }

    /// Set input focus suffix style.
    pub fn input_focus_suffix_style(mut self, style: Style) -> Self {
        self.props.input_focus_suffix_style = style;
        self
    }

    // -- List forwarding --

    /// Set list config.
    pub fn list_config(mut self, config: ListConfig) -> Self {
        self.props.list_config = config;
        self
    }

    /// Control whether the internal list reserves and renders its built-in symbol column.
    ///
    /// This is a convenience override for search/command palettes that use custom
    /// row gutters instead of the selected-row marker column. Gutter spacing and
    /// non-selectable-row gutter participation remain available through
    /// [`Self::list_config`].
    pub fn list_symbol_column(mut self, enabled: bool) -> Self {
        self.props.list_symbol_column = Some(enabled);
        self
    }

    /// Set list border.
    pub fn list_border(mut self, border: bool) -> Self {
        self.props.list_config.border = border;
        self
    }

    /// Set list border style.
    pub fn list_border_style(mut self, border_style: BorderStyle) -> Self {
        self.props.list_config.border_style = border_style;
        self
    }

    /// Set list padding.
    pub fn list_padding(mut self, padding: impl Into<Padding>) -> Self {
        self.props.list_config.padding = padding.into();
        self
    }

    /// Set list style.
    pub fn list_style(mut self, style: Style) -> Self {
        self.props.list_config.style = style;
        self
    }

    /// Set list hover style.
    pub fn list_hover_style(mut self, style: Style) -> Self {
        self.props.list_hover_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed list hover style.
    pub fn extend_list_hover_style(mut self, style: Style) -> Self {
        self.props.list_hover_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed list hover style.
    pub fn inherit_list_hover_style(mut self) -> Self {
        self.props.list_hover_style = StyleSlot::Inherit;
        self
    }

    /// Set list hover style slot directly for composite forwarding.
    pub fn list_hover_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.list_hover_style = slot;
        self
    }

    /// Set list highlight style.
    pub fn list_selection_style(mut self, style: Style) -> Self {
        self.props.list_config.selection_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed list highlight style.
    pub fn extend_list_selection_style(mut self, style: Style) -> Self {
        self.props.list_config.selection_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed list highlight style.
    pub fn inherit_list_selection_style(mut self) -> Self {
        self.props.list_config.selection_style = StyleSlot::Inherit;
        self
    }

    /// Set list highlight style slot directly for composite forwarding.
    pub fn list_selection_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.list_config.selection_style = slot;
        self
    }

    /// Set list highlight style while the list is not focused.
    pub fn list_unfocused_selection_style(mut self, style: Style) -> Self {
        self.props.list_config.unfocused_selection_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed list highlight style while the list is not focused.
    pub fn extend_list_unfocused_selection_style(mut self, style: Style) -> Self {
        self.props.list_config.unfocused_selection_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed list highlight style while the list is not focused.
    pub fn inherit_list_unfocused_selection_style(mut self) -> Self {
        self.props.list_config.unfocused_selection_style = StyleSlot::Inherit;
        self
    }

    /// Set list unfocused highlight style slot directly for composite forwarding.
    pub fn list_unfocused_selection_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.list_config.unfocused_selection_style = slot;
        self
    }

    /// Set list highlight symbol.
    pub fn list_selection_symbol(mut self, symbol: impl Into<Arc<str>>) -> Self {
        self.props.list_config.selection_symbol = Some(symbol.into());
        self
    }

    /// Set the trailing list selection symbol (right "pill" cap). Pairs with
    /// [`Self::list_selection_symbol`] and shares the selection symbol style.
    pub fn list_selection_symbol_right(mut self, symbol: impl Into<Arc<str>>) -> Self {
        self.props.list_config.selection_symbol_right = Some(symbol.into());
        self
    }

    /// Set list highlight symbol style.
    pub fn list_selection_symbol_style(mut self, style: Style) -> Self {
        self.props.list_config.selection_symbol_style = Some(style);
        self
    }

    /// Set list highlight symbol style while the list is not focused.
    pub fn list_unfocused_selection_symbol_style(mut self, style: Style) -> Self {
        self.props.list_config.unfocused_selection_symbol_style = Some(style);
        self
    }

    /// Set the symbol shown for non-selected items (indentation alignment).
    pub fn list_unselected_symbol(mut self, symbol: impl Into<Arc<str>>) -> Self {
        self.props.list_unselected_symbol = Some(symbol.into());
        self
    }

    /// Extend the highlight style to the full width of the list.
    pub fn list_selection_full_width(mut self, full_width: bool) -> Self {
        self.props.list_config.selection_full_width = full_width;
        self
    }

    /// Set hover style applied to individual list items on mouse hover.
    pub fn list_item_hover_style(mut self, style: Style) -> Self {
        self.props.list_config.item_hover_style = Some(StyleSlot::Replace(style));
        self
    }

    /// Extend the themed list item-hover style.
    pub fn extend_list_item_hover_style(mut self, style: Style) -> Self {
        self.props.list_config.item_hover_style = Some(StyleSlot::Extend(style));
        self
    }

    /// Inherit the themed list item-hover style.
    pub fn inherit_list_item_hover_style(mut self) -> Self {
        self.props.list_config.item_hover_style = Some(StyleSlot::Inherit);
        self
    }

    /// Set list item-hover style slot directly for composite forwarding.
    pub fn list_item_hover_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.list_config.item_hover_style = Some(slot);
        self
    }

    /// Set list active item style.
    pub fn list_active_style(mut self, style: Style) -> Self {
        self.props.list_active_style = StyleSlot::Replace(style);
        self
    }

    /// Extend the themed list active style.
    pub fn extend_list_active_style(mut self, style: Style) -> Self {
        self.props.list_active_style = StyleSlot::Extend(style);
        self
    }

    /// Inherit the themed list active style.
    pub fn inherit_list_active_style(mut self) -> Self {
        self.props.list_active_style = StyleSlot::Inherit;
        self
    }

    /// Set list active style slot directly for composite forwarding.
    pub fn list_active_style_slot(mut self, slot: StyleSlot) -> Self {
        self.props.list_active_style = slot;
        self
    }

    /// Set list active item symbol.
    pub fn list_active_symbol(mut self, symbol: impl Into<Arc<str>>) -> Self {
        self.props.list_active_symbol = Some(symbol.into());
        self
    }

    /// Set list active item symbol style.
    pub fn list_active_symbol_style(mut self, style: Style) -> Self {
        self.props.list_active_symbol_style = Some(style);
        self
    }

    /// Set list row padding for normal rows.
    ///
    /// Only left/right are used by List; top/bottom are ignored.
    pub fn list_item_horizontal_padding(mut self, padding: impl Into<Padding>) -> Self {
        self.props.list_config.item_horizontal_padding = padding.into();
        self
    }

    /// Set list row padding for header rows.
    ///
    /// Only left/right are used by List; top/bottom are ignored.
    pub fn list_header_horizontal_padding(mut self, padding: impl Into<Padding>) -> Self {
        self.props.list_config.header_horizontal_padding = padding.into();
        self
    }

    /// Control whether the list can receive keyboard focus.
    pub fn list_focusable(mut self, focusable: bool) -> Self {
        self.props.list_focusable = focusable;
        self
    }

    /// Set list scrollbar.
    pub fn list_scrollbar(mut self, scroll: bool) -> Self {
        self.props.list_config.scrollbar = scroll;
        self
    }

    /// Set list scrollbar configuration.
    pub fn list_scrollbar_config(mut self, config: ScrollbarConfig) -> Self {
        self.props.list_config.scrollbar_config = config;
        self
    }

    /// Set empty text.
    pub fn empty_text(mut self, text: impl Into<Arc<str>>) -> Self {
        self.props.empty_text = Some(text.into());
        self
    }

    /// Set empty text style.
    pub fn empty_text_style(mut self, style: Style) -> Self {
        self.props.list_config.empty_text_style = style;
        self
    }

    // -- Item rendering --

    /// Set item base style.
    pub fn item_style(mut self, style: Style) -> Self {
        self.props.item_style = style;
        self
    }

    /// Set the style applied to section header rows (entries created with
    /// [`SearchEntry::header`]). Defaults to the inherited/ambient style, which
    /// makes headers look like normal items.
    pub fn header_style(mut self, style: Style) -> Self {
        self.props.header_style = style;
        self
    }

    /// Set description style.
    pub fn description_style(mut self, style: Style) -> Self {
        self.props.description_style = style;
        self
    }

    /// Set description placement.
    pub fn description_placement(mut self, placement: DescriptionPlacement) -> Self {
        self.props.description_placement = placement;
        self
    }

    /// Set the separator between label and inline description.
    ///
    /// Only applies to [`DescriptionPlacement::Inline`]. Defaults to `" - "`.
    /// Pass `" "` for a single space gap with no visible separator.
    pub fn description_separator(mut self, separator: impl Into<Arc<str>>) -> Self {
        self.props.description_separator = Some(separator.into());
        self
    }

    /// Control whether selection highlight applies to description text.
    ///
    /// For [`DescriptionPlacement::Inline`], description shares the primary line,
    /// so this setting has no effect.
    pub fn description_selection(mut self, highlight: bool) -> Self {
        self.props.description_selection = highlight;
        self
    }

    /// Control whether descriptions wrap or truncate.
    ///
    /// Wrapping applies to [`DescriptionPlacement::Above`] and
    /// [`DescriptionPlacement::Below`].
    /// [`DescriptionPlacement::Inline`] and [`DescriptionPlacement::Right`]
    /// always truncate to keep a single primary row.
    pub fn description_overflow(mut self, overflow: DescriptionOverflow) -> Self {
        self.props.description_overflow = overflow;
        self
    }

    /// Set match highlight style.
    pub fn match_style(mut self, style: Style) -> Self {
        self.props.match_style = style;
        self
    }

    /// Show a numeric score in the right slot for matched rows.
    pub fn show_scores(mut self, show: bool) -> Self {
        self.props.show_scores = show;
        self
    }

    /// Set gradient used to color score values.
    pub fn score_gradient(mut self, gradient: ColorGradient) -> Self {
        self.props.score_gradient = Some(gradient);
        self
    }

    /// Set explicit score range used by score gradient.
    pub fn score_range(mut self, min: u64, max: u64) -> Self {
        self.props.score_range = Some(GradientRange::new(min, max));
        self
    }

    /// Keep group structure (headers/spacers) visible during active search.
    ///
    /// By default, groups are only shown while the query is empty and hidden
    /// once a search term is entered. When set to `true`, matched items remain
    /// grouped under their original category headers, empty groups are
    /// suppressed automatically, and arrow-key navigation follows visual
    /// (definition) order rather than score order.
    pub fn preserve_groups(mut self, preserve: bool) -> Self {
        self.props.preserve_groups = preserve;
        self
    }

    /// Set case matching configuration.
    pub fn case_matching(mut self, case: CaseMatching) -> Self {
        self.props.case_matching = case;
        self
    }

    /// Set normalization configuration.
    pub fn normalization(mut self, normalization: Normalization) -> Self {
        self.props.normalization = normalization;
        self
    }

    /// Override the label style for active items in the default renderer.
    ///
    /// When set, active items' label spans use this style instead of [`item_style`](Self::item_style).
    /// Has no effect when a custom [`render_item`](Self::render_item) renderer is used.
    pub fn active_item_style(mut self, style: Style) -> Self {
        self.props.active_item_style = Some(style);
        self
    }

    /// Override the description style for active items in the default renderer.
    ///
    /// When set, active items' description spans use this style instead of
    /// [`description_style`](Self::description_style).
    /// Has no effect when a custom [`render_item`](Self::render_item) renderer is used.
    pub fn active_description_style(mut self, style: Style) -> Self {
        self.props.active_description_style = Some(style);
        self
    }

    /// Override the description style for the currently focused (selected) item
    /// in the default renderer.
    ///
    /// When set, the focused item's description spans use this style instead of
    /// [`description_style`](Self::description_style). Takes precedence over
    /// [`active_description_style`](Self::active_description_style).
    /// Has no effect when a custom [`render_item`](Self::render_item) renderer is used.
    pub fn focused_description_style(mut self, style: Style) -> Self {
        self.props.focused_description_style = Some(style);
        self
    }

    /// Set a custom renderer for matched items.
    ///
    /// Return [`Some`] to replace the default rendering for that item, or [`None`] to fall
    /// through to the built-in default renderer.
    pub fn render_item(mut self, renderer: SearchRenderer<T>) -> Self {
        self.props.render_item = Some(renderer);
        self
    }

    /// Set a custom per-row status renderer for the list symbol column.
    ///
    /// Status content replaces the selection or unselected symbol/spaces for
    /// that row, while active symbols keep priority.
    pub fn item_status(mut self, renderer: SearchStatusRenderer<T>) -> Self {
        self.props.item_status = Some(renderer);
        self
    }

    /// Set a custom left-gutter renderer for matched items.
    ///
    /// This preserves the built-in row rendering and only attaches a fixed-width
    /// gutter, which is useful for status widgets such as [`Spinner`](crate::widgets::Spinner).
    pub fn item_gutter(mut self, renderer: SearchGutterRenderer<T>) -> Self {
        self.props.item_gutter = Some(renderer);
        self
    }
}

impl<T: Clone + PartialEq + 'static> From<SearchPalette<T>> for Element {
    fn from(palette: SearchPalette<T>) -> Self {
        component::element(palette.props)
    }
}