@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.
- package/fesm2022/progress-kendo-angular-pivotgrid.mjs +117 -117
- package/index.d.ts +1667 -25
- package/package-metadata.mjs +2 -2
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +2 -2
- package/configurator/chip-kb-nav.directive.d.ts +0 -25
- package/configurator/chip-menu/chip-menu-container.component.d.ts +0 -21
- package/configurator/chip-menu/chip-menu-filter.component.d.ts +0 -44
- package/configurator/chip-menu/chip-menu-item-base.d.ts +0 -22
- package/configurator/chip-menu/chip-menu-item-content-template.directive.d.ts +0 -18
- package/configurator/chip-menu/chip-menu-item.component.d.ts +0 -60
- package/configurator/chip-menu/chip-menu-item.directive.d.ts +0 -32
- package/configurator/chip-menu/chip-menu-reorder.component.d.ts +0 -44
- package/configurator/chip-menu/chip-menu-sort.component.d.ts +0 -36
- package/configurator/chip-menu/chip-menu.component.d.ts +0 -41
- package/configurator/chip-menu/chip-menu.service.d.ts +0 -26
- package/configurator/chip-menu/filtering/filter-menu-container.component.d.ts +0 -44
- package/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.d.ts +0 -19
- package/configurator/chip-menu/filtering/menu-tabbing.service.d.ts +0 -16
- package/configurator/chip-menu/filtering/string-filter-menu.component.d.ts +0 -53
- package/configurator/chip-menu/single-popup.service.d.ts +0 -53
- package/configurator/configurator.component.d.ts +0 -128
- package/configurator/configurator.service.d.ts +0 -32
- package/configurator/draggable.directive.d.ts +0 -34
- package/configurator/drop-cue.service.d.ts +0 -23
- package/configurator/drop-target.directive.d.ts +0 -38
- package/data-binding/base-binding-directive.d.ts +0 -74
- package/data-binding/local-binding.directive.d.ts +0 -57
- package/data-binding/olap-binding.directive.d.ts +0 -58
- package/data-binding/pivotgrid-data.service.d.ts +0 -51
- package/directives.d.ts +0 -58
- package/localization/custom-messages.component.d.ts +0 -31
- package/localization/localized-messages.directive.d.ts +0 -16
- package/localization/messages.d.ts +0 -178
- package/localization/pivot-localization.service.d.ts +0 -19
- package/models/configuration-change-event.d.ts +0 -36
- package/models/configurator-chipmenu-reorder-target.d.ts +0 -8
- package/models/configurator-orientation.d.ts +0 -10
- package/models/configurator-position.d.ts +0 -10
- package/models/configurator-settings.d.ts +0 -37
- package/models/data-row-item.d.ts +0 -18
- package/models/drop-section.d.ts +0 -8
- package/models/drop-target.d.ts +0 -8
- package/models/expanded-change-event.d.ts +0 -27
- package/models/expanded-state-action.d.ts +0 -16
- package/models/loader-settings.d.ts +0 -57
- package/models/virtualization-settings.d.ts +0 -43
- package/package-metadata.d.ts +0 -9
- package/pivotgrid.component.d.ts +0 -145
- package/pivotgrid.module.d.ts +0 -56
- package/rendering/pivotgrid-cell.directive.d.ts +0 -38
- package/rendering/pivotgrid-table.component.d.ts +0 -60
- package/rendering/templates/pivotgrid-cell-template.directive.d.ts +0 -35
- package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +0 -35
- package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +0 -35
- package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +0 -34
- package/util.d.ts +0 -87
- package/virtual/scroll.service.d.ts +0 -15
- package/virtual/scrollable-container.d.ts +0 -35
package/pivotgrid.component.d.ts
DELETED
|
@@ -1,145 +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 { AfterContentInit, AfterViewInit, ElementRef, NgZone, OnDestroy, Renderer2, SimpleChanges } from '@angular/core';
|
|
6
|
-
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
7
|
-
import { PivotGridDataService } from './data-binding/pivotgrid-data.service';
|
|
8
|
-
import { LoaderSettings } from './models/loader-settings';
|
|
9
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
|
-
import { ConfiguratorSettings } from './models/configurator-settings';
|
|
11
|
-
import { ConfiguratorNavigation, PivotGridNavigation } from '@progress/kendo-pivotgrid-common';
|
|
12
|
-
import { PivotDataRowItem } from './models/data-row-item';
|
|
13
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
14
|
-
import { CellTemplateDirective } from './rendering/templates/pivotgrid-cell-template.directive';
|
|
15
|
-
import { ValueCellTemplateDirective } from './rendering/templates/pivotgrid-value-cell-template.directive';
|
|
16
|
-
import { RowHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-row-header-cell-template.directive';
|
|
17
|
-
import { ColumnHeaderCellTemplateDirective } from './rendering/templates/pivotgrid-column-header-cell-template.directive';
|
|
18
|
-
import { VirtualizationSettings } from './models/virtualization-settings';
|
|
19
|
-
import { PivotGridScrollService } from './virtual/scroll.service';
|
|
20
|
-
import * as i0 from "@angular/core";
|
|
21
|
-
/**
|
|
22
|
-
* Represents the [Kendo UI PivotGrid component for Angular](https://www.telerik.com/kendo-angular-ui/components/pivotgrid).
|
|
23
|
-
*
|
|
24
|
-
* @example
|
|
25
|
-
* ```html
|
|
26
|
-
* <kendo-pivotgrid
|
|
27
|
-
* [kendoPivotLocalBinding]="data"
|
|
28
|
-
* [dimensions]="dimensions"
|
|
29
|
-
* [measures]="measures"
|
|
30
|
-
* [rowAxes]="defaultRowAxes"
|
|
31
|
-
* [columnAxes]="defaultColumnAxes"
|
|
32
|
-
* [measureAxes]="defaultMeasureAxes"
|
|
33
|
-
* [configurator]="true"
|
|
34
|
-
* >
|
|
35
|
-
* </kendo-pivotgrid>
|
|
36
|
-
* ```
|
|
37
|
-
*
|
|
38
|
-
* @remarks
|
|
39
|
-
* Supported children components are: {@link CustomMessagesComponent}
|
|
40
|
-
*/
|
|
41
|
-
export declare class PivotGridComponent implements AfterViewInit, AfterContentInit, OnDestroy {
|
|
42
|
-
private hostEl;
|
|
43
|
-
private zone;
|
|
44
|
-
dataService: PivotGridDataService;
|
|
45
|
-
private localization;
|
|
46
|
-
private renderer;
|
|
47
|
-
private scrollService;
|
|
48
|
-
hostClass: boolean;
|
|
49
|
-
get rightPositionClass(): boolean;
|
|
50
|
-
get leftPositionClass(): boolean;
|
|
51
|
-
get bottomPositionClass(): boolean;
|
|
52
|
-
get topPositionClass(): boolean;
|
|
53
|
-
get dir(): string;
|
|
54
|
-
private colHeadersTable;
|
|
55
|
-
private rowHeadersTable;
|
|
56
|
-
private valuesTable;
|
|
57
|
-
private table;
|
|
58
|
-
private configuratorWrapper;
|
|
59
|
-
customCellTemplate: CellTemplateDirective;
|
|
60
|
-
valueCellTemplate: ValueCellTemplateDirective;
|
|
61
|
-
rowHeaderCellTemplate: RowHeaderCellTemplateDirective;
|
|
62
|
-
columnHeaderCellTemplate: ColumnHeaderCellTemplateDirective;
|
|
63
|
-
/**
|
|
64
|
-
* Sets the type, size, and color of the PivotGrid loader.
|
|
65
|
-
*/
|
|
66
|
-
set loaderSettings(settings: LoaderSettings);
|
|
67
|
-
get loaderSettings(): LoaderSettings;
|
|
68
|
-
/**
|
|
69
|
-
* @hidden
|
|
70
|
-
*/
|
|
71
|
-
get loadingText(): string;
|
|
72
|
-
/**
|
|
73
|
-
* Controls whether the axes configurator is displayed.
|
|
74
|
-
*
|
|
75
|
-
* @default false
|
|
76
|
-
*/
|
|
77
|
-
configurator: boolean | ConfiguratorSettings;
|
|
78
|
-
/**
|
|
79
|
-
* Sets the virtualization options of the component. By default, the virtual scrolling functionality is disabled.
|
|
80
|
-
*
|
|
81
|
-
* @default false
|
|
82
|
-
*/
|
|
83
|
-
set virtualScrolling(value: boolean | VirtualizationSettings);
|
|
84
|
-
get virtualScrolling(): VirtualizationSettings;
|
|
85
|
-
get configuratorSettings(): ConfiguratorSettings;
|
|
86
|
-
/**
|
|
87
|
-
* Sets the width of the column header and data cells. The provided value is treated in pixels [(see example)](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/appearance#column-headers-width).
|
|
88
|
-
*
|
|
89
|
-
* @default 200
|
|
90
|
-
*/
|
|
91
|
-
columnHeadersWidth: number;
|
|
92
|
-
/**
|
|
93
|
-
* Specifies whether the keyboard navigation is enabled. When enabled, you can use keyboard shortcuts to interact with the PivotGrid.
|
|
94
|
-
* Set to `false` to disable navigation and include the PivotGrid content in the normal tab sequence.
|
|
95
|
-
*
|
|
96
|
-
* @default true
|
|
97
|
-
*
|
|
98
|
-
* @remarks
|
|
99
|
-
* This property is related to accessibility.
|
|
100
|
-
*/
|
|
101
|
-
navigable: boolean;
|
|
102
|
-
/**
|
|
103
|
-
* Gets the aggregated PivotGrid values that are displayed.
|
|
104
|
-
*/
|
|
105
|
-
get aggregateData(): PivotDataRowItem[];
|
|
106
|
-
/**
|
|
107
|
-
* @hidden
|
|
108
|
-
*/
|
|
109
|
-
gearSVGIcon: SVGIcon;
|
|
110
|
-
loading: boolean;
|
|
111
|
-
showConfigurator: boolean;
|
|
112
|
-
configuratorNavigation: ConfiguratorNavigation;
|
|
113
|
-
private resizeObservers;
|
|
114
|
-
private _loaderSettings;
|
|
115
|
-
private _virtualScrolling;
|
|
116
|
-
private subs;
|
|
117
|
-
private rtl;
|
|
118
|
-
private direction;
|
|
119
|
-
navigation: PivotGridNavigation;
|
|
120
|
-
private navigationSubs;
|
|
121
|
-
constructor(hostEl: ElementRef, zone: NgZone, dataService: PivotGridDataService, localization: LocalizationService, renderer: Renderer2, _scrollbarService: ScrollbarService, scrollService: PivotGridScrollService);
|
|
122
|
-
ngAfterViewInit(): void;
|
|
123
|
-
ngAfterContentInit(): void;
|
|
124
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
125
|
-
ngOnDestroy(): void;
|
|
126
|
-
/**
|
|
127
|
-
* @hidden
|
|
128
|
-
*/
|
|
129
|
-
messageFor(localizationToken: string): string;
|
|
130
|
-
/**
|
|
131
|
-
* @hidden
|
|
132
|
-
*/
|
|
133
|
-
toggleConfigurator(): void;
|
|
134
|
-
private resizeContainer;
|
|
135
|
-
private handleScroll;
|
|
136
|
-
/**
|
|
137
|
-
* @hidden
|
|
138
|
-
*/
|
|
139
|
-
initNavigation(): void;
|
|
140
|
-
private stopNavigation;
|
|
141
|
-
private initConfiguratorNavigation;
|
|
142
|
-
private stopConfiguratorNavigation;
|
|
143
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridComponent, never>;
|
|
144
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": { "alias": "loaderSettings"; "required": false; }; "configurator": { "alias": "configurator"; "required": false; }; "virtualScrolling": { "alias": "virtualScrolling"; "required": false; }; "columnHeadersWidth": { "alias": "columnHeadersWidth"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; }, {}, ["customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"], never, true, never>;
|
|
145
|
-
}
|
package/pivotgrid.module.d.ts
DELETED
|
@@ -1,56 +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 * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./configurator/chip-menu/chip-menu-item.component";
|
|
7
|
-
import * as i2 from "./configurator/chip-menu/chip-menu-sort.component";
|
|
8
|
-
import * as i3 from "./configurator/chip-menu/chip-menu.component";
|
|
9
|
-
import * as i4 from "./configurator/chip-menu/chip-menu-filter.component";
|
|
10
|
-
import * as i5 from "./configurator/chip-menu/chip-menu-item-content-template.directive";
|
|
11
|
-
import * as i6 from "./configurator/chip-menu/filtering/filter-menu-container.component";
|
|
12
|
-
import * as i7 from "./configurator/chip-menu/filtering/string-filter-menu.component";
|
|
13
|
-
import * as i8 from "./configurator/chip-menu/filtering/filter-menu-dropdownlist.directive";
|
|
14
|
-
import * as i9 from "./configurator/chip-menu/chip-menu-container.component";
|
|
15
|
-
import * as i10 from "./configurator/chip-menu/chip-menu-item.directive";
|
|
16
|
-
import * as i11 from "./configurator/chip-menu/chip-menu-reorder.component";
|
|
17
|
-
import * as i12 from "./pivotgrid.component";
|
|
18
|
-
import * as i13 from "./rendering/pivotgrid-table.component";
|
|
19
|
-
import * as i14 from "./configurator/configurator.component";
|
|
20
|
-
import * as i15 from "./rendering/pivotgrid-cell.directive";
|
|
21
|
-
import * as i16 from "./data-binding/local-binding.directive";
|
|
22
|
-
import * as i17 from "./data-binding/olap-binding.directive";
|
|
23
|
-
import * as i18 from "./configurator/draggable.directive";
|
|
24
|
-
import * as i19 from "./configurator/drop-target.directive";
|
|
25
|
-
import * as i20 from "./localization/localized-messages.directive";
|
|
26
|
-
import * as i21 from "./localization/custom-messages.component";
|
|
27
|
-
import * as i22 from "./configurator/chip-kb-nav.directive";
|
|
28
|
-
import * as i23 from "./rendering/templates/pivotgrid-cell-template.directive";
|
|
29
|
-
import * as i24 from "./rendering/templates/pivotgrid-value-cell-template.directive";
|
|
30
|
-
import * as i25 from "./rendering/templates/pivotgrid-row-header-cell-template.directive";
|
|
31
|
-
import * as i26 from "./rendering/templates/pivotgrid-column-header-cell-template.directive";
|
|
32
|
-
/**
|
|
33
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
34
|
-
* definition for the PivotGrid component.
|
|
35
|
-
*
|
|
36
|
-
* @example
|
|
37
|
-
*
|
|
38
|
-
* ```typescript
|
|
39
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
40
|
-
* import { NgModule } from '@angular/core';
|
|
41
|
-
* import { AppComponent } from './app.component';
|
|
42
|
-
* import { PivotGridModule } from '@progress/kendo-angular-pivotgrid';
|
|
43
|
-
*
|
|
44
|
-
* @NgModule({
|
|
45
|
-
* declarations: [AppComponent],
|
|
46
|
-
* imports: [BrowserModule, PivotGridModule],
|
|
47
|
-
* bootstrap: [AppComponent]
|
|
48
|
-
* })
|
|
49
|
-
* export class AppModule {}
|
|
50
|
-
* ```
|
|
51
|
-
*/
|
|
52
|
-
export declare class PivotGridModule {
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridModule, never>;
|
|
54
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, never, [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent, typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i14.PivotGridConfiguratorComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i18.DraggableChipDirective, typeof i19.DropTargetDirective, typeof i20.LocalizedMessagesDirective, typeof i21.CustomMessagesComponent, typeof i22.ChipKeyboardNavigationDirective, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective], [typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i21.CustomMessagesComponent, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective]>;
|
|
55
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PivotGridModule>;
|
|
56
|
-
}
|
|
@@ -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, Renderer2 } from '@angular/core';
|
|
6
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
|
-
import { PivotGridDataService } from '../data-binding/pivotgrid-data.service';
|
|
8
|
-
import { CellTemplateDirective } from './templates/pivotgrid-cell-template.directive';
|
|
9
|
-
import { ValueCellTemplateDirective } from './templates/pivotgrid-value-cell-template.directive';
|
|
10
|
-
import { RowHeaderCellTemplateDirective } from './templates/pivotgrid-row-header-cell-template.directive';
|
|
11
|
-
import { ColumnHeaderCellTemplateDirective } from './templates/pivotgrid-column-header-cell-template.directive';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export declare class PivotGridCellDirective {
|
|
17
|
-
private hostEl;
|
|
18
|
-
private renderer;
|
|
19
|
-
private dataService;
|
|
20
|
-
cellClass: boolean;
|
|
21
|
-
kendoPivotGridCell: any;
|
|
22
|
-
tableType: string;
|
|
23
|
-
rowIndex: number;
|
|
24
|
-
colIndex: number;
|
|
25
|
-
customCellTemplate: CellTemplateDirective;
|
|
26
|
-
valueCellTemplate: ValueCellTemplateDirective;
|
|
27
|
-
rowHeaderCellTemplate: RowHeaderCellTemplateDirective;
|
|
28
|
-
columnHeaderCellTemplate: ColumnHeaderCellTemplateDirective;
|
|
29
|
-
get isNotProvidedCellTemplatePerType(): boolean;
|
|
30
|
-
get expanded(): boolean;
|
|
31
|
-
chevronUpSVGIcon: SVGIcon;
|
|
32
|
-
chevronDownSVGIcon: SVGIcon;
|
|
33
|
-
constructor(hostEl: ElementRef, renderer: Renderer2, dataService: PivotGridDataService);
|
|
34
|
-
ngOnInit(): void;
|
|
35
|
-
handleClick: () => void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridCellDirective, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridCellDirective, "[kendoPivotGridCell]", never, { "kendoPivotGridCell": { "alias": "kendoPivotGridCell"; "required": false; }; "tableType": { "alias": "tableType"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "customCellTemplate": { "alias": "customCellTemplate"; "required": false; }; "valueCellTemplate": { "alias": "valueCellTemplate"; "required": false; }; "rowHeaderCellTemplate": { "alias": "rowHeaderCellTemplate"; "required": false; }; "columnHeaderCellTemplate": { "alias": "columnHeaderCellTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
|
-
}
|
|
@@ -1,60 +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 } from '@angular/core';
|
|
6
|
-
import { PivotGridDataService } from '../data-binding/pivotgrid-data.service';
|
|
7
|
-
import { CellTemplateDirective } from './templates/pivotgrid-cell-template.directive';
|
|
8
|
-
import { ValueCellTemplateDirective } from './templates/pivotgrid-value-cell-template.directive';
|
|
9
|
-
import { ColumnHeaderCellTemplateDirective } from './templates/pivotgrid-column-header-cell-template.directive';
|
|
10
|
-
import { RowHeaderCellTemplateDirective } from './templates/pivotgrid-row-header-cell-template.directive';
|
|
11
|
-
import { VirtualizationSettings } from '../models/virtualization-settings';
|
|
12
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
13
|
-
import { PivotGridScrollService } from '../virtual/scroll.service';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
/**
|
|
16
|
-
* @hidden
|
|
17
|
-
*/
|
|
18
|
-
export declare class PivotGridTableComponent implements OnInit, OnDestroy {
|
|
19
|
-
private host;
|
|
20
|
-
private dataService;
|
|
21
|
-
private localization;
|
|
22
|
-
private zone;
|
|
23
|
-
private scrollService;
|
|
24
|
-
headerItems: any;
|
|
25
|
-
rows: any;
|
|
26
|
-
renderedRows: any;
|
|
27
|
-
renderedCols: any;
|
|
28
|
-
totalRows: any;
|
|
29
|
-
startRowIndex: number;
|
|
30
|
-
startColIndex: number;
|
|
31
|
-
rtl: boolean;
|
|
32
|
-
private itemIdCounter;
|
|
33
|
-
private itemIdMap;
|
|
34
|
-
private rowIdMap;
|
|
35
|
-
private cellIdMap;
|
|
36
|
-
tableType: string;
|
|
37
|
-
colWidth: number;
|
|
38
|
-
customCellTemplate: CellTemplateDirective;
|
|
39
|
-
valueCellTemplate: ValueCellTemplateDirective;
|
|
40
|
-
rowHeaderCellTemplate: RowHeaderCellTemplateDirective;
|
|
41
|
-
columnHeaderCellTemplate: ColumnHeaderCellTemplateDirective;
|
|
42
|
-
scrollableSettings: VirtualizationSettings;
|
|
43
|
-
get pivotGridId(): string;
|
|
44
|
-
get columnVirtualization(): boolean;
|
|
45
|
-
get rowVirtualization(): boolean;
|
|
46
|
-
private subs;
|
|
47
|
-
private scrollable;
|
|
48
|
-
constructor(host: ElementRef, dataService: PivotGridDataService, localization: LocalizationService, zone: NgZone, scrollService: PivotGridScrollService);
|
|
49
|
-
ngOnInit(): void;
|
|
50
|
-
ngAfterViewInit(): void;
|
|
51
|
-
ngOnDestroy(): void;
|
|
52
|
-
trackByColIndex(index: number, item: any): string;
|
|
53
|
-
trackByRowIndex(index: number, row: any): string;
|
|
54
|
-
trackByCellIndex(index: number, cell: any): string;
|
|
55
|
-
private colsUpdateCallback;
|
|
56
|
-
private initScrollable;
|
|
57
|
-
private initScrollableKeyboardNavigation;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridTableComponent, never>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridTableComponent, "kendo-pivotgrid-table", never, { "tableType": { "alias": "tableType"; "required": false; }; "colWidth": { "alias": "colWidth"; "required": false; }; "customCellTemplate": { "alias": "customCellTemplate"; "required": false; }; "valueCellTemplate": { "alias": "valueCellTemplate"; "required": false; }; "rowHeaderCellTemplate": { "alias": "rowHeaderCellTemplate"; "required": false; }; "columnHeaderCellTemplate": { "alias": "columnHeaderCellTemplate"; "required": false; }; "scrollableSettings": { "alias": "scrollableSettings"; "required": false; }; }, {}, never, never, true, never>;
|
|
60
|
-
}
|
|
@@ -1,35 +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 { TemplateRef } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the cell template of the PivotGrid. Allows customizing the content of the cells.
|
|
9
|
-
*
|
|
10
|
-
* To define the cell template, nest an `<ng-template>` tag with the
|
|
11
|
-
* `kendoPivotGridCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/templates#cell-template)).
|
|
12
|
-
*
|
|
13
|
-
* The template context provides the current cell item and the following additional fields:
|
|
14
|
-
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
|
15
|
-
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
|
16
|
-
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
|
17
|
-
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
|
18
|
-
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
|
19
|
-
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
|
20
|
-
*
|
|
21
|
-
* @example
|
|
22
|
-
* ```html
|
|
23
|
-
* <kendo-pivot-grid [data]="data" ...>
|
|
24
|
-
* <ng-template kendoPivotGridCellTemplate let-cellItem let-rowIndex="rowIndex" let-column="column">
|
|
25
|
-
* Row: {{rowIndex}}
|
|
26
|
-
* </ng-template>
|
|
27
|
-
* </kendo-pivot-grid>
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export declare class CellTemplateDirective {
|
|
31
|
-
templateRef: TemplateRef<any>;
|
|
32
|
-
constructor(templateRef: TemplateRef<any>);
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CellTemplateDirective, never>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CellTemplateDirective, "[kendoPivotGridCellTemplate]", never, {}, {}, never, never, true, never>;
|
|
35
|
-
}
|
|
@@ -1,35 +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 { TemplateRef } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the column header cell template of the PivotGrid. Allows customizing the content of the column header cells.
|
|
9
|
-
*
|
|
10
|
-
* To define the column header cell template, nest an `<ng-template>` tag with the
|
|
11
|
-
* `kendoPivotGridColumnHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/templates#column-header-cell-template)).
|
|
12
|
-
*
|
|
13
|
-
* The template context provides the current cell item and the following additional fields:
|
|
14
|
-
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
|
15
|
-
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
|
16
|
-
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
|
17
|
-
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
|
18
|
-
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
|
19
|
-
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
|
20
|
-
*
|
|
21
|
-
* @example
|
|
22
|
-
* ```html
|
|
23
|
-
* <kendo-pivot-grid [data]="data" ...>
|
|
24
|
-
* <ng-template kendoPivotGridColumnHeaderCellTemplate let-cellItem let-rowIndex="rowIndex" let-column="column">
|
|
25
|
-
* Row: {{rowIndex}}
|
|
26
|
-
* </ng-template>
|
|
27
|
-
* </kendo-pivot-grid>
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export declare class ColumnHeaderCellTemplateDirective {
|
|
31
|
-
templateRef: TemplateRef<any>;
|
|
32
|
-
constructor(templateRef: TemplateRef<any>);
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnHeaderCellTemplateDirective, never>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHeaderCellTemplateDirective, "[kendoPivotGridColumnHeaderCellTemplate]", never, {}, {}, never, never, true, never>;
|
|
35
|
-
}
|
|
@@ -1,35 +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 { TemplateRef } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the row header cell template of the PivotGrid. Allows customizing the content of the row header cells.
|
|
9
|
-
*
|
|
10
|
-
* To define the row header cell template, nest an `<ng-template>` tag with the
|
|
11
|
-
* `kendoPivotGridRowHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/templates#row-header-cell-template)).
|
|
12
|
-
*
|
|
13
|
-
* The template context provides the current cell item and the following additional fields:
|
|
14
|
-
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
|
15
|
-
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
|
16
|
-
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
|
17
|
-
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
|
18
|
-
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
|
19
|
-
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
|
20
|
-
*
|
|
21
|
-
* @example
|
|
22
|
-
* ```html
|
|
23
|
-
* <kendo-pivot-grid [data]="data" ...>
|
|
24
|
-
* <ng-template kendoPivotGridRowHeaderCellTemplate let-cellItem let-rowIndex="rowIndex" let-column="column">
|
|
25
|
-
* Row: {{rowIndex}}
|
|
26
|
-
* </ng-template>
|
|
27
|
-
* </kendo-pivot-grid>
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export declare class RowHeaderCellTemplateDirective {
|
|
31
|
-
templateRef: TemplateRef<any>;
|
|
32
|
-
constructor(templateRef: TemplateRef<any>);
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RowHeaderCellTemplateDirective, never>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RowHeaderCellTemplateDirective, "[kendoPivotGridRowHeaderCellTemplate]", never, {}, {}, never, never, true, never>;
|
|
35
|
-
}
|
|
@@ -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 { TemplateRef } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the value cell template of the PivotGrid. Allows customizing the content of the value cells.
|
|
9
|
-
*
|
|
10
|
-
* To define the value cell template, nest an `<ng-template>` tag with the
|
|
11
|
-
* `kendoPivotGridValueCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/templates#value-cell-template)).
|
|
12
|
-
*
|
|
13
|
-
* The template context provides the current cell item and the following additional fields:
|
|
14
|
-
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
|
15
|
-
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
|
16
|
-
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
|
17
|
-
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
|
18
|
-
* - `value`—The default cell value. Use `let-value="value"` to access this variable in your template.
|
|
19
|
-
*
|
|
20
|
-
* @example
|
|
21
|
-
* ```html
|
|
22
|
-
* <kendo-pivot-grid [data]="data" ...>
|
|
23
|
-
* <ng-template kendoPivotGridValueCellTemplate let-cellItem let-rowIndex="rowIndex" let-column="column">
|
|
24
|
-
* Row: {{rowIndex}}
|
|
25
|
-
* </ng-template>
|
|
26
|
-
* </kendo-pivot-grid>
|
|
27
|
-
* ```
|
|
28
|
-
*/
|
|
29
|
-
export declare class ValueCellTemplateDirective {
|
|
30
|
-
templateRef: TemplateRef<any>;
|
|
31
|
-
constructor(templateRef: TemplateRef<any>);
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ValueCellTemplateDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueCellTemplateDirective, "[kendoPivotGridValueCellTemplate]", never, {}, {}, never, never, true, never>;
|
|
34
|
-
}
|
package/util.d.ts
DELETED
|
@@ -1,87 +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
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export declare const isPresent: (value: any) => boolean;
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
export declare const isBlank: (value: any) => boolean;
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export declare const isNullOrEmptyString: (value: string) => boolean;
|
|
17
|
-
/**
|
|
18
|
-
* @hidden
|
|
19
|
-
* Returns whether two arrays contain the same values.
|
|
20
|
-
* Assumes array elements are primitive types
|
|
21
|
-
*/
|
|
22
|
-
export declare const areSameArrays: (a1: any[], a2: any[]) => boolean;
|
|
23
|
-
/**
|
|
24
|
-
* @hidden
|
|
25
|
-
*/
|
|
26
|
-
export declare const wheelDelta: (e: any, axis: "X" | "Y") => number;
|
|
27
|
-
/**
|
|
28
|
-
* @hidden
|
|
29
|
-
*/
|
|
30
|
-
export declare const syncScroll: (source: HTMLTableElement, targets: HTMLTableElement[]) => void;
|
|
31
|
-
/**
|
|
32
|
-
* @hidden
|
|
33
|
-
*/
|
|
34
|
-
export declare const syncWheel: (event: Event, tables: Element[], prop: "scrollTop" | "scrollLeft", axis: "X" | "Y") => void;
|
|
35
|
-
/**
|
|
36
|
-
* @hidden
|
|
37
|
-
*/
|
|
38
|
-
export declare const offset: (element: any) => {
|
|
39
|
-
top: number;
|
|
40
|
-
left: number;
|
|
41
|
-
};
|
|
42
|
-
/**
|
|
43
|
-
* @hidden
|
|
44
|
-
*/
|
|
45
|
-
export declare const matchAriaAttributes: (wrapper: Element) => void;
|
|
46
|
-
/**
|
|
47
|
-
* @hidden
|
|
48
|
-
*/
|
|
49
|
-
export declare const position: (target: any, before: any) => {
|
|
50
|
-
left: any;
|
|
51
|
-
top: number;
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* @hidden
|
|
55
|
-
*/
|
|
56
|
-
export declare const filterAndMap: (arr: any[], predicate: (item: any) => boolean, mapper: (item: any) => any) => any[];
|
|
57
|
-
/**
|
|
58
|
-
* @hidden
|
|
59
|
-
*/
|
|
60
|
-
export declare const cloneDate: (date?: Date) => Date | null;
|
|
61
|
-
/**
|
|
62
|
-
* @hidden
|
|
63
|
-
*/
|
|
64
|
-
export declare function clone(obj: any): any;
|
|
65
|
-
/**
|
|
66
|
-
* @hidden
|
|
67
|
-
*/
|
|
68
|
-
export declare function cloneObject(obj: any, result: any): void;
|
|
69
|
-
/**
|
|
70
|
-
* @hidden
|
|
71
|
-
*/
|
|
72
|
-
export declare function cloneValue(value: any, nextValue: any): any;
|
|
73
|
-
/**
|
|
74
|
-
* @hidden
|
|
75
|
-
*/
|
|
76
|
-
export declare function cloneArray(array: any[]): any;
|
|
77
|
-
/**
|
|
78
|
-
* @hidden
|
|
79
|
-
*/
|
|
80
|
-
export declare const swapItems: (arr: any, i1: any, i2: any) => void;
|
|
81
|
-
/**
|
|
82
|
-
* @hidden
|
|
83
|
-
*/
|
|
84
|
-
export declare const isVisible: (el: any, container: any, offsetY: any, rtl: any) => {
|
|
85
|
-
visibleX: boolean;
|
|
86
|
-
visibleY: boolean;
|
|
87
|
-
};
|
|
@@ -1,15 +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 type { PivotGridComponent } from '../pivotgrid.component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export declare class PivotGridScrollService {
|
|
11
|
-
virtualScrolling: boolean;
|
|
12
|
-
pivotGrid: PivotGridComponent;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridScrollService, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PivotGridScrollService>;
|
|
15
|
-
}
|
|
@@ -1,35 +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
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export declare class ScrollableTable {
|
|
9
|
-
private element;
|
|
10
|
-
private handlers;
|
|
11
|
-
private options;
|
|
12
|
-
startRow: number;
|
|
13
|
-
endRow: number;
|
|
14
|
-
startCol: number;
|
|
15
|
-
endCol: number;
|
|
16
|
-
renderedRows: number;
|
|
17
|
-
renderedCols: number;
|
|
18
|
-
total: number;
|
|
19
|
-
totalCols: number;
|
|
20
|
-
rtl: boolean;
|
|
21
|
-
private visibleRows;
|
|
22
|
-
private visibleCols;
|
|
23
|
-
private lastKnownScrollPosition;
|
|
24
|
-
private offsetFirst;
|
|
25
|
-
private stretcher;
|
|
26
|
-
private rect;
|
|
27
|
-
constructor(element: HTMLElement, handlers: any, options: any);
|
|
28
|
-
onNewData(recalculateSize?: boolean): void;
|
|
29
|
-
destroy(): void;
|
|
30
|
-
private initialize;
|
|
31
|
-
private scrollHandler;
|
|
32
|
-
private scrollEndHandler;
|
|
33
|
-
recalculateSize(): void;
|
|
34
|
-
private rowVirtualizationUpdate;
|
|
35
|
-
}
|