spoko-design-system 1.34.2 → 1.34.3
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
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.34.3](https://github.com/polo-blue/sds/compare/v1.34.2...v1.34.3) (2026-03-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **ProductGallery:** constrain dialog image height to viewport (no vertical scroll) ([cc64848](https://github.com/polo-blue/sds/commit/cc64848ee16340a6785fc40746fe47210f7d26c6))
|
|
6
|
+
|
|
1
7
|
## [1.34.2](https://github.com/polo-blue/sds/compare/v1.34.1...v1.34.2) (2026-03-17)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -250,13 +250,13 @@ const total = images.length;
|
|
|
250
250
|
>
|
|
251
251
|
{images.map((image, index) => (
|
|
252
252
|
<div
|
|
253
|
-
class="pg-slide w-full min-w-full flex items-center justify-center"
|
|
253
|
+
class="pg-slide w-full min-w-full h-full flex items-center justify-center"
|
|
254
254
|
role="group"
|
|
255
255
|
aria-roledescription="slide"
|
|
256
256
|
aria-label={`Image ${index + 1} of ${total}: ${image.alt}`}
|
|
257
257
|
data-index={index}
|
|
258
258
|
>
|
|
259
|
-
<div class="pg-zoom" data-zoom-container>
|
|
259
|
+
<div class="pg-zoom h-full" data-zoom-container>
|
|
260
260
|
<img
|
|
261
261
|
src={image.full || image.src}
|
|
262
262
|
alt={image.alt}
|