UNPKG

@niku/react-native-dropdown-select

Version:
39 lines (30 loc) 1.95 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _reactNative = require("react-native"); var _styles = require("./styles"); function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; } function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const OptionItem = ({ option, style, labelStyle, activeStyle, activeLabelStyle, active, disabledStyle, disabledLabelStyle }) => { return /*#__PURE__*/React.createElement(_reactNative.View, { style: [_styles.styles.container, style, active && _styles.styles.activeContainer, active && activeStyle, option.disabled && disabledStyle] }, /*#__PURE__*/React.createElement(_reactNative.Text, { style: [_styles.styles.label, labelStyle, active && _styles.styles.activeLabel, active && activeLabelStyle, option.disabled && _styles.styles.disabledLabel, option.disabled && disabledLabelStyle], numberOfLines: 1 }, option.label)); }; var _default = /*#__PURE__*/React.memo(OptionItem); exports.default = _default; //# sourceMappingURL=index.js.map