@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) • 906 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 i from "react";
import { NumericFilterCell as o } from "@progress/kendo-react-data-tools";
import { localizeFilter as a, numericFilterOperators as m } from "./utils.mjs";
import { useLocalization as l } from "@progress/kendo-react-intl";
const c = (r) => {
const { operators: e, ...t } = r;
return /* @__PURE__ */ i.createElement(
o,
{
ariaLabel: "numeric filter",
...a(l(), e || m),
...t
}
);
};
c.displayName = "KendoReactGanttNumericFilter";
export {
c as GanttNumericFilter
};