spoko-design-system 1.34.3 → 1.34.4
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.4](https://github.com/polo-blue/sds/compare/v1.34.3...v1.34.4) (2026-03-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **ProductGallery:** hide disabled dialog arrows, improve active visibility ([855d016](https://github.com/polo-blue/sds/commit/855d01609c13e17812c4c8f97f49cc29701580fb))
|
|
6
|
+
|
|
1
7
|
## [1.34.3](https://github.com/polo-blue/sds/compare/v1.34.2...v1.34.3) (2026-03-17)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -122,15 +122,15 @@
|
|
|
122
122
|
/* ── Dialog arrow states ── */
|
|
123
123
|
|
|
124
124
|
.pg-dialog-arrow {
|
|
125
|
-
@apply text-white/
|
|
125
|
+
@apply text-white/70 transition-colors;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
.pg-dialog-arrow:hover {
|
|
128
|
+
.pg-dialog-arrow:hover:not(:disabled) {
|
|
129
129
|
@apply text-white bg-white/15;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.pg-dialog-arrow:disabled {
|
|
133
|
-
@apply
|
|
133
|
+
@apply hidden;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
/* ── Reduced motion ── */
|