@bonniernews/dn-design-system-web 2.1.0-alpha.18 → 2.1.0-alpha.19
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,15 @@
|
|
|
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
|
+
## 2.1.0-alpha.19 (2023-03-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **web:** byline and listitem outer spacing ([#705](https://github.com/BonnierNews/dn-design-system/issues/705)) ([35b1b1b](https://github.com/BonnierNews/dn-design-system/commit/35b1b1bd2e77e0ae8955ce11e4ab86420126a1ab))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [2.1.0-alpha.18](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@2.1.0-alpha.17...@bonniernews/dn-design-system-web@2.1.0-alpha.18) (2023-02-27)
|
|
7
16
|
|
|
8
17
|
|
|
@@ -23,7 +23,7 @@ $ds-byline__image-size: 44px;
|
|
|
23
23
|
&::after {
|
|
24
24
|
content: "";
|
|
25
25
|
height: ds-metrics-border-width(x1);
|
|
26
|
-
width: calc(100% - (ds-spacing-component(
|
|
26
|
+
width: calc(100% - (ds-spacing-component(outer) * 2));
|
|
27
27
|
background-color: $ds-color-border-primary;
|
|
28
28
|
position: absolute;
|
|
29
29
|
left: ds-spacing-component(x4);
|
|
@@ -39,7 +39,7 @@ $ds-byline__image-size: 44px;
|
|
|
39
39
|
align-items: center;
|
|
40
40
|
justify-content: space-between;
|
|
41
41
|
position: relative;
|
|
42
|
-
padding: ds-spacing-component(x4);
|
|
42
|
+
padding: ds-spacing-component(x4 outer);
|
|
43
43
|
width: 100%;
|
|
44
44
|
|
|
45
45
|
&::before {
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
@use "../button-toggle/button-toggle.scss" as *;
|
|
7
7
|
|
|
8
8
|
$ds-list-item__icon-size: 24px;
|
|
9
|
-
$ds-list-item__padding: ds-spacing-component(x4);
|
|
10
9
|
|
|
11
10
|
.ds-list-item__outer {
|
|
12
11
|
list-style: none;
|
|
@@ -34,7 +33,7 @@ $ds-list-item__padding: ds-spacing-component(x4);
|
|
|
34
33
|
align-items: center;
|
|
35
34
|
justify-content: space-between;
|
|
36
35
|
position: relative;
|
|
37
|
-
padding:
|
|
36
|
+
padding: ds-spacing-component(x4 outer);
|
|
38
37
|
width: 100%;
|
|
39
38
|
|
|
40
39
|
&::before {
|
|
@@ -241,13 +240,13 @@ $ds-list-item__padding: ds-spacing-component(x4);
|
|
|
241
240
|
cursor: default;
|
|
242
241
|
.ds-list-item__inner {
|
|
243
242
|
display: flex;
|
|
244
|
-
padding: 0 0 0
|
|
243
|
+
padding: 0 0 0 ds-spacing-component(outer);
|
|
245
244
|
}
|
|
246
245
|
.ds-list-item__titles {
|
|
247
|
-
padding:
|
|
246
|
+
padding: ds-spacing-component(x4) 0;
|
|
248
247
|
}
|
|
249
248
|
.ds-btn-toggle {
|
|
250
|
-
margin: 0
|
|
249
|
+
margin: 0 ds-spacing-component(outer) 0 ds-spacing-component(x4);
|
|
251
250
|
}
|
|
252
251
|
a {
|
|
253
252
|
@include ds-link($ds-link-list);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonniernews/dn-design-system-web",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.19",
|
|
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",
|