@bonniernews/dn-design-system-web 34.2.0 → 34.2.1
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,19 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [34.2.1](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@34.2.0...@bonniernews/dn-design-system-web@34.2.1) (2025-12-03)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **app:** pressableopacity correct opacity handling for disabled state ([#1954](https://github.com/BonnierNews/dn-design-system/issues/1954)) ([a3baf3f](https://github.com/BonnierNews/dn-design-system/commit/a3baf3f31a43bc7c4d862a1936dae4333cb4a162))
|
|
13
|
+
* **web:** let gradient cover half of textibildpuff ([#1961](https://github.com/BonnierNews/dn-design-system/issues/1961)) ([bf8f003](https://github.com/BonnierNews/dn-design-system/commit/bf8f0031672f6fceb2b8e95b9f94ff43c1484b92))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Maintenance
|
|
17
|
+
|
|
18
|
+
* prerelease packages ([04adae6](https://github.com/BonnierNews/dn-design-system/commit/04adae6299d91a34abf17f363034814d64cd5b4c))
|
|
19
|
+
|
|
7
20
|
## [34.2.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@34.1.7...@bonniernews/dn-design-system-web@34.2.0) (2025-11-10)
|
|
8
21
|
|
|
9
22
|
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
&:after {
|
|
16
16
|
content: "";
|
|
17
17
|
position: absolute;
|
|
18
|
-
|
|
18
|
+
bottom: 0;
|
|
19
19
|
left: 0;
|
|
20
20
|
width: 100%;
|
|
21
|
-
height:
|
|
21
|
+
height: 50%;
|
|
22
22
|
background: linear-gradient(var(--ds-color-gradients-overlay-end), var(--ds-color-gradients-overlay-start));
|
|
23
23
|
z-index: 2;
|
|
24
24
|
}
|
package/package.json
CHANGED