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