@progress/kendo-vue-grid
Version:
66 lines (65 loc) • 2.16 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { GridFilterOperator } from '../interfaces/GridFilterOperator';
import { PropType } from 'vue';
/**
* @hidden
*/
export interface ColumnMenuFilterCellProps {
field?: string;
filterType: string;
value: any;
operator: string;
operators: Array<{
text: string;
operator: any;
}>;
booleanValues: GridFilterOperator[];
onFocus?: (e: any) => void;
onChange?: (event: {
value: any;
operator: string | Function;
syntheticEvent: any;
}) => void;
}
/**
* @hidden
*/
declare const GridColumnMenuFilterCell: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
field: PropType<string>;
filterType: PropType<string>;
value: PropType<any>;
operator: PropType<string>;
operators: PropType<{
text: string;
operator: any;
}[]>;
booleanValues: PropType<GridFilterOperator[]>;
}>, {}, {}, {}, {
handleFocus(e: any): void;
triggerChange(filter: any): void;
inputChange(value: any, e: any): void;
boolDropdownChange(value: any, e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: any;
filtercellfocus: any;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
field: PropType<string>;
filterType: PropType<string>;
value: PropType<any>;
operator: PropType<string>;
operators: PropType<{
text: string;
operator: any;
}[]>;
booleanValues: PropType<GridFilterOperator[]>;
}>> & Readonly<{
onChange?: (...args: any[] | unknown[]) => any;
onFiltercellfocus?: (...args: any[] | unknown[]) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { GridColumnMenuFilterCell };