@progress/kendo-angular-grid 19.0.0-develop.9 → 19.0.1-develop.1

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 (133) hide show
  1. package/adaptiveness/adaptive-mode.d.ts +12 -0
  2. package/adaptiveness/adaptive-renderer.component.d.ts +89 -0
  3. package/codemods/template-transformer/index.js +94 -0
  4. package/codemods/utils.js +553 -0
  5. package/codemods/v19/grid-kendogridgroupbinding.js +51 -0
  6. package/column-menu/column-chooser.component.d.ts +4 -0
  7. package/column-menu/column-list.component.d.ts +10 -3
  8. package/column-menu/column-menu-item.component.d.ts +48 -3
  9. package/column-menu/column-menu-item.directive.d.ts +5 -2
  10. package/column-menu/column-menu.component.d.ts +4 -2
  11. package/columns/column-base.d.ts +5 -0
  12. package/columns/span-column.component.d.ts +2 -2
  13. package/common/adaptiveness.service.d.ts +50 -0
  14. package/common/single-popup.service.d.ts +3 -1
  15. package/common/toolbar-tool-base.directive.d.ts +26 -0
  16. package/directives.d.ts +13 -5
  17. package/editing/add-command-tool.directive.d.ts +7 -6
  18. package/editing/cancel-command-tool.directive.d.ts +38 -0
  19. package/editing/edit-command-tool.directive.d.ts +38 -0
  20. package/editing/edit.service.d.ts +1 -1
  21. package/editing/remove-command-tool.directive.d.ts +39 -0
  22. package/editing/save-command-tool.directive.d.ts +38 -0
  23. package/editing/toolbar-editing-tool-base.directive.d.ts +29 -0
  24. package/editing-directives/editing-directive-base.d.ts +4 -1
  25. package/editing-directives/external-editing.directive.d.ts +3 -1
  26. package/esm2022/adaptiveness/adaptive-mode.mjs +5 -0
  27. package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1197 -0
  28. package/esm2022/column-menu/column-chooser.component.mjs +13 -11
  29. package/esm2022/column-menu/column-list.component.mjs +51 -8
  30. package/esm2022/column-menu/column-menu-autosize-all.component.mjs +1 -1
  31. package/esm2022/column-menu/column-menu-autosize.component.mjs +1 -1
  32. package/esm2022/column-menu/column-menu-chooser.component.mjs +1 -1
  33. package/esm2022/column-menu/column-menu-container.component.mjs +1 -1
  34. package/esm2022/column-menu/column-menu-filter.component.mjs +1 -1
  35. package/esm2022/column-menu/column-menu-item.component.mjs +123 -12
  36. package/esm2022/column-menu/column-menu-item.directive.mjs +14 -5
  37. package/esm2022/column-menu/column-menu-lock.component.mjs +1 -1
  38. package/esm2022/column-menu/column-menu-position.component.mjs +1 -1
  39. package/esm2022/column-menu/column-menu-sort.component.mjs +1 -1
  40. package/esm2022/column-menu/column-menu-stick.component.mjs +1 -1
  41. package/esm2022/column-menu/column-menu.component.mjs +68 -44
  42. package/esm2022/column-resizing/column-handle.directive.mjs +2 -2
  43. package/esm2022/columns/column-base.mjs +9 -0
  44. package/esm2022/columns/columns-container.mjs +1 -1
  45. package/esm2022/columns/span-column.component.mjs +9 -9
  46. package/esm2022/common/adaptiveness.service.mjs +72 -0
  47. package/esm2022/common/single-popup.service.mjs +9 -3
  48. package/esm2022/common/toolbar-tool-base.directive.mjs +81 -0
  49. package/esm2022/directives.mjs +21 -4
  50. package/esm2022/editing/add-command-tool.directive.mjs +12 -15
  51. package/esm2022/editing/cancel-command-tool.directive.mjs +64 -0
  52. package/esm2022/editing/edit-command-tool.directive.mjs +59 -0
  53. package/esm2022/editing/remove-command-tool.directive.mjs +60 -0
  54. package/esm2022/editing/remove-command.directive.mjs +1 -0
  55. package/esm2022/editing/save-command-tool.directive.mjs +64 -0
  56. package/esm2022/editing/toolbar-editing-tool-base.directive.mjs +94 -0
  57. package/esm2022/editing-directives/editing-directive-base.mjs +5 -2
  58. package/esm2022/editing-directives/external-editing.directive.mjs +28 -14
  59. package/esm2022/excel/excel-command-tool.directive.mjs +12 -17
  60. package/esm2022/filtering/filter-input.directive.mjs +14 -2
  61. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +4 -2
  62. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +4 -0
  63. package/esm2022/filtering/menu/date-filter-menu.component.mjs +6 -0
  64. package/esm2022/filtering/menu/filter-menu-container.component.mjs +24 -10
  65. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +26 -4
  66. package/esm2022/filtering/menu/filter-menu.component.mjs +44 -29
  67. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +2 -0
  68. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +6 -0
  69. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +2 -0
  70. package/esm2022/filtering/menu/string-filter-menu.component.mjs +10 -1
  71. package/esm2022/grid.component.mjs +376 -82
  72. package/esm2022/grid.module.mjs +115 -101
  73. package/esm2022/index.mjs +11 -1
  74. package/esm2022/localization/messages.mjs +128 -2
  75. package/esm2022/navigation/toolbar-tool-name.mjs +17 -0
  76. package/esm2022/package-metadata.mjs +2 -2
  77. package/esm2022/pdf/pdf-command-tool.directive.mjs +12 -15
  78. package/esm2022/rendering/cell.component.mjs +3 -3
  79. package/esm2022/rendering/header/header.component.mjs +1 -1
  80. package/esm2022/rendering/list.component.mjs +1 -1
  81. package/esm2022/rendering/table-body.component.mjs +1 -1
  82. package/esm2022/rendering/toolbar/tools/column-chooser-tool.directive.mjs +210 -0
  83. package/esm2022/rendering/toolbar/tools/filter-command-tool.directive.mjs +69 -34
  84. package/esm2022/rendering/toolbar/tools/filter-tool-wrapper.component.mjs +29 -8
  85. package/esm2022/rendering/toolbar/tools/filter-toolbar-tool.component.mjs +78 -8
  86. package/esm2022/rendering/toolbar/tools/group-command-tool.directive.mjs +206 -0
  87. package/esm2022/rendering/toolbar/tools/group-toolbar-tool.component.mjs +425 -0
  88. package/esm2022/rendering/toolbar/tools/sort-command-tool.directive.mjs +54 -20
  89. package/esm2022/rendering/toolbar/tools/sort-toolbar-tool.component.mjs +24 -8
  90. package/esm2022/selection/selection.service.mjs +11 -0
  91. package/esm2022/state-management/grid-state.models.mjs +26 -0
  92. package/esm2022/state-management/redo-command-tool.mjs +66 -0
  93. package/esm2022/state-management/undo-command-tool.mjs +66 -0
  94. package/esm2022/state-management/undo-redo.directive.mjs +178 -0
  95. package/esm2022/state-management/undo-redo.service.mjs +22 -0
  96. package/esm2022/state-management/undo-redo.stack.mjs +232 -0
  97. package/esm2022/utils.mjs +13 -13
  98. package/excel/excel-command-tool.directive.d.ts +5 -5
  99. package/fesm2022/progress-kendo-angular-grid.mjs +7384 -3773
  100. package/filtering/filter-input.directive.d.ts +1 -0
  101. package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
  102. package/filtering/menu/filter-menu-container.component.d.ts +15 -4
  103. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +8 -3
  104. package/filtering/menu/filter-menu.component.d.ts +6 -3
  105. package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
  106. package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
  107. package/filtering/menu/string-filter-menu.component.d.ts +1 -0
  108. package/grid.component.d.ts +86 -33
  109. package/grid.module.d.ts +108 -100
  110. package/index.d.ts +10 -1
  111. package/localization/messages.d.ts +86 -2
  112. package/navigation/toolbar-tool-name.d.ts +17 -0
  113. package/package.json +35 -20
  114. package/pdf/pdf-command-tool.directive.d.ts +6 -5
  115. package/rendering/cell.component.d.ts +1 -1
  116. package/{column-menu → rendering/toolbar/tools}/column-chooser-tool.directive.d.ts +18 -6
  117. package/rendering/toolbar/tools/filter-command-tool.directive.d.ts +10 -1
  118. package/rendering/toolbar/tools/filter-tool-wrapper.component.d.ts +6 -5
  119. package/rendering/toolbar/tools/filter-toolbar-tool.component.d.ts +11 -2
  120. package/rendering/toolbar/tools/group-command-tool.directive.d.ts +51 -0
  121. package/rendering/toolbar/tools/group-toolbar-tool.component.d.ts +61 -0
  122. package/rendering/toolbar/tools/sort-command-tool.directive.d.ts +10 -1
  123. package/rendering/toolbar/tools/sort-toolbar-tool.component.d.ts +5 -1
  124. package/schematics/ngAdd/index.js +4 -4
  125. package/selection/selection.service.d.ts +1 -0
  126. package/state-management/grid-state.models.d.ts +58 -0
  127. package/state-management/redo-command-tool.d.ts +38 -0
  128. package/state-management/undo-command-tool.d.ts +38 -0
  129. package/state-management/undo-redo.directive.d.ts +51 -0
  130. package/state-management/undo-redo.service.d.ts +19 -0
  131. package/state-management/undo-redo.stack.d.ts +104 -0
  132. package/utils.d.ts +11 -5
  133. package/esm2022/column-menu/column-chooser-tool.directive.mjs +0 -172
@@ -12,7 +12,10 @@ import { normalize } from '../../../columns/sort-settings';
12
12
  import { take } from 'rxjs/operators';
13
13
  import * as i0 from "@angular/core";
14
14
  import * as i1 from "@progress/kendo-angular-buttons";
15
- const directions = initialDirection => initialDirection === "asc" ? ["asc", "desc"] : ["desc", "asc"];
15
+ /**
16
+ * @hidden
17
+ */
18
+ export const directions = initialDirection => initialDirection === "asc" ? ["asc", "desc"] : ["desc", "asc"];
16
19
  /**
17
20
  * @hidden
18
21
  */
@@ -75,7 +78,10 @@ export class SortToolbarToolComponent {
75
78
  this.subscription.unsubscribe();
76
79
  }
77
80
  }
78
- toggleSort(column) {
81
+ toggleSort(column, ev) {
82
+ if (this.hostButton.location !== 'toolbar') {
83
+ ev.stopImmediatePropagation();
84
+ }
79
85
  const field = column?.field;
80
86
  if (!field) {
81
87
  return;
@@ -142,8 +148,8 @@ export class SortToolbarToolComponent {
142
148
  #sortItem
143
149
  role="button"
144
150
  class="k-columnmenu-item"
145
- (click)="toggleSort(column)"
146
- (keydown.enter)="toggleSort(column)"
151
+ (click)="toggleSort(column, $event)"
152
+ (keydown.enter)="toggleSort(column, $event)"
147
153
  [tabindex]="'0'"
148
154
  >
149
155
  {{column.title || getColumnComponent(column).field}}
@@ -160,7 +166,12 @@ export class SortToolbarToolComponent {
160
166
  </div>
161
167
 
162
168
  <div class="k-actions k-actions-stretched k-actions-horizontal k-column-menu-footer">
163
- <button kendoButton [svgIcon]="clearIcon" (click)="clearSorting()" >Clear sorting</button>
169
+ <button kendoButton
170
+ [svgIcon]="clearIcon"
171
+ icon="x"
172
+ (click)="clearSorting()">
173
+ {{ctx?.localization.get('sortClearButton')}}
174
+ </button>
164
175
  </div>
165
176
  `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i1.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
166
177
  }
@@ -179,8 +190,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
179
190
  #sortItem
180
191
  role="button"
181
192
  class="k-columnmenu-item"
182
- (click)="toggleSort(column)"
183
- (keydown.enter)="toggleSort(column)"
193
+ (click)="toggleSort(column, $event)"
194
+ (keydown.enter)="toggleSort(column, $event)"
184
195
  [tabindex]="'0'"
185
196
  >
186
197
  {{column.title || getColumnComponent(column).field}}
@@ -197,7 +208,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
197
208
  </div>
198
209
 
199
210
  <div class="k-actions k-actions-stretched k-actions-horizontal k-column-menu-footer">
200
- <button kendoButton [svgIcon]="clearIcon" (click)="clearSorting()" >Clear sorting</button>
211
+ <button kendoButton
212
+ [svgIcon]="clearIcon"
213
+ icon="x"
214
+ (click)="clearSorting()">
215
+ {{ctx?.localization.get('sortClearButton')}}
216
+ </button>
201
217
  </div>
202
218
  `,
203
219
  standalone: true,
@@ -144,6 +144,7 @@ export class SelectionService {
144
144
  ev.rangeStartRow = { dataItem: this.lastSelectionData, index: this.lastSelectionStartIndex };
145
145
  ev.rangeEndRow = { dataItem: item.data, index: item.index };
146
146
  }
147
+ this.syncCurrentSelection(ev);
147
148
  this.changes.emit(ev);
148
149
  }
149
150
  toggle(item) {
@@ -223,6 +224,7 @@ export class SelectionService {
223
224
  deselectedRows: [rowArgs],
224
225
  selectedRows: []
225
226
  };
227
+ this.syncCurrentSelection(ev);
226
228
  this.changes.emit(ev);
227
229
  }
228
230
  }
@@ -295,6 +297,7 @@ export class SelectionService {
295
297
  if (this.options.cellAggregates) {
296
298
  ev.cellAggregates = this.aggregateService.onSelectionChange(ev);
297
299
  }
300
+ this.syncCurrentSelection(ev);
298
301
  this.changes.emit(ev);
299
302
  }
300
303
  selectRange(startIndex, endIndex, preserveSelection, existingSelections = []) {
@@ -428,6 +431,14 @@ export class SelectionService {
428
431
  this.dataChangedSubscription = null;
429
432
  }
430
433
  }
434
+ syncCurrentSelection(ev) {
435
+ for (const row of ev.deselectedRows) {
436
+ this.currentSelection.splice(row.index, 1);
437
+ }
438
+ for (const row of ev.selectedRows) {
439
+ this.currentSelection[row.index] = row;
440
+ }
441
+ }
431
442
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionService, deps: [{ token: i1.DomEventsService }, { token: i2.CellSelectionAggregateService }, { token: i3.LocalDataChangesService }, { token: i4.NavigationService }, { token: i5.ContextService }], target: i0.ɵɵFactoryTarget.Injectable });
432
443
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionService });
433
444
  }
@@ -0,0 +1,26 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { PreventableEvent } from "@progress/kendo-angular-common";
6
+ /**
7
+ * Arguments for the `undo` and `redo` events.
8
+ */
9
+ export class UndoRedoEvent extends PreventableEvent {
10
+ /**
11
+ * The event data of the original action that triggered the state change.
12
+ */
13
+ originalEvent;
14
+ /**
15
+ * The grid state and rendered data at the time of the action.
16
+ */
17
+ gridState;
18
+ /**
19
+ * @hidden
20
+ */
21
+ constructor({ originalEvent, gridState }) {
22
+ super();
23
+ this.originalEvent = originalEvent;
24
+ this.gridState = gridState;
25
+ }
26
+ }
@@ -0,0 +1,66 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 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 } from '@angular/core';
6
+ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
7
+ import { Subscription } from 'rxjs';
8
+ import { redoIcon } from '@progress/kendo-svg-icons';
9
+ import { UndoRedoService } from './undo-redo.service';
10
+ import * as i0 from "@angular/core";
11
+ import * as i1 from "./undo-redo.service";
12
+ import * as i2 from "@progress/kendo-angular-toolbar";
13
+ /**
14
+ * Represents the command for triggering the redo action in the Grid.
15
+ * You can apply this directive to any `kendo-toolbar-button` element inside a
16
+ * ToolbarComponent used in the Grid.
17
+ *
18
+ * When the user clicks the toolbar button that is associated with the directive, the
19
+ * [redo]({% slug api_grid_undoredodirective %}#toc-redo) event is triggered.
20
+ *
21
+ * @example
22
+ * ```html-no-run
23
+ * <kendo-grid>
24
+ * <kendo-toolbar>
25
+ * <kendo-toolbar-button kendoGridRedoTool></kendo-toolbar-button>
26
+ * </kendo-toolbar>
27
+ * </kendo-grid>
28
+ * ```
29
+ */
30
+ export class RedoCommandToolbarDirective {
31
+ undoRedoService;
32
+ host;
33
+ subs = new Subscription();
34
+ constructor(undoRedoService, host) {
35
+ this.undoRedoService = undoRedoService;
36
+ this.host = host;
37
+ }
38
+ ngOnInit() {
39
+ this.subs = this.host.click.subscribe(e => this.onClick(e));
40
+ this.host.className = 'k-grid-redo-command';
41
+ this.host.svgIcon = redoIcon;
42
+ this.host.icon = 'redo';
43
+ this.host.text = 'Redo';
44
+ this.host.disabled = true;
45
+ this.subs.add(this.undoRedoService.stackEndReached.subscribe((stackEnd) => this.host.disabled = stackEnd === 'end'));
46
+ }
47
+ ngOnDestroy() {
48
+ this.subs.unsubscribe();
49
+ }
50
+ /**
51
+ * @hidden
52
+ */
53
+ onClick(e) {
54
+ e.preventDefault();
55
+ this.undoRedoService.onRedo.next();
56
+ }
57
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RedoCommandToolbarDirective, deps: [{ token: i1.UndoRedoService }, { token: i2.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
58
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RedoCommandToolbarDirective, isStandalone: true, selector: "[kendoGridRedoTool]", ngImport: i0 });
59
+ }
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RedoCommandToolbarDirective, decorators: [{
61
+ type: Directive,
62
+ args: [{
63
+ selector: '[kendoGridRedoTool]',
64
+ standalone: true
65
+ }]
66
+ }], ctorParameters: function () { return [{ type: i1.UndoRedoService }, { type: i2.ToolBarButtonComponent }]; } });
@@ -0,0 +1,66 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 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 } from '@angular/core';
6
+ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
7
+ import { Subscription } from 'rxjs';
8
+ import { undoIcon } from '@progress/kendo-svg-icons';
9
+ import { UndoRedoService } from './undo-redo.service';
10
+ import * as i0 from "@angular/core";
11
+ import * as i1 from "./undo-redo.service";
12
+ import * as i2 from "@progress/kendo-angular-toolbar";
13
+ /**
14
+ * Represents the command for triggering the undo action in the Grid.
15
+ * You can apply this directive to any `kendo-toolbar-button` element inside a
16
+ * ToolbarComponent used in the Grid.
17
+ *
18
+ * When the user clicks the toolbar button that is associated with the directive, the
19
+ * [undo]({% slug api_grid_undoredodirective %}#toc-undo) event is triggered.
20
+ *
21
+ * @example
22
+ * ```html-no-run
23
+ * <kendo-grid>
24
+ * <kendo-toolbar>
25
+ * <kendo-toolbar-button kendoGridUndoTool></kendo-toolbar-button>
26
+ * </kendo-toolbar>
27
+ * </kendo-grid>
28
+ * ```
29
+ */
30
+ export class UndoCommandToolbarDirective {
31
+ undoRedoService;
32
+ host;
33
+ subs = new Subscription();
34
+ constructor(undoRedoService, host) {
35
+ this.undoRedoService = undoRedoService;
36
+ this.host = host;
37
+ }
38
+ ngOnInit() {
39
+ this.subs = this.host.click.subscribe(e => this.onClick(e));
40
+ this.host.className = 'k-grid-undo-command';
41
+ this.host.svgIcon = undoIcon;
42
+ this.host.icon = 'undo';
43
+ this.host.text = 'Undo';
44
+ this.host.disabled = true;
45
+ this.subs.add(this.undoRedoService.stackEndReached.subscribe((stackEnd) => this.host.disabled = stackEnd === 'start'));
46
+ }
47
+ ngOnDestroy() {
48
+ this.subs.unsubscribe();
49
+ }
50
+ /**
51
+ * @hidden
52
+ */
53
+ onClick(e) {
54
+ e.preventDefault();
55
+ this.undoRedoService.onUndo.next();
56
+ }
57
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoCommandToolbarDirective, deps: [{ token: i1.UndoRedoService }, { token: i2.ToolBarButtonComponent }], target: i0.ɵɵFactoryTarget.Directive });
58
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: UndoCommandToolbarDirective, isStandalone: true, selector: "[kendoGridUndoTool]", ngImport: i0 });
59
+ }
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoCommandToolbarDirective, decorators: [{
61
+ type: Directive,
62
+ args: [{
63
+ selector: '[kendoGridUndoTool]',
64
+ standalone: true
65
+ }]
66
+ }], ctorParameters: function () { return [{ type: i1.UndoRedoService }, { type: i2.ToolBarButtonComponent }]; } });
@@ -0,0 +1,178 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 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, EventEmitter, Input, Output } from '@angular/core';
6
+ import { UndoRedoStack } from './undo-redo.stack';
7
+ import { GridComponent } from '../grid.component';
8
+ import { UndoRedoEvent } from './grid-state.models';
9
+ import { Subscription } from 'rxjs';
10
+ import { EditService } from '../editing/edit.service';
11
+ import { filter, tap } from 'rxjs/operators';
12
+ import { UndoRedoService } from './undo-redo.service';
13
+ import { hasObservers } from '@progress/kendo-angular-common';
14
+ import { ChangeNotificationService } from '../data/change-notification.service';
15
+ import * as i0 from "@angular/core";
16
+ import * as i1 from "../grid.component";
17
+ import * as i2 from "../editing/edit.service";
18
+ import * as i3 from "./undo-redo.service";
19
+ import * as i4 from "../data/change-notification.service";
20
+ export class UndoRedoDirective {
21
+ host;
22
+ editService;
23
+ undoRedoService;
24
+ changeNotification;
25
+ /**
26
+ * Determines the maximum number of actions to keep in the undo-redo stack.
27
+ * @default 10
28
+ */
29
+ maxStoredStates = 10;
30
+ /**
31
+ * Fires when undo action is performed. Exposes the state of the grid that will be applied.
32
+ */
33
+ onUndo = new EventEmitter();
34
+ /**
35
+ * Fires when undo action is performed. Exposes the state of the grid that will be applied.
36
+ */
37
+ onRedo = new EventEmitter();
38
+ /**
39
+ * Returns an array of all undo-redo actions that are currently in the stack.
40
+ */
41
+ get undoRedoItems() {
42
+ return this.stack.toArray();
43
+ }
44
+ stack;
45
+ subs = new Subscription();
46
+ addToState = true;
47
+ constructor(host, editService, undoRedoService, changeNotification) {
48
+ this.host = host;
49
+ this.editService = editService;
50
+ this.undoRedoService = undoRedoService;
51
+ this.changeNotification = changeNotification;
52
+ this.host.undoRedoService = this.undoRedoService;
53
+ }
54
+ ngOnInit() {
55
+ this.stack = new UndoRedoStack(this.maxStoredStates);
56
+ this.stack.add({
57
+ originalEvent: {
58
+ skip: this.host.skip,
59
+ take: this.host.pageSize,
60
+ sort: this.host.sort,
61
+ filter: this.host.filter,
62
+ group: this.host.group
63
+ }, gridState: structuredClone(this.host.currentState)
64
+ });
65
+ this.subs = this.host.gridStateChange.subscribe((state) => {
66
+ if (this.addToState) {
67
+ this.stack.add({
68
+ originalEvent: {
69
+ skip: state.skip,
70
+ take: state.take,
71
+ sort: state.sort,
72
+ filter: state.filter,
73
+ group: state.group
74
+ },
75
+ gridState: structuredClone(state)
76
+ });
77
+ }
78
+ let stackEndPointReached;
79
+ if (this.stack.canUndo) {
80
+ stackEndPointReached = this.stack.canRedo ? false : 'end';
81
+ }
82
+ else {
83
+ stackEndPointReached = 'start';
84
+ }
85
+ this.undoRedoService.stackEndReached.next(stackEndPointReached);
86
+ });
87
+ this.subs.add(this.editService.changes
88
+ .pipe(filter(event => event.action === 'save' || event.action === 'remove'), tap(event => this.undoRedoService.originalEvent = event))
89
+ .subscribe(event => {
90
+ this.stack.add({
91
+ originalEvent: event,
92
+ gridState: structuredClone(this.host.currentState)
93
+ });
94
+ this.addToState = false;
95
+ this.host.gridStateChange.emit(this.stack.current.gridState);
96
+ this.addToState = true;
97
+ this.updateUndoRedoDisabled();
98
+ }));
99
+ this.subs.add(this.changeNotification.changes.subscribe(() => this.stack.current.gridState = this.host.currentState));
100
+ ['Undo', 'Redo'].forEach((action) => {
101
+ this.subs.add(this.undoRedoService[`on${action}`].subscribe(() => {
102
+ if (!this.stack[`can${action}`]) {
103
+ return;
104
+ }
105
+ this.stack[`${action.toLowerCase()}`]();
106
+ if (hasObservers(this[`on${action}`])) {
107
+ const event = new UndoRedoEvent(this.stack.current);
108
+ this[`on${action}`].emit(event);
109
+ if (event.isDefaultPrevented()) {
110
+ return;
111
+ }
112
+ }
113
+ this.updateUndoRedoDisabled();
114
+ this.host.loadState(this.stack.current.gridState);
115
+ }));
116
+ });
117
+ this.subs.add(this.undoRedoService.setState.subscribe((state) => this.stack.add({ originalEvent: 'dataChange', gridState: state })));
118
+ }
119
+ ngOnDestroy() {
120
+ this.stack.clear();
121
+ this.stack = null;
122
+ this.subs.unsubscribe();
123
+ }
124
+ /**
125
+ * Re-applies the last action, reverted by the `undo` method.
126
+ */
127
+ redo() {
128
+ if (this.stack.canRedo) {
129
+ this.stack.redo();
130
+ this.host.loadState(this.stack.current.gridState);
131
+ if (!this.stack.canRedo) {
132
+ this.undoRedoService.stackEndReached.next('end');
133
+ }
134
+ }
135
+ }
136
+ /**
137
+ * Reverts the last user action.
138
+ */
139
+ undo() {
140
+ if (this.stack.canUndo) {
141
+ this.stack.undo();
142
+ this.host.loadState(this.stack.current.gridState);
143
+ if (!this.stack.canUndo) {
144
+ this.undoRedoService.stackEndReached.next('start');
145
+ }
146
+ }
147
+ }
148
+ updateUndoRedoDisabled() {
149
+ if (!this.stack.canRedo) {
150
+ this.undoRedoService.stackEndReached.next('end');
151
+ return;
152
+ }
153
+ if (!this.stack.canUndo) {
154
+ this.undoRedoService.stackEndReached.next('start');
155
+ return;
156
+ }
157
+ this.undoRedoService.stackEndReached.next(false);
158
+ }
159
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoRedoDirective, deps: [{ token: i1.GridComponent }, { token: i2.EditService }, { token: i3.UndoRedoService }, { token: i4.ChangeNotificationService }], target: i0.ɵɵFactoryTarget.Directive });
160
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: UndoRedoDirective, isStandalone: true, selector: "[kendoGridUndoRedo]", inputs: { maxStoredStates: "maxStoredStates" }, outputs: { onUndo: "undo", onRedo: "redo" }, providers: [UndoRedoService], exportAs: ["kendoGridUndoRedo"], ngImport: i0 });
161
+ }
162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoRedoDirective, decorators: [{
163
+ type: Directive,
164
+ args: [{
165
+ selector: '[kendoGridUndoRedo]',
166
+ standalone: true,
167
+ exportAs: 'kendoGridUndoRedo',
168
+ providers: [UndoRedoService]
169
+ }]
170
+ }], ctorParameters: function () { return [{ type: i1.GridComponent }, { type: i2.EditService }, { type: i3.UndoRedoService }, { type: i4.ChangeNotificationService }]; }, propDecorators: { maxStoredStates: [{
171
+ type: Input
172
+ }], onUndo: [{
173
+ type: Output,
174
+ args: ['undo']
175
+ }], onRedo: [{
176
+ type: Output,
177
+ args: ['redo']
178
+ }] } });
@@ -0,0 +1,22 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Injectable } from '@angular/core';
6
+ import { Subject } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export class UndoRedoService {
12
+ originalEvent;
13
+ onUndo = new Subject();
14
+ onRedo = new Subject();
15
+ stackEndReached = new Subject();
16
+ setState = new Subject();
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoRedoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
18
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoRedoService });
19
+ }
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UndoRedoService, decorators: [{
21
+ type: Injectable
22
+ }] });