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

52 lines (51 loc) 2.42 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 i } from "./components/Column.mjs"; import { PivotGridRow as d } from "./components/Row.mjs"; import { PivotGridCell as v } from "./components/Cell.mjs"; import { PivotGridHeaderCell as x } from "./components/HeaderCell.mjs"; import { PivotGridContainer as P } from "./components/Container.mjs"; import { PivotGridConfigurator as G } from "./components/Configurator.mjs"; import { PivotGridConfiguratorEditor as A } 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 y } from "./hooks/usePivotOLAPService.mjs"; import { PivotLocalDataService as H, usePivotLocalDataService as R } from "./hooks/usePivotLocalDataService.mjs"; import { dataCells as b } from "./utils/index.mjs"; import { AggregateType as j, averageAggregate as k, createAggregate as q, maxAggregate as z, minAggregate as I, sumAggregate as J } from "@progress/kendo-pivotgrid-common"; export { j as AggregateType, t as PivotGrid, E as PivotGridAxesEditor, S as PivotGridAxisEditor, D as PivotGridAxisFilterFieldsEditor, v as PivotGridCell, i as PivotGridColumn, G as PivotGridConfigurator, n as PivotGridConfiguratorButton, A as PivotGridConfiguratorEditor, P as PivotGridContainer, C as PivotGridFieldsEditor, x as PivotGridHeaderCell, d as PivotGridRow, H as PivotLocalDataService, w as PivotOLAPService, k as averageAggregate, q as createAggregate, b as dataCells, z as maxAggregate, I as minAggregate, J as sumAggregate, R as usePivotLocalDataService, y as usePivotOLAPService };