import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'dropdownWidth', standalone: true, }) export class DropdownWidthPipe implements PipeTransform { transform(columnWidth: number): { [key: string]: string } { return { width: `calc(${columnWidth}px - 3px)`, }; } }