@progress/kendo-angular-pivotgrid 19.1.2-develop.4 → 19.1.2-develop.5
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/data-binding/base-binding-directive.d.ts +13 -10
- package/data-binding/local-binding.directive.d.ts +19 -4
- package/data-binding/olap-binding.directive.d.ts +20 -4
- package/directives.d.ts +17 -1
- package/esm2022/data-binding/base-binding-directive.mjs +13 -10
- package/esm2022/data-binding/local-binding.directive.mjs +19 -4
- package/esm2022/data-binding/olap-binding.directive.mjs +20 -4
- package/esm2022/directives.mjs +17 -1
- package/esm2022/localization/custom-messages.component.mjs +14 -1
- package/esm2022/localization/messages.mjs +48 -84
- package/esm2022/models/configuration-change-event.mjs +6 -6
- package/esm2022/models/expanded-change-event.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pivotgrid.component.mjs +27 -13
- package/esm2022/pivotgrid.module.mjs +7 -18
- package/esm2022/rendering/templates/pivotgrid-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-value-cell-template.directive.mjs +10 -9
- package/esm2022/util.mjs +1 -1
- package/fesm2022/progress-kendo-angular-pivotgrid.mjs +221 -187
- package/localization/custom-messages.component.d.ts +14 -1
- package/localization/messages.d.ts +48 -84
- package/models/configuration-change-event.d.ts +6 -6
- package/models/configurator-position.d.ts +1 -1
- package/models/configurator-settings.d.ts +4 -4
- package/models/data-row-item.d.ts +3 -3
- package/models/expanded-change-event.d.ts +4 -4
- package/models/loader-settings.d.ts +19 -7
- package/models/virtualization-settings.d.ts +14 -5
- package/package.json +13 -13
- package/pivotgrid.component.d.ts +27 -13
- package/pivotgrid.module.d.ts +7 -18
- package/rendering/templates/pivotgrid-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +10 -9
- package/schematics/ngAdd/index.js +2 -2
@@ -6,8 +6,21 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
6
|
import { PivotGridMessages } from './messages';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
/**
|
9
|
-
*
|
9
|
+
* Represents the custom messages component of the PivotGrid.
|
10
|
+
*
|
11
|
+
* Use this component to override default messages for the PivotGrid.
|
10
12
|
* ([see example]({% slug globalization_pivotgrid %}#toc-custom-messages)).
|
13
|
+
*
|
14
|
+
* @example
|
15
|
+
* ```html
|
16
|
+
* <kendo-pivotgrid>
|
17
|
+
* <kendo-pivotgrid-messages
|
18
|
+
* configuratorButtonText="Configure"
|
19
|
+
* configuratorHeaderText="PivotGrid Settings"
|
20
|
+
* configuratorApplyButtonText="Apply Changes">
|
21
|
+
* </kendo-pivotgrid-messages>
|
22
|
+
* </kendo-pivotgrid>
|
23
|
+
* ```
|
11
24
|
*/
|
12
25
|
export declare class CustomMessagesComponent extends PivotGridMessages {
|
13
26
|
protected service: LocalizationService;
|
@@ -9,200 +9,164 @@ import * as i0 from "@angular/core";
|
|
9
9
|
*/
|
10
10
|
export declare class PivotGridMessages extends ComponentMessages {
|
11
11
|
/**
|
12
|
-
*
|
12
|
+
* Sets the text content of the filter item in the column and row fields menu.
|
13
13
|
*/
|
14
14
|
fieldMenuFilterItemLabel: string;
|
15
15
|
/**
|
16
|
-
*
|
16
|
+
* Specifies the text content of the sort ascending item in the column and row fields menu.
|
17
17
|
*/
|
18
18
|
fieldMenuSortAscendingItemLabel: string;
|
19
19
|
/**
|
20
|
-
*
|
20
|
+
* Sets the text content of the sort descending item in the column and row fields menu.
|
21
21
|
*/
|
22
22
|
fieldMenuSortDescendingItemLabel: string;
|
23
23
|
/**
|
24
|
-
*
|
24
|
+
* Defines the label of the filter input.
|
25
25
|
*
|
26
|
-
* The filter input label
|
27
|
-
* For fields named '[Geography][City]'
|
26
|
+
* The filter input label has two parts—the field name(s) and a localizable string.
|
27
|
+
* For fields named `'[Geography][City]'`, the default label will be `'Geography City Filter'`.
|
28
28
|
*
|
29
|
-
*
|
30
|
-
*
|
31
|
-
* internally with the current field(s) name(s), and the resulting label will be rendered as 'filter for Geography City'.
|
32
|
-
*
|
33
|
-
* @example
|
34
|
-
*
|
35
|
-
* ```ts-no-run
|
36
|
-
* <kendo-pivotgrid>
|
37
|
-
* <kendo-pivotgrid-messages
|
38
|
-
* filterInputLabel="filter for {fields}"
|
39
|
-
* >
|
40
|
-
* </kendo-pivotgrid-messages>
|
41
|
-
* </kendo-pivotgrid>
|
42
|
-
* ```
|
29
|
+
* You can reorder the parts using `'{fields}'` as a placeholder. The `'{fields}'` placeholder will get replaced
|
30
|
+
* with the field name(s). For example, `'filter for {fields}'` will become `'filter for Geography City'`.
|
43
31
|
*/
|
44
32
|
filterInputLabel: string;
|
45
33
|
/**
|
46
|
-
*
|
47
|
-
*
|
48
|
-
* The label consists of a two-part message - the name(s) of the fields and a localizable string.
|
49
|
-
* For fields named '[Geography][City]', the default label will be 'Geography City Filter Operators'.
|
34
|
+
* Specifies the label of the filter operators DropDownList.
|
50
35
|
*
|
51
|
-
*
|
52
|
-
*
|
53
|
-
* internally with the current field(s) name(s), and the resulting label will be rendered as 'filter operators for Geography City'.
|
36
|
+
* The label has two parts—the field name(s) and a localizable string.
|
37
|
+
* For fields named `'[Geography][City]'`, the default label will be `'Geography City Filter Operators'`.
|
54
38
|
*
|
55
|
-
*
|
56
|
-
*
|
57
|
-
* ```ts-no-run
|
58
|
-
* <kendo-pivotgrid>
|
59
|
-
* <kendo-pivotgrid-messages
|
60
|
-
* filterMenuOperatorsDropDownLabel="filter operators for {fields}"
|
61
|
-
* >
|
62
|
-
* </kendo-pivotgrid-messages>
|
63
|
-
* </kendo-pivotgrid>
|
64
|
-
* ```
|
39
|
+
* You can reorder the parts using `'{fields}'` as a placeholder. The `'{fields}'` placeholder will get replaced
|
40
|
+
* with the field name(s). For example, `'filter operators for {fields}'` will become `'filter operators for Geography City'`.
|
65
41
|
*/
|
66
42
|
filterOperatorsDropDownLabel: string;
|
67
43
|
/**
|
68
|
-
*
|
44
|
+
* Sets the text of the `Equal` (**Is equal to**) filter operator.
|
69
45
|
*/
|
70
46
|
filterEqOperator: string;
|
71
47
|
/**
|
72
|
-
*
|
48
|
+
* Specifies the text of the `NotEqual` (**Is not equal to**) filter operator.
|
73
49
|
*/
|
74
50
|
filterNotEqOperator: string;
|
75
51
|
/**
|
76
|
-
*
|
52
|
+
* Specifies the text of the `IsNull` (**Is null**) filter operator.
|
77
53
|
*/
|
78
54
|
filterIsNullOperator: string;
|
79
55
|
/**
|
80
|
-
*
|
56
|
+
* Sets the text of the `IsNotNull` (**Is not null**) filter operator.
|
81
57
|
*/
|
82
58
|
filterIsNotNullOperator: string;
|
83
59
|
/**
|
84
|
-
*
|
60
|
+
* Specifies the text of the `IsEmpty` (**Is empty**) filter operator.
|
85
61
|
*/
|
86
62
|
filterIsEmptyOperator: string;
|
87
63
|
/**
|
88
|
-
*
|
64
|
+
* Specifies the text of the `IsNotEmpty` (**Is not empty**) filter operator.
|
89
65
|
*/
|
90
66
|
filterIsNotEmptyOperator: string;
|
91
67
|
/**
|
92
|
-
*
|
68
|
+
* Sets the text of the `StartsWith` (**Starts with**) filter operator.
|
93
69
|
*/
|
94
70
|
filterStartsWithOperator: string;
|
95
71
|
/**
|
96
|
-
*
|
72
|
+
* Sets the text of the `Contains` (**Contains**) filter operator.
|
97
73
|
*/
|
98
74
|
filterContainsOperator: string;
|
99
75
|
/**
|
100
|
-
*
|
76
|
+
* Specifies the text of the `DoesNotContain` (**Does not contain**) filter operator.
|
101
77
|
*/
|
102
78
|
filterNotContainsOperator: string;
|
103
79
|
/**
|
104
|
-
*
|
80
|
+
* Specifies the text of the `EndsWith` (**Ends with**) string filter operator.
|
105
81
|
*/
|
106
82
|
filterEndsWithOperator: string;
|
107
83
|
/**
|
108
|
-
*
|
84
|
+
* Sets the text of the **Filter** button.
|
109
85
|
*/
|
110
86
|
filterFilterButton: string;
|
111
87
|
/**
|
112
|
-
*
|
88
|
+
* Sets the text of the **Clear filter** button.
|
113
89
|
*/
|
114
90
|
filterClearButton: string;
|
115
91
|
/**
|
116
|
-
*
|
92
|
+
* Specifies the loading text.
|
117
93
|
*
|
118
94
|
* > The `loading` property is part of the accessibility support of the PivotGrid.
|
119
|
-
* Its value is detectable by screen readers and is not otherwise
|
95
|
+
* Its value is detectable by screen readers and is not visible otherwise.
|
120
96
|
*/
|
121
97
|
loading: string;
|
122
98
|
/**
|
123
|
-
*
|
99
|
+
* Specifies the value of the aria-label attribute placed on the PivotGrid focusable empty cell element.
|
124
100
|
*/
|
125
101
|
emptyCellLabel: string;
|
126
102
|
/**
|
127
|
-
*
|
103
|
+
* Sets the text content of the button that opens and closes the PivotGrid configurator.
|
128
104
|
*/
|
129
105
|
configuratorButtonText: string;
|
130
106
|
/**
|
131
|
-
*
|
107
|
+
* Sets the text content of the PivotGrid configurator title element.
|
132
108
|
*/
|
133
109
|
configuratorHeaderText: string;
|
134
110
|
/**
|
135
|
-
*
|
111
|
+
* Sets the text content of the PivotGrid configurator fields section title element.
|
136
112
|
*/
|
137
113
|
configuratorFieldsText: string;
|
138
114
|
/**
|
139
|
-
*
|
115
|
+
* Sets the text content of the PivotGrid configurator columns section title element.
|
140
116
|
*/
|
141
117
|
configuratorColumnsText: string;
|
142
118
|
/**
|
143
|
-
*
|
119
|
+
* Specifies the text content of the PivotGrid configurator rows section title element.
|
144
120
|
*/
|
145
121
|
configuratorRowsText: string;
|
146
122
|
/**
|
147
|
-
*
|
123
|
+
* Specifies the text content of the PivotGrid configurator values section title element.
|
148
124
|
*/
|
149
125
|
configuratorValuesText: string;
|
150
126
|
/**
|
151
|
-
*
|
127
|
+
* Sets the text content of the PivotGrid configurator **Cancel** button.
|
152
128
|
*/
|
153
129
|
configuratorCancelButtonText: string;
|
154
130
|
/**
|
155
|
-
*
|
131
|
+
* Specifies the text content of the PivotGrid configurator **Apply** button.
|
156
132
|
*/
|
157
133
|
configuratorApplyButtonText: string;
|
158
134
|
/**
|
159
|
-
*
|
135
|
+
* Sets the text content of the PivotGrid configurator empty rows container.
|
160
136
|
*/
|
161
137
|
configuratorEmptyRowsText: string;
|
162
138
|
/**
|
163
|
-
*
|
139
|
+
* Sets the text content of the PivotGrid configurator empty columns container.
|
164
140
|
*/
|
165
141
|
configuratorEmptyColumnsText: string;
|
166
142
|
/**
|
167
|
-
*
|
143
|
+
* Sets the text content of the PivotGrid configurator empty measures container.
|
168
144
|
*/
|
169
145
|
configuratorEmptyMeasuresText: string;
|
170
146
|
/**
|
171
|
-
*
|
147
|
+
* Sets the text content of the **Move to Columns** item in the column and row fields menu.
|
172
148
|
*/
|
173
149
|
fieldMenuMoveToColumnsItem: string;
|
174
150
|
/**
|
175
|
-
*
|
151
|
+
* Specifies the text content of the **Move to Rows** item in the column and row fields menu.
|
176
152
|
*/
|
177
153
|
fieldMenuMoveToRowsItem: string;
|
178
154
|
/**
|
179
|
-
*
|
155
|
+
* Specifies the text content of the **Move as previous** item in the column, row, and value fields menu.
|
180
156
|
*/
|
181
157
|
fieldMenuMovePreviousItem: string;
|
182
158
|
/**
|
183
|
-
*
|
159
|
+
* Specifies the text content of the **Move as next** item in the column, row, and value fields menu.
|
184
160
|
*/
|
185
161
|
fieldMenuMoveNextItem: string;
|
186
162
|
/**
|
187
|
-
*
|
188
|
-
*
|
189
|
-
* The title consists of a two-part message - the name of the chip and a localizable string.
|
190
|
-
* For a field named 'Product', the default title will be 'Product Field Menu'.
|
191
|
-
*
|
192
|
-
* To allow reordering the field name and the localizable part, the chipMenu accepts a string with a
|
193
|
-
* placeholder for the chip name - e.g. 'chip for {fieldName}'. The '{fieldName}' placeholder will be replaced
|
194
|
-
* internally with the current chip name, and the resulting title will be rendered as 'Product Field Menu'.
|
163
|
+
* Controls the title of the chip menu icon.
|
195
164
|
*
|
196
|
-
*
|
165
|
+
* The title has two parts—the chip name and a localizable string.
|
166
|
+
* For a field named `'Product'`, the default title will be `'Product Field Menu'`.
|
197
167
|
*
|
198
|
-
*
|
199
|
-
*
|
200
|
-
* <kendo-pivotgrid-messages
|
201
|
-
* chipMenuIconTitle="'{fieldName} Field Menu'"
|
202
|
-
* >
|
203
|
-
* </kendo-pivotgrid-messages>
|
204
|
-
* </kendo-pivotgrid>
|
205
|
-
* ```
|
168
|
+
* You can reorder the parts using `'{fieldName}'` as a placeholder. The `'{fieldName}'` placeholder will get replaced
|
169
|
+
* with the current chip name. For example, `'chip for {fieldName}'` will become `'chip for Product Field Menu'`.
|
206
170
|
*/
|
207
171
|
chipMenuIconTitle: string;
|
208
172
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridMessages, never>;
|
@@ -6,27 +6,27 @@ import { PreventableEvent } from "@progress/kendo-angular-common";
|
|
6
6
|
import { FilterDescriptor, SortDescriptor } from "@progress/kendo-data-query";
|
7
7
|
import { PivotGridAxis } from "@progress/kendo-pivotgrid-common";
|
8
8
|
/**
|
9
|
-
*
|
9
|
+
* Represents the event data for the `configurationChange` event.
|
10
10
|
*/
|
11
11
|
export declare class ConfigurationChangeEvent extends PreventableEvent {
|
12
12
|
/**
|
13
|
-
*
|
13
|
+
* Specifies the current row axes configuration that results from user interaction.
|
14
14
|
*/
|
15
15
|
rowAxes: PivotGridAxis[];
|
16
16
|
/**
|
17
|
-
*
|
17
|
+
* Specifies the current column axes configuration that results from user interaction.
|
18
18
|
*/
|
19
19
|
columnAxes: PivotGridAxis[];
|
20
20
|
/**
|
21
|
-
*
|
21
|
+
* Provides the measure axes configuration.
|
22
22
|
*/
|
23
23
|
measureAxes: PivotGridAxis[];
|
24
24
|
/**
|
25
|
-
*
|
25
|
+
* Provides the sorting configuration.
|
26
26
|
*/
|
27
27
|
sort?: SortDescriptor[];
|
28
28
|
/**
|
29
|
-
*
|
29
|
+
* Provides the filtering configuration.
|
30
30
|
*/
|
31
31
|
filter?: FilterDescriptor[];
|
32
32
|
/**
|
@@ -3,7 +3,7 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
6
|
-
*
|
6
|
+
* Specifies the Configurator position in the container.
|
7
7
|
*
|
8
8
|
* @default 'right'
|
9
9
|
*/
|
@@ -7,18 +7,18 @@ import { PivotGridAxis } from "@progress/kendo-pivotgrid-common";
|
|
7
7
|
import { PivotGridConfiguratorOrientation } from "./configurator-orientation";
|
8
8
|
import { PivotGridConfiguratorPosition } from "./configurator-position";
|
9
9
|
/**
|
10
|
-
*
|
10
|
+
* Represents the available settings for the PivotGrid Configurator layout.
|
11
11
|
*/
|
12
12
|
export interface ConfiguratorSettings {
|
13
13
|
/**
|
14
|
-
*
|
14
|
+
* Specifies the Configurator position in the container.
|
15
15
|
*
|
16
16
|
* @default 'right'
|
17
17
|
*/
|
18
18
|
position?: PivotGridConfiguratorPosition;
|
19
19
|
/**
|
20
|
-
*
|
21
|
-
*
|
20
|
+
* Specifies whether the layout orientation of the Configurator inner elements
|
21
|
+
* is horizontal or vertical.
|
22
22
|
*
|
23
23
|
* @default 'vertical'
|
24
24
|
*/
|
@@ -4,15 +4,15 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { PivotDataItem } from "@progress/kendo-pivotgrid-common";
|
6
6
|
/**
|
7
|
-
*
|
7
|
+
* Represents the event data for `dataLoaded` event.
|
8
8
|
*/
|
9
9
|
export interface PivotDataRowItem {
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Provides the row hierarchy.
|
12
12
|
*/
|
13
13
|
row: string[];
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Provides the aggregated cell data.
|
16
16
|
*/
|
17
17
|
cells: PivotDataItem[];
|
18
18
|
}
|
@@ -5,19 +5,19 @@
|
|
5
5
|
import { PreventableEvent } from "@progress/kendo-angular-common";
|
6
6
|
import { PivotGridAxis } from "@progress/kendo-pivotgrid-common";
|
7
7
|
/**
|
8
|
-
*
|
8
|
+
* Represents the event data for the `expandChange` event.
|
9
9
|
*/
|
10
10
|
export declare class ExpandChangeEvent extends PreventableEvent {
|
11
11
|
/**
|
12
|
-
*
|
12
|
+
* Provides the current row axes configuration that results from user interaction.
|
13
13
|
*/
|
14
14
|
rowAxes: PivotGridAxis[];
|
15
15
|
/**
|
16
|
-
*
|
16
|
+
* Provides the current column axes configuration that results from user interaction.
|
17
17
|
*/
|
18
18
|
columnAxes: PivotGridAxis[];
|
19
19
|
/**
|
20
|
-
*
|
20
|
+
* Provides the measure axes configuration.
|
21
21
|
*/
|
22
22
|
measureAxes: PivotGridAxis[];
|
23
23
|
/**
|
@@ -4,19 +4,19 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { LoaderSize as LoaderSizeSource, LoaderThemeColor as LoaderThemeColorSource, LoaderType as LoaderTypeSource } from '@progress/kendo-angular-indicators';
|
6
6
|
/**
|
7
|
-
* Specifies the size of the PivotGrid
|
7
|
+
* Specifies the size of the PivotGrid loader.
|
8
8
|
*
|
9
9
|
* The available values are:
|
10
10
|
* * `small`
|
11
11
|
* * `medium`
|
12
|
-
* * `large`
|
12
|
+
* * `large`
|
13
13
|
*/
|
14
14
|
export declare type LoaderSize = Partial<LoaderSizeSource>;
|
15
15
|
/**
|
16
|
-
* Specifies the theme color of the PivotGrid
|
16
|
+
* Specifies the theme color of the PivotGrid loader.
|
17
17
|
*
|
18
18
|
* The available values are:
|
19
|
-
* * `primary
|
19
|
+
* * `primary`—Applies coloring based on primary theme color.
|
20
20
|
* * `secondary`—Applies coloring based on secondary theme color.
|
21
21
|
* * `tertiary`—Applies coloring based on tertiary theme color.
|
22
22
|
* * `info`—Applies coloring based on info theme color.
|
@@ -29,19 +29,31 @@ export declare type LoaderSize = Partial<LoaderSizeSource>;
|
|
29
29
|
*/
|
30
30
|
export declare type LoaderThemeColor = Partial<LoaderThemeColorSource>;
|
31
31
|
/**
|
32
|
-
* Specifies the
|
32
|
+
* Specifies the type of the PivotGrid loader.
|
33
33
|
*
|
34
34
|
* The available values are:
|
35
35
|
* * `pulsing`
|
36
36
|
* * `infinite-spinner`
|
37
|
-
* * `converging-spinner`
|
37
|
+
* * `converging-spinner`
|
38
38
|
*/
|
39
39
|
export declare type LoaderType = Partial<LoaderTypeSource>;
|
40
40
|
/**
|
41
|
-
* Specifies the type, size and color of the PivotGrid
|
41
|
+
* Specifies the type, size, and color of the PivotGrid loader.
|
42
42
|
*/
|
43
43
|
export interface LoaderSettings {
|
44
|
+
/**
|
45
|
+
* Specifies the size of the loader.
|
46
|
+
* @default 'large'
|
47
|
+
*/
|
44
48
|
size?: LoaderSize;
|
49
|
+
/**
|
50
|
+
* Specifies the theme color of the loader.
|
51
|
+
* @default 'primary'
|
52
|
+
*/
|
45
53
|
themeColor?: LoaderThemeColor;
|
54
|
+
/**
|
55
|
+
* Specifies the type of the loader.
|
56
|
+
* @default 'converging-spinner'
|
57
|
+
*/
|
46
58
|
type?: LoaderType;
|
47
59
|
}
|
@@ -3,13 +3,22 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
6
|
-
*
|
6
|
+
* Specifies the supported values of the [`VirtualizationSettings`](slug:api_pivotgrid_virtualizationsettings) `type` property.
|
7
|
+
*
|
8
|
+
* The available values are:
|
9
|
+
* * `row`—Enables row virtualization only.
|
10
|
+
* * `column`—Enables column virtualization only.
|
11
|
+
* * `both`—Enables both row and column virtualization.
|
7
12
|
*/
|
8
13
|
export type PivotGridVirtualizationSettingsType = 'row | column | both';
|
14
|
+
/**
|
15
|
+
* Represents the virtualization settings for the PivotGrid data table.
|
16
|
+
* Controls how many rows and columns are rendered in the DOM to improve performance with large datasets.
|
17
|
+
*/
|
9
18
|
export interface VirtualizationSettings {
|
10
19
|
/**
|
11
|
-
*
|
12
|
-
* @default
|
20
|
+
* Specifies the virtualization type for the PivotGrid data table. When virtualization is enabled, both rows and columns are virtualized by default.
|
21
|
+
* @default 'both'
|
13
22
|
*/
|
14
23
|
type?: PivotGridVirtualizationSettingsType;
|
15
24
|
/**
|
@@ -18,12 +27,12 @@ export interface VirtualizationSettings {
|
|
18
27
|
*/
|
19
28
|
rowHeight?: number;
|
20
29
|
/**
|
21
|
-
*
|
30
|
+
* Specifies the maximum number of value table rows that render in the DOM.
|
22
31
|
* @default 50
|
23
32
|
*/
|
24
33
|
rows?: number;
|
25
34
|
/**
|
26
|
-
*
|
35
|
+
* Specifies the maximum number of value table columns that render in the DOM.
|
27
36
|
* @default 10
|
28
37
|
*/
|
29
38
|
columns?: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
3
|
-
"version": "19.1.2-develop.
|
3
|
+
"version": "19.1.2-develop.5",
|
4
4
|
"description": "PivotGrid package for Angular",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"package": {
|
19
19
|
"productName": "Kendo UI for Angular",
|
20
20
|
"productCode": "KENDOUIANGULAR",
|
21
|
-
"publishDate":
|
21
|
+
"publishDate": 1750431130,
|
22
22
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
23
23
|
}
|
24
24
|
},
|
@@ -31,21 +31,21 @@
|
|
31
31
|
"@progress/kendo-data-query": "^1.5.5",
|
32
32
|
"@progress/kendo-drawing": "^1.21.0",
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
34
|
-
"@progress/kendo-angular-buttons": "19.1.2-develop.
|
35
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
36
|
-
"@progress/kendo-angular-dropdowns": "19.1.2-develop.
|
37
|
-
"@progress/kendo-angular-indicators": "19.1.2-develop.
|
38
|
-
"@progress/kendo-angular-inputs": "19.1.2-develop.
|
39
|
-
"@progress/kendo-angular-intl": "19.1.2-develop.
|
40
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
41
|
-
"@progress/kendo-angular-popup": "19.1.2-develop.
|
42
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
43
|
-
"@progress/kendo-angular-treeview": "19.1.2-develop.
|
34
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.5",
|
35
|
+
"@progress/kendo-angular-common": "19.1.2-develop.5",
|
36
|
+
"@progress/kendo-angular-dropdowns": "19.1.2-develop.5",
|
37
|
+
"@progress/kendo-angular-indicators": "19.1.2-develop.5",
|
38
|
+
"@progress/kendo-angular-inputs": "19.1.2-develop.5",
|
39
|
+
"@progress/kendo-angular-intl": "19.1.2-develop.5",
|
40
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.5",
|
41
|
+
"@progress/kendo-angular-popup": "19.1.2-develop.5",
|
42
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.5",
|
43
|
+
"@progress/kendo-angular-treeview": "19.1.2-develop.5",
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.3.1",
|
48
|
-
"@progress/kendo-angular-schematics": "19.1.2-develop.
|
48
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.5",
|
49
49
|
"@progress/kendo-pivotgrid-common": "0.6.3"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|
package/pivotgrid.component.d.ts
CHANGED
@@ -19,7 +19,24 @@ import { VirtualizationSettings } from './models/virtualization-settings';
|
|
19
19
|
import { PivotGridScrollService } from './virtual/scroll.service';
|
20
20
|
import * as i0 from "@angular/core";
|
21
21
|
/**
|
22
|
-
* Represents the Kendo UI PivotGrid component for Angular.
|
22
|
+
* Represents the [Kendo UI PivotGrid component for Angular](slug:overview_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}
|
23
40
|
*/
|
24
41
|
export declare class PivotGridComponent implements AfterViewInit, AfterContentInit, OnDestroy {
|
25
42
|
private hostEl;
|
@@ -44,12 +61,7 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
44
61
|
rowHeaderCellTemplate: RowHeaderCellTemplateDirective;
|
45
62
|
columnHeaderCellTemplate: ColumnHeaderCellTemplateDirective;
|
46
63
|
/**
|
47
|
-
*
|
48
|
-
*
|
49
|
-
* The default settings are:
|
50
|
-
* * type: `converging-spinner`
|
51
|
-
* * color: `primary`
|
52
|
-
* * size: `large`
|
64
|
+
* Sets the type, size, and color of the PivotGrid loader.
|
53
65
|
*/
|
54
66
|
set loaderSettings(settings: LoaderSettings);
|
55
67
|
get loaderSettings(): LoaderSettings;
|
@@ -58,11 +70,13 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
58
70
|
*/
|
59
71
|
get loadingText(): string;
|
60
72
|
/**
|
61
|
-
*
|
73
|
+
* Controls whether the axes configurator is displayed.
|
74
|
+
*
|
75
|
+
* @default false
|
62
76
|
*/
|
63
77
|
configurator: boolean | ConfiguratorSettings;
|
64
78
|
/**
|
65
|
-
* Sets the virtualization options of the component. By default the virtual scrolling functionality is disabled.
|
79
|
+
* Sets the virtualization options of the component. By default, the virtual scrolling functionality is disabled.
|
66
80
|
*
|
67
81
|
* @default false
|
68
82
|
*/
|
@@ -70,20 +84,20 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
70
84
|
get virtualScrolling(): VirtualizationSettings;
|
71
85
|
get configuratorSettings(): ConfiguratorSettings;
|
72
86
|
/**
|
73
|
-
*
|
87
|
+
* Sets the width of the column header and data cells. The provided value is treated in pixels [(see example)]({% slug appearance_pivotgrid %}#toc-column-headers-width).
|
74
88
|
*
|
75
89
|
* @default 200
|
76
90
|
*/
|
77
91
|
columnHeadersWidth: number;
|
78
92
|
/**
|
79
|
-
*
|
80
|
-
*
|
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.
|
81
95
|
*
|
82
96
|
* @default true
|
83
97
|
*/
|
84
98
|
navigable: boolean;
|
85
99
|
/**
|
86
|
-
*
|
100
|
+
* Gets the aggregated PivotGrid values that are displayed.
|
87
101
|
*/
|
88
102
|
get aggregateData(): PivotDataRowItem[];
|
89
103
|
/**
|