You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Mark as released (2026-01-28)
- Add defaultCellConfiguration feature
- Add deprecated delegate methods
- Update summary
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This release adds first-class support for **Auto Layout-driven cells** with automatic row heights and text wrapping. Use custom `UICollectionViewCell` subclasses with full constraint-based sizing to build rich, dynamic table layouts.
14
14
15
-
Also includes: new column width strategy API, major performance optimizations for large datasets, and bug fixes.
15
+
Also includes: **default cell configuration** for easy styling without custom cells, new column width strategy API, major performance optimizations for large datasets, and bug fixes.
16
16
17
17
### Column Width Mode API
18
18
- Added `DataTableColumnWidthMode` with explicit text-based and Auto Layout-based sizing.
@@ -114,6 +114,19 @@ config.columnWidthMode = .fitContentText(strategy: .maxMeasured) // Use font mea
- Use `DataTableConfiguration.defaultCellConfiguration` instead
150
+
151
+
---
152
+
130
153
### Fixed
131
154
132
155
-**Header column width calculation bug (unit mismatch)**: When using estimated widths, header titles were compared incorrectly against data widths. "Name" header (4 chars) was compared as `4` against data values measured in points (~35). Now both are in the same unit.
0 commit comments