Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
luis cespedes 2025-05-05 14:52:34 -04:00
commit e9ee3ae78b
2 changed files with 4 additions and 3 deletions

View File

@ -24,7 +24,7 @@
<td>{{ product.codigoCronogramaAjuste }}</td>
<td>{{ product.tipoCarga }}</td>
<td style="background-color: #F8F9FA;border: none;width: 50px;">
<button style="background: transparent; border: none; cursor: pointer;">
<button pTooltip="Firma digital" tooltipPosition="left" showDelay="300" style="background: transparent; border: none; cursor: pointer;">
<i class="pi pi-pen-to-square" style="font-size: 24px;"></i>
</button>
</td>
@ -56,7 +56,7 @@
<td>{{ product.codigoCronogramaAjuste }}</td>
<td>{{ product.tipoCarga }}</td>
<td style="background-color: #F8F9FA;border: none;width: 50px;">
<button style="background: transparent; border: none; cursor: pointer;">
<button pTooltip="Notificar a unidad de información o empresa" tooltipPosition="left" showDelay="300" style="background: transparent; border: none; cursor: pointer;">
<i class="pi pi-arrow-circle-right" style="font-size: 24px;"></i>
</button>
</td>

View File

@ -2,10 +2,11 @@ import { Component } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { TableModule } from 'primeng/table';
import { InputTextModule } from 'primeng/inputtext';
import { TooltipModule } from 'primeng/tooltip';
@Component({
selector: 'app-resumen',
imports: [FormsModule, TableModule, InputTextModule],
imports: [FormsModule, TableModule, InputTextModule, TooltipModule],
templateUrl: './resumen.component.html',
styleUrl: './resumen.component.scss'
})