[Search] SearchProvider and Tree Search enhancements/fixes (#3400)

* update generic search compostion load to new version for testing

* logging

* removing logging adding check for undefined child

* reverting genericsearchprovider

* testing using object service instead of modelservice for search

* modified the animations for sliding children in and out to be more reliable, pr updates

* removing unneccessary code
This commit is contained in:
Jamie V
2020-09-29 10:06:58 -07:00
committed by GitHub
parent 56120ba1bb
commit 505796d9f0
4 changed files with 47 additions and 36 deletions

View File

@@ -248,20 +248,14 @@
}
// TRANSITIONS
.slide-left,
.slide-right {
animation-duration: 500ms;
animation-iteration-count: 1;
transition: all;
transition-timing-function: ease-in-out;
}
.children-enter-active {
&.down {
animation: animSlideLeft 500ms;
}
.slide-left {
animation-name: animSlideLeft;
}
.slide-right {
animation-name: animSlideRight;
&.up {
animation: animSlideRight 500ms;
}
}
@keyframes animSlideLeft {