@solcre-org/core-ui 2.15.36 → 2.15.37

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.
@@ -10924,9 +10924,9 @@ class TableSortService {
10924
10924
  let newSorts;
10925
10925
  if (existingSort) {
10926
10926
  const currentDirection = existingSort.direction;
10927
- const newDirection = currentDirection === SortDirection.DESC
10928
- ? SortDirection.ASC
10929
- : SortDirection.DESC;
10927
+ const newDirection = currentDirection === SortDirection.ASC
10928
+ ? SortDirection.DESC
10929
+ : SortDirection.ASC;
10930
10930
  if (this.tableSortConfig.multiColumn) {
10931
10931
  newSorts = currentSorts.map(sort => sort.key === columnKey
10932
10932
  ? { ...sort, direction: newDirection }
@@ -10939,7 +10939,7 @@ class TableSortService {
10939
10939
  else {
10940
10940
  const newSort = {
10941
10941
  key: columnKey,
10942
- direction: SortDirection.DESC,
10942
+ direction: SortDirection.ASC,
10943
10943
  priority: 0
10944
10944
  };
10945
10945
  if (this.tableSortConfig.multiColumn) {
@@ -13094,7 +13094,7 @@ class GenericTableComponent {
13094
13094
  this.tableSortService.setSortConfigs([
13095
13095
  {
13096
13096
  key: MODEL_REFERENCE_SORT_KEY,
13097
- direction: SortDirection.DESC,
13097
+ direction: SortDirection.ASC,
13098
13098
  priority: 0,
13099
13099
  },
13100
13100
  ]);
@@ -13108,7 +13108,7 @@ class GenericTableComponent {
13108
13108
  this.tableSortService.setSortConfigs([
13109
13109
  {
13110
13110
  key: sortKey,
13111
- direction: SortDirection.DESC,
13111
+ direction: SortDirection.ASC,
13112
13112
  priority: 0,
13113
13113
  },
13114
13114
  ]);
@@ -16282,12 +16282,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
16282
16282
  // Este archivo es generado automáticamente por scripts/update-version.js
16283
16283
  // No edites manualmente este archivo
16284
16284
  const VERSION = {
16285
- full: '2.15.36',
16285
+ full: '2.15.37',
16286
16286
  major: 2,
16287
16287
  minor: 15,
16288
- patch: 36,
16289
- timestamp: '2025-11-19T17:12:00.703Z',
16290
- buildDate: '19/11/2025'
16288
+ patch: 37,
16289
+ timestamp: '2025-11-20T14:25:13.935Z',
16290
+ buildDate: '20/11/2025'
16291
16291
  };
16292
16292
 
16293
16293
  class MainNavComponent {