@bonniernews/dn-design-system-web 3.0.0-alpha.25 → 3.0.0-alpha.26

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,14 @@
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.26](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@3.0.0-alpha.25...@bonniernews/dn-design-system-web@3.0.0-alpha.26) (2023-04-06)
7
+
8
+ **Note:** Version bump only for package @bonniernews/dn-design-system-web
9
+
10
+
11
+
12
+
13
+
6
14
  ## 3.0.0-alpha.25 (2023-04-05)
7
15
 
8
16
  **Note:** Version bump only for package @bonniernews/dn-design-system-web
@@ -1,11 +1,12 @@
1
1
  @use "../../foundations/helpers/forward.helpers.scss" as *;
2
2
  @use "../button/button.scss" as *;
3
3
 
4
- $ds-factbox__grade-size: 40px + (ds-metrics-border-width(x2) * 2);
4
+ $ds-factbox__grade-size: 40px;
5
5
  $ds-factbox__show-more-fade-height: 48px;
6
6
  $ds-factbox__padding: ds-spacing-component($ds-sc-x4);
7
7
  /* stylelint-disable-next-line */
8
- $ds-factbox__padding-left: $ds-factbox__padding - ds-metrics-border-width(x2);
8
+ $ds-factbox-border-width: 4px;
9
+ $ds-factbox__padding-left: $ds-factbox__padding - $ds-factbox-border-width;
9
10
  $ds-factbox__max-height: 500px; // includes top/bottom spacing
10
11
 
11
12
  .ds-factbox {
@@ -18,7 +19,7 @@ $ds-factbox__max-height: 500px; // includes top/bottom spacing
18
19
 
19
20
  .ds-factbox__inner {
20
21
  border-top: ds-metrics-border-width(x1) solid $ds-color-border-primary;
21
- border-left: ds-metrics-border-width(x2) solid $ds-color-component-brand;
22
+ border-left: $ds-factbox-border-width solid $ds-color-component-brand;
22
23
  max-height: ds-px-to-rem($ds-factbox__max-height);
23
24
  overflow: hidden;
24
25
  position: relative;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "3.0.0-alpha.25",
3
+ "version": "3.0.0-alpha.26",
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",