ng2-encrm-components
Version:
43 lines • 1.42 kB
JavaScript
var core_1 = require('@angular/core');
var bs4_table_cell_1 = require('./bs4-table-cell');
var id = 'bs4-table-row';
var Bs4TableRow = (function () {
function Bs4TableRow() {
}
Bs4TableRow.prototype.ngOnInit = function () {
};
Bs4TableRow.prototype.ngAfterContentInit = function () {
};
Bs4TableRow.prototype.toArray = function (o) {
var a = [];
for (var i in o) {
if (o.hasOwnProperty(i)) {
a.push(o[i] === undefined ? '-' : o[i]);
}
}
return a;
};
Bs4TableRow.prototype.isArray = function (o) {
return (o instanceof Array);
};
__decorate([
core_1.ContentChildren(bs4_table_cell_1.Bs4TableCell),
__metadata('design:type', core_1.QueryList)
], Bs4TableRow.prototype, "cels", void 0);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], Bs4TableRow.prototype, "data", void 0);
Bs4TableRow = __decorate([
core_1.Component({
selector: id,
template: require("./" + id + ".component.html"),
styles: [require("./" + id + ".component.scss")]
}),
__metadata('design:paramtypes', [])
], Bs4TableRow);
return Bs4TableRow;
}());
exports.Bs4TableRow = Bs4TableRow;
//# sourceMappingURL=bs4-table-row.component.js.map
;