@quoreadmin/ui 0.22.20 → 0.22.22
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/index.js +3983 -3944
- package/dist/index.umd.cjs +64 -64
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/scss/transitions.scss +9 -7
package/package.json
CHANGED
|
@@ -104,19 +104,21 @@
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
// Slide for search and filters
|
|
107
|
-
.slide-down-leave-active,
|
|
108
|
-
.slide-down-enter-active {
|
|
109
|
-
transition: all 0.
|
|
107
|
+
.slide-down-fade-leave-active,
|
|
108
|
+
.slide-down-fade-enter-active {
|
|
109
|
+
transition: all 0.5s ease-out;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
.slide-down-enter-to,
|
|
113
|
-
.slide-down-leave-from {
|
|
112
|
+
.slide-down-fade-enter-to,
|
|
113
|
+
.slide-down-fade-leave-from {
|
|
114
114
|
transform: translateY(0%);
|
|
115
|
+
opacity: 1;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
|
-
.slide-down-enter-from,
|
|
118
|
-
.slide-down-leave-to {
|
|
118
|
+
.slide-down-fade-enter-from,
|
|
119
|
+
.slide-down-fade-leave-to {
|
|
119
120
|
transform: translateY(-100%);
|
|
121
|
+
opacity: 0;
|
|
120
122
|
}
|
|
121
123
|
|
|
122
124
|
// Swipe transform class for swiping actions ex close inspection or
|