@dillingerstaffing/strand-svelte 0.16.0 → 0.16.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.
@@ -736,12 +736,27 @@ body.strand-banner-active .strand-instrument-viewport--full-bleed {
736
736
  }
737
737
 
738
738
  /* ── Channel grid helpers ──
739
- Layout helpers for a content-sized card grid with an inline
740
- next-event preview row. Useful for membership grids, channel
741
- listings, and similar layouts where cards must size to their
742
- content rather than fill a fixed cell. */
739
+ Equal-height card row with a natural top-to-bottom stack inside each
740
+ card and the final horizontal row (the CTA) anchored to the card's
741
+ bottom edge. Cards in the same row align to the tallest card's
742
+ height; an uneven content mix never produces the ragged-bottom look
743
+ where some cards end tall and others stop short. Useful for channel
744
+ listings, membership grids, and any layout where cards carry a
745
+ primary CTA that must read as the shared affordance across the row. */
743
746
  .strand-channel-grid {
744
- align-items: start;
747
+ align-items: stretch;
748
+ }
749
+ .strand-channel-grid > .strand-card {
750
+ display: flex;
751
+ flex-direction: column;
752
+ }
753
+ .strand-channel-grid > .strand-card > .strand-stack--vertical {
754
+ flex: 1;
755
+ display: flex;
756
+ flex-direction: column;
757
+ }
758
+ .strand-channel-grid > .strand-card > .strand-stack--vertical > .strand-stack--horizontal:last-child {
759
+ margin-top: auto;
745
760
  }
746
761
 
747
762
  .strand-channel-title {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dillingerstaffing/strand-svelte",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "description": "Strand UI - Svelte component library built on the Strand Design Language",
5
5
  "author": "Dillinger Staffing <engineering@dillingerstaffing.com> (https://dillingerstaffing.com)",
6
6
  "license": "MIT",
@@ -56,7 +56,7 @@
56
56
  "svelte": "^4.0.0 || ^5.0.0"
57
57
  },
58
58
  "dependencies": {
59
- "@dillingerstaffing/strand": "^0.16.0"
59
+ "@dillingerstaffing/strand": "^0.16.1"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@sveltejs/vite-plugin-svelte": "^5.0.0",