@progress/kendo-angular-pivotgrid 17.0.0-develop.8 → 17.0.0
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/README.md +37 -15
- package/configurator/chip-menu/chip-menu-filter.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item-base.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item.directive.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-reorder.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-sort.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu.component.d.ts +1 -1
- package/configurator/chip-menu/filtering/filter-menu-container.component.d.ts +1 -1
- package/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.d.ts +1 -1
- package/configurator/chip-menu/filtering/string-filter-menu.component.d.ts +3 -3
- package/configurator/configurator.component.d.ts +1 -1
- package/configurator/draggable.directive.d.ts +4 -5
- package/configurator/drop-target.directive.d.ts +1 -1
- package/data-binding/base-binding-directive.d.ts +1 -1
- package/data-binding/local-binding.directive.d.ts +1 -1
- package/data-binding/olap-binding.directive.d.ts +1 -1
- package/{esm2020 → esm2022}/configurator/chip-kb-nav.directive.mjs +8 -5
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-container.component.mjs +8 -5
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-filter.component.mjs +25 -19
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item-base.mjs +9 -6
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item-content-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item.component.mjs +65 -40
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item.directive.mjs +35 -28
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-reorder.component.mjs +27 -19
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-sort.component.mjs +10 -6
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu.component.mjs +22 -10
- package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu.service.mjs +12 -10
- package/{esm2020 → esm2022}/configurator/chip-menu/filtering/filter-menu-container.component.mjs +21 -8
- package/{esm2020 → esm2022}/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.mjs +11 -9
- package/{esm2020 → esm2022}/configurator/chip-menu/filtering/menu-tabbing.service.mjs +7 -6
- package/{esm2020 → esm2022}/configurator/chip-menu/filtering/string-filter-menu.component.mjs +25 -15
- package/{esm2020 → esm2022}/configurator/chip-menu/single-popup.service.mjs +21 -10
- package/{esm2020 → esm2022}/configurator/configurator.component.mjs +58 -39
- package/{esm2020 → esm2022}/configurator/configurator.service.mjs +12 -5
- package/{esm2020 → esm2022}/configurator/draggable.directive.mjs +22 -15
- package/{esm2020 → esm2022}/configurator/drop-cue.service.mjs +4 -3
- package/{esm2020 → esm2022}/configurator/drop-target.directive.mjs +15 -4
- package/{esm2020 → esm2022}/data-binding/base-binding-directive.mjs +43 -35
- package/{esm2020 → esm2022}/data-binding/local-binding.directive.mjs +17 -5
- package/{esm2020 → esm2022}/data-binding/olap-binding.directive.mjs +16 -4
- package/{esm2020 → esm2022}/data-binding/pivotgrid-data.service.mjs +25 -14
- package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/localization/messages.mjs +284 -0
- package/{esm2020 → esm2022}/localization/pivot-localization.service.mjs +4 -3
- package/{esm2020 → esm2022}/models/configuration-change-event.mjs +20 -0
- package/{esm2020 → esm2022}/models/configurator-settings.mjs +5 -0
- package/{esm2020 → esm2022}/models/expanded-change-event.mjs +12 -0
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/pivotgrid.component.mjs +98 -73
- package/{esm2020 → esm2022}/pivotgrid.module.mjs +13 -14
- package/{esm2020 → esm2022}/rendering/pivotgrid-cell.directive.mjs +30 -19
- package/{esm2020 → esm2022}/rendering/pivotgrid-table.component.mjs +66 -48
- package/{esm2020 → esm2022}/rendering/templates/pivotgrid-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/templates/pivotgrid-value-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/virtual/scroll.service.mjs +5 -6
- package/{esm2020 → esm2022}/virtual/scrollable-container.mjs +57 -43
- package/{fesm2020 → fesm2022}/progress-kendo-angular-pivotgrid.mjs +1067 -560
- package/localization/messages.d.ts +1 -1
- package/models/configurator-chipmenu-reorder-target.d.ts +1 -1
- package/models/configurator-orientation.d.ts +1 -1
- package/models/configurator-position.d.ts +1 -1
- package/models/drop-section.d.ts +1 -1
- package/models/drop-target.d.ts +1 -1
- package/models/expanded-state-action.d.ts +2 -2
- package/models/virtualization-settings.d.ts +1 -1
- package/package.json +22 -28
- package/pivotgrid.component.d.ts +1 -1
- package/pivotgrid.module.d.ts +1 -2
- package/rendering/pivotgrid-cell.directive.d.ts +1 -1
- package/rendering/pivotgrid-table.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +3 -3
- package/esm2020/localization/messages.mjs +0 -87
- package/fesm2015/progress-kendo-angular-pivotgrid.mjs +0 -4928
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/models/configurator-chipmenu-reorder-target.mjs +0 -0
- /package/{esm2020 → esm2022}/models/configurator-orientation.mjs +0 -0
- /package/{esm2020 → esm2022}/models/configurator-position.mjs +0 -0
- /package/{esm2020 → esm2022}/models/data-row-item.mjs +0 -0
- /package/{esm2020 → esm2022}/models/drop-section.mjs +0 -0
- /package/{esm2020 → esm2022}/models/drop-target.mjs +0 -0
- /package/{esm2020 → esm2022}/models/expanded-state-action.mjs +0 -0
- /package/{esm2020 → esm2022}/models/loader-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/models/virtualization-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-pivotgrid.mjs +0 -0
- /package/{esm2020 → esm2022}/util.mjs +0 -0
@@ -206,5 +206,5 @@ export declare class PivotGridMessages extends ComponentMessages {
|
|
206
206
|
*/
|
207
207
|
chipMenuIconTitle: string;
|
208
208
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridMessages, never>;
|
209
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PivotGridMessages, never, never, { "fieldMenuFilterItemLabel": "fieldMenuFilterItemLabel"; "fieldMenuSortAscendingItemLabel": "fieldMenuSortAscendingItemLabel"; "fieldMenuSortDescendingItemLabel": "fieldMenuSortDescendingItemLabel"; "filterInputLabel": "filterInputLabel"; "filterOperatorsDropDownLabel": "filterOperatorsDropDownLabel"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "loading": "loading"; "emptyCellLabel": "emptyCellLabel"; "configuratorButtonText": "configuratorButtonText"; "configuratorHeaderText": "configuratorHeaderText"; "configuratorFieldsText": "configuratorFieldsText"; "configuratorColumnsText": "configuratorColumnsText"; "configuratorRowsText": "configuratorRowsText"; "configuratorValuesText": "configuratorValuesText"; "configuratorCancelButtonText": "configuratorCancelButtonText"; "configuratorApplyButtonText": "configuratorApplyButtonText"; "configuratorEmptyRowsText": "configuratorEmptyRowsText"; "configuratorEmptyColumnsText": "configuratorEmptyColumnsText"; "configuratorEmptyMeasuresText": "configuratorEmptyMeasuresText"; "fieldMenuMoveToColumnsItem": "fieldMenuMoveToColumnsItem"; "fieldMenuMoveToRowsItem": "fieldMenuMoveToRowsItem"; "fieldMenuMovePreviousItem": "fieldMenuMovePreviousItem"; "fieldMenuMoveNextItem": "fieldMenuMoveNextItem"; "chipMenuIconTitle": "chipMenuIconTitle"; }, {}, never, never, false, never>;
|
209
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PivotGridMessages, never, never, { "fieldMenuFilterItemLabel": { "alias": "fieldMenuFilterItemLabel"; "required": false; }; "fieldMenuSortAscendingItemLabel": { "alias": "fieldMenuSortAscendingItemLabel"; "required": false; }; "fieldMenuSortDescendingItemLabel": { "alias": "fieldMenuSortDescendingItemLabel"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterOperatorsDropDownLabel": { "alias": "filterOperatorsDropDownLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "emptyCellLabel": { "alias": "emptyCellLabel"; "required": false; }; "configuratorButtonText": { "alias": "configuratorButtonText"; "required": false; }; "configuratorHeaderText": { "alias": "configuratorHeaderText"; "required": false; }; "configuratorFieldsText": { "alias": "configuratorFieldsText"; "required": false; }; "configuratorColumnsText": { "alias": "configuratorColumnsText"; "required": false; }; "configuratorRowsText": { "alias": "configuratorRowsText"; "required": false; }; "configuratorValuesText": { "alias": "configuratorValuesText"; "required": false; }; "configuratorCancelButtonText": { "alias": "configuratorCancelButtonText"; "required": false; }; "configuratorApplyButtonText": { "alias": "configuratorApplyButtonText"; "required": false; }; "configuratorEmptyRowsText": { "alias": "configuratorEmptyRowsText"; "required": false; }; "configuratorEmptyColumnsText": { "alias": "configuratorEmptyColumnsText"; "required": false; }; "configuratorEmptyMeasuresText": { "alias": "configuratorEmptyMeasuresText"; "required": false; }; "fieldMenuMoveToColumnsItem": { "alias": "fieldMenuMoveToColumnsItem"; "required": false; }; "fieldMenuMoveToRowsItem": { "alias": "fieldMenuMoveToRowsItem"; "required": false; }; "fieldMenuMovePreviousItem": { "alias": "fieldMenuMovePreviousItem"; "required": false; }; "fieldMenuMoveNextItem": { "alias": "fieldMenuMoveNextItem"; "required": false; }; "chipMenuIconTitle": { "alias": "chipMenuIconTitle"; "required": false; }; }, {}, never, never, false, never>;
|
210
210
|
}
|
package/models/drop-section.d.ts
CHANGED
package/models/drop-target.d.ts
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
/**
|
6
6
|
* @hidden
|
7
7
|
*/
|
8
|
-
export
|
8
|
+
export type ExpandedStateAction = 'expand' | 'collapse';
|
9
9
|
/**
|
10
10
|
* @hidden
|
11
11
|
*/
|
12
|
-
export
|
12
|
+
export type ExpandedStateChangeEvent = {
|
13
13
|
action: ExpandedStateAction;
|
14
14
|
cell: any;
|
15
15
|
tableType: string;
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* The supported values of the [`VirtualizationSettings`]({% slug api_pivotgrid_virtualizationsettings %}) `type` property - `row`, `column` or `both`.
|
7
7
|
*/
|
8
|
-
export
|
8
|
+
export type PivotGridVirtualizationSettingsType = 'row | column | both';
|
9
9
|
export interface VirtualizationSettings {
|
10
10
|
/**
|
11
11
|
* Enables the virtualization of the PivotGrid data table. By default both rows and columns are virtualized when the virtualization is enabled.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
3
|
-
"version": "17.0.0
|
3
|
+
"version": "17.0.0",
|
4
4
|
"description": "PivotGrid package for Angular",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -17,37 +17,33 @@
|
|
17
17
|
"friendlyName": "PivotGrid"
|
18
18
|
},
|
19
19
|
"peerDependencies": {
|
20
|
-
"@angular/animations": "
|
21
|
-
"@angular/common": "
|
22
|
-
"@angular/core": "
|
23
|
-
"@angular/forms": "
|
24
|
-
"@angular/platform-browser": "
|
20
|
+
"@angular/animations": "16 - 18",
|
21
|
+
"@angular/common": "16 - 18",
|
22
|
+
"@angular/core": "16 - 18",
|
23
|
+
"@angular/forms": "16 - 18",
|
24
|
+
"@angular/platform-browser": "16 - 18",
|
25
25
|
"@progress/kendo-data-query": "^1.5.5",
|
26
|
-
"@progress/kendo-drawing": "^1.
|
26
|
+
"@progress/kendo-drawing": "^1.21.0",
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
28
|
-
"@progress/kendo-angular-buttons": "17.0.0
|
29
|
-
"@progress/kendo-angular-common": "17.0.0
|
30
|
-
"@progress/kendo-angular-dropdowns": "17.0.0
|
31
|
-
"@progress/kendo-angular-indicators": "17.0.0
|
32
|
-
"@progress/kendo-angular-inputs": "17.0.0
|
33
|
-
"@progress/kendo-angular-intl": "17.0.0
|
34
|
-
"@progress/kendo-angular-l10n": "17.0.0
|
35
|
-
"@progress/kendo-angular-popup": "17.0.0
|
36
|
-
"@progress/kendo-angular-icons": "17.0.0
|
37
|
-
"@progress/kendo-angular-treeview": "17.0.0
|
28
|
+
"@progress/kendo-angular-buttons": "17.0.0",
|
29
|
+
"@progress/kendo-angular-common": "17.0.0",
|
30
|
+
"@progress/kendo-angular-dropdowns": "17.0.0",
|
31
|
+
"@progress/kendo-angular-indicators": "17.0.0",
|
32
|
+
"@progress/kendo-angular-inputs": "17.0.0",
|
33
|
+
"@progress/kendo-angular-intl": "17.0.0",
|
34
|
+
"@progress/kendo-angular-l10n": "17.0.0",
|
35
|
+
"@progress/kendo-angular-popup": "17.0.0",
|
36
|
+
"@progress/kendo-angular-icons": "17.0.0",
|
37
|
+
"@progress/kendo-angular-treeview": "17.0.0",
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
41
|
"tslib": "^2.3.1",
|
42
|
-
"@progress/kendo-angular-schematics": "17.0.0
|
42
|
+
"@progress/kendo-angular-schematics": "17.0.0",
|
43
43
|
"@progress/kendo-pivotgrid-common": "0.6.1"
|
44
44
|
},
|
45
45
|
"schematics": "./schematics/collection.json",
|
46
|
-
"module": "
|
47
|
-
"es2020": "fesm2020/progress-kendo-angular-pivotgrid.mjs",
|
48
|
-
"esm2020": "esm2020/progress-kendo-angular-pivotgrid.mjs",
|
49
|
-
"fesm2020": "fesm2020/progress-kendo-angular-pivotgrid.mjs",
|
50
|
-
"fesm2015": "fesm2015/progress-kendo-angular-pivotgrid.mjs",
|
46
|
+
"module": "fesm2022/progress-kendo-angular-pivotgrid.mjs",
|
51
47
|
"typings": "index.d.ts",
|
52
48
|
"exports": {
|
53
49
|
"./package.json": {
|
@@ -55,11 +51,9 @@
|
|
55
51
|
},
|
56
52
|
".": {
|
57
53
|
"types": "./index.d.ts",
|
58
|
-
"
|
59
|
-
"
|
60
|
-
"
|
61
|
-
"node": "./fesm2015/progress-kendo-angular-pivotgrid.mjs",
|
62
|
-
"default": "./fesm2020/progress-kendo-angular-pivotgrid.mjs"
|
54
|
+
"esm2022": "./esm2022/progress-kendo-angular-pivotgrid.mjs",
|
55
|
+
"esm": "./esm2022/progress-kendo-angular-pivotgrid.mjs",
|
56
|
+
"default": "./fesm2022/progress-kendo-angular-pivotgrid.mjs"
|
63
57
|
}
|
64
58
|
},
|
65
59
|
"sideEffects": false
|
package/pivotgrid.component.d.ts
CHANGED
@@ -123,5 +123,5 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
123
123
|
private initConfiguratorNavigation;
|
124
124
|
private stopConfiguratorNavigation;
|
125
125
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridComponent, never>;
|
126
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": "loaderSettings"; "configurator": "configurator"; "virtualScrolling": "virtualScrolling"; "columnHeadersWidth": "columnHeadersWidth"; "navigable": "navigable"; }, {}, ["customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"], never, true, never>;
|
126
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": { "alias": "loaderSettings"; "required": false; }; "configurator": { "alias": "configurator"; "required": false; }; "virtualScrolling": { "alias": "virtualScrolling"; "required": false; }; "columnHeadersWidth": { "alias": "columnHeadersWidth"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; }, {}, ["customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"], never, true, never>;
|
127
127
|
}
|
package/pivotgrid.module.d.ts
CHANGED
@@ -29,7 +29,6 @@ import * as i23 from "./rendering/templates/pivotgrid-cell-template.directive";
|
|
29
29
|
import * as i24 from "./rendering/templates/pivotgrid-value-cell-template.directive";
|
30
30
|
import * as i25 from "./rendering/templates/pivotgrid-row-header-cell-template.directive";
|
31
31
|
import * as i26 from "./rendering/templates/pivotgrid-column-header-cell-template.directive";
|
32
|
-
import * as i27 from "@angular/forms";
|
33
32
|
/**
|
34
33
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
35
34
|
* definition for the PivotGrid component.
|
@@ -63,6 +62,6 @@ import * as i27 from "@angular/forms";
|
|
63
62
|
*/
|
64
63
|
export declare class PivotGridModule {
|
65
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridModule, never>;
|
66
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, never, [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent, typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i14.PivotGridConfiguratorComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i18.DraggableChipDirective, typeof i19.DropTargetDirective, typeof i20.LocalizedMessagesDirective, typeof i21.CustomMessagesComponent, typeof i22.ChipKeyboardNavigationDirective, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective
|
65
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, never, [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent, typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i14.PivotGridConfiguratorComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i18.DraggableChipDirective, typeof i19.DropTargetDirective, typeof i20.LocalizedMessagesDirective, typeof i21.CustomMessagesComponent, typeof i22.ChipKeyboardNavigationDirective, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective], [typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i21.CustomMessagesComponent, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective]>;
|
67
66
|
static ɵinj: i0.ɵɵInjectorDeclaration<PivotGridModule>;
|
68
67
|
}
|
@@ -34,5 +34,5 @@ export declare class PivotGridCellDirective {
|
|
34
34
|
ngOnInit(): void;
|
35
35
|
handleClick: () => void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridCellDirective, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridCellDirective, "[kendoPivotGridCell]", never, { "kendoPivotGridCell": "kendoPivotGridCell"; "tableType": "tableType"; "rowIndex": "rowIndex"; "colIndex": "colIndex"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; }, {}, never, never, true, never>;
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridCellDirective, "[kendoPivotGridCell]", never, { "kendoPivotGridCell": { "alias": "kendoPivotGridCell"; "required": false; }; "tableType": { "alias": "tableType"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "customCellTemplate": { "alias": "customCellTemplate"; "required": false; }; "valueCellTemplate": { "alias": "valueCellTemplate"; "required": false; }; "rowHeaderCellTemplate": { "alias": "rowHeaderCellTemplate"; "required": false; }; "columnHeaderCellTemplate": { "alias": "columnHeaderCellTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
38
38
|
}
|
@@ -49,5 +49,5 @@ export declare class PivotGridTableComponent implements OnInit, OnDestroy {
|
|
49
49
|
private initScrollable;
|
50
50
|
private initScrollableKeyboardNavigation;
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridTableComponent, never>;
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridTableComponent, "kendo-pivotgrid-table", never, { "tableType": "tableType"; "colWidth": "colWidth"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; "scrollableSettings": "scrollableSettings"; }, {}, never, never, true, never>;
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridTableComponent, "kendo-pivotgrid-table", never, { "tableType": { "alias": "tableType"; "required": false; }; "colWidth": { "alias": "colWidth"; "required": false; }; "customCellTemplate": { "alias": "customCellTemplate"; "required": false; }; "valueCellTemplate": { "alias": "valueCellTemplate"; "required": false; }; "rowHeaderCellTemplate": { "alias": "rowHeaderCellTemplate"; "required": false; }; "columnHeaderCellTemplate": { "alias": "columnHeaderCellTemplate"; "required": false; }; "scrollableSettings": { "alias": "scrollableSettings"; "required": false; }; }, {}, never, never, true, never>;
|
53
53
|
}
|
@@ -6,11 +6,11 @@ function default_1(options) {
|
|
6
6
|
// Additional dependencies to install.
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
8
8
|
peerDependencies: {
|
9
|
-
'@progress/kendo-angular-dialog': '17.0.0
|
9
|
+
'@progress/kendo-angular-dialog': '17.0.0',
|
10
10
|
// peer dep of the icons
|
11
|
-
'@progress/kendo-svg-icons': '^
|
11
|
+
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dep of the dropdowns
|
13
|
-
'@progress/kendo-angular-navigation': '17.0.0
|
13
|
+
'@progress/kendo-angular-navigation': '17.0.0'
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|
@@ -1,87 +0,0 @@
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { Directive, Input } from '@angular/core';
|
6
|
-
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
/**
|
9
|
-
* @hidden
|
10
|
-
*/
|
11
|
-
export class PivotGridMessages extends ComponentMessages {
|
12
|
-
}
|
13
|
-
PivotGridMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotGridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
14
|
-
PivotGridMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PivotGridMessages, inputs: { fieldMenuFilterItemLabel: "fieldMenuFilterItemLabel", fieldMenuSortAscendingItemLabel: "fieldMenuSortAscendingItemLabel", fieldMenuSortDescendingItemLabel: "fieldMenuSortDescendingItemLabel", filterInputLabel: "filterInputLabel", filterOperatorsDropDownLabel: "filterOperatorsDropDownLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", loading: "loading", emptyCellLabel: "emptyCellLabel", configuratorButtonText: "configuratorButtonText", configuratorHeaderText: "configuratorHeaderText", configuratorFieldsText: "configuratorFieldsText", configuratorColumnsText: "configuratorColumnsText", configuratorRowsText: "configuratorRowsText", configuratorValuesText: "configuratorValuesText", configuratorCancelButtonText: "configuratorCancelButtonText", configuratorApplyButtonText: "configuratorApplyButtonText", configuratorEmptyRowsText: "configuratorEmptyRowsText", configuratorEmptyColumnsText: "configuratorEmptyColumnsText", configuratorEmptyMeasuresText: "configuratorEmptyMeasuresText", fieldMenuMoveToColumnsItem: "fieldMenuMoveToColumnsItem", fieldMenuMoveToRowsItem: "fieldMenuMoveToRowsItem", fieldMenuMovePreviousItem: "fieldMenuMovePreviousItem", fieldMenuMoveNextItem: "fieldMenuMoveNextItem", chipMenuIconTitle: "chipMenuIconTitle" }, usesInheritance: true, ngImport: i0 });
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotGridMessages, decorators: [{
|
16
|
-
type: Directive
|
17
|
-
}], propDecorators: { fieldMenuFilterItemLabel: [{
|
18
|
-
type: Input
|
19
|
-
}], fieldMenuSortAscendingItemLabel: [{
|
20
|
-
type: Input
|
21
|
-
}], fieldMenuSortDescendingItemLabel: [{
|
22
|
-
type: Input
|
23
|
-
}], filterInputLabel: [{
|
24
|
-
type: Input
|
25
|
-
}], filterOperatorsDropDownLabel: [{
|
26
|
-
type: Input
|
27
|
-
}], filterEqOperator: [{
|
28
|
-
type: Input
|
29
|
-
}], filterNotEqOperator: [{
|
30
|
-
type: Input
|
31
|
-
}], filterIsNullOperator: [{
|
32
|
-
type: Input
|
33
|
-
}], filterIsNotNullOperator: [{
|
34
|
-
type: Input
|
35
|
-
}], filterIsEmptyOperator: [{
|
36
|
-
type: Input
|
37
|
-
}], filterIsNotEmptyOperator: [{
|
38
|
-
type: Input
|
39
|
-
}], filterStartsWithOperator: [{
|
40
|
-
type: Input
|
41
|
-
}], filterContainsOperator: [{
|
42
|
-
type: Input
|
43
|
-
}], filterNotContainsOperator: [{
|
44
|
-
type: Input
|
45
|
-
}], filterEndsWithOperator: [{
|
46
|
-
type: Input
|
47
|
-
}], filterFilterButton: [{
|
48
|
-
type: Input
|
49
|
-
}], filterClearButton: [{
|
50
|
-
type: Input
|
51
|
-
}], loading: [{
|
52
|
-
type: Input
|
53
|
-
}], emptyCellLabel: [{
|
54
|
-
type: Input
|
55
|
-
}], configuratorButtonText: [{
|
56
|
-
type: Input
|
57
|
-
}], configuratorHeaderText: [{
|
58
|
-
type: Input
|
59
|
-
}], configuratorFieldsText: [{
|
60
|
-
type: Input
|
61
|
-
}], configuratorColumnsText: [{
|
62
|
-
type: Input
|
63
|
-
}], configuratorRowsText: [{
|
64
|
-
type: Input
|
65
|
-
}], configuratorValuesText: [{
|
66
|
-
type: Input
|
67
|
-
}], configuratorCancelButtonText: [{
|
68
|
-
type: Input
|
69
|
-
}], configuratorApplyButtonText: [{
|
70
|
-
type: Input
|
71
|
-
}], configuratorEmptyRowsText: [{
|
72
|
-
type: Input
|
73
|
-
}], configuratorEmptyColumnsText: [{
|
74
|
-
type: Input
|
75
|
-
}], configuratorEmptyMeasuresText: [{
|
76
|
-
type: Input
|
77
|
-
}], fieldMenuMoveToColumnsItem: [{
|
78
|
-
type: Input
|
79
|
-
}], fieldMenuMoveToRowsItem: [{
|
80
|
-
type: Input
|
81
|
-
}], fieldMenuMovePreviousItem: [{
|
82
|
-
type: Input
|
83
|
-
}], fieldMenuMoveNextItem: [{
|
84
|
-
type: Input
|
85
|
-
}], chipMenuIconTitle: [{
|
86
|
-
type: Input
|
87
|
-
}] } });
|