diff --git a/lib/core/src/lib/datatable/components/datatable/datatable.component.html b/lib/core/src/lib/datatable/components/datatable/datatable.component.html index f249d92ad5..b61ed5774c 100644 --- a/lib/core/src/lib/datatable/components/datatable/datatable.component.html +++ b/lib/core/src/lib/datatable/components/datatable/datatable.component.html @@ -97,11 +97,6 @@ " (click)="onColumnHeaderClick(col, $event)" (keyup.enter)="onColumnHeaderClick(col, $event)" - [coverPadding]="10" - (resizing)="onResizing($event, columnIndex)" - (keyboardResizing)="onResizing($event, columnIndex)" - (resizeStart)="resizingColumnIndex = columnIndex" - (resizeEnd)="onResizingEnd()" [attr.data-automation-id]="'auto_header_content_id_' + col.key" class="adf-datatable-cell-header-content" [ngClass]="{ @@ -166,27 +161,6 @@ } - @if (isResizingEnabled && col.resizable && !lastColumn) { -
-
-
- }
} diff --git a/lib/core/src/lib/datatable/components/datatable/datatable.component.ts b/lib/core/src/lib/datatable/components/datatable/datatable.component.ts index ef4bbf5f76..9b6223d412 100644 --- a/lib/core/src/lib/datatable/components/datatable/datatable.component.ts +++ b/lib/core/src/lib/datatable/components/datatable/datatable.component.ts @@ -65,8 +65,6 @@ import { CommonModule } from '@angular/common'; import { TranslatePipe } from '@ngx-translate/core'; import { FileTypePipe, LocalizedDatePipe } from '../../../pipes'; import { DropZoneDirective } from '../../directives/drop-zone.directive'; -import { ResizableDirective } from '../../directives/resizable/resizable.directive'; -import { ResizeHandleDirective } from '../../directives/resizable/resize-handle.directive'; import { MatButtonModule } from '@angular/material/button'; import { UploadDirective } from '../../../directives'; import { ContextMenuDirective } from '../../../context-menu'; @@ -101,9 +99,7 @@ export type ShowHeaderMode = (typeof ShowHeaderMode)[keyof typeof ShowHeaderMode MatCheckboxModule, CdkDrag, DropZoneDirective, - ResizableDirective, CdkDragHandle, - ResizeHandleDirective, MatButtonModule, MatMenuModule, IconModule,