react-select
Version:
A Select control built with and for ReactJS
20 lines (16 loc) • 523 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var formatGroupLabel = exports.formatGroupLabel = function formatGroupLabel(group) {
return group.label;
};
var getOptionLabel = exports.getOptionLabel = function getOptionLabel(option) {
return option.label;
};
var getOptionValue = exports.getOptionValue = function getOptionValue(option) {
return option.value;
};
var isOptionDisabled = exports.isOptionDisabled = function isOptionDisabled(option) {
return !!option.isDisabled;
};