@progress/kendo-angular-grid 19.3.1-develop.4 → 20.0.0-develop.2

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 (42) hide show
  1. package/codemods/template-transformer/index.js +94 -0
  2. package/codemods/utils.js +553 -0
  3. package/codemods/v20/grid-kendogridgroupbinding.js +51 -0
  4. package/common/provider.service.d.ts +3 -2
  5. package/databinding.directive.d.ts +0 -3
  6. package/directives.d.ts +3 -4
  7. package/esm2022/common/error-messages.mjs +0 -6
  8. package/esm2022/common/provider.service.mjs +1 -0
  9. package/esm2022/data/data.iterators.mjs +0 -7
  10. package/esm2022/databinding.directive.mjs +4 -4
  11. package/esm2022/directives.mjs +0 -3
  12. package/esm2022/grid.component.mjs +64 -31
  13. package/esm2022/grid.module.mjs +15 -16
  14. package/esm2022/grouping/group-header.component.mjs +6 -3
  15. package/esm2022/index.mjs +0 -1
  16. package/esm2022/navigation/navigation-metadata.mjs +4 -2
  17. package/esm2022/navigation/navigation.service.mjs +4 -2
  18. package/esm2022/package-metadata.mjs +2 -2
  19. package/esm2022/pdf/pdf.component.mjs +16 -0
  20. package/esm2022/pdf/pdf.service.mjs +1 -0
  21. package/esm2022/rendering/list.component.mjs +188 -92
  22. package/esm2022/rendering/table-body.component.mjs +19 -5
  23. package/esm2022/scrolling/row-height.service.mjs +23 -65
  24. package/esm2022/scrolling/scroller.service.mjs +175 -35
  25. package/fesm2022/progress-kendo-angular-grid.mjs +509 -588
  26. package/grid.component.d.ts +8 -6
  27. package/grid.module.d.ts +14 -15
  28. package/grouping/group-header.component.d.ts +1 -1
  29. package/index.d.ts +0 -2
  30. package/navigation/navigation-metadata.d.ts +2 -1
  31. package/package.json +36 -21
  32. package/pdf/pdf.component.d.ts +1 -0
  33. package/pdf/pdf.service.d.ts +1 -0
  34. package/rendering/list.component.d.ts +11 -5
  35. package/rendering/table-body.component.d.ts +3 -2
  36. package/schematics/ngAdd/index.js +4 -4
  37. package/scrolling/row-height.service.d.ts +3 -8
  38. package/scrolling/scroller.service.d.ts +35 -9
  39. package/esm2022/grouping/group-scroll-binding.directive.mjs +0 -347
  40. package/esm2022/grouping/virtual-group-result.interface.mjs +0 -5
  41. package/grouping/group-scroll-binding.directive.d.ts +0 -85
  42. package/grouping/virtual-group-result.interface.d.ts +0 -18
@@ -184,9 +184,8 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
184
184
  */
185
185
  height: number;
186
186
  /**
187
- * Represents the row height in pixels for each Grid row (`tr`) element.
188
- * Required for [virtual scrolling]({% slug scrollmmodes_grid %}).
189
- * Set `rowHeight` to match the actual DOM row height. The property does not change the height of the rows in the UI.
187
+ * Sets the `style.height` attribute of each Grid data or group header/footer row (`tr`) element in the DOM in pixels.
188
+ * If some row cells have content that requires more space, the row automatically expands to fit the content.
190
189
  */
191
190
  rowHeight: number;
192
191
  /**
@@ -196,9 +195,8 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
196
195
  */
197
196
  adaptiveMode: AdaptiveMode;
198
197
  /**
199
- * Represents the height in pixels for each Grid detail row (`tr`) element.
200
- * Required for [virtual scrolling]({% slug scrollmmodes_grid %}).
201
- * Set `detailRowHeight` to match the actual DOM detail row height. The property does not change the height of the rows in the UI.
198
+ * Sets the `style.height` attribute of each Grid detail row (`tr.k-detail-row`) element in the DOM in pixels.
199
+ * If the detail row has content that requires more space, the row automatically expands to fit the content.
202
200
  */
203
201
  detailRowHeight: number;
204
202
  /**
@@ -801,6 +799,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
801
799
  ngAfterContentChecked(): void;
802
800
  ngOnInit(): void;
803
801
  ngOnDestroy(): void;
802
+ /**
803
+ * @hidden
804
+ */
805
+ onResize(): void;
804
806
  /**
805
807
  * @hidden
806
808
  */
package/grid.module.d.ts CHANGED
@@ -134,20 +134,19 @@ import * as i128 from "./editing-directives/in-cell-editing.directive";
134
134
  import * as i129 from "./editing-directives/external-editing.directive";
135
135
  import * as i130 from "./rendering/details-expand.directive";
136
136
  import * as i131 from "./rendering/groups-expand.directive";
137
- import * as i132 from "./grouping/group-scroll-binding.directive";
138
- import * as i133 from "./selection/marquee.directive";
139
- import * as i134 from "./rendering/common/spacer.component";
140
- import * as i135 from "./rendering/toolbar/toolbar-focusable.directive";
141
- import * as i136 from "./aggregates/status-bar.component";
142
- import * as i137 from "./aggregates/status-bar-template.directive";
143
- import * as i138 from "./common/clipboard.directive";
144
- import * as i139 from "./editing/form/form.component";
145
- import * as i140 from "./editing/form/dialog-form.component";
146
- import * as i141 from "./editing/form/form-formfield.component";
147
- import * as i142 from "./state-management/undo-redo.directive";
148
- import * as i143 from "./column-resizing/table.directive";
149
- import * as i144 from "./state-management/undo-command-tool";
150
- import * as i145 from "./state-management/redo-command-tool";
137
+ import * as i132 from "./selection/marquee.directive";
138
+ import * as i133 from "./rendering/common/spacer.component";
139
+ import * as i134 from "./rendering/toolbar/toolbar-focusable.directive";
140
+ import * as i135 from "./aggregates/status-bar.component";
141
+ import * as i136 from "./aggregates/status-bar-template.directive";
142
+ import * as i137 from "./common/clipboard.directive";
143
+ import * as i138 from "./editing/form/form.component";
144
+ import * as i139 from "./editing/form/dialog-form.component";
145
+ import * as i140 from "./editing/form/form-formfield.component";
146
+ import * as i141 from "./state-management/undo-redo.directive";
147
+ import * as i142 from "./column-resizing/table.directive";
148
+ import * as i143 from "./state-management/undo-command-tool";
149
+ import * as i144 from "./state-management/redo-command-tool";
151
150
  /**
152
151
  * Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the Grid component.
153
152
  *
@@ -172,6 +171,6 @@ import * as i145 from "./state-management/redo-command-tool";
172
171
  */
173
172
  export declare class GridModule {
174
173
  static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
175
- static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i52.FooterComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.FilterInputDirective, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i99.ColumnMenuChooserItemCheckedDirective, typeof i100.ColumnListComponent, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i103.ColumnMenuChooserComponent, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i108.ColumnMenuComponent, typeof i109.ColumnMenuLockComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i117.GridComponent, typeof i118.ListComponent, typeof i119.ToolbarComponent, typeof i120.LocalizedMessagesDirective, typeof i121.CustomMessagesComponent, typeof i122.DataBindingDirective, typeof i123.ToolbarTemplateDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i132.GroupBindingDirective, typeof i133.GridMarqueeDirective, typeof i134.GridSpacerComponent, typeof i135.GridToolbarFocusableDirective, typeof i136.StatusBarComponent, typeof i137.StatusBarTemplateDirective, typeof i138.GridClipboardDirective, typeof i139.FormComponent, typeof i140.DialogFormComponent, typeof i141.FormFormFieldComponent, typeof i142.UndoRedoDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i143.TableDirective, typeof i144.UndoCommandToolbarDirective, typeof i145.RedoCommandToolbarDirective], [typeof i117.GridComponent, typeof i123.ToolbarTemplateDirective, typeof i119.ToolbarComponent, typeof i134.GridSpacerComponent, typeof i137.StatusBarTemplateDirective, typeof i122.DataBindingDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i121.CustomMessagesComponent, typeof i132.GroupBindingDirective, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i135.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.DateFilterCellComponent, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i109.ColumnMenuLockComponent, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i103.ColumnMenuChooserComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i108.ColumnMenuComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i138.GridClipboardDirective, typeof i142.UndoRedoDirective, typeof i144.UndoCommandToolbarDirective, typeof i145.RedoCommandToolbarDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent]>;
174
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i52.FooterComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i84.FilterInputDirective, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i99.ColumnMenuChooserItemCheckedDirective, typeof i100.ColumnListComponent, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i103.ColumnMenuChooserComponent, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i108.ColumnMenuComponent, typeof i109.ColumnMenuLockComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i117.GridComponent, typeof i118.ListComponent, typeof i119.ToolbarComponent, typeof i120.LocalizedMessagesDirective, typeof i121.CustomMessagesComponent, typeof i122.DataBindingDirective, typeof i123.ToolbarTemplateDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i132.GridMarqueeDirective, typeof i133.GridSpacerComponent, typeof i134.GridToolbarFocusableDirective, typeof i135.StatusBarComponent, typeof i136.StatusBarTemplateDirective, typeof i137.GridClipboardDirective, typeof i138.FormComponent, typeof i139.DialogFormComponent, typeof i140.FormFormFieldComponent, typeof i141.UndoRedoDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i142.TableDirective, typeof i143.UndoCommandToolbarDirective, typeof i144.RedoCommandToolbarDirective], [typeof i117.GridComponent, typeof i123.ToolbarTemplateDirective, typeof i119.ToolbarComponent, typeof i133.GridSpacerComponent, typeof i136.StatusBarTemplateDirective, typeof i122.DataBindingDirective, typeof i124.SelectionDirective, typeof i125.HighlightDirective, typeof i121.CustomMessagesComponent, typeof i126.TemplateEditingDirective, typeof i127.ReactiveEditingDirective, typeof i128.InCellEditingDirective, typeof i129.ExternalEditingDirective, typeof i130.ExpandDetailsDirective, typeof i131.ExpandGroupDirective, typeof i134.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.EditCommandToolbarDirective, typeof i37.SaveCommandToolbarDirective, typeof i38.RemoveCommandToolbarDirective, typeof i39.CancelCommandToolbarDirective, typeof i40.CellLoadingTemplateDirective, typeof i41.LoadingTemplateDirective, typeof i42.RowReorderColumnComponent, typeof i43.SortCommandToolbarDirective, typeof i44.FilterCommandToolbarDirective, typeof i45.AIAssistantToolbarDirective, typeof i46.GroupCommandToolbarDirective, typeof i47.SelectAllToolbarToolComponent, typeof i48.HeaderComponent, typeof i49.HeaderTemplateDirective, typeof i50.ColumnHandleDirective, typeof i51.SelectAllCheckboxDirective, typeof i55.FilterRowComponent, typeof i56.FilterCellComponent, typeof i57.FilterCellTemplateDirective, typeof i58.StringFilterCellComponent, typeof i59.NumericFilterCellComponent, typeof i60.AutoCompleteFilterCellComponent, typeof i61.BooleanFilterCellComponent, typeof i62.FilterCellHostDirective, typeof i63.FilterCellWrapperComponent, typeof i64.DateFilterCellComponent, typeof i65.FilterCellOperatorsComponent, typeof i66.ContainsFilterOperatorComponent, typeof i67.DoesNotContainFilterOperatorComponent, typeof i68.EndsWithFilterOperatorComponent, typeof i69.EqualFilterOperatorComponent, typeof i70.IsEmptyFilterOperatorComponent, typeof i71.IsNotEmptyFilterOperatorComponent, typeof i72.IsNotNullFilterOperatorComponent, typeof i73.IsNullFilterOperatorComponent, typeof i74.NotEqualFilterOperatorComponent, typeof i75.StartsWithFilterOperatorComponent, typeof i76.GreaterFilterOperatorComponent, typeof i77.GreaterOrEqualToFilterOperatorComponent, typeof i78.LessFilterOperatorComponent, typeof i79.LessOrEqualToFilterOperatorComponent, typeof i80.AfterFilterOperatorComponent, typeof i81.AfterEqFilterOperatorComponent, typeof i82.BeforeEqFilterOperatorComponent, typeof i83.BeforeFilterOperatorComponent, typeof i85.FilterMenuComponent, typeof i86.FilterMenuContainerComponent, typeof i87.FilterMenuInputWrapperComponent, typeof i88.StringFilterMenuInputComponent, typeof i89.StringFilterMenuComponent, typeof i90.FilterMenuTemplateDirective, typeof i91.NumericFilterMenuComponent, typeof i92.NumericFilterMenuInputComponent, typeof i93.DateFilterMenuInputComponent, typeof i94.DateFilterMenuComponent, typeof i95.FilterMenuHostDirective, typeof i96.BooleanFilterMenuComponent, typeof i97.FilterMenuDropDownListDirective, typeof i98.BooleanFilterRadioButtonDirective, typeof i101.ColumnChooserComponent, typeof i102.ColumnChooserToolbarDirective, typeof i104.ColumnMenuFilterComponent, typeof i105.ColumnMenuItemComponent, typeof i106.ColumnMenuItemContentTemplateDirective, typeof i107.ColumnMenuSortComponent, typeof i109.ColumnMenuLockComponent, typeof i113.ColumnMenuStickComponent, typeof i114.ColumnMenuPositionComponent, typeof i103.ColumnMenuChooserComponent, typeof i110.ColumnMenuTemplateDirective, typeof i111.ColumnMenuContainerComponent, typeof i112.ColumnMenuItemDirective, typeof i108.ColumnMenuComponent, typeof i115.ColumnMenuAutoSizeColumnComponent, typeof i116.ColumnMenuAutoSizeAllColumnsComponent, typeof i137.GridClipboardDirective, typeof i141.UndoRedoDirective, typeof i143.UndoCommandToolbarDirective, typeof i144.RedoCommandToolbarDirective, typeof i54.ToolBarComponent, typeof i54.ToolbarCustomMessagesComponent, typeof i54.ToolBarButtonComponent, typeof i54.ToolBarButtonGroupComponent, typeof i54.ToolBarDropDownButtonComponent, typeof i54.ToolBarSeparatorComponent, typeof i54.ToolBarSpacerComponent, typeof i54.ToolBarSplitButtonComponent, typeof i54.ToolBarToolComponent, typeof i53.CustomMessagesComponent, typeof i53.PagerFocusableDirective, typeof i53.PagerInfoComponent, typeof i53.PagerInputComponent, typeof i53.PagerNextButtonsComponent, typeof i53.PagerNumericButtonsComponent, typeof i53.PagerPageSizesComponent, typeof i53.PagerPrevButtonsComponent, typeof i53.PagerTemplateDirective, typeof i53.PagerComponent, typeof i53.PagerSpacerComponent]>;
176
175
  static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
177
176
  }
@@ -36,7 +36,7 @@ export declare class GroupHeaderComponent implements DoCheck {
36
36
  constructor(groupsService: GroupsService, groupInfoService: GroupInfoService, ctx: ContextService);
37
37
  ngDoCheck(): void;
38
38
  prefixGroupCell(item: GroupItem): any[];
39
- toggleGroup(item: GroupItem): boolean;
39
+ toggleGroup(item: GroupItem, event: any): boolean;
40
40
  groupSpan(item: GroupItem): number;
41
41
  logicalColSpan(): number;
42
42
  ariaRole(): string;
package/index.d.ts CHANGED
@@ -167,8 +167,6 @@ export { ColumnInfoService } from './common/column-info.service';
167
167
  export { ScrollBottomEvent } from './scrolling/scroll-bottom-event';
168
168
  export { ContentScrollEvent } from './scrolling/content-scroll-event';
169
169
  export { SuspendService } from './scrolling/suspend.service';
170
- export { GroupBindingDirective, slice, count } from './grouping/group-scroll-binding.directive';
171
- export { VirtualGroupResult } from './grouping/virtual-group-result.interface';
172
170
  export { Skip } from './utils';
173
171
  export { ResizeMode } from './column-resizing/column-resize.interface';
174
172
  export { ColumnResizeArgs } from './column-resizing/column-resize.interface';
@@ -15,7 +15,8 @@ export declare class NavigationMetadata {
15
15
  gridElement: ElementRef;
16
16
  virtualColumns: boolean;
17
17
  columns: any;
18
+ footerRow: number;
18
19
  isStacked: boolean;
19
20
  get maxLogicalRowIndex(): number;
20
- constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, isStacked: boolean);
21
+ constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, footerRow: number, isStacked: boolean);
21
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "19.3.1-develop.4",
3
+ "version": "20.0.0-develop.2",
4
4
  "description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,10 +23,25 @@
23
23
  ],
24
24
  "@progress": {
25
25
  "friendlyName": "Grid",
26
+ "migrations": {
27
+ "options": {
28
+ "parser": "tsx",
29
+ "pattern": "*.{ts,html}"
30
+ },
31
+ "codemods": {
32
+ "20": [
33
+ {
34
+ "description": "The Grid's kendoGridGroupBinding directive is deprecated",
35
+ "file": "codemods/v20/grid-kendogridgroupbinding.js",
36
+ "prompt": "true"
37
+ }
38
+ ]
39
+ }
40
+ },
26
41
  "package": {
27
42
  "productName": "Kendo UI for Angular",
28
43
  "productCode": "KENDOUIANGULAR",
29
- "publishDate": 1755685792,
44
+ "publishDate": 1755782732,
30
45
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
31
46
  }
32
47
  },
@@ -39,29 +54,29 @@
39
54
  "@progress/kendo-data-query": "^1.0.0",
40
55
  "@progress/kendo-drawing": "^1.21.0",
41
56
  "@progress/kendo-licensing": "^1.7.0",
42
- "@progress/kendo-angular-buttons": "19.3.1-develop.4",
43
- "@progress/kendo-angular-common": "19.3.1-develop.4",
44
- "@progress/kendo-angular-dateinputs": "19.3.1-develop.4",
45
- "@progress/kendo-angular-layout": "19.3.1-develop.4",
46
- "@progress/kendo-angular-navigation": "19.3.1-develop.4",
47
- "@progress/kendo-angular-dropdowns": "19.3.1-develop.4",
48
- "@progress/kendo-angular-excel-export": "19.3.1-develop.4",
49
- "@progress/kendo-angular-icons": "19.3.1-develop.4",
50
- "@progress/kendo-angular-inputs": "19.3.1-develop.4",
51
- "@progress/kendo-angular-conversational-ui": "19.3.1-develop.4",
52
- "@progress/kendo-angular-intl": "19.3.1-develop.4",
53
- "@progress/kendo-angular-l10n": "19.3.1-develop.4",
54
- "@progress/kendo-angular-label": "19.3.1-develop.4",
55
- "@progress/kendo-angular-pager": "19.3.1-develop.4",
56
- "@progress/kendo-angular-pdf-export": "19.3.1-develop.4",
57
- "@progress/kendo-angular-popup": "19.3.1-develop.4",
58
- "@progress/kendo-angular-toolbar": "19.3.1-develop.4",
59
- "@progress/kendo-angular-utils": "19.3.1-develop.4",
57
+ "@progress/kendo-angular-buttons": "20.0.0-develop.2",
58
+ "@progress/kendo-angular-common": "20.0.0-develop.2",
59
+ "@progress/kendo-angular-dateinputs": "20.0.0-develop.2",
60
+ "@progress/kendo-angular-layout": "20.0.0-develop.2",
61
+ "@progress/kendo-angular-navigation": "20.0.0-develop.2",
62
+ "@progress/kendo-angular-dropdowns": "20.0.0-develop.2",
63
+ "@progress/kendo-angular-excel-export": "20.0.0-develop.2",
64
+ "@progress/kendo-angular-icons": "20.0.0-develop.2",
65
+ "@progress/kendo-angular-inputs": "20.0.0-develop.2",
66
+ "@progress/kendo-angular-conversational-ui": "20.0.0-develop.2",
67
+ "@progress/kendo-angular-intl": "20.0.0-develop.2",
68
+ "@progress/kendo-angular-l10n": "20.0.0-develop.2",
69
+ "@progress/kendo-angular-label": "20.0.0-develop.2",
70
+ "@progress/kendo-angular-pager": "20.0.0-develop.2",
71
+ "@progress/kendo-angular-pdf-export": "20.0.0-develop.2",
72
+ "@progress/kendo-angular-popup": "20.0.0-develop.2",
73
+ "@progress/kendo-angular-toolbar": "20.0.0-develop.2",
74
+ "@progress/kendo-angular-utils": "20.0.0-develop.2",
60
75
  "rxjs": "^6.5.3 || ^7.0.0"
61
76
  },
62
77
  "dependencies": {
63
78
  "tslib": "^2.3.1",
64
- "@progress/kendo-angular-schematics": "19.3.1-develop.4",
79
+ "@progress/kendo-angular-schematics": "20.0.0-develop.2",
65
80
  "@progress/kendo-common": "^1.0.1",
66
81
  "@progress/kendo-file-saver": "^1.0.0"
67
82
  },
@@ -63,6 +63,7 @@ export declare class PDFComponent extends PDFExportComponent implements OnDestro
63
63
  protected drawSubscription: Subscription;
64
64
  protected renderAllPages: boolean;
65
65
  protected originalColumns: ColumnBase[];
66
+ protected restoreDOMVirtualization: boolean;
66
67
  constructor(pdfService: PDFService, suspendService: SuspendService, ngZone: NgZone, element: ElementRef, ctx: ContextService);
67
68
  ngOnDestroy(): void;
68
69
  /**
@@ -13,6 +13,7 @@ export declare class PDFService {
13
13
  exportClick: EventEmitter<any>;
14
14
  dataChanged: EventEmitter<any>;
15
15
  exporting: boolean;
16
+ restoreDOMVirtualization: EventEmitter<any>;
16
17
  save(component: any): void;
17
18
  draw(component: any, promise: any): void;
18
19
  /**
@@ -4,6 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { OnInit, EventEmitter, ElementRef, OnDestroy, AfterViewInit, AfterViewChecked, SimpleChange, OnChanges, InjectionToken, QueryList, NgZone, Renderer2, TrackByFunction, ChangeDetectorRef, TemplateRef } from '@angular/core';
6
6
  import { Observable } from 'rxjs';
7
+ import { RowHeightService } from '../scrolling/row-height.service';
7
8
  import { ScrollerService, Action } from '../scrolling/scroller.service';
8
9
  import { ScrollRequestService } from '../scrolling/scroll-request.service';
9
10
  import { ColumnBase } from '../columns/column-base';
@@ -40,7 +41,7 @@ export declare const SCROLLER_FACTORY_TOKEN: InjectionToken<string>;
40
41
  /**
41
42
  * @hidden
42
43
  */
43
- export declare function DEFAULT_SCROLLER_FACTORY(observable: Observable<any>): ScrollerService;
44
+ export declare function DEFAULT_SCROLLER_FACTORY(observable: Observable<any>, ctx: ContextService): ScrollerService;
44
45
  /**
45
46
  * @hidden
46
47
  */
@@ -89,9 +90,9 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
89
90
  contentScroll: EventEmitter<any>;
90
91
  pageChange: EventEmitter<Action>;
91
92
  scrollBottom: EventEmitter<void>;
92
- totalHeight: number;
93
93
  columnsStartIdx: number;
94
94
  allItems: any[];
95
+ itemsToRender: any[];
95
96
  get showFooter(): boolean;
96
97
  get totalWidth(): number;
97
98
  container: ElementRef;
@@ -103,7 +104,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
103
104
  private subscriptions;
104
105
  private scrollerSubscription;
105
106
  private dispatcher;
106
- private rowHeightService;
107
+ rowHeightService: RowHeightService;
107
108
  private skipScroll;
108
109
  private rebind;
109
110
  private containerScrollTop;
@@ -111,6 +112,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
111
112
  private columnsEndIdx;
112
113
  private viewportColumnsWidth;
113
114
  private scrollLeft;
115
+ private virtualPageSize;
114
116
  private observer;
115
117
  get lockedLeafColumns(): QueryList<ColumnBase>;
116
118
  get nonLockedLeafColumns(): QueryList<ColumnBase>;
@@ -123,11 +125,15 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
123
125
  private columnUpdateFrame;
124
126
  private hasLockedContainer;
125
127
  private minRowHeight;
128
+ private handleSkipOnData;
129
+ private scrollToIndex;
126
130
  constructor(scrollerFactory: any, detailsService: DetailsService, changeNotification: ChangeNotificationService, suspendService: SuspendService, groupsService: GroupsService, ngZone: NgZone, renderer: Renderer2, scrollSyncService: ScrollSyncService, resizeService: ResizeService, editService: EditService, supportService: BrowserSupportService, navigationService: NavigationService, scrollRequestService: ScrollRequestService, ctx: ContextService, columnResizingService: ColumnResizingService, changeDetector: ChangeDetectorRef, pdfService: PDFService, columnInfo: ColumnInfoService, dataMappingService: DataMappingService);
127
131
  ngOnInit(): void;
128
132
  ngOnChanges(changes: {
129
133
  [propertyName: string]: SimpleChange;
130
134
  }): void;
135
+ private zoneSub;
136
+ private get totalIsAllItems();
131
137
  ngDoCheck(): void;
132
138
  ngAfterViewInit(): void;
133
139
  ngAfterViewChecked(): void;
@@ -142,18 +148,17 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
142
148
  * @hidden
143
149
  */
144
150
  get isStacked(): boolean;
151
+ resetNavigationViewport(): void;
145
152
  private detailExpand;
146
153
  private attachContainerScroll;
147
154
  private createScroller;
148
155
  private scroll;
149
156
  private onContainerScroll;
150
- private handleInitialScrollToSkip;
151
157
  private handleRowSync;
152
158
  private handleRowNavigationLocked;
153
159
  private scrollToVirtualRow;
154
160
  private scrollTo;
155
161
  private scrollToItem;
156
- private resetNavigationViewport;
157
162
  private cleanupScroller;
158
163
  private initResizeService;
159
164
  private syncContainerHeight;
@@ -164,6 +169,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
164
169
  private normalizeScrollLeft;
165
170
  private elementScrollLeft;
166
171
  private calcVirtualPageSize;
172
+ private setScrollerOptions;
167
173
  static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
168
174
  static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-grid-list", never, { "data": { "alias": "data"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "total": { "alias": "total"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "take": { "alias": "take"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "contentScroll": "contentScroll"; "pageChange": "pageChange"; "scrollBottom": "scrollBottom"; }, never, never, true, never>;
169
175
  }
@@ -70,6 +70,8 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges,
70
70
  rowSticky: RowStickyFn;
71
71
  totalColumns: ColumnsContainer;
72
72
  rowClass: RowClassFn;
73
+ rowHeight: number;
74
+ detailRowHeight: number;
73
75
  hostClass: boolean;
74
76
  groupHeaderSlaveCellsCount: number;
75
77
  groupHeaderColumns: any[];
@@ -113,7 +115,6 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges,
113
115
  get allColumnsSpan(): number;
114
116
  get colSpan(): number;
115
117
  get footerColumns(): ColumnBase[];
116
- showGroupHeader(item: any): boolean;
117
118
  addStickyColumnStyles(column: ColumnBase): {
118
119
  [key: string]: any;
119
120
  };
@@ -126,5 +127,5 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges,
126
127
  private eventTarget;
127
128
  private applyStickyRowsStyling;
128
129
  static ɵfac: i0.ɵɵFactoryDeclaration<TableBodyComponent, never>;
129
- static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": { "alias": "columns"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; }, {}, never, never, true, never>;
130
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": { "alias": "columns"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "rowsToRender": { "alias": "rowsToRender"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; }, {}, never, never, true, never>;
130
131
  }
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '19.3.1-develop.4',
8
- '@progress/kendo-angular-navigation': '19.3.1-develop.4',
7
+ '@progress/kendo-angular-treeview': '20.0.0-develop.2',
8
+ '@progress/kendo-angular-navigation': '20.0.0-develop.2',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '19.3.1-develop.4',
10
+ '@progress/kendo-angular-dialog': '20.0.0-develop.2',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^4.0.0',
13
13
  // peer dependency of kendo-angular-layout
14
- '@progress/kendo-angular-progressbar': '19.3.1-develop.4'
14
+ '@progress/kendo-angular-progressbar': '20.0.0-develop.2'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }
@@ -7,17 +7,12 @@
7
7
  */
8
8
  export declare class RowHeightService {
9
9
  private total;
10
- private rowHeight;
11
- private detailRowHeight;
12
10
  private offsets;
13
11
  private heights;
14
- constructor(total: number, rowHeight: number, detailRowHeight: number);
12
+ constructor(total: number, rowHeight: number);
15
13
  height(rowIndex: number): number;
16
- expandDetail(rowIndex: number): void;
17
- collapseDetail(rowIndex: number): void;
18
- isExpanded(rowIndex: number): boolean;
19
14
  index(position: number): number;
20
- offset(rowIndex: number, adjustIndex?: boolean): number;
15
+ offset(rowIndex: number): number;
21
16
  totalHeight(): number;
22
- private updateRowHeight;
17
+ update(startIndex: number, rowHeights: Array<number>): void;
23
18
  }
@@ -2,14 +2,16 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { Observable, Observer } from 'rxjs';
5
+ import { Observable, Observer, BehaviorSubject } from 'rxjs';
6
6
  import { RowHeightService } from './row-height.service';
7
+ import { ContextService } from '../common/provider.service';
7
8
  /**
8
9
  * @hidden
9
10
  */
10
11
  export declare class ScrollAction {
11
12
  offset: number;
12
- constructor(offset: number);
13
+ changeVirtualData?: boolean;
14
+ constructor(offset: number, changeVirtualData?: boolean);
13
15
  }
14
16
  /**
15
17
  * @hidden
@@ -33,17 +35,41 @@ export type Action = ScrollAction | ScrollBottomAction | PageAction;
33
35
  */
34
36
  export declare class ScrollerService {
35
37
  private scrollObservable;
36
- private firstLoaded;
37
- private lastLoaded;
38
- private lastScrollTop;
38
+ private ctx;
39
+ total: number;
40
+ rowHeightService: RowHeightService;
41
+ table: HTMLTableElement | null;
42
+ tableBody: HTMLTableSectionElement | null;
43
+ container: HTMLDivElement | null;
44
+ scrollHeightContainer: HTMLDivElement | null;
45
+ scrollableVirtual: boolean;
46
+ tableTransformOffset: number;
47
+ virtualSkip: number;
48
+ virtualPageSize: number;
49
+ firstToLoad: number;
50
+ lastLoaded: number;
51
+ scrollSyncing: boolean;
39
52
  private take;
40
- private total;
41
- private rowHeightService;
42
53
  private scrollSubscription;
43
54
  private subscription;
44
- constructor(scrollObservable: Observable<any>);
45
- create(rowHeightService: RowHeightService, skip: number, take: number, total: number): Observable<Action>;
55
+ private lastScrollTop;
56
+ private firstLoaded;
57
+ private expandedRows;
58
+ constructor(scrollObservable: Observable<any>, ctx: ContextService);
59
+ create(rowHeightService: RowHeightService, skip: number, take: number, total: number): BehaviorSubject<Action>;
60
+ reset(skipScroll?: boolean): void;
61
+ update(skipAdjust?: boolean): void;
46
62
  destroy(): void;
47
63
  protected onScroll({ scrollTop, offsetHeight, scrollHeight, clientHeight }: any, observer: Observer<Action>): void;
64
+ private loadPage;
48
65
  private unsubscribe;
66
+ private translate;
67
+ adjustScroll(scrollOffset: number, initialAdjust?: boolean): void;
68
+ isExpanded(rowIndex: number): boolean;
69
+ resetVirtualSkip: () => void;
70
+ private setScrollHeightContainerHeight;
71
+ private getItemHeights;
72
+ private getTotalHeight;
73
+ private getExpectedTotalHeight;
74
+ private virtualPageChange;
49
75
  }