@bonniernews/dn-design-system-web 20.0.1 → 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,27 @@ 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
|
+
|
|
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)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* **web:** groupheader flex ([#1389](https://github.com/BonnierNews/dn-design-system/issues/1389)) ([dcf9dd0](https://github.com/BonnierNews/dn-design-system/commit/dcf9dd01968cef697d3781b0e5d486d95a5b2afb))
|
|
27
|
+
|
|
7
28
|
## [20.0.1](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@20.0.0...@bonniernews/dn-design-system-web@20.0.1) (2024-08-29)
|
|
8
29
|
|
|
9
30
|
|
|
@@ -9,8 +9,8 @@ $ds-group-header__icon-size: 24px;
|
|
|
9
9
|
--group-header-color: #{$ds-color-text-primary};
|
|
10
10
|
--group-header-icon-color: currentColor;
|
|
11
11
|
display: flex;
|
|
12
|
-
// 48px height is based on the value of SenasteNytt
|
|
13
|
-
flex:
|
|
12
|
+
// 48px height is based on the value of SenasteNytt. Useful for older browsers
|
|
13
|
+
flex-basis: ds-spacing($ds-s-300);
|
|
14
14
|
justify-content: space-between;
|
|
15
15
|
align-items: stretch;
|
|
16
16
|
background: var(--group-header-background);
|
|
@@ -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