@bonniernews/dn-design-system-web 20.0.0 → 20.0.2
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.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
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **web:** groupheader flex ([#1389](https://github.com/BonnierNews/dn-design-system/issues/1389)) ([dcf9dd0](https://github.com/BonnierNews/dn-design-system/commit/dcf9dd01968cef697d3781b0e5d486d95a5b2afb))
|
|
13
|
+
|
|
14
|
+
## [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)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **foundations:** update README for 'yarn storybook' ([#1367](https://github.com/BonnierNews/dn-design-system/issues/1367)) ([057d3d9](https://github.com/BonnierNews/dn-design-system/commit/057d3d9ce08058579bb6691184e9958e2a3c964b))
|
|
20
|
+
* **web:** groupheader minheight adjustments ([#1388](https://github.com/BonnierNews/dn-design-system/issues/1388)) ([a00e867](https://github.com/BonnierNews/dn-design-system/commit/a00e867148fe607bea3b2d697ef27ebd0f475e7b))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Maintenance
|
|
24
|
+
|
|
25
|
+
* **deps-dev:** bump @babel/preset-env from 7.25.3 to 7.25.4 ([#1386](https://github.com/BonnierNews/dn-design-system/issues/1386)) ([ddba71e](https://github.com/BonnierNews/dn-design-system/commit/ddba71ed2337fd3e7167b5b1f7c9b01db8dc39bc))
|
|
26
|
+
* **deps-dev:** bump axios from 1.7.4 to 1.7.5 ([#1385](https://github.com/BonnierNews/dn-design-system/issues/1385)) ([27d037f](https://github.com/BonnierNews/dn-design-system/commit/27d037f58ec422f91af6b59242d0456b335aa93c))
|
|
27
|
+
|
|
7
28
|
## [20.0.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@19.0.1...@bonniernews/dn-design-system-web@20.0.0) (2024-08-29)
|
|
8
29
|
|
|
9
30
|
|
|
@@ -9,16 +9,17 @@ $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. Useful for older browsers
|
|
13
|
+
flex-basis: ds-spacing($ds-s-300);
|
|
12
14
|
justify-content: space-between;
|
|
13
15
|
align-items: stretch;
|
|
14
|
-
// In ios13 and older, the height would be 0 due to flex so use this as a fallback to create a 48 px height
|
|
15
|
-
min-height: ds-spacing($ds-s-300);
|
|
16
16
|
background: var(--group-header-background);
|
|
17
17
|
color: var(--group-header-color);
|
|
18
18
|
@include ds-typography($ds-typography-functionalbody02);
|
|
19
19
|
|
|
20
20
|
&--bottom-border {
|
|
21
|
-
border-bottom: ds-border-width(x1) solid $ds-color-border-primary;
|
|
21
|
+
border-bottom: ds-border-width(x1) solid #{$ds-color-border-primary};
|
|
22
|
+
flex-basis: ds-spacing($ds-s-300) - 1px;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
&--bauta {
|
package/package.json
CHANGED