@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
46 lines (45 loc) • 1.38 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 e from "react";
import { classNames as m } from "@progress/kendo-react-common";
const u = e.forwardRef(
(r, a) => {
const o = e.useRef(null), n = e.useRef(null);
e.useImperativeHandle(n, () => ({ props: r, element: o.current })), e.useImperativeHandle(
a,
() => n.current
);
const { id: l, style: s, tabIndex: i, configuratorPosition: t, className: c, children: f } = { ...d, ...r };
return /* @__PURE__ */ e.createElement(
"div",
{
ref: o,
id: l,
style: s,
tabIndex: i,
className: m(
"k-d-flex k-pos-relative",
{
"k-flex-row": t === "right",
"k-flex-row-reverse": t === "left",
"k-flex-column": t === "bottom",
"k-flex-column-reverse": t === "top"
},
c
)
},
f
);
}
), d = {
configuratorPosition: "right"
};
u.displayName = "KendoReactPivotGridContainer";
export {
u as PivotGridContainer
};