@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 { DateFilterCell as a } 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 n = function(t) {
const { operators: e, ...r } = t;
return /* @__PURE__ */ o.createElement(
a,
{
ariaLabel: "date filter",
...i(m(), e || l),
...r
}
);
};
export {
n as TreeListDateFilter
};