stack-site-builder 1.17.4 → 1.17.5

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/CHANGELOG.md CHANGED
@@ -23,6 +23,12 @@ here is a plain version bump they pull in.
23
23
  its slide leaves the screen — the deck never carries a live embed between
24
24
  slides.
25
25
 
26
+ ### Fixed
27
+
28
+ - **Table label columns wrapped** — in a wide table the first column got
29
+ squeezed to its minimum width, breaking short labels ("Part 1") onto two
30
+ lines. The first column of prose and slide tables no longer wraps.
31
+
26
32
  ## [1.17.3] - 2026-07-22
27
33
 
28
34
  ### Fixed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stack-site-builder",
3
3
  "type": "module",
4
- "version": "1.17.4",
4
+ "version": "1.17.5",
5
5
  "license": "MIT",
6
6
  "description": "The engine behind the awesome-*-stack catalog sites: an Astro theme with the catalog/concepts/articles/slides/samples routes, components, styles and markdown pipeline. Sites provide content, taxonomy data and config.",
7
7
  "repository": {
@@ -2384,3 +2384,11 @@ summary {
2384
2384
  .aas-embed.running .aas-embed-run {
2385
2385
  display: none;
2386
2386
  }
2387
+
2388
+ /* Tables: keep the first (label) column on one line — a wide table otherwise
2389
+ squeezes short labels like "Part 1" into two rows. Applies to reading prose
2390
+ and slide-deck tables alike; label columns are short by convention. */
2391
+ .prose :where(table) :where(th, td):first-child,
2392
+ .aas-slide :where(table) :where(th, td):first-child {
2393
+ white-space: nowrap;
2394
+ }