@skyux/list-builder-view-checklist 5.6.0 → 5.7.0
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/skyux-list-builder-view-checklist.umd.js +1 -2
- package/documentation.json +227 -9385
- package/esm2015/lib/modules/list-view-checklist/list-view-checklist.component.js +1 -2
- package/esm2015/lib/modules/list-view-checklist/list-view-checklist.component.js.map +1 -1
- package/fesm2015/skyux-list-builder-view-checklist.js +1 -2
- package/fesm2015/skyux-list-builder-view-checklist.js.map +1 -1
- package/package.json +14 -13
|
@@ -690,12 +690,11 @@
|
|
|
690
690
|
};
|
|
691
691
|
SkyListViewChecklistComponent.prototype.reapplyFilter = function (isSelected) {
|
|
692
692
|
var _this = this;
|
|
693
|
-
var self = this;
|
|
694
693
|
this.state
|
|
695
694
|
.pipe(operators.map(function (state) { return state.filters; }), operators.take(1))
|
|
696
695
|
.subscribe(function (filters) {
|
|
697
696
|
filters = filters.filter(function (filter) { return filter.name !== 'show-selected'; });
|
|
698
|
-
filters.push(
|
|
697
|
+
filters.push(_this.getShowSelectedFilter(isSelected));
|
|
699
698
|
_this.dispatcher.filtersUpdate(filters);
|
|
700
699
|
});
|
|
701
700
|
};
|