@progress/kendo-angular-pivotgrid 1.0.2 → 1.1.0-dev.202210190858
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/bundles/kendo-angular-pivotgrid.umd.js +1 -1
- package/configurator/chip-kb-nav.directive.d.ts +24 -0
- package/configurator/configurator.component.d.ts +20 -6
- package/esm2015/configurator/chip-kb-nav.directive.js +62 -0
- package/esm2015/configurator/chip-menu/chip-menu.component.js +1 -1
- package/esm2015/configurator/configurator.component.js +169 -31
- package/esm2015/data-binding/base-binding-directive.js +1 -0
- package/esm2015/localization/custom-messages.component.js +1 -1
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/pivotgrid.component.js +59 -13
- package/esm2015/pivotgrid.module.js +5 -2
- package/esm2015/util.js +8 -0
- package/fesm2015/kendo-angular-pivotgrid.js +296 -49
- package/localization/custom-messages.component.d.ts +1 -1
- package/package.json +2 -2
- package/pivotgrid.component.d.ts +9 -0
- package/pivotgrid.module.d.ts +7 -6
- package/util.d.ts +4 -0
|
@@ -7,7 +7,7 @@ import { PivotGridMessages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Custom component messages override default component messages
|
|
10
|
-
* ([see example]({% slug globalization_pivotgrid %}#toc-
|
|
10
|
+
* ([see example]({% slug globalization_pivotgrid %}#toc-custom-messages)).
|
|
11
11
|
*/
|
|
12
12
|
export declare class CustomMessagesComponent extends PivotGridMessages {
|
|
13
13
|
protected service: LocalizationService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-dev.202210190858",
|
|
4
4
|
"description": "PivotGrid package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"friendlyName": "PivotGrid"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@progress/kendo-pivotgrid-common": "0.
|
|
24
|
+
"@progress/kendo-pivotgrid-common": "0.5.0",
|
|
25
25
|
"@progress/kendo-schematics": "^3.0.0",
|
|
26
26
|
"@telerik/kendo-draggable": "^2.0.0",
|
|
27
27
|
"tslib": "^2.3.1"
|
package/pivotgrid.component.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { PivotGridDataService } from './data-binding/pivotgrid-data.service';
|
|
|
8
8
|
import { LoaderSettings } from './models/loader-settings';
|
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
10
10
|
import { ConfiguratorSettings } from './models/configurator-settings';
|
|
11
|
+
import { ConfiguratorNavigation } from '@progress/kendo-pivotgrid-common';
|
|
11
12
|
import { PivotDataRowItem } from './models/data-row-item';
|
|
12
13
|
import * as i0 from "@angular/core";
|
|
13
14
|
/**
|
|
@@ -30,6 +31,7 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
|
30
31
|
private rowHeadersTable;
|
|
31
32
|
private valuesTable;
|
|
32
33
|
private table;
|
|
34
|
+
private configuratorWrapper;
|
|
33
35
|
/**
|
|
34
36
|
* Specify the type, size and color of the PivotGrid's loader.
|
|
35
37
|
*
|
|
@@ -67,6 +69,7 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
|
67
69
|
get aggregateData(): PivotDataRowItem[];
|
|
68
70
|
loading: boolean;
|
|
69
71
|
showConfigurator: boolean;
|
|
72
|
+
configuratorNavigation: ConfiguratorNavigation;
|
|
70
73
|
private resizeObservers;
|
|
71
74
|
private _loaderSettings;
|
|
72
75
|
private subs;
|
|
@@ -83,10 +86,16 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
|
83
86
|
* @hidden
|
|
84
87
|
*/
|
|
85
88
|
messageFor(localizationToken: string): string;
|
|
89
|
+
/**
|
|
90
|
+
* @hidden
|
|
91
|
+
*/
|
|
92
|
+
toggleConfigurator(): void;
|
|
86
93
|
private resizeContainer;
|
|
87
94
|
private handleScroll;
|
|
88
95
|
private initNavigation;
|
|
89
96
|
private stopNavigation;
|
|
97
|
+
private initConfiguratorNavigation;
|
|
98
|
+
private stopConfiguratorNavigation;
|
|
90
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridComponent, never>;
|
|
91
100
|
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": "loaderSettings"; "configurator": "configurator"; "columnHeadersWidth": "columnHeadersWidth"; "navigable": "navigable"; }, {}, never, never>;
|
|
92
101
|
}
|
package/pivotgrid.module.d.ts
CHANGED
|
@@ -13,16 +13,17 @@ import * as i7 from "./configurator/draggable.directive";
|
|
|
13
13
|
import * as i8 from "./configurator/drop-target.directive";
|
|
14
14
|
import * as i9 from "./localization/localized-messages.directive";
|
|
15
15
|
import * as i10 from "./localization/custom-messages.component";
|
|
16
|
-
import * as i11 from "
|
|
17
|
-
import * as i12 from "@progress/kendo-angular-
|
|
18
|
-
import * as i13 from "@progress/kendo-angular-
|
|
19
|
-
import * as i14 from "
|
|
20
|
-
import * as i15 from "./
|
|
16
|
+
import * as i11 from "./configurator/chip-kb-nav.directive";
|
|
17
|
+
import * as i12 from "@progress/kendo-angular-common";
|
|
18
|
+
import * as i13 from "@progress/kendo-angular-indicators";
|
|
19
|
+
import * as i14 from "@progress/kendo-angular-treeview";
|
|
20
|
+
import * as i15 from "./configurator/chip-menu/chip-menu.module";
|
|
21
|
+
import * as i16 from "./shared.module";
|
|
21
22
|
/**
|
|
22
23
|
* Sample module
|
|
23
24
|
*/
|
|
24
25
|
export declare class PivotGridModule {
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, [typeof i1.PivotGridComponent, typeof i2.PivotGridTableComponent, typeof i3.PivotGridConfiguratorComponent, typeof i4.PivotGridCellDirective, typeof i5.PivotLocalBindingDirective, typeof i6.PivotOLAPBindingDirective, typeof i7.DraggableChipDirective, typeof i8.DropTargetDirective, typeof i9.LocalizedMessagesDirective, typeof i10.CustomMessagesComponent], [typeof
|
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, [typeof i1.PivotGridComponent, typeof i2.PivotGridTableComponent, typeof i3.PivotGridConfiguratorComponent, typeof i4.PivotGridCellDirective, typeof i5.PivotLocalBindingDirective, typeof i6.PivotOLAPBindingDirective, typeof i7.DraggableChipDirective, typeof i8.DropTargetDirective, typeof i9.LocalizedMessagesDirective, typeof i10.CustomMessagesComponent, typeof i11.ChipKeyboardNavigationDirective], [typeof i12.EventsModule, typeof i13.IndicatorsModule, typeof i14.TreeViewModule, typeof i12.DraggableModule, typeof i15.ChipMenuModule, typeof i16.SharedModule], [typeof i1.PivotGridComponent, typeof i2.PivotGridTableComponent, typeof i4.PivotGridCellDirective, typeof i5.PivotLocalBindingDirective, typeof i6.PivotOLAPBindingDirective, typeof i10.CustomMessagesComponent]>;
|
|
27
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<PivotGridModule>;
|
|
28
29
|
}
|
package/util.d.ts
CHANGED