@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
23 lines (22 loc) • 741 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
*-------------------------------------------------------------------------------------------
*/
"use client";
import * as e from "react";
import { GridContext as n } from "../../utils/GridContext.mjs";
import { cloneReactElement as r } from "../../utils/index.mjs";
const m = (t) => {
const o = {
style: { ...e.useContext(n).getCellPositionStyle(t.column) }
};
return r(t.children, {
...o
});
};
export {
m as GridFilterCellElementContainer
};