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