Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / atoms / Overlay / fixture.js
Size: Mime:
"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