| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
- var _utils = require("../utils");
- var _vue = require("vue");
- var _excluded = ["icon", "primaryColor", "secondaryColor"];
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
- var twoToneColorPalette = (0, _vue.reactive)({
- primaryColor: '#333',
- secondaryColor: '#E6E6E6',
- calculated: false
- });
- function setTwoToneColors(_ref) {
- var primaryColor = _ref.primaryColor,
- secondaryColor = _ref.secondaryColor;
- twoToneColorPalette.primaryColor = primaryColor;
- twoToneColorPalette.secondaryColor = secondaryColor || (0, _utils.getSecondaryColor)(primaryColor);
- twoToneColorPalette.calculated = !!secondaryColor;
- }
- function getTwoToneColors() {
- return _objectSpread({}, twoToneColorPalette);
- }
- var IconBase = function IconBase(props, context) {
- var _props$context$attrs = _objectSpread({}, props, context.attrs),
- icon = _props$context$attrs.icon,
- primaryColor = _props$context$attrs.primaryColor,
- secondaryColor = _props$context$attrs.secondaryColor,
- restProps = _objectWithoutProperties(_props$context$attrs, _excluded);
- var colors = twoToneColorPalette;
- if (primaryColor) {
- colors = {
- primaryColor: primaryColor,
- secondaryColor: secondaryColor || (0, _utils.getSecondaryColor)(primaryColor)
- };
- }
- (0, _utils.warning)((0, _utils.isIconDefinition)(icon), "icon should be icon definiton, but got ".concat(icon));
- if (!(0, _utils.isIconDefinition)(icon)) {
- return null;
- }
- var target = icon;
- if (target && typeof target.icon === 'function') {
- target = _objectSpread({}, target, {
- icon: target.icon(colors.primaryColor, colors.secondaryColor)
- });
- }
- return (0, _utils.generate)(target.icon, "svg-".concat(target.name), _objectSpread({}, restProps, {
- 'data-icon': target.name,
- width: '1em',
- height: '1em',
- fill: 'currentColor',
- 'aria-hidden': 'true'
- })); // },
- };
- IconBase.props = {
- icon: Object,
- primaryColor: String,
- secondaryColor: String,
- focusable: String
- };
- IconBase.inheritAttrs = false;
- IconBase.displayName = 'IconBase';
- IconBase.getTwoToneColors = getTwoToneColors;
- IconBase.setTwoToneColors = setTwoToneColors;
- var _default = IconBase;
- exports["default"] = _default;
|