@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
18 lines (17 loc) • 877 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 { GridDetailCellServerContainer as o } from "./GridDetailCellServerContainer.mjs";
import { getDetailCellTdProps as d } from "./utils.mjs";
const c = (e) => {
const { dataItem: r, dataIndex: a, id: l } = e, { tdProps: i } = d(e);
return /* @__PURE__ */ t.createElement(o, { id: l, dataItem: r }, /* @__PURE__ */ t.createElement("td", { ...i }, /* @__PURE__ */ t.createElement(e.detail, { dataItem: r, dataIndex: a })));
};
export {
c as GridDetailCellServer
};