UNPKG

@progress/kendo-angular-grid

Version:

Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.

35 lines (34 loc) 1.35 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Subject } from 'rxjs'; import { CompositeFilterDescriptor } from '@progress/kendo-data-query'; import { MenuTabbingService } from './menu/menu-tabbing.service'; import * as i0 from "@angular/core"; /** * Provides a service to set the filter descriptor. * [See example]({% slug filter_row %}#toc-custom-filter-row-components). */ export declare class FilterService { /** * @hidden */ menuTabbingService: MenuTabbingService; /** * Fires when the filter descriptor is set. */ changes: Subject<CompositeFilterDescriptor>; /** * Sets the filter descriptor. * * @param {CompositeFilterDescriptor} value - The filter descriptor to set. */ filter(value: CompositeFilterDescriptor): void; /** * @hidden */ constructor(menuTabbingService?: MenuTabbingService); static ɵfac: i0.ɵɵFactoryDeclaration<FilterService, [{ optional: true; }]>; static ɵprov: i0.ɵɵInjectableDeclaration<FilterService>; }