@quoreadmin/ui 0.22.16 → 0.22.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quoreadmin/ui",
3
3
  "private": false,
4
- "version": "0.22.16",
4
+ "version": "0.22.18",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -103,6 +103,22 @@
103
103
  opacity: 0;
104
104
  }
105
105
 
106
+ // Slide for search and filters
107
+ .slide-down-leave-active,
108
+ .slide-down-enter-active {
109
+ transition: all 0.3s ease-out;
110
+ }
111
+
112
+ .slide-down-enter-to,
113
+ .slide-down-leave-from {
114
+ transform: translateY(0%);
115
+ }
116
+
117
+ .slide-down-enter-from,
118
+ .slide-down-leave-to {
119
+ transform: translateY(-100%);
120
+ }
121
+
106
122
  // Swipe transform class for swiping actions ex close inspection or
107
123
  // setting status on mobile or tablet.
108
124
  .animate-swipe {