@bonniernews/dn-design-system-web 34.0.0 → 34.1.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,13 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [34.1.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@34.0.0...@bonniernews/dn-design-system-web@34.1.0) (2025-10-27)
8
+
9
+
10
+ ### Features
11
+
12
+ * **web:** new body lineheight to match camy and bang ([#1928](https://github.com/BonnierNews/dn-design-system/issues/1928)) ([1dc9379](https://github.com/BonnierNews/dn-design-system/commit/1dc9379c87a4625e851d7116ef45d37964ed1e3b))
13
+
7
14
  ## [34.0.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@33.0.9...@bonniernews/dn-design-system-web@34.0.0) (2025-10-08)
8
15
 
9
16
 
@@ -17,6 +17,7 @@
17
17
  padding: ds-spacing($ds-s-100);
18
18
  display: block;
19
19
  color: $ds-color-text-primary;
20
+ line-height: 0; // The parent of the inline-elements must have line-height 0 to ensure that the line-height set for the inline-elements actually has expected effect.
20
21
 
21
22
  .ds-teaser__title {
22
23
  display: inline;
@@ -21,3 +21,7 @@ body {
21
21
 
22
22
  scroll-behavior: smooth;
23
23
  }
24
+
25
+ body {
26
+ line-height: 1.2; // Should match our website codebases
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "34.0.0",
3
+ "version": "34.1.0",
4
4
  "description": "DN design system for web.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/BonnierNews/dn-design-system/tree/main/web/src#readme",