@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
26 lines (25 loc) • 848 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 { classNames as a } from "@progress/kendo-react-common";
const c = (e) => {
const l = a("k-table-td", e.className);
return { tdProps: {
colSpan: e.colSpan,
style: e.style,
className: l,
"aria-colindex": e.ariaColumnIndex,
role: "gridcell"
} };
}, o = (e) => {
var l, t;
return (t = (l = e.cells) == null ? void 0 : l.select) == null ? void 0 : t[e.rowType || "data"];
};
export {
o as getCustomCell,
c as getSelectionCellTdProps
};