@progress/kendo-react-treelist
Version:
React TreeList enables the display of self-referencing tabular data. KendoReact TreeList package
26 lines (25 loc) • 866 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 m, numericFilterOperators as l } from "./utils.mjs";
import { useLocalization as a } from "@progress/kendo-react-intl";
const p = function(r) {
const { operators: e, ...t } = r;
return /* @__PURE__ */ i.createElement(
o,
{
ariaLabel: "numeric filter",
...m(a(), e || l),
...t
}
);
};
export {
p as TreeListNumericFilter
};