@progress/kendo-angular-pivotgrid 0.2.0 → 0.2.1-dev.202209131551

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.
@@ -0,0 +1,10 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Defines the layout orientation of the Configurator.
7
+ *
8
+ * @default 'vertical'
9
+ */
10
+ export declare type PivotGridConfiguratorOrientation = 'horizontal' | 'vertical';
@@ -4,23 +4,24 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { FilterDescriptor, SortDescriptor } from "@progress/kendo-data-query";
6
6
  import { PivotGridAxis } from "@progress/kendo-pivotgrid-common";
7
+ import { PivotGridConfiguratorOrientation } from "./configurator-orientation";
7
8
  /**
8
9
  * Allows customizing the PivotGrid Configurator layout.
9
10
  */
10
11
  export interface ConfiguratorSettings {
11
12
  /**
12
13
  * Sets the configurator position in the container.
13
- * The available values are:
14
- * - top
15
- * - left
16
- * - right
17
- * - bottom
14
+ *
15
+ * @default 'right'
18
16
  */
19
17
  position?: 'top' | 'left' | 'right' | 'bottom';
20
18
  /**
21
- * Renders the PivotGridConfigurator in `horizontal` orientation.
19
+ * Determines whether the layout orientation of the Configurator inner elements
20
+ * will be horizontal or vertical.
21
+ *
22
+ * @default: 'vertical'
22
23
  */
23
- horizontal?: boolean;
24
+ orientation?: PivotGridConfiguratorOrientation;
24
25
  }
25
26
  /**
26
27
  * @hidden
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-pivotgrid",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-dev.202209131551",
4
4
  "description": "PivotGrid package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -33,10 +33,11 @@
33
33
  "@angular/forms": "12 - 14",
34
34
  "@progress/kendo-angular-common": "^3.0.0",
35
35
  "@progress/kendo-angular-buttons": "^8.0.0",
36
- "@progress/kendo-angular-indicators": "^2.0.0",
36
+ "@progress/kendo-angular-indicators": "^3.0.0",
37
37
  "@progress/kendo-angular-intl": "^4.0.0",
38
38
  "@progress/kendo-angular-inputs": "9 - 10",
39
39
  "@progress/kendo-angular-l10n": "^4.0.0",
40
+ "@progress/kendo-angular-dropdowns": "^7.2.0",
40
41
  "@progress/kendo-angular-popup": "^5.0.0",
41
42
  "@progress/kendo-angular-treeview": "^7.1.0",
42
43
  "@progress/kendo-data-query": "^1.5.5",
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
16
16
  export declare class PivotGridComponent implements AfterViewInit, AfterContentInit, OnDestroy {
17
17
  private hostEl;
18
18
  private zone;
19
- private dataService;
19
+ dataService: PivotGridDataService;
20
20
  private localization;
21
21
  private renderer;
22
22
  hostClass: boolean;
@@ -73,6 +73,7 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
73
73
  private rtl;
74
74
  private direction;
75
75
  private navigation;
76
+ private navigationSubs;
76
77
  constructor(hostEl: ElementRef, zone: NgZone, dataService: PivotGridDataService, localization: LocalizationService, renderer: Renderer2, _scrollbarWidthService: ScrollbarWidthService);
77
78
  ngAfterViewInit(): void;
78
79
  ngAfterContentInit(): void;