/*! * @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 { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { ConfigurableFocusTrap } from '@angular/cdk/a11y'; import { DataColumn } from '@alfresco/adf-core'; import { SearchWidgetContainerComponent } from '../search-widget-container/search-widget-container.component'; import { SearchCategory } from '../../models/search-category.interface'; import { MatMenuTrigger } from '@angular/material/menu'; import * as i0 from "@angular/core"; export declare class SearchFilterContainerComponent implements OnInit { private readonly searchFilterQueryBuilder; private readonly translationService; private readonly focusTrapFactory; private readonly matIconRegistry; private readonly sanitizer; /** The column the filter will be applied on. */ col: DataColumn; /** The column the filter will be applied on. */ value: any; /** Emitted when a filter value is selected */ filterChange: EventEmitter; widgetContainer: SearchWidgetContainerComponent; filterContainer: ElementRef; category: SearchCategory; focusTrap: ConfigurableFocusTrap; initialValue: any; ngOnInit(): void; onKeyPressed(event: KeyboardEvent, menuTrigger: MatMenuTrigger): void; onApply(): void; onClearButtonClick(event: Event): void; resetSearchFilter(): void; getTooltipTranslation(columnTitle: string): string; isActive(): boolean; onMenuOpen(): void; onClosed(): void; private registerFilterIcon; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }