/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { MenuTabbingService } from './menu-tabbing.service'; import { CompositeFilterDescriptor, FilterDescriptor } from '@progress/kendo-data-query'; import { StringFilterComponent } from '../string-filter.component'; import { FilterService } from '../filter.service'; import { ContextService } from '../../common/provider.service'; import * as i0 from "@angular/core"; /** * Represents a string-filter menu component. * Use this component to filter string values in the Grid. * [See example](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu#built-in-filter-menu-components). * * @example * ```html * * * * * * * ``` * @remarks * Supported children components are: {@link EqualFilterOperatorComponent}, {@link NotEqualFilterOperatorComponent}, {@link ContainsFilterOperatorComponent}, {@link DoesNotContainFilterOperatorComponent}, {@link StartsWithFilterOperatorComponent}, {@link EndsWithFilterOperatorComponent}, {@link IsNullFilterOperatorComponent}, {@link IsNotNullFilterOperatorComponent}, {@link IsEmptyFilterOperatorComponent}, {@link IsNotEmptyFilterOperatorComponent}. */ export declare class StringFilterMenuComponent extends StringFilterComponent { ctx: ContextService; logicOperators: Array<{ text: string; value: "and" | "or"; }>; /** * @hidden */ get hostClasses(): boolean; /** * The current menu filter. * @type {CompositeFilterDescriptor} */ filter: CompositeFilterDescriptor; /** * Determines if the inputs for the second criteria are displayed. * @default true */ extra: boolean; /** * Sets to `FilterService` instance that handles changes in the filter descriptor. */ filterService: FilterService; /** * The placeholder text for the filter input. * @type {string} */ placeholder: any; /** * Sets the placeholder text for the second filter input. * Applies when `extra` is set to `true`. * @type {string} */ extraPlaceholder: any; /** * @hidden */ menuTabbingService: MenuTabbingService; constructor(ctx: ContextService); get firstFilter(): FilterDescriptor; get secondFilter(): FilterDescriptor; logicChange(value: 'and' | 'or'): void; get filterMenuDropDownLabel(): string; protected localizationChange(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }