/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { CompositeFilterDescriptor } from '@progress/kendo-data-query'; import { PopupAnimation } from '@progress/kendo-vue-popup'; import { ColumnMenuColumnProps } from './ColumnMenuColumnProps'; import { FilterOperators } from './FilterOperators'; /** * The props passed to the ColumnMenu filter component. */ export interface ColumnMenuFilterBaseProps { /** * Controls the ColumnMenu animation. By default, the opening and closing animations are enabled. */ animate?: boolean | PopupAnimation; /** * The current column options. */ column: ColumnMenuColumnProps; /** * The method that will be called to close the column menu. */ onClosemenu?: Function; /** * The current filter state of the . */ filter?: CompositeFilterDescriptor; /** * The filterable option of the column. */ filterable?: boolean | undefined; /** * The filter operators for the filters. */ filterOperators: FilterOperators; /** * The template that can customize the check all checkbox item. */ checkAllItem?: string | object | Function | boolean; /** * The template that can customize the checkbox item. */ item?: string | object | Function | boolean; /** * The trigger focus event. */ onFocus?: (e: any) => void; /** * The method that will be called to notify the parent about a filter change. */ onFilterchange?: (filter: CompositeFilterDescriptor | null, syntheticEvent: any) => any; }