Repository URL to install this package:
|
Version:
0.9.5 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// @todo import ts-style
exports.duration = 1000;
exports.defaultStyle = {
transition: `background-color ${exports.duration}ms`,
backgroundColor: `rgba(4, 4, 4, 0)`,
position: 'fixed',
zIndex: 60,
};
exports.transitionStyles = {
entering: {
backgroundColor: `rgba(4, 4, 4, .1)`,
pointerEvents: `all`,
zIndex: `60`,
},
entered: {
backgroundColor: `rgba(4, 4, 4, .4)`,
pointerEvents: `all`,
zIndex: `60`,
},
exited: {
transition: `background-color ${exports.duration * 2}ms`,
backgroundColor: `rgba(4, 4, 4, 0)`,
pointerEvents: `none`,
},
};
exports.IGNORED_PROPS_LIST = Object.freeze([
'isVisible',
'onExited',
'onEntered',
'in',
'renderTransition',
]);
//# sourceMappingURL=fixture.js.map