@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
@@ -23,37 +23,40 @@ export declare abstract class PivotBaseBindingDirective implements OnInit, OnDes
|
|
23
23
|
abstract fetchChildren(state: any, fields: any): Promise<any>;
|
24
24
|
abstract type: 'local' | 'olap';
|
25
25
|
/**
|
26
|
-
*
|
26
|
+
* Defines the column axes configuration of the PivotGrid.
|
27
27
|
*/
|
28
28
|
columnAxes: PivotGridAxis[];
|
29
29
|
/**
|
30
|
-
*
|
30
|
+
* Defines the row axes configuration of the PivotGrid.
|
31
31
|
*/
|
32
32
|
rowAxes: PivotGridAxis[];
|
33
33
|
/**
|
34
|
-
*
|
34
|
+
* Defines the measure axes configuration of the PivotGrid.
|
35
35
|
*/
|
36
36
|
measureAxes: PivotGridAxis[];
|
37
37
|
/**
|
38
|
-
*
|
38
|
+
* Sets the initial sorted state of the PivotGrid.
|
39
39
|
*/
|
40
40
|
sort: SortDescriptor[];
|
41
41
|
/**
|
42
|
-
*
|
42
|
+
* Sets the initial filtered state of the PivotGrid.
|
43
43
|
*/
|
44
44
|
filter: FilterDescriptor[];
|
45
45
|
/**
|
46
|
-
* Fires each time a row or column header gets expanded or collapsed by the
|
47
|
-
*
|
46
|
+
* Fires each time a row or column header gets expanded or collapsed by the user.
|
47
|
+
*
|
48
|
+
* The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the user interaction.
|
48
49
|
*/
|
49
50
|
expandChange: EventEmitter<ExpandChangeEvent>;
|
50
51
|
/**
|
51
|
-
* Fires when the Configurator Apply button is pressed.
|
52
|
-
*
|
52
|
+
* Fires when the Configurator **Apply** button is pressed.
|
53
|
+
*
|
54
|
+
* The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the configuration changes.
|
53
55
|
*/
|
54
56
|
configurationChange: EventEmitter<ConfigurationChangeEvent>;
|
55
57
|
/**
|
56
|
-
* Fires each time
|
58
|
+
* Fires each time new data is loaded and transformed to show aggregated values.
|
59
|
+
*
|
57
60
|
* The event fires upon initialization and on user interaction that changes the state of the PivotGrid.
|
58
61
|
*/
|
59
62
|
dataLoaded: EventEmitter<PivotDataRowItem[]>;
|
@@ -9,21 +9,36 @@ import { PivotBaseBindingDirective } from './base-binding-directive';
|
|
9
9
|
import { PivotGridState } from '../models/configurator-settings';
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
/**
|
12
|
-
*
|
12
|
+
* Represents a directive that binds the PivotGrid to local data ([see example]({% slug directives_databinding_local_pivotgrid %})).
|
13
|
+
*
|
14
|
+
* @example
|
15
|
+
* ```html
|
16
|
+
* <kendo-pivotgrid
|
17
|
+
* [kendoPivotLocalBinding]="data"
|
18
|
+
* [dimensions]="dimensions"
|
19
|
+
* [measures]="measures"
|
20
|
+
* [columnAxes]="columnAxes"
|
21
|
+
* [rowAxes]="rowAxes"
|
22
|
+
* [measureAxes]="measureAxes">
|
23
|
+
* </kendo-pivotgrid>
|
24
|
+
* ```
|
25
|
+
*
|
26
|
+
* @remarks
|
27
|
+
* Applied to: {@link PivotGridComponent}
|
13
28
|
*/
|
14
29
|
export declare class PivotLocalBindingDirective extends PivotBaseBindingDirective {
|
15
30
|
/**
|
16
|
-
*
|
31
|
+
* Contains the array of data which will be used to populate the PivotGrid.
|
17
32
|
*/
|
18
33
|
data: any[];
|
19
34
|
/**
|
20
|
-
*
|
35
|
+
* Defines the dimensions object of the PivotGrid.
|
21
36
|
*/
|
22
37
|
dimensions: {
|
23
38
|
[key: string]: Dimension;
|
24
39
|
};
|
25
40
|
/**
|
26
|
-
*
|
41
|
+
* Contains the measures collection of the PivotGrid.
|
27
42
|
*/
|
28
43
|
measures: Measure[];
|
29
44
|
type: 'local' | 'olap';
|
@@ -8,19 +8,35 @@ import { PivotBaseBindingDirective } from './base-binding-directive';
|
|
8
8
|
import { PivotGridState } from '../models/configurator-settings';
|
9
9
|
import * as i0 from "@angular/core";
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Represents a directive that binds the PivotGrid to data using an Online Analytical Processing (OLAP) service ([see example]({% slug directives_databinding_remote_pivotgrid %})).
|
12
|
+
*
|
13
|
+
* @example
|
14
|
+
* ```html
|
15
|
+
* <kendo-pivotgrid
|
16
|
+
* kendoPivotOLAPBinding
|
17
|
+
* [url]="url"
|
18
|
+
* catalog="Adventure Works DW 2008 SE"
|
19
|
+
* cube="Adventure Works"
|
20
|
+
* [columnAxes]="columnAxes"
|
21
|
+
* [rowAxes]="rowAxes"
|
22
|
+
* [measureAxes]="measureAxes">
|
23
|
+
* </kendo-pivotgrid>
|
24
|
+
* ```
|
25
|
+
*
|
26
|
+
* @remarks
|
27
|
+
* Applied to: {@link PivotGridComponent}
|
12
28
|
*/
|
13
29
|
export declare class PivotOLAPBindingDirective extends PivotBaseBindingDirective {
|
14
30
|
/**
|
15
|
-
*
|
31
|
+
* Defines the OLAP service endpoint where the data is processed and retrieved to render the pivot table.
|
16
32
|
*/
|
17
33
|
url: string;
|
18
34
|
/**
|
19
|
-
*
|
35
|
+
* Sets the cube name that is used to retrieve data for the pivot table rendering.
|
20
36
|
*/
|
21
37
|
cube: string;
|
22
38
|
/**
|
23
|
-
*
|
39
|
+
* Sets the database name that is used to retrieve the data from the specified connection string.
|
24
40
|
*/
|
25
41
|
catalog: string;
|
26
42
|
type: 'local' | 'olap';
|
package/directives.d.ts
CHANGED
@@ -37,6 +37,22 @@ export declare const KENDO_PIVOTGRID_CHIPMENU_DECLARATIONS: readonly [typeof Chi
|
|
37
37
|
*/
|
38
38
|
export declare const KENDO_PIVOTGRID_DECLARATIONS: readonly [typeof PivotGridComponent, typeof PivotGridTableComponent, typeof PivotGridConfiguratorComponent, typeof PivotGridCellDirective, typeof PivotLocalBindingDirective, typeof PivotOLAPBindingDirective, typeof DraggableChipDirective, typeof DropTargetDirective, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof ChipKeyboardNavigationDirective, typeof CellTemplateDirective, typeof ValueCellTemplateDirective, typeof RowHeaderCellTemplateDirective, typeof ColumnHeaderCellTemplateDirective];
|
39
39
|
/**
|
40
|
-
*
|
40
|
+
* Use the `KENDO_PIVOTGRID` utility array to add all `@progress/kendo-angular-pivotgrid`-related components and directives to a standalone Angular component.
|
41
|
+
*
|
42
|
+
* @example
|
43
|
+
* ```ts
|
44
|
+
* import { Component } from '@angular/core';
|
45
|
+
* import { KENDO_PIVOTGRID } from '@progress/kendo-angular-pivotgrid';
|
46
|
+
*
|
47
|
+
* @Component({
|
48
|
+
* standalone: true,
|
49
|
+
* imports: [KENDO_PIVOTGRID],
|
50
|
+
* template: `
|
51
|
+
* <kendo-pivotgrid [data]="data" ...>
|
52
|
+
* </kendo-pivotgrid>
|
53
|
+
* `
|
54
|
+
* })
|
55
|
+
* export class AppComponent { }
|
56
|
+
* ```
|
41
57
|
*/
|
42
58
|
export declare const KENDO_PIVOTGRID: readonly [typeof PivotGridComponent, typeof PivotGridTableComponent, typeof PivotGridCellDirective, typeof PivotLocalBindingDirective, typeof PivotOLAPBindingDirective, typeof CustomMessagesComponent, typeof CellTemplateDirective, typeof ValueCellTemplateDirective, typeof RowHeaderCellTemplateDirective, typeof ColumnHeaderCellTemplateDirective];
|
@@ -20,37 +20,40 @@ export class PivotBaseBindingDirective {
|
|
20
20
|
dataService;
|
21
21
|
zone;
|
22
22
|
/**
|
23
|
-
*
|
23
|
+
* Defines the column axes configuration of the PivotGrid.
|
24
24
|
*/
|
25
25
|
columnAxes = [];
|
26
26
|
/**
|
27
|
-
*
|
27
|
+
* Defines the row axes configuration of the PivotGrid.
|
28
28
|
*/
|
29
29
|
rowAxes = [];
|
30
30
|
/**
|
31
|
-
*
|
31
|
+
* Defines the measure axes configuration of the PivotGrid.
|
32
32
|
*/
|
33
33
|
measureAxes = [];
|
34
34
|
/**
|
35
|
-
*
|
35
|
+
* Sets the initial sorted state of the PivotGrid.
|
36
36
|
*/
|
37
37
|
sort = [];
|
38
38
|
/**
|
39
|
-
*
|
39
|
+
* Sets the initial filtered state of the PivotGrid.
|
40
40
|
*/
|
41
41
|
filter;
|
42
42
|
/**
|
43
|
-
* Fires each time a row or column header gets expanded or collapsed by the
|
44
|
-
*
|
43
|
+
* Fires each time a row or column header gets expanded or collapsed by the user.
|
44
|
+
*
|
45
|
+
* The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the user interaction.
|
45
46
|
*/
|
46
47
|
expandChange = new EventEmitter();
|
47
48
|
/**
|
48
|
-
* Fires when the Configurator Apply button is pressed.
|
49
|
-
*
|
49
|
+
* Fires when the Configurator **Apply** button is pressed.
|
50
|
+
*
|
51
|
+
* The event is preventable. If you prevent the event, the PivotGrid will not rerender with the new state that results from the configuration changes.
|
50
52
|
*/
|
51
53
|
configurationChange = new EventEmitter();
|
52
54
|
/**
|
53
|
-
* Fires each time
|
55
|
+
* Fires each time new data is loaded and transformed to show aggregated values.
|
56
|
+
*
|
54
57
|
* The event fires upon initialization and on user interaction that changes the state of the PivotGrid.
|
55
58
|
*/
|
56
59
|
dataLoaded = new EventEmitter();
|
@@ -14,19 +14,34 @@ const columnsData = 'columns';
|
|
14
14
|
const bindingFields = { dataField, columnsData };
|
15
15
|
const stringSeparator = '&';
|
16
16
|
/**
|
17
|
-
*
|
17
|
+
* Represents a directive that binds the PivotGrid to local data ([see example]({% slug directives_databinding_local_pivotgrid %})).
|
18
|
+
*
|
19
|
+
* @example
|
20
|
+
* ```html
|
21
|
+
* <kendo-pivotgrid
|
22
|
+
* [kendoPivotLocalBinding]="data"
|
23
|
+
* [dimensions]="dimensions"
|
24
|
+
* [measures]="measures"
|
25
|
+
* [columnAxes]="columnAxes"
|
26
|
+
* [rowAxes]="rowAxes"
|
27
|
+
* [measureAxes]="measureAxes">
|
28
|
+
* </kendo-pivotgrid>
|
29
|
+
* ```
|
30
|
+
*
|
31
|
+
* @remarks
|
32
|
+
* Applied to: {@link PivotGridComponent}
|
18
33
|
*/
|
19
34
|
export class PivotLocalBindingDirective extends PivotBaseBindingDirective {
|
20
35
|
/**
|
21
|
-
*
|
36
|
+
* Contains the array of data which will be used to populate the PivotGrid.
|
22
37
|
*/
|
23
38
|
data;
|
24
39
|
/**
|
25
|
-
*
|
40
|
+
* Defines the dimensions object of the PivotGrid.
|
26
41
|
*/
|
27
42
|
dimensions;
|
28
43
|
/**
|
29
|
-
*
|
44
|
+
* Contains the measures collection of the PivotGrid.
|
30
45
|
*/
|
31
46
|
measures;
|
32
47
|
type = 'local';
|
@@ -11,19 +11,35 @@ import { clone } from '../util';
|
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
import * as i1 from "./pivotgrid-data.service";
|
13
13
|
/**
|
14
|
-
*
|
14
|
+
* Represents a directive that binds the PivotGrid to data using an Online Analytical Processing (OLAP) service ([see example]({% slug directives_databinding_remote_pivotgrid %})).
|
15
|
+
*
|
16
|
+
* @example
|
17
|
+
* ```html
|
18
|
+
* <kendo-pivotgrid
|
19
|
+
* kendoPivotOLAPBinding
|
20
|
+
* [url]="url"
|
21
|
+
* catalog="Adventure Works DW 2008 SE"
|
22
|
+
* cube="Adventure Works"
|
23
|
+
* [columnAxes]="columnAxes"
|
24
|
+
* [rowAxes]="rowAxes"
|
25
|
+
* [measureAxes]="measureAxes">
|
26
|
+
* </kendo-pivotgrid>
|
27
|
+
* ```
|
28
|
+
*
|
29
|
+
* @remarks
|
30
|
+
* Applied to: {@link PivotGridComponent}
|
15
31
|
*/
|
16
32
|
export class PivotOLAPBindingDirective extends PivotBaseBindingDirective {
|
17
33
|
/**
|
18
|
-
*
|
34
|
+
* Defines the OLAP service endpoint where the data is processed and retrieved to render the pivot table.
|
19
35
|
*/
|
20
36
|
url;
|
21
37
|
/**
|
22
|
-
*
|
38
|
+
* Sets the cube name that is used to retrieve data for the pivot table rendering.
|
23
39
|
*/
|
24
40
|
cube;
|
25
41
|
/**
|
26
|
-
*
|
42
|
+
* Sets the database name that is used to retrieve the data from the specified connection string.
|
27
43
|
*/
|
28
44
|
catalog;
|
29
45
|
type = 'olap';
|
package/esm2022/directives.mjs
CHANGED
@@ -65,7 +65,23 @@ export const KENDO_PIVOTGRID_DECLARATIONS = [
|
|
65
65
|
ColumnHeaderCellTemplateDirective
|
66
66
|
];
|
67
67
|
/**
|
68
|
-
*
|
68
|
+
* Use the `KENDO_PIVOTGRID` utility array to add all `@progress/kendo-angular-pivotgrid`-related components and directives to a standalone Angular component.
|
69
|
+
*
|
70
|
+
* @example
|
71
|
+
* ```ts
|
72
|
+
* import { Component } from '@angular/core';
|
73
|
+
* import { KENDO_PIVOTGRID } from '@progress/kendo-angular-pivotgrid';
|
74
|
+
*
|
75
|
+
* @Component({
|
76
|
+
* standalone: true,
|
77
|
+
* imports: [KENDO_PIVOTGRID],
|
78
|
+
* template: `
|
79
|
+
* <kendo-pivotgrid [data]="data" ...>
|
80
|
+
* </kendo-pivotgrid>
|
81
|
+
* `
|
82
|
+
* })
|
83
|
+
* export class AppComponent { }
|
84
|
+
* ```
|
69
85
|
*/
|
70
86
|
export const KENDO_PIVOTGRID = [
|
71
87
|
PivotGridComponent,
|
@@ -8,8 +8,21 @@ import { PivotGridMessages } from './messages';
|
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
import * as i1 from "@progress/kendo-angular-l10n";
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Represents the custom messages component of the PivotGrid.
|
12
|
+
*
|
13
|
+
* Use this component to override default messages for the PivotGrid.
|
12
14
|
* ([see example]({% slug globalization_pivotgrid %}#toc-custom-messages)).
|
15
|
+
*
|
16
|
+
* @example
|
17
|
+
* ```html
|
18
|
+
* <kendo-pivotgrid>
|
19
|
+
* <kendo-pivotgrid-messages
|
20
|
+
* configuratorButtonText="Configure"
|
21
|
+
* configuratorHeaderText="PivotGrid Settings"
|
22
|
+
* configuratorApplyButtonText="Apply Changes">
|
23
|
+
* </kendo-pivotgrid-messages>
|
24
|
+
* </kendo-pivotgrid>
|
25
|
+
* ```
|
13
26
|
*/
|
14
27
|
export class CustomMessagesComponent extends PivotGridMessages {
|
15
28
|
service;
|
@@ -10,200 +10,164 @@ import * as i0 from "@angular/core";
|
|
10
10
|
*/
|
11
11
|
export class PivotGridMessages extends ComponentMessages {
|
12
12
|
/**
|
13
|
-
*
|
13
|
+
* Sets the text content of the filter item in the column and row fields menu.
|
14
14
|
*/
|
15
15
|
fieldMenuFilterItemLabel;
|
16
16
|
/**
|
17
|
-
*
|
17
|
+
* Specifies the text content of the sort ascending item in the column and row fields menu.
|
18
18
|
*/
|
19
19
|
fieldMenuSortAscendingItemLabel;
|
20
20
|
/**
|
21
|
-
*
|
21
|
+
* Sets the text content of the sort descending item in the column and row fields menu.
|
22
22
|
*/
|
23
23
|
fieldMenuSortDescendingItemLabel;
|
24
24
|
/**
|
25
|
-
*
|
25
|
+
* Defines the label of the filter input.
|
26
26
|
*
|
27
|
-
* The filter input label
|
28
|
-
* For fields named '[Geography][City]'
|
27
|
+
* The filter input label has two parts—the field name(s) and a localizable string.
|
28
|
+
* For fields named `'[Geography][City]'`, the default label will be `'Geography City Filter'`.
|
29
29
|
*
|
30
|
-
*
|
31
|
-
*
|
32
|
-
* internally with the current field(s) name(s), and the resulting label will be rendered as 'filter for Geography City'.
|
33
|
-
*
|
34
|
-
* @example
|
35
|
-
*
|
36
|
-
* ```ts-no-run
|
37
|
-
* <kendo-pivotgrid>
|
38
|
-
* <kendo-pivotgrid-messages
|
39
|
-
* filterInputLabel="filter for {fields}"
|
40
|
-
* >
|
41
|
-
* </kendo-pivotgrid-messages>
|
42
|
-
* </kendo-pivotgrid>
|
43
|
-
* ```
|
30
|
+
* You can reorder the parts using `'{fields}'` as a placeholder. The `'{fields}'` placeholder will get replaced
|
31
|
+
* with the field name(s). For example, `'filter for {fields}'` will become `'filter for Geography City'`.
|
44
32
|
*/
|
45
33
|
filterInputLabel;
|
46
34
|
/**
|
47
|
-
*
|
48
|
-
*
|
49
|
-
* The label consists of a two-part message - the name(s) of the fields and a localizable string.
|
50
|
-
* For fields named '[Geography][City]', the default label will be 'Geography City Filter Operators'.
|
35
|
+
* Specifies the label of the filter operators DropDownList.
|
51
36
|
*
|
52
|
-
*
|
53
|
-
*
|
54
|
-
* internally with the current field(s) name(s), and the resulting label will be rendered as 'filter operators for Geography City'.
|
37
|
+
* The label has two parts—the field name(s) and a localizable string.
|
38
|
+
* For fields named `'[Geography][City]'`, the default label will be `'Geography City Filter Operators'`.
|
55
39
|
*
|
56
|
-
*
|
57
|
-
*
|
58
|
-
* ```ts-no-run
|
59
|
-
* <kendo-pivotgrid>
|
60
|
-
* <kendo-pivotgrid-messages
|
61
|
-
* filterMenuOperatorsDropDownLabel="filter operators for {fields}"
|
62
|
-
* >
|
63
|
-
* </kendo-pivotgrid-messages>
|
64
|
-
* </kendo-pivotgrid>
|
65
|
-
* ```
|
40
|
+
* You can reorder the parts using `'{fields}'` as a placeholder. The `'{fields}'` placeholder will get replaced
|
41
|
+
* with the field name(s). For example, `'filter operators for {fields}'` will become `'filter operators for Geography City'`.
|
66
42
|
*/
|
67
43
|
filterOperatorsDropDownLabel;
|
68
44
|
/**
|
69
|
-
*
|
45
|
+
* Sets the text of the `Equal` (**Is equal to**) filter operator.
|
70
46
|
*/
|
71
47
|
filterEqOperator;
|
72
48
|
/**
|
73
|
-
*
|
49
|
+
* Specifies the text of the `NotEqual` (**Is not equal to**) filter operator.
|
74
50
|
*/
|
75
51
|
filterNotEqOperator;
|
76
52
|
/**
|
77
|
-
*
|
53
|
+
* Specifies the text of the `IsNull` (**Is null**) filter operator.
|
78
54
|
*/
|
79
55
|
filterIsNullOperator;
|
80
56
|
/**
|
81
|
-
*
|
57
|
+
* Sets the text of the `IsNotNull` (**Is not null**) filter operator.
|
82
58
|
*/
|
83
59
|
filterIsNotNullOperator;
|
84
60
|
/**
|
85
|
-
*
|
61
|
+
* Specifies the text of the `IsEmpty` (**Is empty**) filter operator.
|
86
62
|
*/
|
87
63
|
filterIsEmptyOperator;
|
88
64
|
/**
|
89
|
-
*
|
65
|
+
* Specifies the text of the `IsNotEmpty` (**Is not empty**) filter operator.
|
90
66
|
*/
|
91
67
|
filterIsNotEmptyOperator;
|
92
68
|
/**
|
93
|
-
*
|
69
|
+
* Sets the text of the `StartsWith` (**Starts with**) filter operator.
|
94
70
|
*/
|
95
71
|
filterStartsWithOperator;
|
96
72
|
/**
|
97
|
-
*
|
73
|
+
* Sets the text of the `Contains` (**Contains**) filter operator.
|
98
74
|
*/
|
99
75
|
filterContainsOperator;
|
100
76
|
/**
|
101
|
-
*
|
77
|
+
* Specifies the text of the `DoesNotContain` (**Does not contain**) filter operator.
|
102
78
|
*/
|
103
79
|
filterNotContainsOperator;
|
104
80
|
/**
|
105
|
-
*
|
81
|
+
* Specifies the text of the `EndsWith` (**Ends with**) string filter operator.
|
106
82
|
*/
|
107
83
|
filterEndsWithOperator;
|
108
84
|
/**
|
109
|
-
*
|
85
|
+
* Sets the text of the **Filter** button.
|
110
86
|
*/
|
111
87
|
filterFilterButton;
|
112
88
|
/**
|
113
|
-
*
|
89
|
+
* Sets the text of the **Clear filter** button.
|
114
90
|
*/
|
115
91
|
filterClearButton;
|
116
92
|
/**
|
117
|
-
*
|
93
|
+
* Specifies the loading text.
|
118
94
|
*
|
119
95
|
* > The `loading` property is part of the accessibility support of the PivotGrid.
|
120
|
-
* Its value is detectable by screen readers and is not otherwise
|
96
|
+
* Its value is detectable by screen readers and is not visible otherwise.
|
121
97
|
*/
|
122
98
|
loading;
|
123
99
|
/**
|
124
|
-
*
|
100
|
+
* Specifies the value of the aria-label attribute placed on the PivotGrid focusable empty cell element.
|
125
101
|
*/
|
126
102
|
emptyCellLabel;
|
127
103
|
/**
|
128
|
-
*
|
104
|
+
* Sets the text content of the button that opens and closes the PivotGrid configurator.
|
129
105
|
*/
|
130
106
|
configuratorButtonText;
|
131
107
|
/**
|
132
|
-
*
|
108
|
+
* Sets the text content of the PivotGrid configurator title element.
|
133
109
|
*/
|
134
110
|
configuratorHeaderText;
|
135
111
|
/**
|
136
|
-
*
|
112
|
+
* Sets the text content of the PivotGrid configurator fields section title element.
|
137
113
|
*/
|
138
114
|
configuratorFieldsText;
|
139
115
|
/**
|
140
|
-
*
|
116
|
+
* Sets the text content of the PivotGrid configurator columns section title element.
|
141
117
|
*/
|
142
118
|
configuratorColumnsText;
|
143
119
|
/**
|
144
|
-
*
|
120
|
+
* Specifies the text content of the PivotGrid configurator rows section title element.
|
145
121
|
*/
|
146
122
|
configuratorRowsText;
|
147
123
|
/**
|
148
|
-
*
|
124
|
+
* Specifies the text content of the PivotGrid configurator values section title element.
|
149
125
|
*/
|
150
126
|
configuratorValuesText;
|
151
127
|
/**
|
152
|
-
*
|
128
|
+
* Sets the text content of the PivotGrid configurator **Cancel** button.
|
153
129
|
*/
|
154
130
|
configuratorCancelButtonText;
|
155
131
|
/**
|
156
|
-
*
|
132
|
+
* Specifies the text content of the PivotGrid configurator **Apply** button.
|
157
133
|
*/
|
158
134
|
configuratorApplyButtonText;
|
159
135
|
/**
|
160
|
-
*
|
136
|
+
* Sets the text content of the PivotGrid configurator empty rows container.
|
161
137
|
*/
|
162
138
|
configuratorEmptyRowsText;
|
163
139
|
/**
|
164
|
-
*
|
140
|
+
* Sets the text content of the PivotGrid configurator empty columns container.
|
165
141
|
*/
|
166
142
|
configuratorEmptyColumnsText;
|
167
143
|
/**
|
168
|
-
*
|
144
|
+
* Sets the text content of the PivotGrid configurator empty measures container.
|
169
145
|
*/
|
170
146
|
configuratorEmptyMeasuresText;
|
171
147
|
/**
|
172
|
-
*
|
148
|
+
* Sets the text content of the **Move to Columns** item in the column and row fields menu.
|
173
149
|
*/
|
174
150
|
fieldMenuMoveToColumnsItem;
|
175
151
|
/**
|
176
|
-
*
|
152
|
+
* Specifies the text content of the **Move to Rows** item in the column and row fields menu.
|
177
153
|
*/
|
178
154
|
fieldMenuMoveToRowsItem;
|
179
155
|
/**
|
180
|
-
*
|
156
|
+
* Specifies the text content of the **Move as previous** item in the column, row, and value fields menu.
|
181
157
|
*/
|
182
158
|
fieldMenuMovePreviousItem;
|
183
159
|
/**
|
184
|
-
*
|
160
|
+
* Specifies the text content of the **Move as next** item in the column, row, and value fields menu.
|
185
161
|
*/
|
186
162
|
fieldMenuMoveNextItem;
|
187
163
|
/**
|
188
|
-
*
|
189
|
-
*
|
190
|
-
* The title consists of a two-part message - the name of the chip and a localizable string.
|
191
|
-
* For a field named 'Product', the default title will be 'Product Field Menu'.
|
192
|
-
*
|
193
|
-
* To allow reordering the field name and the localizable part, the chipMenu accepts a string with a
|
194
|
-
* placeholder for the chip name - e.g. 'chip for {fieldName}'. The '{fieldName}' placeholder will be replaced
|
195
|
-
* internally with the current chip name, and the resulting title will be rendered as 'Product Field Menu'.
|
164
|
+
* Controls the title of the chip menu icon.
|
196
165
|
*
|
197
|
-
*
|
166
|
+
* The title has two parts—the chip name and a localizable string.
|
167
|
+
* For a field named `'Product'`, the default title will be `'Product Field Menu'`.
|
198
168
|
*
|
199
|
-
*
|
200
|
-
*
|
201
|
-
* <kendo-pivotgrid-messages
|
202
|
-
* chipMenuIconTitle="'{fieldName} Field Menu'"
|
203
|
-
* >
|
204
|
-
* </kendo-pivotgrid-messages>
|
205
|
-
* </kendo-pivotgrid>
|
206
|
-
* ```
|
169
|
+
* You can reorder the parts using `'{fieldName}'` as a placeholder. The `'{fieldName}'` placeholder will get replaced
|
170
|
+
* with the current chip name. For example, `'chip for {fieldName}'` will become `'chip for Product Field Menu'`.
|
207
171
|
*/
|
208
172
|
chipMenuIconTitle;
|
209
173
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PivotGridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
@@ -4,27 +4,27 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { PreventableEvent } from "@progress/kendo-angular-common";
|
6
6
|
/**
|
7
|
-
*
|
7
|
+
* Represents the event data for the `configurationChange` event.
|
8
8
|
*/
|
9
9
|
export class ConfigurationChangeEvent extends PreventableEvent {
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Specifies the current row axes configuration that results from user interaction.
|
12
12
|
*/
|
13
13
|
rowAxes;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Specifies the current column axes configuration that results from user interaction.
|
16
16
|
*/
|
17
17
|
columnAxes;
|
18
18
|
/**
|
19
|
-
*
|
19
|
+
* Provides the measure axes configuration.
|
20
20
|
*/
|
21
21
|
measureAxes;
|
22
22
|
/**
|
23
|
-
*
|
23
|
+
* Provides the sorting configuration.
|
24
24
|
*/
|
25
25
|
sort;
|
26
26
|
/**
|
27
|
-
*
|
27
|
+
* Provides the filtering configuration.
|
28
28
|
*/
|
29
29
|
filter;
|
30
30
|
/**
|
@@ -4,19 +4,19 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { PreventableEvent } from "@progress/kendo-angular-common";
|
6
6
|
/**
|
7
|
-
*
|
7
|
+
* Represents the event data for the `expandChange` event.
|
8
8
|
*/
|
9
9
|
export class ExpandChangeEvent extends PreventableEvent {
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Provides the current row axes configuration that results from user interaction.
|
12
12
|
*/
|
13
13
|
rowAxes;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Provides the current column axes configuration that results from user interaction.
|
16
16
|
*/
|
17
17
|
columnAxes;
|
18
18
|
/**
|
19
|
-
*
|
19
|
+
* Provides the measure axes configuration.
|
20
20
|
*/
|
21
21
|
measureAxes;
|
22
22
|
/**
|