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

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,23 @@
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.28 (2023-04-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **web:** remove easing from hover effekt ([#753](https://github.com/BonnierNews/dn-design-system/issues/753)) ([86cce98](https://github.com/BonnierNews/dn-design-system/commit/86cce9804593683642ae2d44cd76803f06f340d6))
12
+
13
+
14
+
15
+ ## 3.0.0-alpha.27 (2023-04-13)
16
+
17
+ **Note:** Version bump only for package @bonniernews/dn-design-system-web
18
+
19
+
20
+
21
+
22
+
6
23
  ## [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
24
 
8
25
  **Note:** Version bump only for package @bonniernews/dn-design-system-web
@@ -33,7 +33,6 @@ $ds-byline__image-size: 44px;
33
33
  .ds-byline__inner {
34
34
  box-sizing: border-box;
35
35
  border-radius: 0;
36
- transition: background-color 50ms ease-out;
37
36
  margin: 0;
38
37
  display: flex;
39
38
  align-items: center;
@@ -51,7 +50,6 @@ $ds-byline__image-size: 44px;
51
50
  left: 0;
52
51
  bottom: 0;
53
52
  right: 0;
54
- transition: background-color 500ms ease;
55
53
  }
56
54
 
57
55
  .ds-icon {
@@ -23,7 +23,6 @@ $ds-btn-outlined__border-width: ds-metrics-border-width(x1);
23
23
  box-sizing: border-box;
24
24
  border-radius: $ds-icon-btn__border-radius;
25
25
  border: $ds-btn-outlined__border-width solid;
26
- transition: background-color 50ms ease-out;
27
26
  margin: 0;
28
27
  display: inline-flex;
29
28
  align-items: center;
@@ -23,7 +23,6 @@ $ds-btn-toggle-outlined__border-width: ds-metrics-border-width(x1);
23
23
  box-sizing: border-box;
24
24
  border-radius: $ds-icon-btn-toggle__border-radius;
25
25
  border: $ds-btn-toggle-outlined__border-width solid;
26
- transition: background-color 50ms ease-out;
27
26
  margin: 0;
28
27
  display: inline-flex;
29
28
  align-items: center;
@@ -27,7 +27,6 @@ $ds-list-item__icon-size: 24px;
27
27
  .ds-list-item__inner {
28
28
  box-sizing: border-box;
29
29
  border-radius: 0;
30
- transition: background-color 50ms ease-out;
31
30
  margin: 0;
32
31
  display: flex;
33
32
  align-items: center;
@@ -45,7 +44,6 @@ $ds-list-item__icon-size: 24px;
45
44
  left: 0;
46
45
  bottom: 0;
47
46
  right: 0;
48
- transition: background-color 500ms ease;
49
47
  }
50
48
 
51
49
  .ds-icon {
@@ -123,38 +123,38 @@ $typographyTokensScreenSmall: (
123
123
  fontFamily: "DN Serif",
124
124
  fontWeight: Regular,
125
125
  fontSize: 26,
126
- lineHeight: 32
126
+ lineHeight: 30
127
127
  ),
128
128
  expressive-heading04semibold: (
129
129
  fontFamily: "DN Serif",
130
130
  fontWeight: SemiBold,
131
131
  fontSize: 26,
132
- lineHeight: 32
132
+ lineHeight: 30
133
133
  ),
134
134
  expressive-heading04bold: (
135
135
  fontFamily: "DN Serif",
136
136
  fontWeight: Bold,
137
137
  fontSize: 26,
138
- lineHeight: 32
138
+ lineHeight: 30
139
139
  ),
140
140
  expressive-heading04italicregular: (
141
141
  fontFamily: "DN Serif Italic",
142
142
  fontWeight: Regular,
143
- lineHeight: 32,
143
+ lineHeight: 30,
144
144
  fontSize: 26,
145
145
  fontStyle: italic
146
146
  ),
147
147
  expressive-heading04italicsemibold: (
148
148
  fontFamily: "DN Serif Italic",
149
149
  fontWeight: SemiBold,
150
- lineHeight: 32,
150
+ lineHeight: 30,
151
151
  fontSize: 26,
152
152
  fontStyle: italic
153
153
  ),
154
154
  expressive-heading04italicbold: (
155
155
  fontFamily: "DN Serif Italic",
156
156
  fontWeight: Bold,
157
- lineHeight: 32,
157
+ lineHeight: 30,
158
158
  fontSize: 26,
159
159
  fontStyle: italic
160
160
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonniernews/dn-design-system-web",
3
- "version": "3.0.0-alpha.26",
3
+ "version": "3.0.0-alpha.28",
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",