@colijnit/corecomponents_v12 12.0.72 → 12.0.74
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/colijnit-corecomponents_v12.umd.js +4 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/esm2015/lib/components/filter-item/filter-item.component.js +5 -2
- package/fesm2015/colijnit-corecomponents_v12.js +4 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/collapsible/style/_layout.scss +2 -0
- package/package.json +1 -1
|
@@ -11038,7 +11038,10 @@
|
|
|
11038
11038
|
this.collectionChange.emit(this.collection);
|
|
11039
11039
|
};
|
|
11040
11040
|
FilterItemComponent.prototype.valueSelected = function () {
|
|
11041
|
-
|
|
11041
|
+
if (this.collection) {
|
|
11042
|
+
return !!this.collection.find(function (c) { return c.checked; });
|
|
11043
|
+
}
|
|
11044
|
+
return false;
|
|
11042
11045
|
};
|
|
11043
11046
|
// Applies filter to the collection.
|
|
11044
11047
|
FilterItemComponent.prototype.applyFilter = function (text) {
|