@bonniernews/dn-design-system-web 8.0.5 → 8.0.7
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
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 8.0.7 (2023-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **web:** add a top border to TeaserSplitContainer if it is the first item in a TeaserPackage ([#1080](https://github.com/BonnierNews/dn-design-system/issues/1080)) ([724cb80](https://github.com/BonnierNews/dn-design-system/commit/724cb80971de8da0120a2a789aa669306340482e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## 8.0.6 (2023-11-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **storybook:** show correct color hex in darkmode ([#1081](https://github.com/BonnierNews/dn-design-system/issues/1081)) ([01c8ba2](https://github.com/BonnierNews/dn-design-system/commit/01c8ba24e6bf0d3c6f1d461e4a7718c2392d44d4))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## 8.0.5 (2023-11-08)
|
|
7
25
|
|
|
8
26
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
> .ds-teaser::after,
|
|
14
|
-
> .ds-
|
|
14
|
+
> .ds-split-container::after {
|
|
15
15
|
content: "";
|
|
16
16
|
height: ds-metrics-border-width(x1);
|
|
17
17
|
background-color: $ds-color-border-primary;
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
z-index: 5;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
// first-child only triggers if there is no vignette
|
|
28
29
|
.ds-teaser--top-img::after,
|
|
30
|
+
> .ds-split-container:first-child::after,
|
|
29
31
|
> .ds-teaser:first-child::after {
|
|
30
32
|
display: none;
|
|
31
33
|
}
|
package/package.json
CHANGED