slick-components 4.4.8 → 4.4.9
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/slick-components.umd.js +5 -2
- package/bundles/slick-components.umd.js.map +1 -1
- package/esm2015/slick-grid/slick-grid.component.js +5 -2
- package/esm2015/utils/slick-init.service.js +2 -2
- package/fesm2015/slick-components.js +5 -2
- package/fesm2015/slick-components.js.map +1 -1
- package/package.json +1 -1
- package/slick-components.metadata.json +1 -1
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
};
|
|
70
70
|
return SlickInitService;
|
|
71
71
|
}());
|
|
72
|
-
SlickInitService.version = "4.4.
|
|
72
|
+
SlickInitService.version = "4.4.9";
|
|
73
73
|
SlickInitService.decorators = [
|
|
74
74
|
{ type: core.Injectable }
|
|
75
75
|
];
|
|
@@ -6204,7 +6204,10 @@
|
|
|
6204
6204
|
this.onRowClicked(rowData, rowNumber);
|
|
6205
6205
|
};
|
|
6206
6206
|
SlickGridComponent.prototype.getColumnHTML = function (rowData, dataFieldName) {
|
|
6207
|
-
|
|
6207
|
+
var columnHTML = SlickUtilsService.getDeepObject(rowData, dataFieldName);
|
|
6208
|
+
if (columnHTML === null || columnHTML === undefined)
|
|
6209
|
+
return '';
|
|
6210
|
+
return columnHTML.toString();
|
|
6208
6211
|
};
|
|
6209
6212
|
SlickGridComponent.prototype.sortBy = function (sortColumn) {
|
|
6210
6213
|
return __awaiter(this, void 0, void 0, function () {
|