@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
46 lines (45 loc) • 1.23 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 { GanttFilterOperator } from '../../interfaces/GanttFilterOperator.js';
/**
* @hidden
*/
export declare const textFilterOperators: GanttFilterOperator[];
/**
* @hidden
*/
export declare const numericFilterOperators: GanttFilterOperator[];
/**
* @hidden
*/
export declare const dateFilterOperators: GanttFilterOperator[];
/**
* @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: GanttFilterOperator[]): {
clearButtonTitle: string;
operators: {
text: string;
operator: any;
}[];
};