build 信息更新
This commit is contained in:
parent
be75c6e9e8
commit
85fb514d50
|
@ -60,17 +60,29 @@ var ExpandIcon = function (_Component) {
|
||||||
needIndentSpaced = _props.needIndentSpaced,
|
needIndentSpaced = _props.needIndentSpaced,
|
||||||
expanded = _props.expanded,
|
expanded = _props.expanded,
|
||||||
record = _props.record,
|
record = _props.record,
|
||||||
isHiddenExpandIcon = _props.isHiddenExpandIcon;
|
isHiddenExpandIcon = _props.isHiddenExpandIcon,
|
||||||
|
expandedIcon = _props.expandedIcon,
|
||||||
|
collapsedIcon = _props.collapsedIcon;
|
||||||
|
|
||||||
if (expandable && !isHiddenExpandIcon) {
|
if (expandable && !isHiddenExpandIcon) {
|
||||||
var expandClassName = expanded ? 'expanded' : 'collapsed';
|
var expandClassName = expanded ? 'expanded' : 'collapsed';
|
||||||
return _react2["default"].createElement(_beeIcon2["default"], {
|
var currentIcon = _react2["default"].createElement(_beeIcon2["default"], {
|
||||||
className: clsPrefix + '-expand-icon ' + clsPrefix + '-' + expandClassName,
|
className: clsPrefix + '-expand-icon ' + clsPrefix + '-' + expandClassName,
|
||||||
type: expanded ? 'uf-triangle-down' : 'uf-triangle-right',
|
type: expanded ? 'uf-triangle-down' : 'uf-triangle-right'
|
||||||
onClick: function onClick(e) {
|
|
||||||
return onExpand(!expanded, record, e);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
if (expanded && expandedIcon) {
|
||||||
|
currentIcon = expandedIcon;
|
||||||
|
} else if (!expanded && collapsedIcon) {
|
||||||
|
currentIcon = collapsedIcon;
|
||||||
|
}
|
||||||
|
return _react2["default"].createElement(
|
||||||
|
'span',
|
||||||
|
{ onClick: function onClick(e) {
|
||||||
|
return onExpand(!expanded, record, e);
|
||||||
|
}, className: 'expand-icon-con' },
|
||||||
|
currentIcon
|
||||||
|
);
|
||||||
} else if (needIndentSpaced || isHiddenExpandIcon) {
|
} else if (needIndentSpaced || isHiddenExpandIcon) {
|
||||||
return _react2["default"].createElement('span', { className: clsPrefix + '-expand-icon ' + clsPrefix + '-spaced' });
|
return _react2["default"].createElement('span', { className: clsPrefix + '-expand-icon ' + clsPrefix + '-spaced' });
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,6 +223,9 @@
|
||||||
.u-table th.text-right,
|
.u-table th.text-right,
|
||||||
.u-table td.text-right {
|
.u-table td.text-right {
|
||||||
text-align: right; }
|
text-align: right; }
|
||||||
|
.u-table th .expand-icon-con,
|
||||||
|
.u-table td .expand-icon-con {
|
||||||
|
cursor: pointer; }
|
||||||
.u-table-sm td {
|
.u-table-sm td {
|
||||||
padding: 8px 8px; }
|
padding: 8px 8px; }
|
||||||
.u-table-lg td {
|
.u-table-lg td {
|
||||||
|
|
|
@ -851,7 +851,9 @@ var Table = function (_Component) {
|
||||||
rowDraggAble: this.props.rowDraggAble,
|
rowDraggAble: this.props.rowDraggAble,
|
||||||
onDragRow: this.onDragRow,
|
onDragRow: this.onDragRow,
|
||||||
contentTable: this.contentTable,
|
contentTable: this.contentTable,
|
||||||
tableUid: this.tableUid
|
tableUid: this.tableUid,
|
||||||
|
expandedIcon: props.expandedIcon,
|
||||||
|
collapsedIcon: props.collapsedIcon
|
||||||
})));
|
})));
|
||||||
this.treeRowIndex++;
|
this.treeRowIndex++;
|
||||||
var subVisible = visible && isRowExpanded;
|
var subVisible = visible && isRowExpanded;
|
||||||
|
|
|
@ -449,7 +449,9 @@ var TableRow = function (_Component) {
|
||||||
indentSize = _props9.indentSize,
|
indentSize = _props9.indentSize,
|
||||||
isHiddenExpandIcon = _props9.isHiddenExpandIcon,
|
isHiddenExpandIcon = _props9.isHiddenExpandIcon,
|
||||||
fixed = _props9.fixed,
|
fixed = _props9.fixed,
|
||||||
bodyDisplayInRow = _props9.bodyDisplayInRow;
|
bodyDisplayInRow = _props9.bodyDisplayInRow,
|
||||||
|
expandedIcon = _props9.expandedIcon,
|
||||||
|
collapsedIcon = _props9.collapsedIcon;
|
||||||
|
|
||||||
var showSum = false;
|
var showSum = false;
|
||||||
var className = this.props.className;
|
var className = this.props.className;
|
||||||
|
@ -470,6 +472,8 @@ var TableRow = function (_Component) {
|
||||||
needIndentSpaced: needIndentSpaced,
|
needIndentSpaced: needIndentSpaced,
|
||||||
expanded: expanded,
|
expanded: expanded,
|
||||||
record: record,
|
record: record,
|
||||||
|
expandedIcon: expandedIcon,
|
||||||
|
collapsedIcon: collapsedIcon,
|
||||||
isHiddenExpandIcon: isHiddenExpandIcon
|
isHiddenExpandIcon: isHiddenExpandIcon
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", {
|
Object.defineProperty(exports, "__esModule", {
|
||||||
value: true
|
value: true
|
||||||
});
|
});
|
||||||
|
|
||||||
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
||||||
|
@ -20,29 +20,29 @@ exports.ObjectAssign = ObjectAssign;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function sortBy(arr, prop, desc) {
|
function sortBy(arr, prop, desc) {
|
||||||
var props = [],
|
var props = [],
|
||||||
ret = [],
|
ret = [],
|
||||||
i = 0,
|
i = 0,
|
||||||
len = arr.length;
|
len = arr.length;
|
||||||
if (typeof prop == 'string') {
|
if (typeof prop == 'string') {
|
||||||
for (; i < len; i++) {
|
for (; i < len; i++) {
|
||||||
var oI = arr[i];
|
var oI = arr[i];
|
||||||
(props[i] = new String(oI && oI[prop] || ''))._obj = oI;
|
(props[i] = new String(oI && oI[prop] || ''))._obj = oI;
|
||||||
|
}
|
||||||
|
} else if (typeof prop == 'function') {
|
||||||
|
for (; i < len; i++) {
|
||||||
|
var _oI = arr[i];
|
||||||
|
(props[i] = new String(_oI && prop(_oI) || ''))._obj = _oI;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw '参数类型错误';
|
||||||
}
|
}
|
||||||
} else if (typeof prop == 'function') {
|
props.sort();
|
||||||
for (; i < len; i++) {
|
for (i = 0; i < len; i++) {
|
||||||
var _oI = arr[i];
|
ret[i] = props[i]._obj;
|
||||||
(props[i] = new String(_oI && prop(_oI) || ''))._obj = _oI;
|
|
||||||
}
|
}
|
||||||
} else {
|
if (desc) ret.reverse();
|
||||||
throw '参数类型错误';
|
return ret;
|
||||||
}
|
|
||||||
props.sort();
|
|
||||||
for (i = 0; i < len; i++) {
|
|
||||||
ret[i] = props[i]._obj;
|
|
||||||
}
|
|
||||||
if (desc) ret.reverse();
|
|
||||||
return ret;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -51,11 +51,11 @@ function sortBy(arr, prop, desc) {
|
||||||
* @param {} property
|
* @param {} property
|
||||||
*/
|
*/
|
||||||
function compare(property) {
|
function compare(property) {
|
||||||
return function (a, b) {
|
return function (a, b) {
|
||||||
var value1 = a[property];
|
var value1 = a[property];
|
||||||
var value2 = b[property];
|
var value2 = b[property];
|
||||||
return value1 - value2;
|
return value1 - value2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -63,17 +63,17 @@ function compare(property) {
|
||||||
* @param {*} obj 要拷贝的对象
|
* @param {*} obj 要拷贝的对象
|
||||||
*/
|
*/
|
||||||
function ObjectAssign(obj) {
|
function ObjectAssign(obj) {
|
||||||
var b = obj instanceof Array;
|
var b = obj instanceof Array;
|
||||||
var tagObj = b ? [] : {};
|
var tagObj = b ? [] : {};
|
||||||
if (b) {
|
if (b) {
|
||||||
//数组
|
//数组
|
||||||
obj.forEach(function (da) {
|
obj.forEach(function (da) {
|
||||||
var _da = {};
|
var _da = {};
|
||||||
_extends(_da, da);
|
_extends(_da, da);
|
||||||
tagObj.push(_da);
|
tagObj.push(_da);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
_extends(tagObj, obj);
|
_extends(tagObj, obj);
|
||||||
}
|
}
|
||||||
return tagObj;
|
return tagObj;
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bee-table",
|
"name": "bee-table",
|
||||||
"version": "2.0.16",
|
"version": "2.0.17-beta.0",
|
||||||
"description": "Table ui component for react",
|
"description": "Table ui component for react",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
|
|
Loading…
Reference in New Issue