cometchat-react-ui-kit2
Version:
CometChat UI Kit for React App
58 lines (57 loc) • 3.12 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ListItemStyles = void 0;
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
var _Shared = require("../../../Shared");
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
/**
* @class ListItemStyles
* @param {String} textFont
* @param {String} textColor
* @param {String} outerView
* @param {String} outerViewSpacing
*/var ListItemStyles = /*#__PURE__*/function (_BaseStyles) {
(0, _inherits2["default"])(ListItemStyles, _BaseStyles);
var _super = _createSuper(ListItemStyles);
function ListItemStyles(_ref) {
var _this;
var _ref$textColor = _ref.textColor,
textColor = _ref$textColor === void 0 ? "" : _ref$textColor,
_ref$textFont = _ref.textFont,
textFont = _ref$textFont === void 0 ? "" : _ref$textFont,
_ref$outerView = _ref.outerView,
outerView = _ref$outerView === void 0 ? "" : _ref$outerView,
_ref$outerViewSpacing = _ref.outerViewSpacing,
outerViewSpacing = _ref$outerViewSpacing === void 0 ? "" : _ref$outerViewSpacing,
width = _ref.width,
height = _ref.height,
background = _ref.background,
activeBackground = _ref.activeBackground,
border = _ref.border,
borderRadius = _ref.borderRadius;
(0, _classCallCheck2["default"])(this, ListItemStyles);
_this = _super.call(this, {
width: width,
height: height,
background: background,
activeBackground: activeBackground,
border: border,
borderRadius: borderRadius
});
_this.textColor = textColor;
_this.textFont = textFont;
_this.outerView = outerView;
_this.outerViewSpacing = outerViewSpacing;
return _this;
}
return (0, _createClass2["default"])(ListItemStyles);
}(_Shared.BaseStyles);
exports.ListItemStyles = ListItemStyles;