@bonniernews/dn-design-system-web 14.4.0-beta.0 → 15.0.0
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,35 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [15.0.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.11...@bonniernews/dn-design-system-web@15.0.0) (2024-03-26)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
|
|
12
|
+
* **web:** some button properties are deprecated
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **web:** refactor buttons ([#1238](https://github.com/BonnierNews/dn-design-system/issues/1238)) ([d9ee881](https://github.com/BonnierNews/dn-design-system/commit/d9ee881010c3e14388fc648ced552cec9a0a4c36))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **app:** adjust for ÅÄÖ and small lineheight when creating styles ([#1260](https://github.com/BonnierNews/dn-design-system/issues/1260)) ([61893ce](https://github.com/BonnierNews/dn-design-system/commit/61893ce7f06546e7bbadf367fdddb33fb6ab6e98))
|
|
22
|
+
* **app:** remove paddingTop and negative marginTop in TextInput ([#1262](https://github.com/BonnierNews/dn-design-system/issues/1262)) ([b602c06](https://github.com/BonnierNews/dn-design-system/commit/b602c066fdd470282558cfee91eb5c0135b0fceb))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Maintenance
|
|
26
|
+
|
|
27
|
+
* prerelease packages ([9cb4286](https://github.com/BonnierNews/dn-design-system/commit/9cb4286bea19b21e9c82bfcaa479075fdb33d3f3))
|
|
28
|
+
* prerelease packages ([12eb081](https://github.com/BonnierNews/dn-design-system/commit/12eb08160c5f4577f51981dbb24b0ad4ad1d4f66))
|
|
29
|
+
|
|
30
|
+
## [14.3.11](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.10...@bonniernews/dn-design-system-web@14.3.11) (2024-03-21)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **web:** add arrow icon to image group header ([#1258](https://github.com/BonnierNews/dn-design-system/issues/1258)) ([4237649](https://github.com/BonnierNews/dn-design-system/commit/423764937fd44e277e57d03f0683bd900b284b31))
|
|
7
36
|
## [14.4.0-beta.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.10...@bonniernews/dn-design-system-web@14.4.0-beta.0) (2024-03-20)
|
|
8
37
|
|
|
9
38
|
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<span class="{{ componentClassName + '__right-link' }}">
|
|
26
26
|
{{ params.linkText }}
|
|
27
27
|
</span>
|
|
28
|
-
{% elif (params.variant == 'icon' or params.variant == 'bauta' or not params.variant) and params.href %}
|
|
28
|
+
{% elif (params.variant == 'icon' or params.variant == 'bauta' or params.variant == 'image' or not params.variant) and params.href %}
|
|
29
29
|
{{ IconUse({ icon: "arrow_forward", classNames: componentClassName + '__icon' }) }}
|
|
30
30
|
{% elif (params.variant == 'arrows') and params.href and params.linkText %}
|
|
31
31
|
<span class="{{ componentClassName + '__right-link' }} hidden-desktop">
|
package/package.json
CHANGED