@bonniernews/dn-design-system-web 33.0.5 → 33.0.6

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,14 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [33.0.6](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@33.0.5...@bonniernews/dn-design-system-web@33.0.6) (2025-09-15)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **web:** fix issue with test in dev ([#1893](https://github.com/BonnierNews/dn-design-system/issues/1893)) ([1ce6d65](https://github.com/BonnierNews/dn-design-system/commit/1ce6d65afddea575ff70db96d84d1c8be67061c7))
13
+ * **web:** fix teaser native hover effect bug ([#1892](https://github.com/BonnierNews/dn-design-system/issues/1892)) ([03efc3c](https://github.com/BonnierNews/dn-design-system/commit/03efc3ccae30bf6d3f4ee1d77b7368757305ae77))
14
+
7
15
  ## [33.0.5](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@33.0.4...@bonniernews/dn-design-system-web@33.0.5) (2025-09-10)
8
16
 
9
17
 
@@ -40,6 +40,12 @@
40
40
  left: 0;
41
41
  z-index: 2;
42
42
  padding: ds-spacing($ds-s-100);
43
+
44
+ @include ds-hover(true) {
45
+ .ds-teaser__title {
46
+ @include ds-underline();
47
+ }
48
+ }
43
49
  }
44
50
 
45
51
  &:not(:has(.ds-teaser-image)) {
@@ -20,6 +20,12 @@
20
20
  .ds-teaser__content {
21
21
  display: block;
22
22
  padding: ds-spacing($ds-s-075 $ds-s-100 $ds-s-100);
23
+
24
+ @include ds-hover(true) {
25
+ .ds-teaser__title {
26
+ @include ds-underline();
27
+ }
28
+ }
23
29
  }
24
30
 
25
31
  .ds-teaser__title {
@@ -41,6 +41,12 @@
41
41
 
42
42
  @include ds-teaser-focus(4px);
43
43
 
44
+ @include ds-hover(true) {
45
+ .ds-teaser__title {
46
+ @include ds-underline();
47
+ }
48
+ }
49
+
44
50
  @include ds-mq-largest-breakpoint(mobile) {
45
51
  width: calc(50% - ds-spacing($ds-s-100) / 2);
46
52
  flex: auto;
@@ -22,6 +22,12 @@
22
22
  background: linear-gradient(var(--ds-color-gradients-overlay-end), var(--ds-color-gradients-overlay-start));
23
23
  z-index: 2;
24
24
  }
25
+
26
+ @include ds-hover(true) {
27
+ .ds-teaser__title {
28
+ @include ds-underline();
29
+ }
30
+ }
25
31
  }
26
32
 
27
33
  .ds-teaser__title,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "33.0.5",
3
+ "version": "33.0.6",
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",