react-select
Version:
A Select control built with and for ReactJS
13 lines (11 loc) • 377 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var STYLE_KEYS = exports.STYLE_KEYS = ['boxSizing', 'height', 'overflow', 'paddingRight', 'position'];
var LOCK_STYLES = exports.LOCK_STYLES = {
boxSizing: 'border-box', // account for possible declaration `width: 100%;` on body
overflow: 'hidden',
position: 'relative',
height: '100%'
};