@bonniernews/dn-design-system-web 16.0.3 → 16.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
@@ -4,6 +4,21 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
4
4
 
5
5
 
6
6
 
7
+ ## [16.0.5](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@16.0.4...@bonniernews/dn-design-system-web@16.0.5) (2024-07-12)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **web:** hide buttons in factbox for screen readers ([#1332](https://github.com/BonnierNews/dn-design-system/issues/1332)) ([6d39bd6](https://github.com/BonnierNews/dn-design-system/commit/6d39bd6415ecf6c99ca74617d5fc5c083900e444))
13
+
14
+ ## [16.0.4](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@16.0.3...@bonniernews/dn-design-system-web@16.0.4) (2024-07-11)
15
+
16
+
17
+ ### Maintenance
18
+
19
+ * **foundations:** update tokens from Figma ([#1335](https://github.com/BonnierNews/dn-design-system/issues/1335)) ([77ce854](https://github.com/BonnierNews/dn-design-system/commit/77ce854eda8933d226b122656c73a9b28c9170a7))
20
+ * prerelease packages ([4b75d0a](https://github.com/BonnierNews/dn-design-system/commit/4b75d0a2bf2c7a59b4883e0c91c17caa7270740e))
21
+
7
22
  ## [16.0.3](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@16.0.2...@bonniernews/dn-design-system-web@16.0.3) (2024-07-09)
8
23
 
9
24
 
@@ -34,6 +34,7 @@
34
34
  iconPosition: 'right',
35
35
  iconName: 'expand_more',
36
36
  classNames: 'ds-factbox__expand-more',
37
+ attributes: { "aria-hidden": "true" },
37
38
  mobile: { fullWidth: true },
38
39
  forcePx: params.forcePx
39
40
  })}}
@@ -44,6 +45,7 @@
44
45
  iconPosition: 'right',
45
46
  iconName: 'expand_less',
46
47
  classNames: 'ds-factbox__expand-less',
48
+ attributes: { "aria-hidden": "true" },
47
49
  mobile: { fullWidth: true },
48
50
  forcePx: params.forcePx
49
51
  })}}
@@ -54,3 +54,4 @@ $ds-typography-functionalheading03: 'functionalheading03';
54
54
  $ds-typography-functionalheading04: 'functionalheading04';
55
55
  $ds-typography-functionalheading05: 'functionalheading05';
56
56
  $ds-typography-functionalheading06: 'functionalheading06';
57
+ $ds-typography-functionalbody03: 'functionalbody03';
@@ -396,5 +396,12 @@ $typographyTokensScreenExtraLarge: (
396
396
  fontSize: 40,
397
397
  lineHeight: 1.1,
398
398
  letterSpacing: 0
399
+ ),
400
+ functionalbody03: (
401
+ fontFamily: "DN Sans",
402
+ fontWeight: Regular,
403
+ fontSize: 18,
404
+ lineHeight: 1.5,
405
+ letterSpacing: 0
399
406
  )
400
407
  );
@@ -397,5 +397,12 @@ $typographyTokensScreenLarge: (
397
397
  fontSize: 40,
398
398
  lineHeight: 1.1,
399
399
  letterSpacing: 0
400
+ ),
401
+ functionalbody03: (
402
+ fontFamily: "DN Sans",
403
+ fontWeight: Regular,
404
+ fontSize: 18,
405
+ lineHeight: 1.5,
406
+ letterSpacing: 0
400
407
  )
401
408
  );
@@ -397,5 +397,12 @@ $typographyTokensScreenSmall: (
397
397
  fontSize: 32,
398
398
  lineHeight: 1.1,
399
399
  letterSpacing: 0
400
+ ),
401
+ functionalbody03: (
402
+ fontFamily: "DN Sans",
403
+ fontWeight: Regular,
404
+ fontSize: 18,
405
+ lineHeight: 1.5,
406
+ letterSpacing: 0
400
407
  )
401
408
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "16.0.3",
3
+ "version": "16.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",
@@ -54,5 +54,6 @@
54
54
  "functionalheading03": "'functionalheading03'",
55
55
  "functionalheading04": "'functionalheading04'",
56
56
  "functionalheading05": "'functionalheading05'",
57
- "functionalheading06": "'functionalheading06'"
57
+ "functionalheading06": "'functionalheading06'",
58
+ "functionalbody03": "'functionalbody03'"
58
59
  }