@progress/kendo-react-pivotgrid
Version:
React PivotGrid (also called Pivot Table) can be data-bound to an OLAP service and customized extensively. KendoReact PivotGrid package
42 lines (41 loc) • 1.17 kB
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 { useMouse as d, classNames as n } from "@progress/kendo-react-common";
const c = t.forwardRef((e, r) => {
const a = t.useRef(null), l = t.useRef(null);
t.useImperativeHandle(a, () => ({
element: l.current,
props: e
})), t.useImperativeHandle(r, () => a.current);
const i = d(e, a);
return /* @__PURE__ */ t.createElement(
"td",
{
ref: l,
...i,
id: e.id,
style: e.style,
tabIndex: e.tabIndex,
role: e.role,
"aria-describedby": e.ariaDescribedby,
className: n(
"k-pivotgrid-cell",
{
"k-pivotgrid-header-total": e.total
},
e.className
)
},
e.children
);
});
c.displayName = "KendoReactPivotGridCell";
export {
c as PivotGridCell
};