@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
27 lines (26 loc) • 903 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as r from "react";
import { BooleanFilterCell as a } from "@progress/kendo-react-data-tools";
import { localizeFilter as l, booleanFilterValues as i } from "./utils.mjs";
import { useLocalization as n } from "@progress/kendo-react-intl";
const m = (e) => {
const { operators: o, ...t } = e;
return /* @__PURE__ */ r.createElement(
a,
{
ariaLabel: "boolean filter",
...l(n(), o || i),
...t
}
);
};
m.displayName = "KendoReactGanttBooleanFilter";
export {
m as GanttBooleanFilter
};