@kolkrabbi/kol-component 0.74.0 → 0.74.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-component",
3
- "version": "0.74.0",
3
+ "version": "0.74.1",
4
4
  "description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -227,7 +227,11 @@ export default function ContentText({
227
227
  )
228
228
  }
229
229
 
230
- const nodes = order.map(render)
230
+ /* NOT `order.map(render)`: map passes (entry, index, ARRAY) and the array
231
+ * landed in `trailing`, so every top-level stack right-aligned — the article
232
+ * card's title and body sat flush right under left-aligned tags for eleven
233
+ * days (found on the comparison page, 2026-08-26). */
234
+ const nodes = order.map((entry, i) => render(entry, i))
231
235
 
232
236
  return (
233
237
  <div