27 lines
964 B
JavaScript
27 lines
964 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
var util = {
|
||
|
|
isAppearSupported: function isAppearSupported(props) {
|
||
|
|
return props.transitionName && props.transitionAppear || props.animation.appear;
|
||
|
|
},
|
||
|
|
isEnterSupported: function isEnterSupported(props) {
|
||
|
|
return props.transitionName && props.transitionEnter || props.animation.enter;
|
||
|
|
},
|
||
|
|
isLeaveSupported: function isLeaveSupported(props) {
|
||
|
|
return props.transitionName && props.transitionLeave || props.animation.leave;
|
||
|
|
},
|
||
|
|
allowAppearCallback: function allowAppearCallback(props) {
|
||
|
|
return props.transitionAppear || props.animation.appear;
|
||
|
|
},
|
||
|
|
allowEnterCallback: function allowEnterCallback(props) {
|
||
|
|
return props.transitionEnter || props.animation.enter;
|
||
|
|
},
|
||
|
|
allowLeaveCallback: function allowLeaveCallback(props) {
|
||
|
|
return props.transitionLeave || props.animation.leave;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
exports["default"] = util;
|
||
|
|
module.exports = exports['default'];
|