ngx-dsxlibrary 2.21.33 → 2.21.34

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.
@@ -3169,6 +3169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.11", ngImpo
3169
3169
  *
3170
3170
  * **Consulta / Descarga**
3171
3171
  * - `view` → Previsualizar o abrir detalle (azul cielo)
3172
+ * - `export` → Exportar información a Excel (verde Excel)
3172
3173
  * - `download` → Descargar archivo o recurso (ámbar cálido)
3173
3174
  */
3174
3175
  const ACTION_TYPES = {
@@ -3182,6 +3183,7 @@ const ACTION_TYPES = {
3182
3183
  saveOrUpdate: 'saveOrUpdate',
3183
3184
  refresh: 'refresh',
3184
3185
  view: 'view',
3186
+ export: 'export',
3185
3187
  download: 'download',
3186
3188
  };
3187
3189
  /**
@@ -3201,6 +3203,7 @@ const ACTION_TYPES = {
3201
3203
  * | neutral | Gris azulado | Acción secundaria / navegación sin contexto |
3202
3204
  * | restore | Violeta suave | Deshacer / restaurar estado anterior |
3203
3205
  * | view | Teal profundo | Ver / previsualizar detalle |
3206
+ * | excel | Verde Excel | Exportar información a hoja de cálculo |
3204
3207
  * | download | Naranja quemado| Descargar archivo o recurso |
3205
3208
  */
3206
3209
  const DSX_PALETTE = {
@@ -3213,6 +3216,7 @@ const DSX_PALETTE = {
3213
3216
  neutral: '#90A4AE',
3214
3217
  restore: '#AB47BC',
3215
3218
  view: '#00838F',
3219
+ excel: '#217346',
3216
3220
  download: '#E65100',
3217
3221
  };
3218
3222
  class DsxButtonComponent {
@@ -3598,6 +3602,13 @@ const ACTION_CONFIG = {
3598
3602
  colorToken: 'view',
3599
3603
  tooltip: 'Vista previa',
3600
3604
  },
3605
+ export: {
3606
+ label: 'Exportar',
3607
+ icon: 'file_export',
3608
+ primeIcon: 'pi pi-file-excel',
3609
+ colorToken: 'excel',
3610
+ tooltip: 'Exportar a Excel',
3611
+ },
3601
3612
  download: {
3602
3613
  label: 'Descargar',
3603
3614
  icon: 'download',