UNPKG

@alfresco/adf-core

Version:
43 lines (42 loc) 2.17 kB
/*! * @license * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { EventEmitter, OnInit } from '@angular/core'; import { UntypedFormControl } from '@angular/forms'; import { MatMenuTrigger } from '@angular/material/menu'; import { DataColumn } from '../../data/data-column.model'; import { MatSelectionListChange } from '@angular/material/list'; import * as i0 from "@angular/core"; export declare class ColumnsSelectorComponent implements OnInit { columns: DataColumn[]; mainMenuTrigger: MatMenuTrigger; columnsSorting: boolean; maxColumnsVisible?: number; submitColumnsVisibility: EventEmitter<DataColumn<unknown>[]>; columnItems: DataColumn[]; searchInputControl: UntypedFormControl; searchQuery: string; private readonly destroyRef; ngOnInit(): void; closeMenu(): void; changeColumnVisibility(event: MatSelectionListChange): void; apply(): void; isCheckboxDisabled(column: DataColumn): boolean; private updateColumnItems; private sortColumns; static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsSelectorComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsSelectorComponent, "adf-datatable-column-selector", never, { "columns": { "alias": "columns"; "required": false; }; "mainMenuTrigger": { "alias": "mainMenuTrigger"; "required": true; }; "columnsSorting": { "alias": "columnsSorting"; "required": false; }; "maxColumnsVisible": { "alias": "maxColumnsVisible"; "required": false; }; }, { "submitColumnsVisibility": "submitColumnsVisibility"; }, never, never, true, never>; }