@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.
- package/bundles/kendo-angular-pivotgrid.umd.js +1 -1
- package/configurator/configurator.component.d.ts +10 -3
- package/configurator/configurator.service.d.ts +3 -0
- package/data-binding/base-binding-directive.d.ts +0 -4
- package/data-binding/pivotgrid-data.service.d.ts +2 -0
- package/esm2015/configurator/configurator.component.js +130 -87
- package/esm2015/configurator/configurator.service.js +12 -8
- package/esm2015/data-binding/base-binding-directive.js +9 -23
- package/esm2015/data-binding/local-binding.directive.js +1 -1
- package/esm2015/data-binding/olap-binding.directive.js +1 -1
- package/esm2015/models/configurator-orientation.js +5 -0
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/pivotgrid.component.js +10 -11
- package/esm2015/rendering/pivotgrid-table.component.js +2 -8
- package/fesm2015/kendo-angular-pivotgrid.js +177 -153
- package/models/configurator-orientation.d.ts +10 -0
- package/models/configurator-settings.d.ts +8 -7
- package/package.json +3 -2
- package/pivotgrid.component.d.ts +2 -1
|
@@ -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
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* - left
|
|
16
|
-
* - right
|
|
17
|
-
* - bottom
|
|
14
|
+
*
|
|
15
|
+
* @default 'right'
|
|
18
16
|
*/
|
|
19
17
|
position?: 'top' | 'left' | 'right' | 'bottom';
|
|
20
18
|
/**
|
|
21
|
-
*
|
|
19
|
+
* Determines whether the layout orientation of the Configurator inner elements
|
|
20
|
+
* will be horizontal or vertical.
|
|
21
|
+
*
|
|
22
|
+
* @default: 'vertical'
|
|
22
23
|
*/
|
|
23
|
-
|
|
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.
|
|
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": "^
|
|
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",
|
package/pivotgrid.component.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|