@ni/nimble-components 15.3.0 → 15.3.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.
- package/dist/all-components-bundle.js +9 -9
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +9 -9
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/drawer/styles.js +9 -9
- package/dist/esm/drawer/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -17759,10 +17759,6 @@
|
|
|
17759
17759
|
ease-in;
|
|
17760
17760
|
}
|
|
17761
17761
|
|
|
17762
|
-
:host([location='left']) dialog.closing .dialog-contents {
|
|
17763
|
-
animation-direction: reverse;
|
|
17764
|
-
}
|
|
17765
|
-
|
|
17766
17762
|
@keyframes ni-private-drawer-slide-in-right-keyframes {
|
|
17767
17763
|
0% {
|
|
17768
17764
|
transform: translate(100%);
|
|
@@ -17783,17 +17779,21 @@
|
|
|
17783
17779
|
ease-in;
|
|
17784
17780
|
}
|
|
17785
17781
|
|
|
17786
|
-
:host([location='right']) dialog.closing .dialog-contents {
|
|
17787
|
-
animation-direction: reverse;
|
|
17788
|
-
}
|
|
17789
|
-
|
|
17790
17782
|
@media (prefers-reduced-motion) {
|
|
17791
17783
|
:host([location='left']) dialog.animating .dialog-contents,
|
|
17792
17784
|
:host([location='right']) dialog.animating .dialog-contents {
|
|
17793
|
-
animation
|
|
17785
|
+
animation: ni-private-drawer-fade-in-keyframes ${largeDelay} ease-in;
|
|
17794
17786
|
}
|
|
17795
17787
|
}
|
|
17796
17788
|
|
|
17789
|
+
:host([location='left']) dialog.closing .dialog-contents {
|
|
17790
|
+
animation-direction: reverse;
|
|
17791
|
+
}
|
|
17792
|
+
|
|
17793
|
+
:host([location='right']) dialog.closing .dialog-contents {
|
|
17794
|
+
animation-direction: reverse;
|
|
17795
|
+
}
|
|
17796
|
+
|
|
17797
17797
|
${
|
|
17798
17798
|
/*
|
|
17799
17799
|
Styling for a 3-panel drawer with header, footer, and a content
|