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