@brightspace-ui/core 3.99.3 → 3.99.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.
@@ -5,15 +5,18 @@ const reduceMotion = matchMedia('(prefers-reduced-motion: reduce)').matches;
|
|
5
5
|
|
6
6
|
export const visibleOnAncestorStyles = css`
|
7
7
|
|
8
|
-
:host([__voa-state="hidden"])
|
9
|
-
:host([__voa-state="hiding"]) {
|
8
|
+
:host([__voa-state="hidden"]) {
|
10
9
|
opacity: 0 !important;
|
11
10
|
transform: translateY(-10px) !important;
|
12
11
|
}
|
13
|
-
:host([__voa-state="showing"])
|
14
|
-
:host([__voa-state="hiding"]) {
|
12
|
+
:host([__voa-state="showing"]) {
|
15
13
|
transition: transform 200ms ease-out, opacity 200ms ease-out !important;
|
16
14
|
}
|
15
|
+
:host([__voa-state="hiding"]) {
|
16
|
+
opacity: 0 !important;
|
17
|
+
transform: none !important;
|
18
|
+
transition: opacity 200ms ease-out !important;
|
19
|
+
}
|
17
20
|
|
18
21
|
:host([__voa-state="hidden"][animation-type="opacity"]),
|
19
22
|
:host([__voa-state="hiding"][animation-type="opacity"]) {
|
@@ -30,12 +33,7 @@ export const visibleOnAncestorStyles = css`
|
|
30
33
|
:host([__voa-state="hidden"]),
|
31
34
|
:host([__voa-state="hiding"]) {
|
32
35
|
opacity: 1 !important;
|
33
|
-
transform:
|
34
|
-
}
|
35
|
-
:host([__voa-state="hidden"][d2l-visible-on-ancestor-no-hover-hide]),
|
36
|
-
:host([__voa-state="hiding"][d2l-visible-on-ancestor-no-hover-hide]) {
|
37
|
-
opacity: 0 !important;
|
38
|
-
transform: translateY(-10px) !important;
|
36
|
+
transform: none !important;
|
39
37
|
}
|
40
38
|
}
|
41
39
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.99.
|
3
|
+
"version": "3.99.4",
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
5
5
|
"type": "module",
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|