@bonniernews/dn-design-system-web 20.0.2 → 20.1.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,20 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [20.1.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.0.2...@bonniernews/dn-design-system-web@20.1.0) (2024-09-02)
8
+
9
+
10
+ ### Features
11
+
12
+ * **web:** teaserswipe accessibility with role list ([#1349](https://github.com/BonnierNews/dn-design-system/issues/1349)) ([4f42767](https://github.com/BonnierNews/dn-design-system/commit/4f4276758f7a7f2d0f0a95427030db805ceeee33))
13
+
14
+
15
+ ### Maintenance
16
+
17
+ * **deps:** bump dotenv from 16.0.3 to 16.4.5 ([#1383](https://github.com/BonnierNews/dn-design-system/issues/1383)) ([6a41efd](https://github.com/BonnierNews/dn-design-system/commit/6a41efd442fdc0f7c4abfc0c103352136d272540))
18
+ * **deps:** bump sass from 1.76.0 to 1.77.8 ([#1390](https://github.com/BonnierNews/dn-design-system/issues/1390)) ([d74b24f](https://github.com/BonnierNews/dn-design-system/commit/d74b24f1dd551d2dc54c4dc19b211a5aa90bd0ed))
19
+ * **deps:** bump webpack from 5.88.1 to 5.94.0 in /web ([#1380](https://github.com/BonnierNews/dn-design-system/issues/1380)) ([dc04329](https://github.com/BonnierNews/dn-design-system/commit/dc043296cf5ef7996910d3afa4489cb3502f5201))
20
+
7
21
  ## [20.0.2](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.0.1...@bonniernews/dn-design-system-web@20.0.2) (2024-08-29)
8
22
 
9
23
 
@@ -33,7 +33,7 @@
33
33
  type: type,
34
34
  linkText: 'Visa alla'
35
35
  }) }}
36
- <div class="{{ componentClassName + '__carousel'}}">
36
+ <div class="{{ componentClassName + '__carousel'}}" role="list">
37
37
  {% for teaser in params.teasers %}
38
38
  {{ TeaserSwipeCard(teaser) }}
39
39
  {% endfor %}
@@ -12,7 +12,7 @@
12
12
  ] | join(" ") %}
13
13
  {% set attributes = getAttributes(params.attributes) %}
14
14
 
15
- <a href="{{ params.href }}" class="{{ classes }}" {{- attributes | safe }}>
15
+ <a href="{{ params.href }}" class="{{ classes }}" {{- attributes | safe }} role="list-item">
16
16
  {% if params.variant != 'direkt' and params.mediaHtml %}
17
17
  {{ params.mediaHtml | safe }}
18
18
  {% endif %}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "20.0.2",
3
+ "version": "20.1.0",
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",