@bonniernews/dn-design-system-web 6.0.4 → 6.0.5

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,15 @@
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
+ ## 6.0.5 (2023-10-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **web:** further updates to TeaserSwipeCard ([#1046](https://github.com/BonnierNews/dn-design-system/issues/1046)) ([307f6e7](https://github.com/BonnierNews/dn-design-system/commit/307f6e7025be770e068f78241b1dbccc7898cb03))
12
+
13
+
14
+
6
15
  ## 6.0.4 (2023-10-03)
7
16
 
8
17
 
@@ -24,7 +24,7 @@
24
24
  |classNames | String | no | | | Ex. "my-special-class" |
25
25
  |attributes | Object | no | | | Ex. { target: "_blank", "data-test": "lorem ipsum" } |
26
26
 
27
- NB: The `arrows` variant is only active in desktop environments. It is equivalent to `icon` in non-desktop environments.
27
+ NB: The `arrows` variant is only active in desktop environments. It is equivalent to `link` or `icon` in non-desktop environments, depending on if the `linkText` parameter is also given.
28
28
 
29
29
  Depending on variant, either the `toggle-*` or `linkText` parameters are allowed. In `icon` and `link` mode, the `href` parameter is required to show the ornament.
30
30
 
@@ -24,6 +24,10 @@
24
24
  </span>
25
25
  {% elif (params.variant == 'icon' or not params.variant) and params.href %}
26
26
  {{ IconUse({ icon: "arrow_forward", classNames: componentClassName + '__icon' }) }}
27
+ {% elif (params.variant == 'arrows') and params.href and params.linkText %}
28
+ <span class="{{ componentClassName + '__right-link' }} hidden-desktop">
29
+ {{ params.linkText }}
30
+ </span>
27
31
  {% elif (params.variant == 'arrows') and params.href %}
28
32
  {{ IconUse({ icon: "arrow_forward", classNames: componentClassName + '__icon hidden-desktop' }) }}
29
33
  {% endif %}
@@ -12,7 +12,7 @@
12
12
  classNamePrefix + size,
13
13
  classNamePrefix + (params.variant or "primary"),
14
14
  params.classNames if params.classNames
15
- ] %}
15
+ ] | join(" ") %}
16
16
 
17
17
  <span class="{{ classes }}" {{- attributes | safe }}>
18
18
  <span class="{{ componentClassName + '__inner'}}"></span>
@@ -23,7 +23,7 @@
23
23
  title: params.title,
24
24
  href: params.titleHref,
25
25
  variant: 'arrows' if arrowPosition === 'header' else 'link',
26
- linkText: 'Visa alla' if arrowPosition === 'floating'
26
+ linkText: 'Visa alla'
27
27
  }) }}
28
28
  <div class="{{ componentClassName + '__carousel'}}">
29
29
  {% for teaser in params.teasers %}
@@ -6,13 +6,13 @@
6
6
  .ds-teaser.ds-teaser-swipe-card {
7
7
  display: flex;
8
8
  flex-direction: column;
9
- width: 268px;
9
+ width: 248px;
10
10
  max-width: 66vw; // ensure low-width devices see atleast part of a second teaser
11
11
  color: $ds-color-text-primary;
12
12
  text-decoration: none;
13
13
 
14
14
  border: ds-metrics-border-width(x1) solid $ds-color-border-primary;
15
- border-radius: ds-metrics-border-radius(x2);
15
+ border-radius: ds-metrics-border-radius(x1);
16
16
  overflow: hidden; // ensure media doesn't overflow the border-radius
17
17
  margin-bottom: 0;
18
18
 
@@ -21,7 +21,7 @@
21
21
  .ds-teaser__text {
22
22
  display: flex;
23
23
  flex-direction: column;
24
- padding: ds-spacing-component($ds-sc-x3 $ds-sc-x4);
24
+ padding: ds-spacing-component($ds-sc-x3);
25
25
  margin: 0;
26
26
  flex: 1;
27
27
  }
@@ -33,7 +33,7 @@
33
33
 
34
34
  .ds-teaser__title {
35
35
  @include ds-typography($ds-typography-expressive-heading01bold);
36
- margin-bottom: ds-spacing-component($ds-sc-x1);
36
+ margin-bottom: ds-spacing-component($ds-sc-x2);
37
37
  flex: 1;
38
38
  }
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "6.0.4",
3
+ "version": "6.0.5",
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",