@bonniernews/dn-design-system-web 31.2.4 → 31.3.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,32 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [31.3.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@31.2.5...@bonniernews/dn-design-system-web@31.3.0) (2025-04-14)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **web:** break long words in split teaser ([#1684](https://github.com/BonnierNews/dn-design-system/issues/1684)) ([dfa70a6](https://github.com/BonnierNews/dn-design-system/commit/dfa70a6ceda7fd525d28636fa09a8b2f424ca467))
|
|
13
|
+
|
|
14
|
+
## [31.2.5](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@31.2.4...@bonniernews/dn-design-system-web@31.2.5) (2025-04-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **app:** medium fontweight Button ([#1686](https://github.com/BonnierNews/dn-design-system/issues/1686)) ([392b0cb](https://github.com/BonnierNews/dn-design-system/commit/392b0cbb277868241c902c3096f3fc6b26b20dd2))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Maintenance
|
|
23
|
+
|
|
24
|
+
* **deps-dev:** bump @babel/runtime from 7.26.10 to 7.27.0 ([#1676](https://github.com/BonnierNews/dn-design-system/issues/1676)) ([3ccfb79](https://github.com/BonnierNews/dn-design-system/commit/3ccfb79956ad5fb3dd3b5e37284b66a1f7219f8b))
|
|
25
|
+
* **deps-dev:** bump axios from 1.8.3 to 1.8.4 ([#1673](https://github.com/BonnierNews/dn-design-system/issues/1673)) ([109626a](https://github.com/BonnierNews/dn-design-system/commit/109626ad5a55ed72ade512fdc637d5467e2e986c))
|
|
26
|
+
* **deps:** bump @babel/core from 7.26.9 to 7.26.10 ([#1674](https://github.com/BonnierNews/dn-design-system/issues/1674)) ([3c3f13b](https://github.com/BonnierNews/dn-design-system/commit/3c3f13bc6fd2a717df6fb246926270e5b464f7cf))
|
|
27
|
+
* **deps:** bump image-size from 1.1.1 to 1.2.1 ([#1682](https://github.com/BonnierNews/dn-design-system/issues/1682)) ([a72069f](https://github.com/BonnierNews/dn-design-system/commit/a72069f588010790e8a3948b10ea4aea9a74a778))
|
|
28
|
+
* **deps:** bump sass from 1.85.1 to 1.86.3 ([#1687](https://github.com/BonnierNews/dn-design-system/issues/1687)) ([f9d6b2d](https://github.com/BonnierNews/dn-design-system/commit/f9d6b2dffe546b265827b4ac45d2eaa7a5da8a8c))
|
|
29
|
+
* **foundations:** update variables from Figma ([#1690](https://github.com/BonnierNews/dn-design-system/issues/1690)) ([5a02617](https://github.com/BonnierNews/dn-design-system/commit/5a02617feeb8bab5625efdcf58e180595f344294))
|
|
30
|
+
* prerelease packages ([8ea072c](https://github.com/BonnierNews/dn-design-system/commit/8ea072cbb2df3b10d3fdb422403784dab24be9a6))
|
|
31
|
+
* prerelease packages ([80145b7](https://github.com/BonnierNews/dn-design-system/commit/80145b7da82f182783a16d2484e2a39edcaf3fd3))
|
|
32
|
+
|
|
7
33
|
## [31.2.4](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@31.2.3...@bonniernews/dn-design-system-web@31.2.4) (2025-03-27)
|
|
8
34
|
|
|
9
35
|
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
display: block;
|
|
32
32
|
position: relative;
|
|
33
33
|
flex: 1;
|
|
34
|
+
min-width: 0; // Keep teaser from becoming too wide when it contains long word.
|
|
34
35
|
margin-right: ds-spacing($ds-s-100);
|
|
36
|
+
|
|
35
37
|
&:last-child {
|
|
36
38
|
margin-right: 0;
|
|
37
39
|
}
|
|
@@ -73,6 +75,10 @@
|
|
|
73
75
|
@include ds-typography($ds-typography-detail-teaser-twin);
|
|
74
76
|
}
|
|
75
77
|
|
|
78
|
+
.ds-teaser__text {
|
|
79
|
+
overflow-wrap: break-word;
|
|
80
|
+
}
|
|
81
|
+
|
|
76
82
|
.ds-teaser__media {
|
|
77
83
|
margin-top: ds-spacing($ds-s-025);
|
|
78
84
|
|
package/package.json
CHANGED