UNPKG

@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) 891 B
/** * @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 o from "react"; import { TextFilterCell as a } from "@progress/kendo-react-data-tools"; import { localizeFilter as i, textFilterOperators as l } from "./utils.mjs"; import { useLocalization as m } from "@progress/kendo-react-intl"; const p = (t) => { const { operators: e, ...r } = t; return /* @__PURE__ */ o.createElement( a, { ariaLabel: "text filter", ...i(m(), e || l), ...r } ); }; p.displayName = "KendoReactGanttTextFilter"; export { p as GanttTextFilter };