@progress/kendo-angular-pivotgrid 17.0.0-develop.3 → 17.0.0-develop.30

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.
Files changed (89) hide show
  1. package/README.md +37 -15
  2. package/configurator/chip-menu/chip-menu-filter.component.d.ts +1 -1
  3. package/configurator/chip-menu/chip-menu-item-base.d.ts +1 -1
  4. package/configurator/chip-menu/chip-menu-item.component.d.ts +1 -1
  5. package/configurator/chip-menu/chip-menu-item.directive.d.ts +1 -1
  6. package/configurator/chip-menu/chip-menu-reorder.component.d.ts +1 -1
  7. package/configurator/chip-menu/chip-menu-sort.component.d.ts +1 -1
  8. package/configurator/chip-menu/chip-menu.component.d.ts +6 -4
  9. package/configurator/chip-menu/filtering/filter-menu-container.component.d.ts +1 -1
  10. package/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.d.ts +1 -1
  11. package/configurator/chip-menu/filtering/string-filter-menu.component.d.ts +3 -3
  12. package/configurator/configurator.component.d.ts +3 -6
  13. package/configurator/draggable.directive.d.ts +4 -5
  14. package/configurator/drop-target.directive.d.ts +1 -1
  15. package/data-binding/base-binding-directive.d.ts +1 -1
  16. package/data-binding/local-binding.directive.d.ts +1 -1
  17. package/data-binding/olap-binding.directive.d.ts +1 -1
  18. package/{esm2020 → esm2022}/configurator/chip-kb-nav.directive.mjs +8 -5
  19. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-container.component.mjs +8 -5
  20. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-filter.component.mjs +25 -19
  21. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item-base.mjs +9 -6
  22. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item-content-template.directive.mjs +4 -3
  23. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item.component.mjs +65 -40
  24. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-item.directive.mjs +35 -28
  25. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-reorder.component.mjs +27 -19
  26. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu-sort.component.mjs +10 -6
  27. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu.component.mjs +36 -39
  28. package/{esm2020 → esm2022}/configurator/chip-menu/chip-menu.service.mjs +12 -10
  29. package/{esm2020 → esm2022}/configurator/chip-menu/filtering/filter-menu-container.component.mjs +22 -9
  30. package/{esm2020 → esm2022}/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.mjs +11 -9
  31. package/{esm2020 → esm2022}/configurator/chip-menu/filtering/menu-tabbing.service.mjs +7 -6
  32. package/{esm2020 → esm2022}/configurator/chip-menu/filtering/string-filter-menu.component.mjs +25 -15
  33. package/{esm2020 → esm2022}/configurator/chip-menu/single-popup.service.mjs +21 -10
  34. package/{esm2020 → esm2022}/configurator/configurator.component.mjs +137 -120
  35. package/{esm2020 → esm2022}/configurator/configurator.service.mjs +12 -5
  36. package/{esm2020 → esm2022}/configurator/draggable.directive.mjs +22 -15
  37. package/{esm2020 → esm2022}/configurator/drop-cue.service.mjs +4 -3
  38. package/{esm2020 → esm2022}/configurator/drop-target.directive.mjs +15 -4
  39. package/{esm2020 → esm2022}/data-binding/base-binding-directive.mjs +43 -35
  40. package/{esm2020 → esm2022}/data-binding/local-binding.directive.mjs +17 -5
  41. package/{esm2020 → esm2022}/data-binding/olap-binding.directive.mjs +16 -4
  42. package/{esm2020 → esm2022}/data-binding/pivotgrid-data.service.mjs +25 -14
  43. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  44. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  45. package/esm2022/localization/messages.mjs +284 -0
  46. package/{esm2020 → esm2022}/localization/pivot-localization.service.mjs +4 -3
  47. package/{esm2020 → esm2022}/models/configuration-change-event.mjs +20 -0
  48. package/{esm2020 → esm2022}/models/configurator-settings.mjs +5 -0
  49. package/{esm2020 → esm2022}/models/expanded-change-event.mjs +12 -0
  50. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  51. package/{esm2020 → esm2022}/pivotgrid.component.mjs +101 -76
  52. package/{esm2020 → esm2022}/pivotgrid.module.mjs +12 -12
  53. package/{esm2020 → esm2022}/rendering/pivotgrid-cell.directive.mjs +38 -26
  54. package/{esm2020 → esm2022}/rendering/pivotgrid-table.component.mjs +66 -48
  55. package/{esm2020 → esm2022}/rendering/templates/pivotgrid-cell-template.directive.mjs +4 -3
  56. package/{esm2020 → esm2022}/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +4 -3
  57. package/{esm2020 → esm2022}/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +4 -3
  58. package/{esm2020 → esm2022}/rendering/templates/pivotgrid-value-cell-template.directive.mjs +4 -3
  59. package/{esm2020 → esm2022}/virtual/scroll.service.mjs +5 -6
  60. package/{esm2020 → esm2022}/virtual/scrollable-container.mjs +57 -43
  61. package/{fesm2020 → fesm2022}/progress-kendo-angular-pivotgrid.mjs +1168 -678
  62. package/localization/messages.d.ts +1 -1
  63. package/models/configurator-chipmenu-reorder-target.d.ts +1 -1
  64. package/models/configurator-orientation.d.ts +1 -1
  65. package/models/configurator-position.d.ts +1 -1
  66. package/models/drop-section.d.ts +1 -1
  67. package/models/drop-target.d.ts +1 -1
  68. package/models/expanded-state-action.d.ts +2 -2
  69. package/models/virtualization-settings.d.ts +1 -1
  70. package/package.json +22 -28
  71. package/pivotgrid.component.d.ts +1 -1
  72. package/rendering/pivotgrid-cell.directive.d.ts +1 -1
  73. package/rendering/pivotgrid-table.component.d.ts +1 -1
  74. package/schematics/ngAdd/index.js +2 -2
  75. package/esm2020/localization/messages.mjs +0 -87
  76. package/fesm2015/progress-kendo-angular-pivotgrid.mjs +0 -4947
  77. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  78. /package/{esm2020 → esm2022}/index.mjs +0 -0
  79. /package/{esm2020 → esm2022}/models/configurator-chipmenu-reorder-target.mjs +0 -0
  80. /package/{esm2020 → esm2022}/models/configurator-orientation.mjs +0 -0
  81. /package/{esm2020 → esm2022}/models/configurator-position.mjs +0 -0
  82. /package/{esm2020 → esm2022}/models/data-row-item.mjs +0 -0
  83. /package/{esm2020 → esm2022}/models/drop-section.mjs +0 -0
  84. /package/{esm2020 → esm2022}/models/drop-target.mjs +0 -0
  85. /package/{esm2020 → esm2022}/models/expanded-state-action.mjs +0 -0
  86. /package/{esm2020 → esm2022}/models/loader-settings.mjs +0 -0
  87. /package/{esm2020 → esm2022}/models/virtualization-settings.mjs +0 -0
  88. /package/{esm2020 → esm2022}/progress-kendo-angular-pivotgrid.mjs +0 -0
  89. /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
  }
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type ChipMenuReorderTarget = 'columns' | 'rows' | 'prev' | 'next';
8
+ export type ChipMenuReorderTarget = 'columns' | 'rows' | 'prev' | 'next';
@@ -7,4 +7,4 @@
7
7
  *
8
8
  * @default 'vertical'
9
9
  */
10
- export declare type PivotGridConfiguratorOrientation = 'horizontal' | 'vertical';
10
+ export type PivotGridConfiguratorOrientation = 'horizontal' | 'vertical';
@@ -7,4 +7,4 @@
7
7
  *
8
8
  * @default 'right'
9
9
  */
10
- export declare type PivotGridConfiguratorPosition = 'top' | 'left' | 'right' | 'bottom';
10
+ export type PivotGridConfiguratorPosition = 'top' | 'left' | 'right' | 'bottom';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type DropSectionType = 'column' | 'row' | 'measure';
8
+ export type DropSectionType = 'column' | 'row' | 'measure';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type DropTargetType = 'chip' | 'container' | 'header';
8
+ export type DropTargetType = 'chip' | 'container' | 'header';
@@ -5,11 +5,11 @@
5
5
  /**
6
6
  * @hidden
7
7
  */
8
- export declare type ExpandedStateAction = 'expand' | 'collapse';
8
+ export type ExpandedStateAction = 'expand' | 'collapse';
9
9
  /**
10
10
  * @hidden
11
11
  */
12
- export declare type ExpandedStateChangeEvent = {
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 declare type PivotGridVirtualizationSettingsType = 'row | column | both';
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-develop.3",
3
+ "version": "17.0.0-develop.30",
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": "15 - 18",
21
- "@angular/common": "15 - 18",
22
- "@angular/core": "15 - 18",
23
- "@angular/forms": "15 - 18",
24
- "@angular/platform-browser": "15 - 18",
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.20.4",
26
+ "@progress/kendo-drawing": "^1.21.0",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-buttons": "17.0.0-develop.3",
29
- "@progress/kendo-angular-common": "17.0.0-develop.3",
30
- "@progress/kendo-angular-dropdowns": "17.0.0-develop.3",
31
- "@progress/kendo-angular-indicators": "17.0.0-develop.3",
32
- "@progress/kendo-angular-inputs": "17.0.0-develop.3",
33
- "@progress/kendo-angular-intl": "17.0.0-develop.3",
34
- "@progress/kendo-angular-l10n": "17.0.0-develop.3",
35
- "@progress/kendo-angular-popup": "17.0.0-develop.3",
36
- "@progress/kendo-angular-icons": "17.0.0-develop.3",
37
- "@progress/kendo-angular-treeview": "17.0.0-develop.3",
28
+ "@progress/kendo-angular-buttons": "17.0.0-develop.30",
29
+ "@progress/kendo-angular-common": "17.0.0-develop.30",
30
+ "@progress/kendo-angular-dropdowns": "17.0.0-develop.30",
31
+ "@progress/kendo-angular-indicators": "17.0.0-develop.30",
32
+ "@progress/kendo-angular-inputs": "17.0.0-develop.30",
33
+ "@progress/kendo-angular-intl": "17.0.0-develop.30",
34
+ "@progress/kendo-angular-l10n": "17.0.0-develop.30",
35
+ "@progress/kendo-angular-popup": "17.0.0-develop.30",
36
+ "@progress/kendo-angular-icons": "17.0.0-develop.30",
37
+ "@progress/kendo-angular-treeview": "17.0.0-develop.30",
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-develop.3",
42
+ "@progress/kendo-angular-schematics": "17.0.0-develop.30",
43
43
  "@progress/kendo-pivotgrid-common": "0.6.1"
44
44
  },
45
45
  "schematics": "./schematics/collection.json",
46
- "module": "fesm2015/progress-kendo-angular-pivotgrid.mjs",
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
- "esm2020": "./esm2020/progress-kendo-angular-pivotgrid.mjs",
59
- "es2020": "./fesm2020/progress-kendo-angular-pivotgrid.mjs",
60
- "es2015": "./fesm2015/progress-kendo-angular-pivotgrid.mjs",
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
@@ -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
  }
@@ -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-develop.3',
9
+ '@progress/kendo-angular-dialog': '17.0.0-develop.30',
10
10
  // peer dep of the icons
11
11
  '@progress/kendo-svg-icons': '^3.0.0',
12
12
  // peer dep of the dropdowns
13
- '@progress/kendo-angular-navigation': '17.0.0-develop.3'
13
+ '@progress/kendo-angular-navigation': '17.0.0-develop.30'
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
- }] } });