@txdfe/at
Version:
一个设计体系组件库
48 lines (37 loc) • 1.96 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _excluded = ["listType", "defaultFileList", "fileList"];
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; }
// compatible with 0.x version
/* istanbul ignore next */
var transform = function transform(props, deprecated) {
var listType = props.listType,
defaultFileList = props.defaultFileList,
fileList = props.fileList,
others = _objectWithoutProperties(props, _excluded);
var newprops = others;
if (listType === 'text-image') {
deprecated('listType=text-image', 'listType=image', 'Upload');
newprops.listType = 'image';
} else if (listType === 'picture-card') {
deprecated('listType=picture-card', 'listType=card', 'Upload');
newprops.listType = 'card';
} else {
newprops.listType = listType;
}
if ('defaultFileList' in props) {
deprecated('defaultFileList', 'defaultValue', 'Upload');
newprops.defaultValue = defaultFileList;
}
if ('fileList' in props) {
deprecated('fileList', 'value', 'Upload');
newprops.value = fileList;
}
return newprops;
};
var _default = transform;
exports["default"] = _default;