@txdfe/at
Version:
一个设计体系组件库
59 lines (44 loc) • 3.21 kB
JavaScript
var _excluded = ["titlePrefixLine"],
_excluded2 = ["titleBottomLine"],
_excluded3 = ["bodyHeight"];
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(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; }
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; }
import ConfigProvider from '../config-provider';
import Card from './card';
export default ConfigProvider.config(Card, {
transform:
/* istanbul ignore next */
function transform(props, deprecated) {
if ('titlePrefixLine' in props) {
deprecated('titlePrefixLine', 'showTitleBullet', 'Card');
var _props = props,
titlePrefixLine = _props.titlePrefixLine,
others = _objectWithoutProperties(_props, _excluded);
props = _objectSpread({
showTitleBullet: titlePrefixLine
}, others);
}
if ('titleBottomLine' in props) {
deprecated('titleBottomLine', 'showHeadDivider', 'Card');
var _props2 = props,
titleBottomLine = _props2.titleBottomLine,
_others = _objectWithoutProperties(_props2, _excluded2);
props = _objectSpread({
showHeadDivider: titleBottomLine
}, _others);
}
if ('bodyHeight' in props) {
deprecated('bodyHeight', 'contentHeight', 'Card');
var _props3 = props,
bodyHeight = _props3.bodyHeight,
_others2 = _objectWithoutProperties(_props3, _excluded3);
props = _objectSpread({
contentHeight: bodyHeight
}, _others2);
}
return props;
}
});