standout-render 7.2.0

Styled terminal rendering with templates, themes, and adaptive color support
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
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
//! Core types for tabular output configuration.
//!
//! This module defines the data structures used to specify table layout:
//! column widths, alignment, truncation strategies, and decorations.

use serde::{Deserialize, Serialize};
use serde_json::Value;

/// Text alignment within a column.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Align {
    /// Left-align text (pad on the right).
    #[default]
    Left,
    /// Right-align text (pad on the left).
    Right,
    /// Center text (pad on both sides).
    Center,
}

/// Position where truncation occurs when content exceeds max width.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum TruncateAt {
    /// Truncate at the end, keeping the start visible.
    /// Example: "Hello World" → "Hello W…"
    #[default]
    End,
    /// Truncate at the start, keeping the end visible.
    /// Example: "Hello World" → "…o World"
    Start,
    /// Truncate in the middle, keeping both start and end visible.
    /// Example: "Hello World" → "Hel…orld"
    Middle,
}

/// How a column handles content that exceeds its width.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub enum Overflow {
    /// Truncate content with an ellipsis marker.
    Truncate {
        /// Where to truncate (start, middle, or end).
        at: TruncateAt,
        /// The marker to show when truncation occurs (default: "…").
        marker: String,
    },
    /// Wrap content to multiple lines at word boundaries.
    Wrap {
        /// Number of spaces to indent continuation lines (default: 0).
        indent: usize,
    },
    /// Hard cut without any marker.
    Clip,
    /// Allow content to overflow (ignore width limit).
    Expand,
}

impl Default for Overflow {
    fn default() -> Self {
        Overflow::Truncate {
            at: TruncateAt::End,
            marker: "…".to_string(),
        }
    }
}

impl Overflow {
    /// Create a truncate overflow with default marker.
    pub fn truncate(at: TruncateAt) -> Self {
        Overflow::Truncate {
            at,
            marker: "…".to_string(),
        }
    }

    /// Create a truncate overflow with custom marker.
    pub fn truncate_with_marker(at: TruncateAt, marker: impl Into<String>) -> Self {
        Overflow::Truncate {
            at,
            marker: marker.into(),
        }
    }

    /// Create a wrap overflow with no indent.
    pub fn wrap() -> Self {
        Overflow::Wrap { indent: 0 }
    }

    /// Create a wrap overflow with continuation indent.
    pub fn wrap_with_indent(indent: usize) -> Self {
        Overflow::Wrap { indent }
    }
}

/// Column position anchor on the row.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum Anchor {
    /// Column flows left-to-right from the start (default).
    #[default]
    Left,
    /// Column is positioned at the right edge.
    Right,
}

/// Specifies how a column determines its width.
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(try_from = "WidthRaw", into = "WidthRaw")]
pub enum Width {
    /// Fixed width in display columns.
    Fixed(usize),
    /// Width calculated from content, constrained by optional min/max bounds.
    Bounded {
        /// Minimum width (defaults to 0 if not specified).
        min: Option<usize>,
        /// Maximum width (unlimited if not specified).
        max: Option<usize>,
    },
    /// Expand to fill all remaining space.
    /// Multiple Fill columns share remaining space equally.
    Fill,
    /// Proportional: takes n parts of the remaining space.
    /// `Fraction(2)` gets twice the space of `Fraction(1)` or `Fill`.
    Fraction(usize),
}

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
enum WidthRaw {
    Fixed(usize),
    Bounded {
        #[serde(default)]
        min: Option<usize>,
        #[serde(default)]
        max: Option<usize>,
    },
    StringVariant(String),
}

impl From<Width> for WidthRaw {
    fn from(width: Width) -> Self {
        match width {
            Width::Fixed(w) => WidthRaw::Fixed(w),
            Width::Bounded { min, max } => WidthRaw::Bounded { min, max },
            Width::Fill => WidthRaw::StringVariant("fill".to_string()),
            Width::Fraction(n) => WidthRaw::StringVariant(format!("{}fr", n)),
        }
    }
}

impl TryFrom<WidthRaw> for Width {
    type Error = String;

    fn try_from(raw: WidthRaw) -> Result<Self, Self::Error> {
        match raw {
            WidthRaw::Fixed(w) => Ok(Width::Fixed(w)),
            WidthRaw::Bounded { min, max } => Ok(Width::Bounded { min, max }),
            WidthRaw::StringVariant(s) if s == "fill" => Ok(Width::Fill),
            WidthRaw::StringVariant(s) if s.ends_with("fr") => {
                let num_str = s.trim_end_matches("fr");
                num_str
                    .parse::<usize>()
                    .map(Width::Fraction)
                    .map_err(|_| format!("Invalid fraction: '{}'. Expected format like '2fr'.", s))
            }
            WidthRaw::StringVariant(s) => Err(format!(
                "Invalid width string: '{}'. Expected 'fill' or '<n>fr'.",
                s
            )),
        }
    }
}

impl Default for Width {
    fn default() -> Self {
        Width::Bounded {
            min: None,
            max: None,
        }
    }
}

impl Width {
    /// Create a fixed-width column.
    pub fn fixed(width: usize) -> Self {
        Width::Fixed(width)
    }

    /// Create a bounded-width column with both min and max.
    pub fn bounded(min: usize, max: usize) -> Self {
        Width::Bounded {
            min: Some(min),
            max: Some(max),
        }
    }

    /// Create a column with only a minimum width.
    pub fn min(min: usize) -> Self {
        Width::Bounded {
            min: Some(min),
            max: None,
        }
    }

    /// Create a column with only a maximum width.
    pub fn max(max: usize) -> Self {
        Width::Bounded {
            min: None,
            max: Some(max),
        }
    }

    /// Create a fill column that expands to remaining space.
    pub fn fill() -> Self {
        Width::Fill
    }

    /// Create a fractional width column.
    /// `Fraction(2)` gets twice the space of `Fraction(1)` or `Fill`.
    pub fn fraction(n: usize) -> Self {
        Width::Fraction(n)
    }
}

/// Configuration for a single column in a table.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Column {
    /// Optional column name/identifier.
    pub name: Option<String>,
    /// How the column determines its width.
    pub width: Width,
    /// Text alignment within the column.
    pub align: Align,
    /// Column position anchor (left or right edge).
    pub anchor: Anchor,
    /// How to handle content that exceeds width.
    pub overflow: Overflow,
    /// Representation for null/empty values.
    pub null_repr: String,
    /// Optional style name (resolved via theme).
    pub style: Option<String>,
    /// When true, use the cell value as the style name.
    pub style_from_value: bool,
    /// Optional key for data extraction (supports dot notation for nested fields).
    pub key: Option<String>,
    /// Optional header title (for table headers and CSV export).
    pub header: Option<String>,
    /// Optional sub-column layout within this column.
    ///
    /// When set, cell values for this column should be arrays of sub-values.
    /// Sub-column widths are resolved per-row within the parent column's
    /// resolved width.
    pub sub_columns: Option<SubColumns>,
}

impl Default for Column {
    fn default() -> Self {
        Column {
            name: None,
            width: Width::default(),
            align: Align::default(),
            anchor: Anchor::default(),
            overflow: Overflow::default(),
            null_repr: "-".to_string(),
            style: None,
            style_from_value: false,
            key: None,
            header: None,
            sub_columns: None,
        }
    }
}

impl Column {
    /// Create a new column with the specified width.
    pub fn new(width: Width) -> Self {
        Column {
            width,
            ..Default::default()
        }
    }

    /// Create a column builder for fluent construction.
    pub fn builder() -> ColumnBuilder {
        ColumnBuilder::default()
    }

    /// Set the column name/identifier.
    pub fn named(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the text alignment.
    pub fn align(mut self, align: Align) -> Self {
        self.align = align;
        self
    }

    /// Set alignment to right (shorthand for `.align(Align::Right)`).
    pub fn right(self) -> Self {
        self.align(Align::Right)
    }

    /// Set alignment to center (shorthand for `.align(Align::Center)`).
    pub fn center(self) -> Self {
        self.align(Align::Center)
    }

    /// Set the column anchor position.
    pub fn anchor(mut self, anchor: Anchor) -> Self {
        self.anchor = anchor;
        self
    }

    /// Anchor column to the right edge (shorthand for `.anchor(Anchor::Right)`).
    pub fn anchor_right(self) -> Self {
        self.anchor(Anchor::Right)
    }

    /// Set the overflow behavior.
    pub fn overflow(mut self, overflow: Overflow) -> Self {
        self.overflow = overflow;
        self
    }

    /// Set overflow to wrap (shorthand for `.overflow(Overflow::wrap())`).
    pub fn wrap(self) -> Self {
        self.overflow(Overflow::wrap())
    }

    /// Set overflow to wrap with indent.
    pub fn wrap_indent(self, indent: usize) -> Self {
        self.overflow(Overflow::wrap_with_indent(indent))
    }

    /// Set overflow to clip (shorthand for `.overflow(Overflow::Clip)`).
    pub fn clip(self) -> Self {
        self.overflow(Overflow::Clip)
    }

    /// Set truncation position (configures Overflow::Truncate).
    pub fn truncate(mut self, at: TruncateAt) -> Self {
        self.overflow = match self.overflow {
            Overflow::Truncate { marker, .. } => Overflow::Truncate { at, marker },
            _ => Overflow::truncate(at),
        };
        self
    }

    /// Set truncation to middle (shorthand for `.truncate(TruncateAt::Middle)`).
    pub fn truncate_middle(self) -> Self {
        self.truncate(TruncateAt::Middle)
    }

    /// Set truncation to start (shorthand for `.truncate(TruncateAt::Start)`).
    pub fn truncate_start(self) -> Self {
        self.truncate(TruncateAt::Start)
    }

    /// Set the ellipsis/marker for truncation.
    pub fn ellipsis(mut self, ellipsis: impl Into<String>) -> Self {
        self.overflow = match self.overflow {
            Overflow::Truncate { at, .. } => Overflow::Truncate {
                at,
                marker: ellipsis.into(),
            },
            _ => Overflow::truncate_with_marker(TruncateAt::End, ellipsis),
        };
        self
    }

    /// Set the null/empty value representation.
    pub fn null_repr(mut self, null_repr: impl Into<String>) -> Self {
        self.null_repr = null_repr.into();
        self
    }

    /// Set the style name for this column.
    pub fn style(mut self, style: impl Into<String>) -> Self {
        self.style = Some(style.into());
        self
    }

    /// Use the cell value as the style name.
    ///
    /// When enabled, the cell content becomes the style tag.
    /// For example, cell value "error" renders as `[error]error[/error]`.
    pub fn style_from_value(mut self) -> Self {
        self.style_from_value = true;
        self
    }

    /// Set the data key for this column (e.g. "author.name").
    pub fn key(mut self, key: impl Into<String>) -> Self {
        self.key = Some(key.into());
        self
    }

    /// Set the header title for this column.
    pub fn header(mut self, header: impl Into<String>) -> Self {
        self.header = Some(header.into());
        self
    }

    /// Set sub-columns for per-row width distribution within this column.
    pub fn sub_columns(mut self, sub_cols: SubColumns) -> Self {
        self.sub_columns = Some(sub_cols);
        self
    }
}

/// Builder for constructing `Column` instances.
#[derive(Clone, Debug, Default)]
pub struct ColumnBuilder {
    name: Option<String>,
    width: Option<Width>,
    align: Option<Align>,
    anchor: Option<Anchor>,
    overflow: Option<Overflow>,
    null_repr: Option<String>,
    style: Option<String>,
    style_from_value: bool,
    key: Option<String>,
    header: Option<String>,
    sub_columns: Option<SubColumns>,
}

impl ColumnBuilder {
    /// Set the column name/identifier.
    pub fn named(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the width strategy.
    pub fn width(mut self, width: Width) -> Self {
        self.width = Some(width);
        self
    }

    /// Set a fixed width.
    pub fn fixed(mut self, width: usize) -> Self {
        self.width = Some(Width::Fixed(width));
        self
    }

    /// Set the column to fill remaining space.
    pub fn fill(mut self) -> Self {
        self.width = Some(Width::Fill);
        self
    }

    /// Set bounded width with min and max.
    pub fn bounded(mut self, min: usize, max: usize) -> Self {
        self.width = Some(Width::bounded(min, max));
        self
    }

    /// Set fractional width.
    pub fn fraction(mut self, n: usize) -> Self {
        self.width = Some(Width::Fraction(n));
        self
    }

    /// Set the text alignment.
    pub fn align(mut self, align: Align) -> Self {
        self.align = Some(align);
        self
    }

    /// Set alignment to right.
    pub fn right(self) -> Self {
        self.align(Align::Right)
    }

    /// Set alignment to center.
    pub fn center(self) -> Self {
        self.align(Align::Center)
    }

    /// Set the column anchor position.
    pub fn anchor(mut self, anchor: Anchor) -> Self {
        self.anchor = Some(anchor);
        self
    }

    /// Anchor column to the right edge.
    pub fn anchor_right(self) -> Self {
        self.anchor(Anchor::Right)
    }

    /// Set the overflow behavior.
    pub fn overflow(mut self, overflow: Overflow) -> Self {
        self.overflow = Some(overflow);
        self
    }

    /// Set overflow to wrap.
    pub fn wrap(self) -> Self {
        self.overflow(Overflow::wrap())
    }

    /// Set overflow to clip.
    pub fn clip(self) -> Self {
        self.overflow(Overflow::Clip)
    }

    /// Set the truncation position (configures Overflow::Truncate).
    pub fn truncate(mut self, at: TruncateAt) -> Self {
        self.overflow = Some(match self.overflow {
            Some(Overflow::Truncate { marker, .. }) => Overflow::Truncate { at, marker },
            _ => Overflow::truncate(at),
        });
        self
    }

    /// Set the ellipsis string for truncation.
    pub fn ellipsis(mut self, ellipsis: impl Into<String>) -> Self {
        self.overflow = Some(match self.overflow {
            Some(Overflow::Truncate { at, .. }) => Overflow::Truncate {
                at,
                marker: ellipsis.into(),
            },
            _ => Overflow::truncate_with_marker(TruncateAt::End, ellipsis),
        });
        self
    }

    /// Set the null/empty value representation.
    pub fn null_repr(mut self, null_repr: impl Into<String>) -> Self {
        self.null_repr = Some(null_repr.into());
        self
    }

    /// Set the style name.
    pub fn style(mut self, style: impl Into<String>) -> Self {
        self.style = Some(style.into());
        self
    }

    /// Use cell value as the style name.
    pub fn style_from_value(mut self) -> Self {
        self.style_from_value = true;
        self
    }

    /// Set the data key.
    pub fn key(mut self, key: impl Into<String>) -> Self {
        self.key = Some(key.into());
        self
    }

    /// Set the header title.
    pub fn header(mut self, header: impl Into<String>) -> Self {
        self.header = Some(header.into());
        self
    }

    /// Set sub-columns for per-row width distribution within this column.
    pub fn sub_columns(mut self, sub_cols: SubColumns) -> Self {
        self.sub_columns = Some(sub_cols);
        self
    }

    /// Build the `Column` instance.
    pub fn build(self) -> Column {
        let default = Column::default();
        Column {
            name: self.name,
            width: self.width.unwrap_or(default.width),
            align: self.align.unwrap_or(default.align),
            anchor: self.anchor.unwrap_or(default.anchor),
            overflow: self.overflow.unwrap_or(default.overflow),
            null_repr: self.null_repr.unwrap_or(default.null_repr),
            style: self.style,
            style_from_value: self.style_from_value,
            key: self.key,
            header: self.header,
            sub_columns: self.sub_columns,
        }
    }
}

/// Shorthand constructors for creating columns.
///
/// Provides a concise API for common column configurations:
///
/// ```rust
/// use standout_render::tabular::Col;
///
/// let col = Col::fixed(10);           // Fixed width 10
/// let col = Col::min(5);              // At least 5, grows to fit
/// let col = Col::bounded(5, 20);      // Between 5 and 20
/// let col = Col::fill();              // Fill remaining space
/// let col = Col::fraction(2);         // 2 parts of remaining space
///
/// // Chain with fluent methods
/// let col = Col::fixed(10).right().style("header");
/// ```
pub struct Col;

impl Col {
    /// Create a fixed-width column.
    pub fn fixed(width: usize) -> Column {
        Column::new(Width::Fixed(width))
    }

    /// Create a column with minimum width that grows to fit content.
    pub fn min(min: usize) -> Column {
        Column::new(Width::min(min))
    }

    /// Create a column with maximum width that shrinks to fit content.
    pub fn max(max: usize) -> Column {
        Column::new(Width::max(max))
    }

    /// Create a bounded-width column (between min and max).
    pub fn bounded(min: usize, max: usize) -> Column {
        Column::new(Width::bounded(min, max))
    }

    /// Create a fill column that expands to remaining space.
    pub fn fill() -> Column {
        Column::new(Width::Fill)
    }

    /// Create a fractional width column.
    /// `Col::fraction(2)` gets twice the space of `Col::fraction(1)` or `Col::fill()`.
    pub fn fraction(n: usize) -> Column {
        Column::new(Width::Fraction(n))
    }
}

/// A sub-column within a parent column for per-row width distribution.
///
/// Sub-columns partition a parent column's resolved width on a per-row basis.
/// Within a set of sub-columns, exactly one must use [`Width::Fill`] (the "grower")
/// which absorbs remaining space after fixed/bounded sub-columns are satisfied.
///
/// This enables layouts where a single column contains multiple logical fields
/// that share space dynamically — for example, a title that grows to fill
/// available space alongside an optional tag of variable width:
///
/// ```text
/// Gallery Navigation                            [feature]
/// Bug : Static                                      [bug]
/// Fixing Layout of Image Nav
/// ```
///
/// Sub-column widths are resolved per-row from actual content, not across all rows.
/// [`Width::Fraction`] is not supported for sub-columns.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SubColumn {
    /// Optional name/identifier.
    pub name: Option<String>,
    /// Width strategy (Fixed, Bounded, or Fill only — no Fraction).
    pub width: Width,
    /// Text alignment within this sub-column.
    pub align: Align,
    /// How to handle overflow.
    pub overflow: Overflow,
    /// Representation for null/empty values.
    pub null_repr: String,
    /// Optional style name.
    pub style: Option<String>,
}

impl Default for SubColumn {
    fn default() -> Self {
        SubColumn {
            name: None,
            width: Width::Fill,
            align: Align::Left,
            overflow: Overflow::default(),
            null_repr: String::new(),
            style: None,
        }
    }
}

impl SubColumn {
    /// Create a sub-column with the specified width.
    pub fn new(width: Width) -> Self {
        SubColumn {
            width,
            ..Default::default()
        }
    }

    /// Set the sub-column name/identifier.
    pub fn named(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the text alignment.
    pub fn align(mut self, align: Align) -> Self {
        self.align = align;
        self
    }

    /// Set alignment to right.
    pub fn right(self) -> Self {
        self.align(Align::Right)
    }

    /// Set alignment to center.
    pub fn center(self) -> Self {
        self.align(Align::Center)
    }

    /// Set the overflow behavior.
    pub fn overflow(mut self, overflow: Overflow) -> Self {
        self.overflow = overflow;
        self
    }

    /// Set the null/empty value representation.
    pub fn null_repr(mut self, null_repr: impl Into<String>) -> Self {
        self.null_repr = null_repr.into();
        self
    }

    /// Set the style name.
    pub fn style(mut self, style: impl Into<String>) -> Self {
        self.style = Some(style.into());
        self
    }
}

/// Configuration for sub-columns within a parent column.
///
/// Wraps a list of [`SubColumn`] definitions with a separator and validates
/// the configuration: exactly one sub-column must use [`Width::Fill`], and
/// [`Width::Fraction`] is not allowed.
///
/// # Example
///
/// ```rust
/// use standout_render::tabular::{SubColumns, SubCol};
///
/// let sub_cols = SubColumns::new(
///     vec![SubCol::fill(), SubCol::bounded(0, 30).right()],
///     " ",
/// ).unwrap();
/// ```
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SubColumns {
    /// The sub-column definitions.
    pub columns: Vec<SubColumn>,
    /// Separator string between sub-columns.
    pub separator: String,
}

impl SubColumns {
    /// Create and validate a sub-columns configuration.
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - No sub-columns are provided
    /// - There is not exactly one Fill sub-column
    /// - Any sub-column uses Fraction width
    pub fn new(columns: Vec<SubColumn>, separator: impl Into<String>) -> Result<Self, String> {
        if columns.is_empty() {
            return Err("sub_columns must contain at least one sub-column".into());
        }

        let fill_count = columns
            .iter()
            .filter(|c| matches!(c.width, Width::Fill))
            .count();
        if fill_count != 1 {
            return Err(format!(
                "sub_columns must have exactly one Fill sub-column, found {}",
                fill_count
            ));
        }

        for (i, col) in columns.iter().enumerate() {
            if matches!(col.width, Width::Fraction(_)) {
                return Err(format!(
                    "sub_column[{}]: Fraction width is not supported for sub-columns",
                    i
                ));
            }
        }

        Ok(SubColumns {
            columns,
            separator: separator.into(),
        })
    }
}

/// Shorthand constructors for creating sub-columns.
///
/// ```rust
/// use standout_render::tabular::SubCol;
///
/// let fill = SubCol::fill();                   // Fill remaining space
/// let fixed = SubCol::fixed(10);               // Fixed width 10
/// let bounded = SubCol::bounded(0, 30);        // Between 0 and 30
/// let max = SubCol::max(20);                   // Up to 20
///
/// // Chain with fluent methods
/// let tag = SubCol::bounded(0, 30).right().style("tag");
/// ```
pub struct SubCol;

impl SubCol {
    /// Create a fill sub-column that absorbs remaining space.
    pub fn fill() -> SubColumn {
        SubColumn::new(Width::Fill)
    }

    /// Create a fixed-width sub-column.
    pub fn fixed(width: usize) -> SubColumn {
        SubColumn::new(Width::Fixed(width))
    }

    /// Create a bounded-width sub-column (between min and max).
    pub fn bounded(min: usize, max: usize) -> SubColumn {
        SubColumn::new(Width::bounded(min, max))
    }

    /// Create a sub-column with maximum width.
    pub fn max(max: usize) -> SubColumn {
        SubColumn::new(Width::max(max))
    }

    /// Create a sub-column with minimum width.
    pub fn min(min: usize) -> SubColumn {
        SubColumn::new(Width::min(min))
    }
}

/// Decorations for table rows (separators, prefixes, suffixes).
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct Decorations {
    /// Separator between columns (e.g., "  " or " │ ").
    pub column_sep: String,
    /// Prefix at the start of each row.
    pub row_prefix: String,
    /// Suffix at the end of each row.
    pub row_suffix: String,
}

impl Decorations {
    /// Create decorations with just a column separator.
    pub fn with_separator(sep: impl Into<String>) -> Self {
        Decorations {
            column_sep: sep.into(),
            row_prefix: String::new(),
            row_suffix: String::new(),
        }
    }

    /// Set the column separator.
    pub fn separator(mut self, sep: impl Into<String>) -> Self {
        self.column_sep = sep.into();
        self
    }

    /// Set the row prefix.
    pub fn prefix(mut self, prefix: impl Into<String>) -> Self {
        self.row_prefix = prefix.into();
        self
    }

    /// Set the row suffix.
    pub fn suffix(mut self, suffix: impl Into<String>) -> Self {
        self.row_suffix = suffix.into();
        self
    }

    /// Calculate the total overhead (prefix + suffix + separators between n columns).
    pub fn overhead(&self, num_columns: usize) -> usize {
        use crate::tabular::display_width;
        let prefix_width = display_width(&self.row_prefix);
        let suffix_width = display_width(&self.row_suffix);
        let sep_width = display_width(&self.column_sep);
        let sep_count = num_columns.saturating_sub(1);
        prefix_width + suffix_width + (sep_width * sep_count)
    }
}

/// Complete specification for a flat data layout (Table or CSV).
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct FlatDataSpec {
    /// Column specifications.
    pub columns: Vec<Column>,
    /// Row decorations (separators, prefix, suffix).
    pub decorations: Decorations,
}

impl FlatDataSpec {
    /// Create a new spec with the given columns and default decorations.
    pub fn new(columns: Vec<Column>) -> Self {
        FlatDataSpec {
            columns,
            decorations: Decorations::default(),
        }
    }

    /// Create a spec builder.
    pub fn builder() -> FlatDataSpecBuilder {
        FlatDataSpecBuilder::default()
    }

    /// Get the number of columns.
    pub fn num_columns(&self) -> usize {
        self.columns.len()
    }

    /// Check if any column uses Fill width.
    pub fn has_fill_column(&self) -> bool {
        self.columns.iter().any(|c| matches!(c.width, Width::Fill))
    }

    /// Extract a header row from the spec.
    ///
    /// Uses column `header` if present, otherwise `key`, otherwise empty string.
    pub fn extract_header(&self) -> Vec<String> {
        self.columns
            .iter()
            .map(|col| {
                col.header
                    .as_deref()
                    .or(col.key.as_deref())
                    .unwrap_or("")
                    .to_string()
            })
            .collect()
    }

    /// Extract a data row from a JSON value using the spec.
    ///
    /// For each column:
    /// - If `key` is set, traverses the JSON to find the value.
    /// - If `key` is unset/missing, uses `null_repr`.
    /// - Handles nested objects via dot notation (e.g. "author.name").
    pub fn extract_row(&self, data: &Value) -> Vec<String> {
        self.columns
            .iter()
            .map(|col| {
                if let Some(key) = &col.key {
                    extract_value(data, key).unwrap_or(col.null_repr.clone())
                } else {
                    col.null_repr.clone()
                }
            })
            .collect()
    }
}

/// Helper to extract a value from nested JSON using dot notation.
fn extract_value(data: &Value, path: &str) -> Option<String> {
    let mut current = data;
    for part in path.split('.') {
        match current {
            Value::Object(map) => {
                current = map.get(part)?;
            }
            _ => return None,
        }
    }

    match current {
        Value::String(s) => Some(s.clone()),
        Value::Null => None,
        // For structured types, just jsonify them effectively
        v => Some(v.to_string()),
    }
}

/// Builder for constructing `FlatDataSpec` instances.
#[derive(Clone, Debug, Default)]
pub struct FlatDataSpecBuilder {
    columns: Vec<Column>,
    decorations: Decorations,
}

impl FlatDataSpecBuilder {
    /// Add a column to the table.
    pub fn column(mut self, column: Column) -> Self {
        self.columns.push(column);
        self
    }

    /// Add multiple columns from an iterator.
    pub fn columns(mut self, columns: impl IntoIterator<Item = Column>) -> Self {
        self.columns.extend(columns);
        self
    }

    /// Set the column separator.
    pub fn separator(mut self, sep: impl Into<String>) -> Self {
        self.decorations.column_sep = sep.into();
        self
    }

    /// Set the row prefix.
    pub fn prefix(mut self, prefix: impl Into<String>) -> Self {
        self.decorations.row_prefix = prefix.into();
        self
    }

    /// Set the row suffix.
    pub fn suffix(mut self, suffix: impl Into<String>) -> Self {
        self.decorations.row_suffix = suffix.into();
        self
    }

    /// Set all decorations at once.
    pub fn decorations(mut self, decorations: Decorations) -> Self {
        self.decorations = decorations;
        self
    }

    /// Build the `FlatDataSpec` instance.
    pub fn build(self) -> FlatDataSpec {
        FlatDataSpec {
            columns: self.columns,
            decorations: self.decorations,
        }
    }
}

/// Type alias: TabularSpec is the preferred name for FlatDataSpec.
pub type TabularSpec = FlatDataSpec;
/// Type alias for the builder.
pub type TabularSpecBuilder = FlatDataSpecBuilder;

#[cfg(test)]
mod tests {
    use super::*;

    // --- Align tests ---

    #[test]
    fn align_default_is_left() {
        assert_eq!(Align::default(), Align::Left);
    }

    #[test]
    fn align_serde_roundtrip() {
        let values = [Align::Left, Align::Right, Align::Center];
        for align in values {
            let json = serde_json::to_string(&align).unwrap();
            let parsed: Align = serde_json::from_str(&json).unwrap();
            assert_eq!(parsed, align);
        }
    }

    // --- TruncateAt tests ---

    #[test]
    fn truncate_at_default_is_end() {
        assert_eq!(TruncateAt::default(), TruncateAt::End);
    }

    #[test]
    fn truncate_at_serde_roundtrip() {
        let values = [TruncateAt::End, TruncateAt::Start, TruncateAt::Middle];
        for truncate in values {
            let json = serde_json::to_string(&truncate).unwrap();
            let parsed: TruncateAt = serde_json::from_str(&json).unwrap();
            assert_eq!(parsed, truncate);
        }
    }

    // --- Width tests ---

    #[test]
    fn width_constructors() {
        assert_eq!(Width::fixed(10), Width::Fixed(10));
        assert_eq!(
            Width::bounded(5, 20),
            Width::Bounded {
                min: Some(5),
                max: Some(20)
            }
        );
        assert_eq!(
            Width::min(5),
            Width::Bounded {
                min: Some(5),
                max: None
            }
        );
        assert_eq!(
            Width::max(20),
            Width::Bounded {
                min: None,
                max: Some(20)
            }
        );
        assert_eq!(Width::fill(), Width::Fill);
    }

    #[test]
    fn width_serde_fixed() {
        let width = Width::Fixed(10);
        let json = serde_json::to_string(&width).unwrap();
        assert_eq!(json, "10");
        let parsed: Width = serde_json::from_str(&json).unwrap();
        assert_eq!(parsed, width);
    }

    #[test]
    fn width_serde_bounded() {
        let width = Width::Bounded {
            min: Some(5),
            max: Some(20),
        };
        let json = serde_json::to_string(&width).unwrap();
        let parsed: Width = serde_json::from_str(&json).unwrap();
        assert_eq!(parsed, width);
    }

    #[test]
    fn width_serde_fill() {
        let width = Width::Fill;
        let json = serde_json::to_string(&width).unwrap();
        // Now serializes to "fill"
        assert_eq!(json, "\"fill\"");

        let parsed: Width = serde_json::from_str("\"fill\"").unwrap();
        assert_eq!(parsed, width);
    }

    #[test]
    fn width_serde_fraction() {
        let width = Width::Fraction(2);
        let json = serde_json::to_string(&width).unwrap();
        assert_eq!(json, "\"2fr\"");

        let parsed: Width = serde_json::from_str("\"2fr\"").unwrap();
        assert_eq!(parsed, width);

        // Also test 1fr
        let parsed_1: Width = serde_json::from_str("\"1fr\"").unwrap();
        assert_eq!(parsed_1, Width::Fraction(1));
    }

    #[test]
    fn width_fraction_constructor() {
        assert_eq!(Width::fraction(3), Width::Fraction(3));
    }

    // --- Overflow tests ---

    #[test]
    fn overflow_default() {
        let overflow = Overflow::default();
        assert!(matches!(
            overflow,
            Overflow::Truncate {
                at: TruncateAt::End,
                ..
            }
        ));
    }

    #[test]
    fn overflow_constructors() {
        let truncate = Overflow::truncate(TruncateAt::Middle);
        assert!(matches!(
            truncate,
            Overflow::Truncate {
                at: TruncateAt::Middle,
                ref marker
            } if marker == "…"
        ));

        let truncate_custom = Overflow::truncate_with_marker(TruncateAt::Start, "...");
        assert!(matches!(
            truncate_custom,
            Overflow::Truncate {
                at: TruncateAt::Start,
                ref marker
            } if marker == "..."
        ));

        let wrap = Overflow::wrap();
        assert!(matches!(wrap, Overflow::Wrap { indent: 0 }));

        let wrap_indent = Overflow::wrap_with_indent(4);
        assert!(matches!(wrap_indent, Overflow::Wrap { indent: 4 }));
    }

    // --- Anchor tests ---

    #[test]
    fn anchor_default() {
        assert_eq!(Anchor::default(), Anchor::Left);
    }

    #[test]
    fn anchor_serde_roundtrip() {
        let values = [Anchor::Left, Anchor::Right];
        for anchor in values {
            let json = serde_json::to_string(&anchor).unwrap();
            let parsed: Anchor = serde_json::from_str(&json).unwrap();
            assert_eq!(parsed, anchor);
        }
    }

    // --- Col shorthand tests ---

    #[test]
    fn col_shorthand_constructors() {
        let fixed = Col::fixed(10);
        assert_eq!(fixed.width, Width::Fixed(10));

        let min = Col::min(5);
        assert_eq!(
            min.width,
            Width::Bounded {
                min: Some(5),
                max: None
            }
        );

        let bounded = Col::bounded(5, 20);
        assert_eq!(
            bounded.width,
            Width::Bounded {
                min: Some(5),
                max: Some(20)
            }
        );

        let fill = Col::fill();
        assert_eq!(fill.width, Width::Fill);

        let fraction = Col::fraction(3);
        assert_eq!(fraction.width, Width::Fraction(3));
    }

    #[test]
    fn col_shorthand_chaining() {
        let col = Col::fixed(10).right().anchor_right().style("header");
        assert_eq!(col.width, Width::Fixed(10));
        assert_eq!(col.align, Align::Right);
        assert_eq!(col.anchor, Anchor::Right);
        assert_eq!(col.style, Some("header".to_string()));
    }

    #[test]
    fn column_wrap_shorthand() {
        let col = Col::fill().wrap();
        assert!(matches!(col.overflow, Overflow::Wrap { indent: 0 }));

        let col_indent = Col::fill().wrap_indent(2);
        assert!(matches!(col_indent.overflow, Overflow::Wrap { indent: 2 }));
    }

    #[test]
    fn column_clip_shorthand() {
        let col = Col::fixed(10).clip();
        assert!(matches!(col.overflow, Overflow::Clip));
    }

    #[test]
    fn column_named() {
        let col = Col::fixed(10).named("author");
        assert_eq!(col.name, Some("author".to_string()));
    }

    // --- Column tests ---

    #[test]
    fn column_defaults() {
        let col = Column::default();
        assert!(matches!(
            col.width,
            Width::Bounded {
                min: None,
                max: None
            }
        ));
        assert_eq!(col.align, Align::Left);
        assert_eq!(col.anchor, Anchor::Left);
        assert!(matches!(
            col.overflow,
            Overflow::Truncate {
                at: TruncateAt::End,
                ..
            }
        ));
        assert_eq!(col.null_repr, "-");
        assert!(col.style.is_none());
    }

    #[test]
    fn column_fluent_api() {
        let col = Column::new(Width::Fixed(10))
            .align(Align::Right)
            .truncate(TruncateAt::Middle)
            .ellipsis("...")
            .null_repr("N/A")
            .style("header");

        assert_eq!(col.width, Width::Fixed(10));
        assert_eq!(col.align, Align::Right);
        assert!(matches!(
            col.overflow,
            Overflow::Truncate {
                at: TruncateAt::Middle,
                ref marker
            } if marker == "..."
        ));
        assert_eq!(col.null_repr, "N/A");
        assert_eq!(col.style, Some("header".to_string()));
    }

    #[test]
    fn column_builder() {
        let col = Column::builder()
            .fixed(15)
            .align(Align::Center)
            .truncate(TruncateAt::Start)
            .build();

        assert_eq!(col.width, Width::Fixed(15));
        assert_eq!(col.align, Align::Center);
        assert!(matches!(
            col.overflow,
            Overflow::Truncate {
                at: TruncateAt::Start,
                ..
            }
        ));
    }

    #[test]
    fn column_builder_fill() {
        let col = Column::builder().fill().build();
        assert_eq!(col.width, Width::Fill);
    }

    // --- Decorations tests ---

    #[test]
    fn decorations_default() {
        let dec = Decorations::default();
        assert_eq!(dec.column_sep, "");
        assert_eq!(dec.row_prefix, "");
        assert_eq!(dec.row_suffix, "");
    }

    #[test]
    fn decorations_with_separator() {
        let dec = Decorations::with_separator("  ");
        assert_eq!(dec.column_sep, "  ");
    }

    #[test]
    fn decorations_overhead() {
        let dec = Decorations::default()
            .separator("  ")
            .prefix("│ ")
            .suffix(" │");

        // 3 columns: prefix(2) + suffix(2) + 2 separators(4) = 8
        assert_eq!(dec.overhead(3), 8);
        // 1 column: prefix(2) + suffix(2) + 0 separators = 4
        assert_eq!(dec.overhead(1), 4);
        // 0 columns: just prefix + suffix
        assert_eq!(dec.overhead(0), 4);
    }

    // --- FlatDataSpec tests ---

    #[test]
    fn flat_data_spec_builder() {
        let spec = FlatDataSpec::builder()
            .column(Column::new(Width::Fixed(8)))
            .column(Column::new(Width::Fill))
            .column(Column::new(Width::Fixed(10)))
            .separator("  ")
            .build();

        assert_eq!(spec.num_columns(), 3);
        assert!(spec.has_fill_column());
        assert_eq!(spec.decorations.column_sep, "  ");
    }

    #[test]
    fn table_spec_no_fill() {
        let spec = TabularSpec::builder()
            .column(Column::new(Width::Fixed(8)))
            .column(Column::new(Width::Fixed(10)))
            .build();

        assert!(!spec.has_fill_column());
    }

    #[test]
    fn extract_fields_from_json() {
        let json = serde_json::json!({
            "name": "Alice",
            "meta": {
                "age": 30,
                "role": "admin"
            }
        });

        let spec = FlatDataSpec::builder()
            .column(Column::new(Width::Fixed(10)).key("name"))
            .column(Column::new(Width::Fixed(5)).key("meta.age"))
            .column(Column::new(Width::Fixed(10)).key("meta.role"))
            .column(Column::new(Width::Fixed(10)).key("missing.field")) // Should use null_repr
            .build();

        let row = spec.extract_row(&json);
        assert_eq!(row[0], "Alice");
        assert_eq!(row[1], "30"); // Numbers coerced to string
        assert_eq!(row[2], "admin");
        assert_eq!(row[3], "-"); // Default null_repr
    }

    #[test]
    fn extract_header_row() {
        let spec = FlatDataSpec::builder()
            .column(Column::new(Width::Fixed(10)).header("Name").key("name"))
            .column(Column::new(Width::Fixed(5)).key("age")) // Fallback to key
            .column(Column::new(Width::Fixed(10))) // Empty
            .build();

        let header = spec.extract_header();
        assert_eq!(header[0], "Name");
        assert_eq!(header[1], "age");
        assert_eq!(header[2], "");
    }

    // --- SubColumn tests ---

    #[test]
    fn sub_column_defaults() {
        let sc = SubColumn::default();
        assert_eq!(sc.width, Width::Fill);
        assert_eq!(sc.align, Align::Left);
        assert!(sc.name.is_none());
        assert!(sc.style.is_none());
        assert_eq!(sc.null_repr, "");
    }

    #[test]
    fn sub_column_fluent_api() {
        let sc = SubColumn::new(Width::Fixed(10))
            .named("tag")
            .right()
            .style("tag_style")
            .null_repr("N/A");

        assert_eq!(sc.width, Width::Fixed(10));
        assert_eq!(sc.name, Some("tag".to_string()));
        assert_eq!(sc.align, Align::Right);
        assert_eq!(sc.style, Some("tag_style".to_string()));
        assert_eq!(sc.null_repr, "N/A");
    }

    #[test]
    fn sub_col_shorthand_constructors() {
        let fill = SubCol::fill();
        assert_eq!(fill.width, Width::Fill);

        let fixed = SubCol::fixed(10);
        assert_eq!(fixed.width, Width::Fixed(10));

        let bounded = SubCol::bounded(0, 30);
        assert_eq!(
            bounded.width,
            Width::Bounded {
                min: Some(0),
                max: Some(30)
            }
        );

        let max = SubCol::max(20);
        assert_eq!(
            max.width,
            Width::Bounded {
                min: None,
                max: Some(20)
            }
        );

        let min = SubCol::min(5);
        assert_eq!(
            min.width,
            Width::Bounded {
                min: Some(5),
                max: None
            }
        );
    }

    #[test]
    fn sub_col_shorthand_chaining() {
        let sc = SubCol::bounded(0, 30).right().style("tag");
        assert_eq!(sc.align, Align::Right);
        assert_eq!(sc.style, Some("tag".to_string()));
    }

    // --- SubColumns validation tests ---

    #[test]
    fn sub_columns_valid_construction() {
        let result = SubColumns::new(vec![SubCol::fill(), SubCol::bounded(0, 30)], " ");
        assert!(result.is_ok());
        let sc = result.unwrap();
        assert_eq!(sc.columns.len(), 2);
        assert_eq!(sc.separator, " ");
    }

    #[test]
    fn sub_columns_rejects_empty() {
        let result = SubColumns::new(vec![], " ");
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("at least one"));
    }

    #[test]
    fn sub_columns_rejects_no_fill() {
        let result = SubColumns::new(vec![SubCol::fixed(10), SubCol::bounded(0, 30)], " ");
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("exactly one Fill"));
    }

    #[test]
    fn sub_columns_rejects_two_fills() {
        let result = SubColumns::new(vec![SubCol::fill(), SubCol::fill()], " ");
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("exactly one Fill"));
    }

    #[test]
    fn sub_columns_rejects_fraction() {
        let result = SubColumns::new(
            vec![SubCol::fill(), SubColumn::new(Width::Fraction(2))],
            " ",
        );
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Fraction"));
    }

    #[test]
    fn sub_columns_serde_roundtrip() {
        let sc = SubColumns::new(
            vec![
                SubCol::fill().named("title"),
                SubCol::bounded(0, 30).right().named("tag"),
            ],
            "  ",
        )
        .unwrap();

        let json = serde_json::to_string(&sc).unwrap();
        let parsed: SubColumns = serde_json::from_str(&json).unwrap();
        assert_eq!(parsed.columns.len(), 2);
        assert_eq!(parsed.separator, "  ");
        assert_eq!(parsed.columns[0].width, Width::Fill);
        assert_eq!(
            parsed.columns[1].width,
            Width::Bounded {
                min: Some(0),
                max: Some(30)
            }
        );
    }

    #[test]
    fn column_with_sub_columns() {
        let sub_cols =
            SubColumns::new(vec![SubCol::fill(), SubCol::bounded(0, 30).right()], " ").unwrap();

        let col = Col::fill().sub_columns(sub_cols);
        assert!(col.sub_columns.is_some());
        assert_eq!(col.sub_columns.unwrap().columns.len(), 2);
    }

    #[test]
    fn column_builder_with_sub_columns() {
        let sub_cols = SubColumns::new(vec![SubCol::fill(), SubCol::fixed(8)], " ").unwrap();

        let col = Column::builder().fill().sub_columns(sub_cols).build();

        assert_eq!(col.width, Width::Fill);
        assert!(col.sub_columns.is_some());
    }
}