@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.
@@ -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-localization)).
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.2",
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.4.1",
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"
@@ -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
  }
@@ -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 "@progress/kendo-angular-common";
17
- import * as i12 from "@progress/kendo-angular-indicators";
18
- import * as i13 from "@progress/kendo-angular-treeview";
19
- import * as i14 from "./configurator/chip-menu/chip-menu.module";
20
- import * as i15 from "./shared.module";
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 i11.EventsModule, typeof i12.IndicatorsModule, typeof i13.TreeViewModule, typeof i11.DraggableModule, typeof i14.ChipMenuModule, typeof i15.SharedModule], [typeof i1.PivotGridComponent, typeof i2.PivotGridTableComponent, typeof i4.PivotGridCellDirective, typeof i5.PivotLocalBindingDirective, typeof i6.PivotOLAPBindingDirective, typeof i10.CustomMessagesComponent]>;
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
@@ -78,3 +78,7 @@ export declare function cloneValue(value: any, nextValue: any): any;
78
78
  * @hidden
79
79
  */
80
80
  export declare function cloneArray(array: any[]): any;
81
+ /**
82
+ * @hidden
83
+ */
84
+ export declare const swapItems: (arr: any, i1: any, i2: any) => void;