@solcre-org/core-ui 2.20.16 → 2.20.18
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.
|
@@ -8578,6 +8578,8 @@ class DateUtility {
|
|
|
8578
8578
|
return `${dd}/${mm}/${yyyy} ${HH}:${MM}`;
|
|
8579
8579
|
case 'YYYY-MM-DD HH:mm':
|
|
8580
8580
|
return `${yyyy}-${mm}-${dd} ${HH}:${MM}`;
|
|
8581
|
+
case 'DD/MM/YYYY':
|
|
8582
|
+
return `${dd}/${mm}/${yyyy}`;
|
|
8581
8583
|
case 'YYYY-MM-DD':
|
|
8582
8584
|
return `${yyyy}-${mm}-${dd}`;
|
|
8583
8585
|
default:
|
|
@@ -13408,9 +13410,15 @@ class GenericTableComponent {
|
|
|
13408
13410
|
currentFilterValues = signal(new Map());
|
|
13409
13411
|
currentActiveFilters = computed(() => this.generateActiveFilters());
|
|
13410
13412
|
headerFilters = computed(() => {
|
|
13413
|
+
if (this.mobileResolutionService.isMobile()) {
|
|
13414
|
+
return [];
|
|
13415
|
+
}
|
|
13411
13416
|
return this.customFilters();
|
|
13412
13417
|
});
|
|
13413
13418
|
modalFilters = computed(() => {
|
|
13419
|
+
if (this.mobileResolutionService.isMobile()) {
|
|
13420
|
+
return this.customFilters();
|
|
13421
|
+
}
|
|
13414
13422
|
return this.customFilters().filter(f => f.showOutsideFilterModal !== true);
|
|
13415
13423
|
});
|
|
13416
13424
|
isDeletedFilterActive = computed(() => {
|
|
@@ -17251,12 +17259,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17251
17259
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
17252
17260
|
// No edites manualmente este archivo
|
|
17253
17261
|
const VERSION = {
|
|
17254
|
-
full: '2.20.
|
|
17262
|
+
full: '2.20.18',
|
|
17255
17263
|
major: 2,
|
|
17256
17264
|
minor: 20,
|
|
17257
|
-
patch:
|
|
17258
|
-
timestamp: '2026-02-
|
|
17259
|
-
buildDate: '
|
|
17265
|
+
patch: 18,
|
|
17266
|
+
timestamp: '2026-02-11T13:48:01.302Z',
|
|
17267
|
+
buildDate: '11/2/2026'
|
|
17260
17268
|
};
|
|
17261
17269
|
|
|
17262
17270
|
class MainNavComponent {
|