@bonniernews/dn-design-system-web 20.3.1 → 20.4.0

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
@@ -4,6 +4,21 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [20.4.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.3.2...@bonniernews/dn-design-system-web@20.4.0) (2024-09-17)
8
+
9
+
10
+ ### Features
11
+
12
+ * **web:** add sectionName to teasers used on tagpages ([#1404](https://github.com/BonnierNews/dn-design-system/issues/1404)) ([58cb46c](https://github.com/BonnierNews/dn-design-system/commit/58cb46c2b081bab2d87c7f65a989e3db2d80e02f))
13
+
14
+ ## [20.3.2](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.3.1...@bonniernews/dn-design-system-web@20.3.2) (2024-09-16)
15
+
16
+
17
+ ### Maintenance
18
+
19
+ * **deps:** update node for core build and github actions ([#1402](https://github.com/BonnierNews/dn-design-system/issues/1402)) ([8f87ba4](https://github.com/BonnierNews/dn-design-system/commit/8f87ba40efa20ccdf88dd32daecf8a9f4fb93550))
20
+ * prerelease packages ([109d8f1](https://github.com/BonnierNews/dn-design-system/commit/109d8f19a980ef40a2eb31dfa5073199b4f20e2f))
21
+
7
22
  ## [20.3.1](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.3.0...@bonniernews/dn-design-system-web@20.3.1) (2024-09-16)
8
23
 
9
24
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @bonniernews/dn-design-system-web
2
2
 
3
- Foundations, components and helpers of DN design system for web
3
+ Foundations, components and helpers of DN design system for web.
4
4
 
5
5
  ## Useful links
6
6
 
@@ -82,7 +82,8 @@
82
82
  {% elif params.publicationTime %}
83
83
  {{ TeaserFooter({
84
84
  variant: 'informationText',
85
- publicationTime: params.publicationTime
85
+ publicationTime: params.publicationTime,
86
+ sectionName: params.sectionName
86
87
  }) }}
87
88
  {% endif %}
88
89
  </div>
@@ -81,7 +81,8 @@
81
81
  {{
82
82
  TeaserFooter({
83
83
  variant: "informationText",
84
- publicationTime: params.publicationTime
84
+ publicationTime: params.publicationTime,
85
+ sectionName: params.sectionName
85
86
  })
86
87
  }}
87
88
  {% endif %}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "20.3.1",
3
+ "version": "20.4.0",
4
4
  "description": "DN design system for web.",
5
5
  "main": "index.js",
6
6
  "homepage": "https://github.com/BonnierNews/dn-design-system/tree/main/web/src#readme",