s4y-ui 5.9.2 → 6.1.0

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.
@@ -1132,9 +1132,11 @@ class TableComponent {
1132
1132
  map.set(key, s.value);
1133
1133
  }
1134
1134
  const normalized = Array.from(map.entries()).map(([key, value]) => ({ key, value }));
1135
- console.log(normalized);
1136
1135
  this.sorts.set(normalized);
1137
1136
  this.multiSortFunction.emit(normalized);
1137
+ console.log('[TABLE] headers:', this.headers());
1138
+ console.log('[TABLE] incoming initialSorts:', this.initialSorts());
1139
+ console.log('[TABLE] normalized:', normalized);
1138
1140
  });
1139
1141
  // SINGLE: sortField/sortOrder -> sortBy/sortDirection (faltava isso)
1140
1142
  effect(() => {