@quoreadmin/ui 0.22.17 → 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/dist/index.js +6222 -6114
- package/dist/index.umd.cjs +69 -69
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/scss/transitions.scss +16 -0
package/package.json
CHANGED
|
@@ -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 {
|