@progress/kendo-angular-pivotgrid 17.0.0-develop.9 → 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.
Files changed (90) 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 +1 -1
  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 +1 -1
  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 +22 -10
  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 +21 -8
  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 +58 -39
  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 +98 -73
  52. package/{esm2020 → esm2022}/pivotgrid.module.mjs +13 -14
  53. package/{esm2020 → esm2022}/rendering/pivotgrid-cell.directive.mjs +30 -19
  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 +1067 -560
  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/pivotgrid.module.d.ts +1 -2
  73. package/rendering/pivotgrid-cell.directive.d.ts +1 -1
  74. package/rendering/pivotgrid-table.component.d.ts +1 -1
  75. package/schematics/ngAdd/index.js +3 -3
  76. package/esm2020/localization/messages.mjs +0 -87
  77. package/fesm2015/progress-kendo-angular-pivotgrid.mjs +0 -4928
  78. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  79. /package/{esm2020 → esm2022}/index.mjs +0 -0
  80. /package/{esm2020 → esm2022}/models/configurator-chipmenu-reorder-target.mjs +0 -0
  81. /package/{esm2020 → esm2022}/models/configurator-orientation.mjs +0 -0
  82. /package/{esm2020 → esm2022}/models/configurator-position.mjs +0 -0
  83. /package/{esm2020 → esm2022}/models/data-row-item.mjs +0 -0
  84. /package/{esm2020 → esm2022}/models/drop-section.mjs +0 -0
  85. /package/{esm2020 → esm2022}/models/drop-target.mjs +0 -0
  86. /package/{esm2020 → esm2022}/models/expanded-state-action.mjs +0 -0
  87. /package/{esm2020 → esm2022}/models/loader-settings.mjs +0 -0
  88. /package/{esm2020 → esm2022}/models/virtualization-settings.mjs +0 -0
  89. /package/{esm2020 → esm2022}/progress-kendo-angular-pivotgrid.mjs +0 -0
  90. /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.9",
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": "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.9",
29
- "@progress/kendo-angular-common": "17.0.0-develop.9",
30
- "@progress/kendo-angular-dropdowns": "17.0.0-develop.9",
31
- "@progress/kendo-angular-indicators": "17.0.0-develop.9",
32
- "@progress/kendo-angular-inputs": "17.0.0-develop.9",
33
- "@progress/kendo-angular-intl": "17.0.0-develop.9",
34
- "@progress/kendo-angular-l10n": "17.0.0-develop.9",
35
- "@progress/kendo-angular-popup": "17.0.0-develop.9",
36
- "@progress/kendo-angular-icons": "17.0.0-develop.9",
37
- "@progress/kendo-angular-treeview": "17.0.0-develop.9",
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-develop.9",
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": "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
  }
@@ -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, typeof i27.FormsModule, typeof i27.ReactiveFormsModule], [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]>;
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-develop.9',
9
+ '@progress/kendo-angular-dialog': '17.0.0',
10
10
  // peer dep of the icons
11
- '@progress/kendo-svg-icons': '^3.0.0',
11
+ '@progress/kendo-svg-icons': '^4.0.0',
12
12
  // peer dep of the dropdowns
13
- '@progress/kendo-angular-navigation': '17.0.0-develop.9'
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
- }] } });