spoko-design-system 1.14.0 → 1.14.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.14.1](https://github.com/polo-blue/sds/compare/v1.14.0...v1.14.1) (2025-12-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **jumbotron:** fix description order in PostSplit variant ([679a45e](https://github.com/polo-blue/sds/commit/679a45e3b7be9e39dd65691edf61bc5564136881))
6
+
1
7
  ## [1.14.0](https://github.com/polo-blue/sds/compare/v1.13.3...v1.14.0) (2025-12-07)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoko-design-system",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "main": "./index.ts",
@@ -65,7 +65,7 @@ const cleanTitle = stripHtml(title);
65
65
  <div class="jumbotron-split-content">
66
66
  <h1 class="jumbotron-split-title" set:html={title} />
67
67
 
68
- {description && <p class="jumbotron-description" set:html={description} />}
68
+ {description && <p class="jumbotron-description order-3 w-full" set:html={description} />}
69
69
 
70
70
  {
71
71
  hasCategories && (
@@ -59,7 +59,7 @@ export const jumbotronShortcuts = [
59
59
  'jumbotron-split-title',
60
60
  'font-headlight text-3xl md:(text-4xl mb-3) xl:text-11 mt-1 order-2 line-clamp-3 pb-1 w-full',
61
61
  ],
62
- ['jumbotron-split-meta', 'order-3 flex items-center text-gray-100'],
62
+ ['jumbotron-split-meta', 'order-4 flex items-center text-gray-100'],
63
63
  ['jumbotron-split-image-wrapper', 'relative -mb-8 md:(mt-4 -ml-4 mr-4) xl:(ml-0 mr-0)'],
64
64
  ['jumbotron-split-image', 'relative shadow-xl md:max-h-112 overflow-hidden md:ml-auto'],
65
65
  ['jumbotron-split-img', 'object-cover'],