@ccs-design/rc-pro
Version:
ccs design basic react component
33 lines (26 loc) • 1.35 kB
JavaScript
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
var CcsCustomIcon = /*#__PURE__*/function () {
function CcsCustomIcon() {
_classCallCheck(this, CcsCustomIcon);
}
_createClass(CcsCustomIcon, null, [{
key: "add",
value: function add(icons) {
var _this = this;
this.icons = this.icons.concat(icons);
icons.forEach(function (icon) {
if (['TableFilter', 'TableReset', 'TableColumn'].includes(icon.name)) {
_this.proTableIcon[icon.name] = icon.node;
} else {
_this.icons.push(icon);
}
});
}
}]);
return CcsCustomIcon;
}();
CcsCustomIcon.icons = [];
CcsCustomIcon.proTableIcon = {};
export { CcsCustomIcon as default };