Latest updates from IceHrmPro
This commit is contained in:
98
web/node_modules/antd/es/descriptions/Row.js
generated
vendored
Normal file
98
web/node_modules/antd/es/descriptions/Row.js
generated
vendored
Normal file
@@ -0,0 +1,98 @@
|
||||
import * as React from 'react';
|
||||
import Cell from './Cell';
|
||||
|
||||
function renderCells(items, _ref, _ref2) {
|
||||
var colon = _ref.colon,
|
||||
prefixCls = _ref.prefixCls,
|
||||
bordered = _ref.bordered;
|
||||
var component = _ref2.component,
|
||||
type = _ref2.type,
|
||||
showLabel = _ref2.showLabel,
|
||||
showContent = _ref2.showContent;
|
||||
return items.map(function (_ref3, index) {
|
||||
var _ref3$props = _ref3.props,
|
||||
label = _ref3$props.label,
|
||||
children = _ref3$props.children,
|
||||
_ref3$props$prefixCls = _ref3$props.prefixCls,
|
||||
itemPrefixCls = _ref3$props$prefixCls === void 0 ? prefixCls : _ref3$props$prefixCls,
|
||||
className = _ref3$props.className,
|
||||
style = _ref3$props.style,
|
||||
_ref3$props$span = _ref3$props.span,
|
||||
span = _ref3$props$span === void 0 ? 1 : _ref3$props$span,
|
||||
key = _ref3.key;
|
||||
|
||||
if (typeof component === 'string') {
|
||||
return /*#__PURE__*/React.createElement(Cell, {
|
||||
key: "".concat(type, "-").concat(key || index),
|
||||
className: className,
|
||||
style: style,
|
||||
span: span,
|
||||
colon: colon,
|
||||
component: component,
|
||||
itemPrefixCls: itemPrefixCls,
|
||||
bordered: bordered,
|
||||
label: showLabel ? label : null,
|
||||
content: showContent ? children : null
|
||||
});
|
||||
}
|
||||
|
||||
return [/*#__PURE__*/React.createElement(Cell, {
|
||||
key: "label-".concat(key || index),
|
||||
className: className,
|
||||
style: style,
|
||||
span: 1,
|
||||
colon: colon,
|
||||
component: component[0],
|
||||
itemPrefixCls: itemPrefixCls,
|
||||
bordered: bordered,
|
||||
label: label
|
||||
}), /*#__PURE__*/React.createElement(Cell, {
|
||||
key: "content-".concat(key || index),
|
||||
className: className,
|
||||
style: style,
|
||||
span: span * 2 - 1,
|
||||
component: component[1],
|
||||
itemPrefixCls: itemPrefixCls,
|
||||
bordered: bordered,
|
||||
content: children
|
||||
})];
|
||||
});
|
||||
}
|
||||
|
||||
var Row = function Row(props) {
|
||||
var prefixCls = props.prefixCls,
|
||||
vertical = props.vertical,
|
||||
row = props.row,
|
||||
index = props.index,
|
||||
bordered = props.bordered;
|
||||
|
||||
if (vertical) {
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("tr", {
|
||||
key: "label-".concat(index),
|
||||
className: "".concat(prefixCls, "-row")
|
||||
}, renderCells(row, props, {
|
||||
component: 'th',
|
||||
type: 'label',
|
||||
showLabel: true
|
||||
})), /*#__PURE__*/React.createElement("tr", {
|
||||
key: "content-".concat(index),
|
||||
className: "".concat(prefixCls, "-row")
|
||||
}, renderCells(row, props, {
|
||||
component: 'td',
|
||||
type: 'content',
|
||||
showContent: true
|
||||
})));
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("tr", {
|
||||
key: index,
|
||||
className: "".concat(prefixCls, "-row")
|
||||
}, renderCells(row, props, {
|
||||
component: bordered ? ['th', 'td'] : 'td',
|
||||
type: 'item',
|
||||
showLabel: true,
|
||||
showContent: true
|
||||
}));
|
||||
};
|
||||
|
||||
export default Row;
|
||||
Reference in New Issue
Block a user