@solcre-org/core-ui 2.26.0 → 2.26.1

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.
@@ -232,3 +232,7 @@
232
232
  background-color: hsl(from hsl(var(--color-context-error-hsl)) h s 94%);
233
233
  border-radius: var(--_entry-input-br, 8px);
234
234
  }
235
+
236
+ .s-dark-mode .c-native-select{
237
+ background-color: var(--color-neutral-900);
238
+ }
@@ -15492,14 +15492,15 @@ class GenericTableComponent {
15492
15492
  getSortButtonTitle(column) {
15493
15493
  const sortState = this.getColumnSortState(column);
15494
15494
  const priority = this.getColumnSortPriority(column);
15495
+ const label = this.translationService.instant(column.label);
15495
15496
  if (!sortState) {
15496
- return `Ordenar por ${column.label}`;
15497
+ return `Ordenar por ${label}`;
15497
15498
  }
15498
15499
  const direction = sortState === SortDirection.ASC ? 'ascendente' : 'descendente';
15499
15500
  const priorityText = this.isMultiColumnSortEnabled() && priority !== null
15500
15501
  ? ` (prioridad ${priority + 1})`
15501
15502
  : '';
15502
- return `Ordenado por ${column.label} ${direction}${priorityText}. Click para cambiar.`;
15503
+ return `Ordenado por ${label} ${direction}${priorityText}. Click para cambiar.`;
15503
15504
  }
15504
15505
  handleSortChange() {
15505
15506
  if (this.tableSortService.isServerMode()) {
@@ -17766,12 +17767,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17766
17767
  // Este archivo es generado automáticamente por scripts/update-version.js
17767
17768
  // No edites manualmente este archivo
17768
17769
  const VERSION = {
17769
- full: '2.26.0',
17770
+ full: '2.26.1',
17770
17771
  major: 2,
17771
17772
  minor: 26,
17772
- patch: 0,
17773
- timestamp: '2026-03-27T13:08:49.542Z',
17774
- buildDate: '27/3/2026'
17773
+ patch: 1,
17774
+ timestamp: '2026-04-01T12:35:16.330Z',
17775
+ buildDate: '1/4/2026'
17775
17776
  };
17776
17777
 
17777
17778
  class MainNavComponent {