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.
- package/bundles/ps-toolkit-ui.umd.js +2 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +2 -1
- package/esm2015/lib/components/table/row/table.row.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/table.class.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|