@solcre-org/core-ui 2.20.16 → 2.20.17

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.
@@ -13408,9 +13408,15 @@ class GenericTableComponent {
13408
13408
  currentFilterValues = signal(new Map());
13409
13409
  currentActiveFilters = computed(() => this.generateActiveFilters());
13410
13410
  headerFilters = computed(() => {
13411
+ if (this.mobileResolutionService.isMobile()) {
13412
+ return [];
13413
+ }
13411
13414
  return this.customFilters();
13412
13415
  });
13413
13416
  modalFilters = computed(() => {
13417
+ if (this.mobileResolutionService.isMobile()) {
13418
+ return this.customFilters();
13419
+ }
13414
13420
  return this.customFilters().filter(f => f.showOutsideFilterModal !== true);
13415
13421
  });
13416
13422
  isDeletedFilterActive = computed(() => {
@@ -17251,11 +17257,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17251
17257
  // Este archivo es generado automáticamente por scripts/update-version.js
17252
17258
  // No edites manualmente este archivo
17253
17259
  const VERSION = {
17254
- full: '2.20.16',
17260
+ full: '2.20.17',
17255
17261
  major: 2,
17256
17262
  minor: 20,
17257
- patch: 16,
17258
- timestamp: '2026-02-09T14:00:15.771Z',
17263
+ patch: 17,
17264
+ timestamp: '2026-02-09T15:27:02.438Z',
17259
17265
  buildDate: '9/2/2026'
17260
17266
  };
17261
17267