/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, NgZone, Renderer2, EventEmitter, OnInit, OnDestroy, SimpleChanges, QueryList, ChangeDetectorRef } from '@angular/core'; import { ColumnMenuService } from './column-menu.service'; import { ColumnListKeyboardNavigation } from './column-list-kb-nav.service'; import { CheckBoxComponent, TextBoxComponent } from '@progress/kendo-angular-inputs'; import { ContextService } from '../common/provider.service'; import { AdaptiveGridService } from '../common/adaptiveness.service'; import { ColumnInfoService } from '../common/column-info.service'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class ColumnListComponent implements OnInit, OnDestroy { private element; private ngZone; private renderer; listNavigationService: ColumnListKeyboardNavigation; private cdr; columnInfoService: ColumnInfoService; private adaptiveGridService; private ctx; className: boolean; get listSizeMd(): boolean; get listSizeLg(): boolean; reset: EventEmitter; apply: EventEmitter; columnChange: EventEmitter; set columns(value: any[]); get columns(): any[]; get checkedCheckboxesLength(): number; filteredColumns: any[]; autoSync: boolean; showSelectAll: boolean; isFiltered: boolean; ariaLabel: string; allowHideAll: boolean; applyText: string; resetText: string; selectAllText: string; isLast: boolean; isExpanded: boolean; service: ColumnMenuService; filterable: boolean; checkboxes: QueryList; get columnCheckboxes(): CheckBoxComponent[]; get lockedColumnCheckboxes(): CheckBoxComponent[]; get unlockedColumnCheckboxes(): CheckBoxComponent[]; get checkedCheckboxes(): number; resetButton: ElementRef; applyButton: ElementRef; filterInput: TextBoxComponent; private _columns; private domSubscriptions; private lastDisabledCheckbox; private handledKeys; constructor(element: ElementRef, ngZone: NgZone, renderer: Renderer2, listNavigationService: ColumnListKeyboardNavigation, cdr: ChangeDetectorRef, columnInfoService: ColumnInfoService, adaptiveGridService: AdaptiveGridService, ctx: ContextService); ngOnInit(): void; ngAfterViewInit(): void; ngOnChanges(changes: SimpleChanges): void; onSelectAllCheckboxChange(checkedState: any): void; ngOnDestroy(): void; cancelChanges(): void; applyChanges(): void; focusActiveColumn(e: Event): void; onTab(e: Event): void; onKeydown: (e: KeyboardEvent) => void; private updateDisabled; private disableFirstUnlockedCheckedCheckbox; private enableLastDisabledColumn; private setDisabledState; onCheckboxChange(checkedState: any, column: any, _index: number): void; private setTabindex; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }