@bonniernews/dn-design-system-web 3.0.0-alpha.45 → 3.0.0-alpha.47

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
+ ## 3.0.0-alpha.47 (2023-05-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **web:** set standardteaser image width to 196px ([#798](https://github.com/BonnierNews/dn-design-system/issues/798)) ([5911856](https://github.com/BonnierNews/dn-design-system/commit/59118561f6166b2be2b68de068b7909117de2fda))
12
+
13
+
14
+
15
+ ## [3.0.0-alpha.46](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@3.0.0-alpha.45...@bonniernews/dn-design-system-web@3.0.0-alpha.46) (2023-05-05)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **web:** avoid wordWrapping imageCredit ([#795](https://github.com/BonnierNews/dn-design-system/issues/795)) ([94d62ca](https://github.com/BonnierNews/dn-design-system/commit/94d62ca5bc1489d8c803f99662690baa48823f5d))
21
+
22
+
23
+
6
24
  ## [3.0.0-alpha.45](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@3.0.0-alpha.44...@bonniernews/dn-design-system-web@3.0.0-alpha.45) (2023-05-05)
7
25
 
8
26
 
@@ -11,5 +11,6 @@
11
11
 
12
12
  > .ds-article-image__credits {
13
13
  color: $ds-color-text-primary-02;
14
+ white-space: nowrap;
14
15
  }
15
16
  }
@@ -10,6 +10,14 @@ Also known as "På Plats-puffen".
10
10
 
11
11
  In the CMS title will be set to a location like "Kiev, Ukraina" or "USA" and text is usually set to some author names like "Jan Banan och Kalle Kula"
12
12
 
13
+ The worldMap has to be set by the parent page as a CSS variable. This is done in the StoryBook and will have to be done from the production website codebase.
14
+
15
+ ```
16
+ :root {
17
+ --ds-onsite-background-image-url: url("https://i.imgur.com/GJh7Fbl.png");
18
+ }
19
+ ```
20
+
13
21
  ## Parameters
14
22
 
15
23
  |parameter | type | required | options | default | description |
@@ -27,8 +27,8 @@
27
27
  }
28
28
 
29
29
  @include ds-mq-smallest-breakpoint(tablet) {
30
- min-width: 224px;
31
- max-width: 224px;
30
+ min-width: 196px;
31
+ max-width: 196px;
32
32
  }
33
33
 
34
34
  .teaser__video {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "3.0.0-alpha.45",
3
+ "version": "3.0.0-alpha.47",
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",