@dillingerstaffing/strand-svelte 0.17.5 → 0.17.7
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/dist/css/strand-ui.css +12 -0
- package/package.json +2 -2
package/dist/css/strand-ui.css
CHANGED
|
@@ -4633,6 +4633,18 @@ body.strand-banner-active .strand-instrument-viewport--full-bleed {
|
|
|
4633
4633
|
transform var(--strand-duration-glacial) var(--strand-ease-out-expo);
|
|
4634
4634
|
}
|
|
4635
4635
|
|
|
4636
|
+
/* A manual reveal toggled visible must win over the @supports view-timeline
|
|
4637
|
+
base rule above, which re-declares opacity:0 / transform on .strand-reveal at
|
|
4638
|
+
equal specificity but later in source order. With the animation removed (above)
|
|
4639
|
+
nothing else drives opacity, so without this compound (higher-specificity)
|
|
4640
|
+
rule the element stays at opacity 0 and toggling --visible has no effect:
|
|
4641
|
+
the reveal never appears and replay does nothing. */
|
|
4642
|
+
.strand-reveal--manual.strand-reveal--visible,
|
|
4643
|
+
.strand-reveal-group--manual > .strand-reveal--visible {
|
|
4644
|
+
opacity: 1;
|
|
4645
|
+
transform: translateY(0);
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4636
4648
|
@media (prefers-reduced-motion: reduce) {
|
|
4637
4649
|
.strand-reveal {
|
|
4638
4650
|
opacity: 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dillingerstaffing/strand-svelte",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.7",
|
|
4
4
|
"description": "Strand UI - Svelte component library built on the Strand Design Language",
|
|
5
5
|
"author": "Dillinger Staffing <engineering@dillingerstaffing.com> (https://dillingerstaffing.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"svelte": "^4.0.0 || ^5.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@dillingerstaffing/strand": "^0.17.
|
|
59
|
+
"@dillingerstaffing/strand": "^0.17.7"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|