# React Chrono 3.2.0 - Product: React Chrono (https://whatsnew.fyi/product/react-chrono) - Vendor: Prabhu Murthy - Date: 2025-11-08 - Version: 3.2.0 - Original notes: https://github.com/prabhuignoto/react-chrono/releases/tag/3.2.0 - Permalink: https://whatsnew.fyi/product/react-chrono/releases/3.2.0 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **fixed** — Fix links, buttons, and form inputs not working inside timeline cards - **added** — Add fine-grained control over card content alignment with horizontal and vertical options - **fixed** — Fix array mutation bug causing items to be skipped during dynamic loading - **fixed** — Fix timeline not updating correctly when using Array.map() to render children dynamically - **fixed** — Verify hash-based comparison prevents circular structure errors with React components in content - **added** — Add auto card height feature to automatically size cards based on content ##### 🐛 Bug Fixes ### Interactive Elements (#490) Fixed links, buttons, and form inputs not working inside timeline cards. Interactive elements now function correctly without triggering card selection. ### Content Alignment (#431) Added fine-grained control over card content alignment: ```jsx content={{ alignment: { horizontal: 'center', vertical: 'center' }}} ``` Dynamic Loading (#135) Fixed array mutation bug causing items to be skipped during dynamic loading. All items now load correctly. Array.map() Pattern (#291) Timeline now correctly updates when using Array.map() to render children dynamically. Circular JSON (#463) Verified hash-based comparison prevents circular structure errors with React components in content. ✨ New Features Auto Card Height (#498) Cards can now automatically size based on content: ` layout={{ cardHeight: 'auto' }}`