simpo-component-library 3.6.219 → 3.6.220

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.
@@ -16539,6 +16539,10 @@ class ProductListComponent extends BaseSection {
16539
16539
  this.collections?.forEach((collection) => {
16540
16540
  collection.status = collections?.includes(collection?.option?.toLowerCase()) ?? false;
16541
16541
  });
16542
+ this.filteredChips = [
16543
+ ...this.selectedCategoryCollectionChips.map(x => ({ ...x, type: 'categoryOrCollection' })),
16544
+ ...this.selectedPriceRangeChips,
16545
+ ];
16542
16546
  // DO NOT rebuild filterList here! (Chips will auto-update from status arrays via the getter.)
16543
16547
  this.filterItemList();
16544
16548
  }