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    
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const view_container_1 = require("view-container");
const PaginationWrapper = view_container_1.styled.div `
  display: flex;
  justify-content: center;
  align-items: center;
`;
exports.PaginationWrapper = PaginationWrapper;
const ActionButton = view_container_1.styled.button `
  font-size: 18px;
  font-weight: bold;
  border: 0px;
  margin: 2px;
  color: ${props => (props.isDisabled ? 'red' : 'grey')};
  cursor: ${props => (props.isDisabled ? 'no-drop' : 'pointer')};
`;
exports.ActionButton = ActionButton;
const NextButton = ActionButton.extend `
  order: ${props => (props.isMobile ? 4 : 2)};
`;
exports.NextButton = NextButton;
const PreviousButton = ActionButton.extend `
  order: 1;
`;
exports.PreviousButton = PreviousButton;
const SelectBox = view_container_1.styled.div `
  font-family: 'Roboto';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  padding: 4px;
`;
exports.SelectBox = SelectBox;
const TextWrapper = view_container_1.styled.div `
  order: 3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
`;
exports.TextWrapper = TextWrapper;
const Text = view_container_1.styled.span `
  font-family: 'Roboto';
  padding: 5px;
`;
exports.Text = Text;
const PreText = Text.extend `
  order: 1;
  margin-right: 4px;
`;
exports.PreText = PreText;
const PostText = Text.extend `
  order: 3;
  margin-left: 4px;
`;
exports.PostText = PostText;
const Select = view_container_1.styled.select `
  order: 2;
  min-width: 40px;
  font-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 4px;
`;
exports.Select = Select;
//# sourceMappingURL=styled.js.map