@brightspace-ui/core 2.91.0 → 2.91.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.
|
@@ -84,7 +84,7 @@ class DialogFullscreen extends LocalizeCoreElement(AsyncContainerMixin(DialogMix
|
|
|
84
84
|
|
|
85
85
|
dialog.d2l-dialog-outer,
|
|
86
86
|
div.d2l-dialog-outer {
|
|
87
|
-
animation: d2l-dialog-fullscreen-close 200ms ease-
|
|
87
|
+
animation: d2l-dialog-fullscreen-close 200ms ease-in;
|
|
88
88
|
border-radius: 8px;
|
|
89
89
|
margin: 1.5rem;
|
|
90
90
|
top: 0;
|
|
@@ -21,7 +21,7 @@ export const dialogStyles = css`
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.d2l-dialog-outer {
|
|
24
|
-
animation: d2l-dialog-close 200ms ease-
|
|
24
|
+
animation: d2l-dialog-close 200ms ease-in;
|
|
25
25
|
background-color: white;
|
|
26
26
|
border: 1px solid var(--d2l-color-mica);
|
|
27
27
|
border-radius: 8px;
|
|
@@ -42,13 +42,13 @@ export const dialogStyles = css`
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
@keyframes d2l-dialog-close {
|
|
45
|
-
0% { transform: translateY(0); }
|
|
46
|
-
100% { transform: translateY(-50px); }
|
|
45
|
+
0% { opacity: 1; transform: translateY(0); }
|
|
46
|
+
100% { opacity: 0; transform: translateY(-50px); }
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
@keyframes d2l-dialog-open {
|
|
50
|
-
0% { transform: translateY(-50px); }
|
|
51
|
-
100% { transform: translateY(0); }
|
|
50
|
+
0% { opacity: 0; transform: translateY(-50px); }
|
|
51
|
+
100% { opacity: 1; transform: translateY(0); }
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.d2l-dialog-outer.d2l-dialog-outer-nested-showing {
|
|
@@ -75,11 +75,12 @@ export const dialogStyles = css`
|
|
|
75
75
|
/* cannot use variables inside of ::backdrop : https://github.com/whatwg/fullscreen/issues/124 */
|
|
76
76
|
background-color: #f9fbff;
|
|
77
77
|
opacity: 0;
|
|
78
|
-
transition: opacity 200ms ease-
|
|
78
|
+
transition: opacity 200ms ease-in;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
:host([_state="showing"]) dialog::backdrop {
|
|
82
82
|
opacity: 0.7;
|
|
83
|
+
transition-timing-function: ease-out;
|
|
83
84
|
}
|
|
84
85
|
|
|
85
86
|
d2l-focus-trap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.91.
|
|
3
|
+
"version": "2.91.1",
|
|
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",
|