@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
46 lines (45 loc) • 1.25 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 { LocalizationService } from '@progress/kendo-react-intl';
import { TreeListFilterOperator } from '../../interfaces/TreeListFilterOperator';
/**
* @hidden
*/
export declare const textFilterOperators: TreeListFilterOperator[];
/**
* @hidden
*/
export declare const numericFilterOperators: TreeListFilterOperator[];
/**
* @hidden
*/
export declare const dateFilterOperators: TreeListFilterOperator[];
/**
* @hidden
*/
export declare const booleanOperator: string;
/**
* @hidden
*/
export declare const booleanFilterValues: ({
text: string;
operator: string;
} | {
text: string;
operator: boolean;
})[];
/**
* @hidden
*/
export declare function localizeFilter(localization: LocalizationService, operators: TreeListFilterOperator[]): {
clearButtonTitle: string;
operators: {
text: string;
operator: any;
}[];
};