ps-toolkit-ui 1.8.32 → 1.8.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2980,7 +2980,7 @@
2980
2980
  console.log('getCell');
2981
2981
  var cv = _.get(this.row.Data, col.name);
2982
2982
  if (cv === null) {
2983
- return '';
2983
+ return col.default ? col.default : '';
2984
2984
  }
2985
2985
  else if (col.fun != null) {
2986
2986
  return col.fun(this.row.Data);
@@ -8102,6 +8102,7 @@
8102
8102
  if (withSearch === void 0) { withSearch = true; }
8103
8103
  if (sort === void 0) { sort = true; }
8104
8104
  this.enum = null;
8105
+ this.default = null;
8105
8106
  this.sort = true;
8106
8107
  this.search = null;
8107
8108
  this.fun = null;