@firestitch/list 12.7.2 → 12.7.3
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/firestitch-list.umd.js +6 -5
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/data-controller.js +1 -2
- package/esm2015/app/components/body/row/cell/cell.component.js +7 -4
- package/esm2015/app/directives/draggable-list/draggable-list.directive.js +1 -2
- package/fesm2015/firestitch-list.js +6 -5
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +1 -1
|
@@ -1702,7 +1702,6 @@
|
|
|
1702
1702
|
var row = this.visibleRows.find(function (visibleRow) { return visibleRow.data === rowData; });
|
|
1703
1703
|
row.toggleRowExpandStatus();
|
|
1704
1704
|
this._updateVisibleRows();
|
|
1705
|
-
console.log(this._rowsStack);
|
|
1706
1705
|
};
|
|
1707
1706
|
DataController.prototype._updateRowsStack = function (rows) {
|
|
1708
1707
|
var _this = this;
|
|
@@ -4859,14 +4858,17 @@
|
|
|
4859
4858
|
this._destroy$ = new rxjs.Subject();
|
|
4860
4859
|
}
|
|
4861
4860
|
FsCellComponent.prototype.ngOnInit = function () {
|
|
4862
|
-
this._initCellContext();
|
|
4863
|
-
this._initCellTemplate();
|
|
4864
4861
|
this._listenGroupOpen();
|
|
4865
4862
|
};
|
|
4866
4863
|
FsCellComponent.prototype.ngOnChanges = function (changes) {
|
|
4867
|
-
|
|
4864
|
+
var _a, _b, _c, _d;
|
|
4865
|
+
if (((_a = changes.rowIndex) === null || _a === void 0 ? void 0 : _a.currentValue) !== ((_b = changes.rowIndex) === null || _b === void 0 ? void 0 : _b.previousValue)) {
|
|
4868
4866
|
this.cellContext.index = this.rowIndex;
|
|
4869
4867
|
}
|
|
4868
|
+
if (((_c = changes.column) === null || _c === void 0 ? void 0 : _c.currentValue) !== ((_d = changes.column) === null || _d === void 0 ? void 0 : _d.previousValue)) {
|
|
4869
|
+
this._initCellContext();
|
|
4870
|
+
this._initCellTemplate();
|
|
4871
|
+
}
|
|
4870
4872
|
};
|
|
4871
4873
|
FsCellComponent.prototype.ngOnDestroy = function () {
|
|
4872
4874
|
this._destroy$.next();
|
|
@@ -5301,7 +5303,6 @@
|
|
|
5301
5303
|
doneResult
|
|
5302
5304
|
.pipe(operators.takeUntil(this._destroy$))
|
|
5303
5305
|
.subscribe(function () {
|
|
5304
|
-
console.log('enable');
|
|
5305
5306
|
_this._reorderController.enableReorderAction();
|
|
5306
5307
|
});
|
|
5307
5308
|
}
|