@progress/kendo-angular-pivotgrid 24.2.2 → 25.0.0-develop.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/fesm2022/progress-kendo-angular-pivotgrid.mjs +117 -117
  2. package/index.d.ts +1667 -25
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +18 -18
  5. package/schematics/ngAdd/index.js +2 -2
  6. package/configurator/chip-kb-nav.directive.d.ts +0 -25
  7. package/configurator/chip-menu/chip-menu-container.component.d.ts +0 -21
  8. package/configurator/chip-menu/chip-menu-filter.component.d.ts +0 -44
  9. package/configurator/chip-menu/chip-menu-item-base.d.ts +0 -22
  10. package/configurator/chip-menu/chip-menu-item-content-template.directive.d.ts +0 -18
  11. package/configurator/chip-menu/chip-menu-item.component.d.ts +0 -60
  12. package/configurator/chip-menu/chip-menu-item.directive.d.ts +0 -32
  13. package/configurator/chip-menu/chip-menu-reorder.component.d.ts +0 -44
  14. package/configurator/chip-menu/chip-menu-sort.component.d.ts +0 -36
  15. package/configurator/chip-menu/chip-menu.component.d.ts +0 -41
  16. package/configurator/chip-menu/chip-menu.service.d.ts +0 -26
  17. package/configurator/chip-menu/filtering/filter-menu-container.component.d.ts +0 -44
  18. package/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.d.ts +0 -19
  19. package/configurator/chip-menu/filtering/menu-tabbing.service.d.ts +0 -16
  20. package/configurator/chip-menu/filtering/string-filter-menu.component.d.ts +0 -53
  21. package/configurator/chip-menu/single-popup.service.d.ts +0 -53
  22. package/configurator/configurator.component.d.ts +0 -128
  23. package/configurator/configurator.service.d.ts +0 -32
  24. package/configurator/draggable.directive.d.ts +0 -34
  25. package/configurator/drop-cue.service.d.ts +0 -23
  26. package/configurator/drop-target.directive.d.ts +0 -38
  27. package/data-binding/base-binding-directive.d.ts +0 -74
  28. package/data-binding/local-binding.directive.d.ts +0 -57
  29. package/data-binding/olap-binding.directive.d.ts +0 -58
  30. package/data-binding/pivotgrid-data.service.d.ts +0 -51
  31. package/directives.d.ts +0 -58
  32. package/localization/custom-messages.component.d.ts +0 -31
  33. package/localization/localized-messages.directive.d.ts +0 -16
  34. package/localization/messages.d.ts +0 -178
  35. package/localization/pivot-localization.service.d.ts +0 -19
  36. package/models/configuration-change-event.d.ts +0 -36
  37. package/models/configurator-chipmenu-reorder-target.d.ts +0 -8
  38. package/models/configurator-orientation.d.ts +0 -10
  39. package/models/configurator-position.d.ts +0 -10
  40. package/models/configurator-settings.d.ts +0 -37
  41. package/models/data-row-item.d.ts +0 -18
  42. package/models/drop-section.d.ts +0 -8
  43. package/models/drop-target.d.ts +0 -8
  44. package/models/expanded-change-event.d.ts +0 -27
  45. package/models/expanded-state-action.d.ts +0 -16
  46. package/models/loader-settings.d.ts +0 -57
  47. package/models/virtualization-settings.d.ts +0 -43
  48. package/package-metadata.d.ts +0 -9
  49. package/pivotgrid.component.d.ts +0 -145
  50. package/pivotgrid.module.d.ts +0 -56
  51. package/rendering/pivotgrid-cell.directive.d.ts +0 -38
  52. package/rendering/pivotgrid-table.component.d.ts +0 -60
  53. package/rendering/templates/pivotgrid-cell-template.directive.d.ts +0 -35
  54. package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +0 -35
  55. package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +0 -35
  56. package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +0 -34
  57. package/util.d.ts +0 -87
  58. package/virtual/scroll.service.d.ts +0 -15
  59. package/virtual/scrollable-container.d.ts +0 -35
@@ -1,53 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PopupService, PopupRef } from '@progress/kendo-angular-popup';
6
- import { Renderer2, NgZone, OnDestroy } from '@angular/core';
7
- import { Subject } from 'rxjs';
8
- import { PreventableEvent } from '@progress/kendo-angular-common';
9
- import { PivotLocalizationService } from '../../localization/pivot-localization.service';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * @hidden
13
- * Arguments for the `close` event of the chip-menu popup.
14
- */
15
- export declare class PopupCloseEvent extends PreventableEvent {
16
- /**
17
- * The original DOM event that causes the popup to close.
18
- */
19
- originalEvent: any;
20
- /**
21
- * @hidden
22
- */
23
- constructor(e: any);
24
- }
25
- /**
26
- * @hidden
27
- * The service that is used for the popups of the chip menus.
28
- */
29
- export declare class SinglePopupService implements OnDestroy {
30
- private popupService;
31
- private renderer;
32
- private ngZone;
33
- private localization;
34
- /**
35
- * Fires when the chip menus are about to close because the user clicked outside their popups.
36
- * Used to prevent the popup from closing.
37
- */
38
- readonly onClose: Subject<PopupCloseEvent>;
39
- private removeClick;
40
- private pointerEventsSub;
41
- private popupRef;
42
- private scrollSubscription;
43
- private canClosePopup;
44
- constructor(popupService: PopupService, renderer: Renderer2, ngZone: NgZone, localization: PivotLocalizationService);
45
- open(anchor: any, template: any, popupRef: PopupRef, popupClass?: string): PopupRef;
46
- destroy(): void;
47
- ngOnDestroy(): void;
48
- private detachClose;
49
- private attachClose;
50
- private attachMouseListeners;
51
- static ɵfac: i0.ɵɵFactoryDeclaration<SinglePopupService, never>;
52
- static ɵprov: i0.ɵɵInjectableDeclaration<SinglePopupService>;
53
- }
@@ -1,128 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectorRef, EventEmitter, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
6
- import { AxisDescriptor, PivotGridField, PivotGridConfiguratorState, ConfiguratorNavigation } from '@progress/kendo-pivotgrid-common';
7
- import { TreeItem, TreeViewComponent } from '@progress/kendo-angular-treeview';
8
- import { PivotGridDataService } from '../data-binding/pivotgrid-data.service';
9
- import { ConfiguratorService } from './configurator.service';
10
- import { Observable } from 'rxjs';
11
- import { LocalizationService } from '@progress/kendo-angular-l10n';
12
- import { FilterDescriptor, SortDescriptor } from '@progress/kendo-data-query';
13
- import { PivotGridConfiguratorOrientation } from '../models/configurator-orientation';
14
- import { DropSectionType } from '../models/drop-section';
15
- import { ChipListComponent, ChipRemoveEvent } from '@progress/kendo-angular-buttons';
16
- import * as i0 from "@angular/core";
17
- /**
18
- * @hidden
19
- * Represents the Kendo UI PivotGrid Configurator component for Angular.
20
- */
21
- export declare class PivotGridConfiguratorComponent implements OnInit, OnChanges, OnDestroy {
22
- private dataService;
23
- private localization;
24
- configuratorService: ConfiguratorService;
25
- private cdr;
26
- private zone;
27
- hostClass: boolean;
28
- hostAriaRole: string;
29
- get headerTextId(): string;
30
- orientation: PivotGridConfiguratorOrientation;
31
- sort: Array<SortDescriptor>;
32
- filter: FilterDescriptor[];
33
- navigation: ConfiguratorNavigation;
34
- close: EventEmitter<any>;
35
- treeView: TreeViewComponent;
36
- columnsList: ChipListComponent;
37
- rowsList: ChipListComponent;
38
- originalState: PivotGridConfiguratorState;
39
- state: PivotGridConfiguratorState;
40
- fields: PivotGridField[];
41
- checked: any[];
42
- get isHorizontal(): boolean;
43
- get isApplyDisabled(): boolean;
44
- private subs;
45
- /**
46
- * A function which determines if a specific node has child nodes.
47
- */
48
- hasChildren: (node: any) => boolean;
49
- constructor(dataService: PivotGridDataService, localization: LocalizationService, configuratorService: ConfiguratorService, cdr: ChangeDetectorRef, zone: NgZone);
50
- ngOnInit(): void;
51
- ngAfterViewInit(): void;
52
- ngOnDestroy(): void;
53
- ngOnChanges(changes: SimpleChanges): void;
54
- getName(name: string[]): string;
55
- contentLabelId(section: string): string;
56
- setState(state: PivotGridConfiguratorState): void;
57
- onReorder(ev: any, name: string, item: any): void;
58
- /**
59
- * Returns the localized message for a given token
60
- */
61
- messageFor(localizationToken: string): string;
62
- /**
63
- * Retrieves the 'Columns' section item names
64
- */
65
- get columnHierarchies(): unknown[];
66
- /**
67
- * Retrieves the 'Rows' section item names
68
- */
69
- get rowHierarchies(): unknown[];
70
- /**
71
- * Retrieves the 'Value' section item names
72
- */
73
- get measureHierarchies(): unknown[];
74
- /**
75
- * Updates the respective axis configuration of the current state
76
- * when a chip is deleted from the UI
77
- */
78
- onChipRemove(ev: ChipRemoveEvent, item: AxisDescriptor, section: DropSectionType): void;
79
- /**
80
- * Constructs an array with all selected fields.
81
- * @param fields - used for when child nodes are loaded on demand.
82
- * Child nodes are concatinated to the root level nodes.
83
- */
84
- setChecked(fields?: any[]): void;
85
- checkItemBy: (context: any) => any;
86
- /**
87
- * Determines if a checkbox should be rendered.
88
- */
89
- isSelectable(node: any): boolean;
90
- /**
91
- * A function which provides the child nodes for a given parent node.
92
- */
93
- children: (node: any) => Observable<any[]>;
94
- /**
95
- * Check if the newly loaded child nodes have checked items.
96
- * (Only for OLAP data-binding directive)
97
- */
98
- handleChildrenLoaded(event: {
99
- children: TreeItem[];
100
- item: TreeItem;
101
- }): void;
102
- handleCheckedChange(event: any): void;
103
- onTreeViewSelect(ev: Event): void;
104
- onTreeViewEscape(ev: KeyboardEvent): void;
105
- handleSubmit(): void;
106
- /**
107
- * Reset the configurator to the last saved state
108
- */
109
- handleReset(): void;
110
- /**
111
- * Flattens all available fields.
112
- */
113
- private getFieldsFlatMap;
114
- /**
115
- * Creates an array containing only the field names, e.g. '[Date].[Calendar]' or 'Product'
116
- */
117
- private extractDefaultFields;
118
- /**
119
- * Swaps chips within the same ChipList
120
- */
121
- private swapChips;
122
- /**
123
- * Moves a chip from one ChipList to another
124
- */
125
- private moveChip;
126
- static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridConfiguratorComponent, never>;
127
- static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridConfiguratorComponent, "kendo-pivotgrid-configurator", never, { "orientation": { "alias": "orientation"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; }, { "close": "close"; }, never, never, true, never>;
128
- }
@@ -1,32 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter } from '@angular/core';
6
- import { PivotGridConfiguratorState } from '@progress/kendo-pivotgrid-common';
7
- import { PivotGridDataService } from '../data-binding/pivotgrid-data.service';
8
- import { PivotGridConfiguratorOrientation } from '../models/configurator-orientation';
9
- import { DropSectionType } from '../models/drop-section';
10
- import type { PivotGridConfiguratorComponent } from './configurator.component';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * @hidden
14
- */
15
- export declare class ConfiguratorService {
16
- private dataService;
17
- configuratorInstance: PivotGridConfiguratorComponent;
18
- state: PivotGridConfiguratorState;
19
- draggedElement: {
20
- element: Element;
21
- fromSection: DropSectionType;
22
- };
23
- dropTargetElement: Element;
24
- cueContainer: Element;
25
- orientation: PivotGridConfiguratorOrientation;
26
- configuratorStateChange: EventEmitter<any>;
27
- closeMenu: EventEmitter<any>;
28
- constructor(dataService: PivotGridDataService);
29
- parseConfiguratorState(action: any): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfiguratorService, never>;
31
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfiguratorService>;
32
- }
@@ -1,34 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, OnInit, NgZone, OnDestroy, Renderer2 } from '@angular/core';
6
- import { DraggableDirective } from '@progress/kendo-angular-common';
7
- import { PivotGridAxis } from '@progress/kendo-pivotgrid-common';
8
- import { ConfiguratorService } from './configurator.service';
9
- import { DropCueService } from './drop-cue.service';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * @hidden
13
- */
14
- export declare class DraggableChipDirective implements OnInit, OnDestroy {
15
- draggable: DraggableDirective;
16
- private element;
17
- private zone;
18
- private service;
19
- private cue;
20
- private renderer;
21
- get pointerEvents(): any;
22
- touchActions: string;
23
- item: PivotGridAxis;
24
- initialX: any;
25
- initialY: any;
26
- private drag;
27
- private invalidTarget;
28
- private subs;
29
- constructor(draggable: DraggableDirective, element: ElementRef, zone: NgZone, service: ConfiguratorService, cue: DropCueService, renderer: Renderer2);
30
- ngOnInit(): void;
31
- ngOnDestroy(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<DraggableChipDirective, [{ optional: true; }, null, null, null, null, null]>;
33
- static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableChipDirective, "[kendoChipDraggable]", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
34
- }
@@ -1,23 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PivotGridConfiguratorDropDirection } from '@progress/kendo-pivotgrid-common';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare const append: (element: any, container: any) => () => any;
11
- /**
12
- * @hidden
13
- */
14
- export declare class DropCueService {
15
- dom: any;
16
- create(): void;
17
- attach(container: Element): Function;
18
- remove(container: Element): void;
19
- hide(): void;
20
- show(direction: PivotGridConfiguratorDropDirection, container: Element, target: Element): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<DropCueService, never>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<DropCueService>;
23
- }
@@ -1,38 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, NgZone, OnDestroy, OnInit, Renderer2 } from "@angular/core";
6
- import { PivotGridAxis, PivotGridConfiguratorDropZone } from "@progress/kendo-pivotgrid-common";
7
- import { ConfiguratorService } from "./configurator.service";
8
- import { DropCueService } from "./drop-cue.service";
9
- import * as i0 from "@angular/core";
10
- /**
11
- * @hidden
12
- */
13
- export declare class DropTargetDirective implements OnInit, OnDestroy {
14
- private element;
15
- private configuratorService;
16
- private cue;
17
- private renderer;
18
- private zone;
19
- item: PivotGridAxis;
20
- axes: PivotGridConfiguratorDropZone;
21
- private elementType;
22
- private elementSectionType;
23
- private targetElement;
24
- private nextChipOffset;
25
- private subs;
26
- constructor(element: ElementRef, configuratorService: ConfiguratorService, cue: DropCueService, renderer: Renderer2, zone: NgZone);
27
- ngOnInit(): void;
28
- ngOnDestroy(): void;
29
- private handleMouseEnter;
30
- private handleMouseMove;
31
- private handleMouseLeave;
32
- private isDropAllowed;
33
- private getElementType;
34
- private getCueContainer;
35
- private getNextChip;
36
- static ɵfac: i0.ɵɵFactoryDeclaration<DropTargetDirective, never>;
37
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetDirective, "[kendoDropTarget]", never, { "item": { "alias": "item"; "required": false; }; "axes": { "alias": "axes"; "required": false; }; }, {}, never, never, true, never>;
38
- }
@@ -1,74 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/core';
6
- import { PivotGridDataService } from './pivotgrid-data.service';
7
- import { DataState, PivotGridAxis } from '@progress/kendo-pivotgrid-common';
8
- import { PivotGridState } from '../models/configurator-settings';
9
- import { ExpandChangeEvent } from '../models/expanded-change-event';
10
- import { ConfigurationChangeEvent } from '../models/configuration-change-event';
11
- import { PivotDataRowItem } from '../models/data-row-item';
12
- import { FilterDescriptor, SortDescriptor } from '@progress/kendo-data-query';
13
- import * as i0 from "@angular/core";
14
- /**
15
- * @hidden
16
- * A directive which binds the PivotGrid to an array of objects.
17
- */
18
- export declare abstract class PivotBaseBindingDirective implements OnInit, OnDestroy {
19
- protected dataService: PivotGridDataService;
20
- private zone;
21
- protected abstract loadData(state: PivotGridState): void;
22
- protected abstract loadFields(): void;
23
- abstract fetchChildren(state: any, fields: any): Promise<any>;
24
- abstract type: 'local' | 'olap';
25
- /**
26
- * Defines the column axes configuration of the PivotGrid.
27
- */
28
- columnAxes: PivotGridAxis[];
29
- /**
30
- * Defines the row axes configuration of the PivotGrid.
31
- */
32
- rowAxes: PivotGridAxis[];
33
- /**
34
- * Defines the measure axes configuration of the PivotGrid.
35
- */
36
- measureAxes: PivotGridAxis[];
37
- /**
38
- * Sets the initial sorted state of the PivotGrid.
39
- */
40
- sort: SortDescriptor[];
41
- /**
42
- * Sets the initial filtered state of the PivotGrid.
43
- */
44
- filter: FilterDescriptor[];
45
- /**
46
- * Fires each time a row or column header gets expanded or collapsed by the user.
47
- *
48
- * The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the user interaction.
49
- */
50
- expandChange: EventEmitter<ExpandChangeEvent>;
51
- /**
52
- * Fires when the Configurator **Apply** button is pressed.
53
- *
54
- * The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the configuration changes.
55
- */
56
- configurationChange: EventEmitter<ConfigurationChangeEvent>;
57
- /**
58
- * Fires each time new data is loaded and transformed to show aggregated values.
59
- *
60
- * The event fires upon initialization and on user interaction that changes the state of the PivotGrid.
61
- */
62
- dataLoaded: EventEmitter<PivotDataRowItem[]>;
63
- protected dataState: DataState;
64
- protected configuratorFields: any;
65
- private subs;
66
- constructor(dataService: PivotGridDataService, zone: NgZone);
67
- ngOnInit(): void;
68
- ngOnDestroy(): void;
69
- protected updateDataServiceFields(): void;
70
- protected updateConfiguratorFields(): void;
71
- private updateHeaders;
72
- static ɵfac: i0.ɵɵFactoryDeclaration<PivotBaseBindingDirective, never>;
73
- static ɵdir: i0.ɵɵDirectiveDeclaration<PivotBaseBindingDirective, "kendo-base-binding-directive", never, { "columnAxes": { "alias": "columnAxes"; "required": false; }; "rowAxes": { "alias": "rowAxes"; "required": false; }; "measureAxes": { "alias": "measureAxes"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; }, { "expandChange": "expandChange"; "configurationChange": "configurationChange"; "dataLoaded": "dataLoaded"; }, never, never, true, never>;
74
- }
@@ -1,57 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgZone, SimpleChanges } from '@angular/core';
6
- import { PivotGridDataService } from './pivotgrid-data.service';
7
- import { Dimension, Measure } from '@progress/kendo-pivotgrid-common';
8
- import { PivotBaseBindingDirective } from './base-binding-directive';
9
- import { PivotGridState } from '../models/configurator-settings';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * Represents a directive that binds the PivotGrid to local data ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/data-binding/local-directive)).
13
- *
14
- * @example
15
- * ```html
16
- * <kendo-pivotgrid
17
- * [kendoPivotLocalBinding]="data"
18
- * [dimensions]="dimensions"
19
- * [measures]="measures"
20
- * [columnAxes]="columnAxes"
21
- * [rowAxes]="rowAxes"
22
- * [measureAxes]="measureAxes">
23
- * </kendo-pivotgrid>
24
- * ```
25
- *
26
- * @remarks
27
- * Applied to: {@link PivotGridComponent}
28
- */
29
- export declare class PivotLocalBindingDirective extends PivotBaseBindingDirective {
30
- /**
31
- * Contains the array of data which will be used to populate the PivotGrid.
32
- */
33
- data: any[];
34
- /**
35
- * Defines the dimensions object of the PivotGrid.
36
- */
37
- dimensions: {
38
- [key: string]: Dimension;
39
- };
40
- /**
41
- * Contains the measures collection of the PivotGrid.
42
- */
43
- measures: Measure[];
44
- type: 'local' | 'olap';
45
- constructor(dataService: PivotGridDataService, zone: NgZone);
46
- ngOnChanges(changes: SimpleChanges): void;
47
- /**
48
- * @hidden
49
- */
50
- fetchChildren(node: any): Promise<any>;
51
- protected loadFields(): void;
52
- protected loadData(state: PivotGridState): void;
53
- private createAxisSettings;
54
- private getRootAxes;
55
- static ɵfac: i0.ɵɵFactoryDeclaration<PivotLocalBindingDirective, never>;
56
- static ɵdir: i0.ɵɵDirectiveDeclaration<PivotLocalBindingDirective, "[kendoPivotLocalBinding]", ["kendoPivotLocalBinding"], { "data": { "alias": "kendoPivotLocalBinding"; "required": false; }; "dimensions": { "alias": "dimensions"; "required": false; }; "measures": { "alias": "measures"; "required": false; }; }, {}, never, never, true, never>;
57
- }
@@ -1,58 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgZone, SimpleChanges } from '@angular/core';
6
- import { PivotGridDataService } from './pivotgrid-data.service';
7
- import { PivotBaseBindingDirective } from './base-binding-directive';
8
- import { PivotGridState } from '../models/configurator-settings';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Represents a directive that binds the PivotGrid to data using an Online Analytical Processing (OLAP) service ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/data-binding/olap-directive)).
12
- *
13
- * @example
14
- * ```html
15
- * <kendo-pivotgrid
16
- * kendoPivotOLAPBinding
17
- * [url]="url"
18
- * catalog="Adventure Works DW 2008 SE"
19
- * cube="Adventure Works"
20
- * [columnAxes]="columnAxes"
21
- * [rowAxes]="rowAxes"
22
- * [measureAxes]="measureAxes">
23
- * </kendo-pivotgrid>
24
- * ```
25
- *
26
- * @remarks
27
- * Applied to: {@link PivotGridComponent}
28
- */
29
- export declare class PivotOLAPBindingDirective extends PivotBaseBindingDirective {
30
- /**
31
- * Defines the OLAP service endpoint where the data is processed and retrieved to render the pivot table.
32
- */
33
- url: string;
34
- /**
35
- * Sets the cube name that is used to retrieve data for the pivot table rendering.
36
- */
37
- cube: string;
38
- /**
39
- * Sets the database name that is used to retrieve the data from the specified connection string.
40
- */
41
- catalog: string;
42
- type: 'local' | 'olap';
43
- constructor(dataService: PivotGridDataService, zone: NgZone);
44
- ngOnChanges(changes: SimpleChanges): void;
45
- protected loadData(state: PivotGridState): void;
46
- protected loadFields(): void;
47
- protected updateFields(event: any, fields: any): Promise<any>;
48
- /**
49
- * @hidden
50
- */
51
- fetchChildren(event: any, fields: any): Promise<any>;
52
- private normalizeKPIs;
53
- private getField;
54
- private loadKPIs;
55
- private loadAvailableFields;
56
- static ɵfac: i0.ɵɵFactoryDeclaration<PivotOLAPBindingDirective, never>;
57
- static ɵdir: i0.ɵɵDirectiveDeclaration<PivotOLAPBindingDirective, "[kendoPivotOLAPBinding]", ["kendoPivotOLAPBinding"], { "url": { "alias": "url"; "required": false; }; "cube": { "alias": "cube"; "required": false; }; "catalog": { "alias": "catalog"; "required": false; }; }, {}, never, never, true, never>;
58
- }
@@ -1,51 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter, NgZone } from '@angular/core';
6
- import { PivotDataItem, PivotGridField, Tuple } from '@progress/kendo-pivotgrid-common';
7
- import { BehaviorSubject } from 'rxjs';
8
- import { PivotBaseBindingDirective } from './base-binding-directive';
9
- import { PivotDataRowItem } from '../models/data-row-item';
10
- import { PivotGridState } from '../models/configurator-settings';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * @hidden
14
- */
15
- export declare class PivotGridDataService {
16
- private ngZone;
17
- expandedStateChange: EventEmitter<any>;
18
- configuratorFieldChange: EventEmitter<any>;
19
- expandedFieldChange: EventEmitter<any>;
20
- directive: PivotBaseBindingDirective;
21
- normalizedData: any[];
22
- rows: Tuple[];
23
- columns: Tuple[];
24
- wrapper: Element;
25
- aggregateData: PivotDataRowItem[];
26
- state: PivotGridState;
27
- columnHeaderLeaves: {
28
- total: boolean;
29
- path: string[];
30
- }[];
31
- columnHeaderRows: BehaviorSubject<any[]>;
32
- columnHeaderCols: BehaviorSubject<any[]>;
33
- rowHeaderLeaves: {
34
- total: boolean;
35
- path: string[];
36
- }[];
37
- rowHeaderCols: BehaviorSubject<any[]>;
38
- rowHeaderRows: BehaviorSubject<any[]>;
39
- valuesRows: BehaviorSubject<{
40
- row: string[];
41
- cells: PivotDataItem[];
42
- }[]>;
43
- loading: BehaviorSubject<boolean>;
44
- pivotGridId: number;
45
- constructor(ngZone: NgZone);
46
- fields: BehaviorSubject<PivotGridField[]>;
47
- configuredFields: BehaviorSubject<any>;
48
- updateRowsAndCols(): void;
49
- static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridDataService, never>;
50
- static ɵprov: i0.ɵɵInjectableDeclaration<PivotGridDataService>;
51
- }
package/directives.d.ts DELETED
@@ -1,58 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChipKeyboardNavigationDirective } from "./configurator/chip-kb-nav.directive";
6
- import { ChipMenuContainerComponent } from "./configurator/chip-menu/chip-menu-container.component";
7
- import { ChipMenuFilterComponent } from "./configurator/chip-menu/chip-menu-filter.component";
8
- import { ChipMenuItemContentTemplateDirective } from "./configurator/chip-menu/chip-menu-item-content-template.directive";
9
- import { ChipMenuItemComponent } from "./configurator/chip-menu/chip-menu-item.component";
10
- import { ChipMenuItemDirective } from "./configurator/chip-menu/chip-menu-item.directive";
11
- import { ChipMenuReorderComponent } from "./configurator/chip-menu/chip-menu-reorder.component";
12
- import { ChipMenuSortComponent } from "./configurator/chip-menu/chip-menu-sort.component";
13
- import { ChipMenuComponent } from "./configurator/chip-menu/chip-menu.component";
14
- import { FilterMenuContainerComponent } from "./configurator/chip-menu/filtering/filter-menu-container.component";
15
- import { FilterMenuDropDownListDirective } from "./configurator/chip-menu/filtering/filter-menu-dropdownlist.directive";
16
- import { StringFilterMenuComponent } from "./configurator/chip-menu/filtering/string-filter-menu.component";
17
- import { PivotGridConfiguratorComponent } from "./configurator/configurator.component";
18
- import { DraggableChipDirective } from "./configurator/draggable.directive";
19
- import { DropTargetDirective } from "./configurator/drop-target.directive";
20
- import { PivotLocalBindingDirective } from "./data-binding/local-binding.directive";
21
- import { PivotOLAPBindingDirective } from "./data-binding/olap-binding.directive";
22
- import { CustomMessagesComponent } from "./localization/custom-messages.component";
23
- import { LocalizedMessagesDirective } from "./localization/localized-messages.directive";
24
- import { PivotGridComponent } from "./pivotgrid.component";
25
- import { PivotGridCellDirective } from "./rendering/pivotgrid-cell.directive";
26
- import { PivotGridTableComponent } from "./rendering/pivotgrid-table.component";
27
- import { CellTemplateDirective } from "./rendering/templates/pivotgrid-cell-template.directive";
28
- import { ColumnHeaderCellTemplateDirective } from "./rendering/templates/pivotgrid-column-header-cell-template.directive";
29
- import { RowHeaderCellTemplateDirective } from "./rendering/templates/pivotgrid-row-header-cell-template.directive";
30
- import { ValueCellTemplateDirective } from "./rendering/templates/pivotgrid-value-cell-template.directive";
31
- /**
32
- * @hidden
33
- */
34
- export declare const KENDO_PIVOTGRID_CHIPMENU_DECLARATIONS: readonly [typeof ChipMenuItemComponent, typeof ChipMenuSortComponent, typeof ChipMenuComponent, typeof ChipMenuFilterComponent, typeof ChipMenuItemContentTemplateDirective, typeof FilterMenuContainerComponent, typeof StringFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof ChipMenuContainerComponent, typeof ChipMenuItemDirective, typeof ChipMenuReorderComponent];
35
- /**
36
- * @hidden
37
- */
38
- export declare const KENDO_PIVOTGRID_DECLARATIONS: readonly [typeof PivotGridComponent, typeof PivotGridTableComponent, typeof PivotGridConfiguratorComponent, typeof PivotGridCellDirective, typeof PivotLocalBindingDirective, typeof PivotOLAPBindingDirective, typeof DraggableChipDirective, typeof DropTargetDirective, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof ChipKeyboardNavigationDirective, typeof CellTemplateDirective, typeof ValueCellTemplateDirective, typeof RowHeaderCellTemplateDirective, typeof ColumnHeaderCellTemplateDirective];
39
- /**
40
- * Use the `KENDO_PIVOTGRID` utility array to add all `@progress/kendo-angular-pivotgrid`-related components and directives to a standalone Angular component.
41
- *
42
- * @example
43
- * ```ts
44
- * import { Component } from '@angular/core';
45
- * import { KENDO_PIVOTGRID } from '@progress/kendo-angular-pivotgrid';
46
- *
47
- * @Component({
48
- * standalone: true,
49
- * imports: [KENDO_PIVOTGRID],
50
- * template: `
51
- * <kendo-pivotgrid [data]="data" ...>
52
- * </kendo-pivotgrid>
53
- * `
54
- * })
55
- * export class AppComponent { }
56
- * ```
57
- */
58
- export declare const KENDO_PIVOTGRID: readonly [typeof PivotGridComponent, typeof PivotGridTableComponent, typeof PivotGridCellDirective, typeof PivotLocalBindingDirective, typeof PivotOLAPBindingDirective, typeof CustomMessagesComponent, typeof CellTemplateDirective, typeof ValueCellTemplateDirective, typeof RowHeaderCellTemplateDirective, typeof ColumnHeaderCellTemplateDirective];
@@ -1,31 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { LocalizationService } from '@progress/kendo-angular-l10n';
6
- import { PivotGridMessages } from './messages';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * Represents the custom messages component of the PivotGrid.
10
- *
11
- * Use this component to override default messages for the PivotGrid.
12
- * ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/globalization#custom-messages)).
13
- *
14
- * @example
15
- * ```html
16
- * <kendo-pivotgrid>
17
- * <kendo-pivotgrid-messages
18
- * configuratorButtonText="Configure"
19
- * configuratorHeaderText="PivotGrid Settings"
20
- * configuratorApplyButtonText="Apply Changes">
21
- * </kendo-pivotgrid-messages>
22
- * </kendo-pivotgrid>
23
- * ```
24
- */
25
- export declare class CustomMessagesComponent extends PivotGridMessages {
26
- protected service: LocalizationService;
27
- constructor(service: LocalizationService);
28
- protected get override(): boolean;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-pivotgrid-messages", never, {}, {}, never, never, true, never>;
31
- }