UNPKG

@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

50 lines (49 loc) 2.33 kB
/** * @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 { PivotGrid as t } from "./PivotGrid.mjs"; import { PivotGridColumn as e } from "./components/Column.mjs"; import { PivotGridRow as v } from "./components/Row.mjs"; import { PivotGridCell as x } from "./components/Cell.mjs"; import { PivotGridHeaderCell as f } from "./components/HeaderCell.mjs"; import { PivotGridContainer as p } from "./components/Container.mjs"; import { PivotGridConfigurator as G } from "./components/Configurator.mjs"; import { PivotGridConfiguratorEditor as s } from "./components/ConfiguratorEditor.mjs"; import { PivotGridConfiguratorButton as n } from "./components/ConfiguratorButton.mjs"; import { PivotGridFieldsEditor as C } from "./components/FieldsEditor.mjs"; import { PivotGridAxesEditor as E } from "./components/AxesEditor.mjs"; import { PivotGridAxisEditor as S } from "./components/AxisEditor.mjs"; import { PivotGridAxisFilterFieldsEditor as D } from "./components/AxisFilterFieldsEditor.mjs"; import { PivotOLAPService as w, usePivotOLAPService as B } from "./hooks/usePivotOLAPService.mjs"; import { PivotLocalDataService as R, usePivotLocalDataService as b } from "./hooks/usePivotLocalDataService.mjs"; import { dataCells as j } from "./utils/index.mjs"; import { averageAggregate as q, maxAggregate as y, minAggregate as z, sumAggregate as I } from "@progress/kendo-pivotgrid-common"; export { t as PivotGrid, E as PivotGridAxesEditor, S as PivotGridAxisEditor, D as PivotGridAxisFilterFieldsEditor, x as PivotGridCell, e as PivotGridColumn, G as PivotGridConfigurator, n as PivotGridConfiguratorButton, s as PivotGridConfiguratorEditor, p as PivotGridContainer, C as PivotGridFieldsEditor, f as PivotGridHeaderCell, v as PivotGridRow, R as PivotLocalDataService, w as PivotOLAPService, q as averageAggregate, j as dataCells, y as maxAggregate, z as minAggregate, I as sumAggregate, b as usePivotLocalDataService, B as usePivotOLAPService };