UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

19 lines (18 loc) 828 B
/** * @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 { getDetailCellTdProps as d } from "./utils.mjs"; import { useDetailCellClientTdProps as i } from "./useDetailCellClientTdProps.mjs"; const c = (t) => { const { dataItem: l, dataIndex: r } = t, { tdProps: a } = d(t), o = i(t); return /* @__PURE__ */ e.createElement("td", { ...a, ...o }, /* @__PURE__ */ e.createElement(t.detail, { dataItem: l, dataIndex: r })); }; export { c as GridDetailCell };