@progress/kendo-angular-grid 19.3.0-develop.2 → 19.3.0-develop.20

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 (51) hide show
  1. package/aggregates/status-bar.component.d.ts +1 -0
  2. package/common/provider.service.d.ts +2 -0
  3. package/data/data-mapping.service.d.ts +3 -1
  4. package/directives.d.ts +4 -3
  5. package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1 -2
  6. package/esm2022/aggregates/status-bar.component.mjs +5 -1
  7. package/esm2022/column-menu/column-list.component.mjs +10 -10
  8. package/esm2022/column-menu/column-menu.component.mjs +1 -1
  9. package/esm2022/common/provider.service.mjs +1 -0
  10. package/esm2022/data/data-mapping.service.mjs +14 -3
  11. package/esm2022/directives.mjs +3 -0
  12. package/esm2022/editing/form/form-formfield.component.mjs +2 -2
  13. package/esm2022/editing-directives/in-cell-editing.directive.mjs +1 -0
  14. package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
  15. package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
  16. package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
  17. package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
  18. package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
  19. package/esm2022/filtering/filter-row.component.mjs +1 -1
  20. package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
  21. package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
  22. package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
  23. package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
  24. package/esm2022/filtering/menu/filter-menu.component.mjs +1 -1
  25. package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
  26. package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
  27. package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
  28. package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
  29. package/esm2022/grid.component.mjs +9 -4
  30. package/esm2022/grid.module.mjs +23 -22
  31. package/esm2022/grouping/group-panel.component.mjs +7 -3
  32. package/esm2022/highlight/highlight-item.mjs +5 -0
  33. package/esm2022/highlight/highlight.directive.mjs +132 -0
  34. package/esm2022/index.mjs +1 -0
  35. package/esm2022/package-metadata.mjs +2 -2
  36. package/esm2022/rendering/list.component.mjs +1 -1
  37. package/esm2022/rendering/table-body.component.mjs +8 -4
  38. package/esm2022/selection/pair-set.mjs +87 -10
  39. package/esm2022/utils.mjs +0 -4
  40. package/fesm2022/progress-kendo-angular-grid.mjs +271 -46
  41. package/grid.component.d.ts +4 -0
  42. package/grid.module.d.ts +22 -21
  43. package/highlight/highlight-item.d.ts +17 -0
  44. package/highlight/highlight.directive.d.ts +56 -0
  45. package/index.d.ts +2 -0
  46. package/package.json +21 -21
  47. package/rendering/cell.component.d.ts +2 -2
  48. package/rendering/table-body.component.d.ts +1 -0
  49. package/schematics/ngAdd/index.js +4 -4
  50. package/selection/pair-set.d.ts +36 -8
  51. package/utils.d.ts +0 -4
@@ -13,6 +13,7 @@ export declare class StatusBarComponent {
13
13
  private aggregateService;
14
14
  hostClasses: boolean;
15
15
  get isStatusBarTemplate(): string;
16
+ hostAriaLive: string;
16
17
  statusBarTemplate: StatusBarTemplateDirective;
17
18
  constructor(aggregateService: CellSelectionAggregateService);
18
19
  ngOnInit(): void;
@@ -8,6 +8,7 @@ import type { GridComponent } from '../grid.component';
8
8
  import { GridToolbarNavigationService } from '../rendering/toolbar/toolbar-navigation.service';
9
9
  import type { GroupBindingDirective } from '../grouping/group-scroll-binding.directive';
10
10
  import type { DataBindingDirective } from '../databinding.directive';
11
+ import { HighlightDirective } from '../highlight/highlight.directive';
11
12
  import * as i0 from "@angular/core";
12
13
  /**
13
14
  * @hidden
@@ -26,6 +27,7 @@ export declare class ContextService {
26
27
  bottomToolbarNavigation: GridToolbarNavigationService;
27
28
  navigable: boolean;
28
29
  dataBindingDirective: DataBindingDirective | GroupBindingDirective;
30
+ highlightDirective: HighlightDirective;
29
31
  constructor(renderer: Renderer2, localization: LocalizationService);
30
32
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextService, never>;
31
33
  static ɵprov: i0.ɵɵInjectableDeclaration<ContextService>;
@@ -9,6 +9,7 @@ import { GridItem } from './grid-item.interface';
9
9
  import { DetailsService } from '../rendering/details/details.service';
10
10
  import { ColumnBase } from '../columns/column-base';
11
11
  import { DetailTemplateDirective } from '../rendering/details/detail-template.directive';
12
+ import { ContextService } from '../common/provider.service';
12
13
  import * as i0 from "@angular/core";
13
14
  /**
14
15
  * @hidden
@@ -17,9 +18,10 @@ export declare class DataMappingService {
17
18
  private rowspanService;
18
19
  private groupsService;
19
20
  private detailsService;
21
+ private ctx;
20
22
  private recalculateRowspan;
21
23
  private dataArray;
22
- constructor(rowspanService: RowspanService, groupsService: GroupsService, detailsService: DetailsService);
24
+ constructor(rowspanService: RowspanService, groupsService: GroupsService, detailsService: DetailsService, ctx: ContextService);
23
25
  private isGroup;
24
26
  /**
25
27
  * Maps the data to the Grid row items, applying rowspan and detail row logic.
package/directives.d.ts CHANGED
@@ -150,6 +150,7 @@ import { SaveCommandToolbarDirective } from "./editing/save-command-tool.directi
150
150
  import { RemoveCommandToolbarDirective } from "./editing/remove-command-tool.directive";
151
151
  import { CancelCommandToolbarDirective } from "./editing/cancel-command-tool.directive";
152
152
  import { GroupCommandToolbarDirective } from "./rendering/toolbar/tools/group-command-tool.directive";
153
+ import { HighlightDirective } from "./highlight/highlight.directive";
153
154
  /**
154
155
  * @hidden
155
156
  *
@@ -237,13 +238,13 @@ export declare const KENDO_GRID_BODY_EXPORTS: readonly [typeof CommandColumnComp
237
238
  *
238
239
  * Utility array that contains the Grid module declarations
239
240
  */
240
- export declare const KENDO_GRID_DECLARATIONS: readonly [typeof GridComponent, typeof ListComponent, typeof ToolbarComponent, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof DataBindingDirective, typeof ToolbarTemplateDirective, typeof SelectionDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GroupBindingDirective, typeof GridMarqueeDirective, typeof GridSpacerComponent, typeof GridToolbarFocusableDirective, typeof StatusBarComponent, typeof StatusBarTemplateDirective, typeof GridClipboardDirective, typeof FormComponent, typeof DialogFormComponent, typeof FormFormFieldComponent, typeof UndoRedoDirective];
241
+ export declare const KENDO_GRID_DECLARATIONS: readonly [typeof GridComponent, typeof ListComponent, typeof ToolbarComponent, typeof LocalizedMessagesDirective, typeof CustomMessagesComponent, typeof DataBindingDirective, typeof ToolbarTemplateDirective, typeof SelectionDirective, typeof HighlightDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GroupBindingDirective, typeof GridMarqueeDirective, typeof GridSpacerComponent, typeof GridToolbarFocusableDirective, typeof StatusBarComponent, typeof StatusBarTemplateDirective, typeof GridClipboardDirective, typeof FormComponent, typeof DialogFormComponent, typeof FormFormFieldComponent, typeof UndoRedoDirective];
241
242
  /**
242
243
  * @hidden
243
244
  *
244
245
  * Utility array that contains the Grid module exports
245
246
  */
246
- export declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof CustomMessagesComponent, typeof GroupBindingDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof GroupCommandToolbarDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
247
+ export declare const KENDO_GRID_EXPORTS: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof GroupBindingDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof GroupCommandToolbarDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective];
247
248
  /**
248
249
  * @hidden
249
250
  *
@@ -268,4 +269,4 @@ export declare const KENDO_GRID_PDF_EXPORT: readonly [typeof PDFComponent, typeo
268
269
  * export class AppModule {}
269
270
  * ```
270
271
  */
271
- export declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof CustomMessagesComponent, typeof GroupBindingDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof GroupCommandToolbarDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
272
+ export declare const KENDO_GRID: readonly [typeof GridComponent, typeof ToolbarTemplateDirective, typeof ToolbarComponent, typeof GridSpacerComponent, typeof StatusBarTemplateDirective, typeof DataBindingDirective, typeof SelectionDirective, typeof HighlightDirective, typeof CustomMessagesComponent, typeof GroupBindingDirective, typeof TemplateEditingDirective, typeof ReactiveEditingDirective, typeof InCellEditingDirective, typeof ExternalEditingDirective, typeof ExpandDetailsDirective, typeof ExpandGroupDirective, typeof GridToolbarFocusableDirective, typeof GroupHeaderTemplateDirective, typeof GroupHeaderColumnTemplateDirective, typeof GroupFooterTemplateDirective, typeof GroupHeaderComponent, typeof GroupPanelComponent, typeof ColumnComponent, typeof ColumnGroupComponent, typeof LogicalCellDirective, typeof LogicalRowDirective, typeof FocusableDirective, typeof FooterTemplateDirective, typeof ColGroupComponent, typeof ResizableContainerDirective, typeof TemplateContextDirective, typeof FieldAccessorPipe, typeof DetailTemplateDirective, typeof SpanColumnComponent, typeof LoadingComponent, typeof GridTableDirective, typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof RowDragHandleTemplateDirective, typeof RowDragHintTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof EditCommandToolbarDirective, typeof SaveCommandToolbarDirective, typeof RemoveCommandToolbarDirective, typeof CancelCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, typeof SortCommandToolbarDirective, typeof FilterCommandToolbarDirective, typeof GroupCommandToolbarDirective, typeof HeaderComponent, typeof HeaderTemplateDirective, typeof ColumnHandleDirective, typeof SelectAllCheckboxDirective, typeof FilterRowComponent, typeof FilterCellComponent, typeof FilterCellTemplateDirective, typeof StringFilterCellComponent, typeof NumericFilterCellComponent, typeof AutoCompleteFilterCellComponent, typeof BooleanFilterCellComponent, typeof FilterCellHostDirective, typeof FilterCellWrapperComponent, typeof DateFilterCellComponent, typeof FilterCellOperatorsComponent, typeof ContainsFilterOperatorComponent, typeof DoesNotContainFilterOperatorComponent, typeof EndsWithFilterOperatorComponent, typeof EqualFilterOperatorComponent, typeof IsEmptyFilterOperatorComponent, typeof IsNotEmptyFilterOperatorComponent, typeof IsNotNullFilterOperatorComponent, typeof IsNullFilterOperatorComponent, typeof NotEqualFilterOperatorComponent, typeof StartsWithFilterOperatorComponent, typeof GreaterFilterOperatorComponent, typeof GreaterOrEqualToFilterOperatorComponent, typeof LessFilterOperatorComponent, typeof LessOrEqualToFilterOperatorComponent, typeof AfterFilterOperatorComponent, typeof AfterEqFilterOperatorComponent, typeof BeforeEqFilterOperatorComponent, typeof BeforeFilterOperatorComponent, typeof FilterMenuComponent, typeof FilterMenuContainerComponent, typeof FilterMenuInputWrapperComponent, typeof StringFilterMenuInputComponent, typeof StringFilterMenuComponent, typeof FilterMenuTemplateDirective, typeof NumericFilterMenuComponent, typeof NumericFilterMenuInputComponent, typeof DateFilterMenuInputComponent, typeof DateFilterMenuComponent, typeof FilterMenuHostDirective, typeof BooleanFilterMenuComponent, typeof FilterMenuDropDownListDirective, typeof BooleanFilterRadioButtonDirective, typeof ColumnChooserComponent, typeof ColumnChooserToolbarDirective, typeof ColumnMenuFilterComponent, typeof ColumnMenuItemComponent, typeof ColumnMenuItemContentTemplateDirective, typeof ColumnMenuSortComponent, typeof ColumnMenuLockComponent, typeof ColumnMenuStickComponent, typeof ColumnMenuPositionComponent, typeof ColumnMenuChooserComponent, typeof ColumnMenuTemplateDirective, typeof ColumnMenuContainerComponent, typeof ColumnMenuItemDirective, typeof ColumnMenuComponent, typeof ColumnMenuAutoSizeColumnComponent, typeof ColumnMenuAutoSizeAllColumnsComponent, typeof GridClipboardDirective, typeof UndoRedoDirective, typeof UndoCommandToolbarDirective, typeof RedoCommandToolbarDirective, typeof ExcelComponent, typeof ExcelCommandDirective, typeof ExcelCommandToolbarDirective, typeof ExcelColumnComponent, typeof ExcelColumnGroupComponent, typeof ExcelFooterTemplateDirective, typeof ExcelGroupFooterTemplateDirective, typeof ExcelGroupHeaderColumnTemplateDirective, typeof ExcelGroupHeaderTemplateDirective, typeof PDFComponent, typeof PDFMarginComponent, typeof PDFCommandDirective, typeof PDFTemplateDirective, typeof PDFCommandToolbarDirective];
@@ -26,13 +26,12 @@ import { hasFilter, hasSort, hasLock, hasStick, hasColumnChooser, hasAutoSizeCol
26
26
  import { ColumnMenuService } from '../column-menu/column-menu.service';
27
27
  import { ColumnListComponent } from '../column-menu/column-list.component';
28
28
  import { ContextService } from '../common/provider.service';
29
- import { replaceMessagePlaceholder } from '../utils';
30
29
  import { AdaptiveService } from '@progress/kendo-angular-utils';
31
30
  import { SortService } from '../common/sort.service';
32
31
  import { ColumnInfoService } from '../common/column-info.service';
33
32
  import { normalize } from '../columns/sort-settings';
34
33
  import { directions } from '../rendering/toolbar/tools/sort-toolbar-tool.component';
35
- import { EventsOutsideAngularDirective } from '@progress/kendo-angular-common';
34
+ import { EventsOutsideAngularDirective, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
36
35
  import { FormComponent } from '../editing/form';
37
36
  import { GroupToolbarToolComponent } from '../rendering/toolbar/tools/group-toolbar-tool.component';
38
37
  import * as i0 from "@angular/core";
@@ -17,6 +17,7 @@ export class StatusBarComponent {
17
17
  get isStatusBarTemplate() {
18
18
  return this.statusBarTemplate ? '' : 'none';
19
19
  }
20
+ hostAriaLive = 'polite';
20
21
  statusBarTemplate;
21
22
  constructor(aggregateService) {
22
23
  this.aggregateService = aggregateService;
@@ -28,7 +29,7 @@ export class StatusBarComponent {
28
29
  return this.aggregateService.aggregates;
29
30
  }
30
31
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StatusBarComponent, deps: [{ token: i1.CellSelectionAggregateService }], target: i0.ɵɵFactoryTarget.Component });
31
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate" } }, ngImport: i0, template: `
32
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StatusBarComponent, isStandalone: true, selector: "kendo-grid-status-bar", inputs: { statusBarTemplate: "statusBarTemplate" }, host: { properties: { "class.k-selection-aggregates": "this.hostClasses", "class.k-grid-selection-aggregates": "this.hostClasses", "style.display": "this.isStatusBarTemplate", "attr.aria-live": "this.hostAriaLive" } }, ngImport: i0, template: `
32
33
  <ng-template
33
34
  *ngIf="statusBarTemplate"
34
35
  [ngTemplateOutlet]="statusBarTemplate?.templateRef"
@@ -59,6 +60,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
59
60
  }], isStatusBarTemplate: [{
60
61
  type: HostBinding,
61
62
  args: ['style.display']
63
+ }], hostAriaLive: [{
64
+ type: HostBinding,
65
+ args: ['attr.aria-live']
62
66
  }], statusBarTemplate: [{
63
67
  type: Input
64
68
  }] } });
@@ -12,7 +12,7 @@ import { NgFor, NgIf, NgClass } from '@angular/common';
12
12
  import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
13
13
  import { take } from 'rxjs/operators';
14
14
  import { arrowRotateCcwIcon, checkIcon } from '@progress/kendo-svg-icons';
15
- import { ButtonDirective } from '@progress/kendo-angular-buttons';
15
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
16
16
  import { ContextService } from '../common/provider.service';
17
17
  import { AdaptiveGridService } from '../common/adaptiveness.service';
18
18
  import * as i0 from "@angular/core";
@@ -96,7 +96,7 @@ export class ColumnListComponent {
96
96
  ngAfterViewInit() {
97
97
  this.ngZone.onStable.pipe(take(1)).subscribe(() => {
98
98
  this.listNavigationService.items = this.options.toArray();
99
- if (!this.ctx) {
99
+ if (this.adaptiveGridService?.viewType !== 'columnMenu') {
100
100
  this.listNavigationService.toggle(0, true);
101
101
  }
102
102
  this.updateDisabled();
@@ -280,8 +280,8 @@ export class ColumnListComponent {
280
280
  role="listbox"
281
281
  aria-multiselectable="true"
282
282
  [attr.aria-label]="ariaLabel">
283
- <label
284
- *ngFor="let column of columns; let index = index;"
283
+ <label
284
+ *ngFor="let column of columns; let index = index;"
285
285
  class='k-column-list-item'
286
286
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
287
287
  role="option">
@@ -294,7 +294,7 @@ export class ColumnListComponent {
294
294
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
295
295
  </label>
296
296
  </div>
297
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
297
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
298
298
  <button
299
299
  #applyButton
300
300
  kendoButton
@@ -316,7 +316,7 @@ export class ColumnListComponent {
316
316
  (keydown.enter)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();"
317
317
  (keydown.space)="$event.preventDefault(); $event.stopPropagation(); cancelChanges();">{{ resetText }}</button>
318
318
  </div>
319
- `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: ButtonDirective, 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"] }] });
319
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ColumnMenuChooserItemCheckedDirective, selector: "[kendoColumnMenuChooserItemChecked]", inputs: ["kendoColumnMenuChooserItemChecked"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: 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"] }] });
320
320
  }
321
321
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, decorators: [{
322
322
  type: Component,
@@ -329,8 +329,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
329
329
  role="listbox"
330
330
  aria-multiselectable="true"
331
331
  [attr.aria-label]="ariaLabel">
332
- <label
333
- *ngFor="let column of columns; let index = index;"
332
+ <label
333
+ *ngFor="let column of columns; let index = index;"
334
334
  class='k-column-list-item'
335
335
  [kendoColumnMenuChooserItemChecked]="!column.hidden"
336
336
  role="option">
@@ -343,7 +343,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
343
343
  <span class="k-checkbox-label">{{ column.displayTitle }}</span>
344
344
  </label>
345
345
  </div>
346
- <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
346
+ <div [ngClass]="actionsClass" *ngIf="!autoSync && showActions">
347
347
  <button
348
348
  #applyButton
349
349
  kendoButton
@@ -367,7 +367,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
367
367
  </div>
368
368
  `,
369
369
  standalone: true,
370
- imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonDirective]
370
+ imports: [NgFor, ColumnMenuChooserItemCheckedDirective, NgIf, NgClass, CheckBoxComponent, ButtonComponent]
371
371
  }]
372
372
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1.ColumnListKeyboardNavigation }, { type: i2.AdaptiveGridService, decorators: [{
373
373
  type: Optional
@@ -9,7 +9,6 @@ import { SinglePopupService } from '../common/single-popup.service';
9
9
  import { ColumnMenuService } from './column-menu.service';
10
10
  import { filtersByField } from '../filtering/base-filter-cell.component';
11
11
  import { hasFilter, hasSort, hasLock, hasStick, hasColumnChooser, hasAutoSizeColumn, hasPosition, hasAutoSizeAllColumns } from './utils';
12
- import { replaceMessagePlaceholder } from '../utils';
13
12
  import { ContextService } from '../common/provider.service';
14
13
  import { ColumnMenuErrorMessages } from '../common/error-messages';
15
14
  import { moreVerticalIcon, columnsIcon, filterIcon, slidersIcon } from '@progress/kendo-svg-icons';
@@ -31,6 +30,7 @@ import { ColumnMenuContainerComponent } from './column-menu-container.component'
31
30
  import { NgClass, NgTemplateOutlet, NgIf } from '@angular/common';
32
31
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
33
32
  import { AdaptiveGridService } from '../common/adaptiveness.service';
33
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
34
34
  import * as i0 from "@angular/core";
35
35
  import * as i1 from "./../navigation/navigation.service";
36
36
  import * as i2 from "../common/single-popup.service";
@@ -24,6 +24,7 @@ export class ContextService {
24
24
  bottomToolbarNavigation;
25
25
  navigable;
26
26
  dataBindingDirective;
27
+ highlightDirective;
27
28
  constructor(renderer, localization) {
28
29
  this.renderer = renderer;
29
30
  this.localization = localization;
@@ -6,10 +6,13 @@ import { Injectable } from '@angular/core';
6
6
  import { RowspanService } from '../rendering/rowspan.service';
7
7
  import { GroupsService } from '../grouping/groups.service';
8
8
  import { DetailsService } from '../rendering/details/details.service';
9
+ import { ContextService } from '../common/provider.service';
10
+ import { isPresent } from '@progress/kendo-angular-common';
9
11
  import * as i0 from "@angular/core";
10
12
  import * as i1 from "../rendering/rowspan.service";
11
13
  import * as i2 from "../grouping/groups.service";
12
14
  import * as i3 from "../rendering/details/details.service";
15
+ import * as i4 from "../common/provider.service";
13
16
  /**
14
17
  * @hidden
15
18
  */
@@ -17,12 +20,14 @@ export class DataMappingService {
17
20
  rowspanService;
18
21
  groupsService;
19
22
  detailsService;
23
+ ctx;
20
24
  recalculateRowspan = true;
21
25
  dataArray = null;
22
- constructor(rowspanService, groupsService, detailsService) {
26
+ constructor(rowspanService, groupsService, detailsService, ctx) {
23
27
  this.rowspanService = rowspanService;
24
28
  this.groupsService = groupsService;
25
29
  this.detailsService = detailsService;
30
+ this.ctx = ctx;
26
31
  }
27
32
  isGroup(item) {
28
33
  return item.type === 'group';
@@ -52,8 +57,14 @@ export class DataMappingService {
52
57
  dataItem: item
53
58
  }, column, i, data) : 1;
54
59
  }
60
+ if (isPresent(this.ctx.highlightDirective)) {
61
+ cell.isHighlighted = this.ctx.highlightDirective.isCellHighlighted(item, column, i);
62
+ }
55
63
  item.cells.push(cell);
56
64
  }
65
+ if (isPresent(this.ctx.highlightDirective)) {
66
+ item.isHighlighted = this.ctx.highlightDirective.isRowHighlighted(item);
67
+ }
57
68
  }
58
69
  result.push(item);
59
70
  }
@@ -117,9 +128,9 @@ export class DataMappingService {
117
128
  }
118
129
  return rowspan;
119
130
  }
120
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataMappingService, deps: [{ token: i1.RowspanService }, { token: i2.GroupsService }, { token: i3.DetailsService }], target: i0.ɵɵFactoryTarget.Injectable });
131
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataMappingService, deps: [{ token: i1.RowspanService }, { token: i2.GroupsService }, { token: i3.DetailsService }, { token: i4.ContextService }], target: i0.ɵɵFactoryTarget.Injectable });
121
132
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataMappingService });
122
133
  }
123
134
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataMappingService, decorators: [{
124
135
  type: Injectable
125
- }], ctorParameters: function () { return [{ type: i1.RowspanService }, { type: i2.GroupsService }, { type: i3.DetailsService }]; } });
136
+ }], ctorParameters: function () { return [{ type: i1.RowspanService }, { type: i2.GroupsService }, { type: i3.DetailsService }, { type: i4.ContextService }]; } });
@@ -158,6 +158,7 @@ import { SaveCommandToolbarDirective } from "./editing/save-command-tool.directi
158
158
  import { RemoveCommandToolbarDirective } from "./editing/remove-command-tool.directive";
159
159
  import { CancelCommandToolbarDirective } from "./editing/cancel-command-tool.directive";
160
160
  import { GroupCommandToolbarDirective } from "./rendering/toolbar/tools/group-command-tool.directive";
161
+ import { HighlightDirective } from "./highlight/highlight.directive";
161
162
  /**
162
163
  * @hidden
163
164
  *
@@ -402,6 +403,7 @@ export const KENDO_GRID_DECLARATIONS = [
402
403
  DataBindingDirective,
403
404
  ToolbarTemplateDirective,
404
405
  SelectionDirective,
406
+ HighlightDirective,
405
407
  TemplateEditingDirective,
406
408
  ReactiveEditingDirective,
407
409
  InCellEditingDirective,
@@ -433,6 +435,7 @@ export const KENDO_GRID_EXPORTS = [
433
435
  StatusBarTemplateDirective,
434
436
  DataBindingDirective,
435
437
  SelectionDirective,
438
+ HighlightDirective,
436
439
  CustomMessagesComponent,
437
440
  GroupBindingDirective,
438
441
  TemplateEditingDirective,
@@ -10,7 +10,7 @@ import { KENDO_CHECKBOX, KENDO_FORMFIELD, KENDO_NUMERICTEXTBOX, KENDO_TEXTBOX }
10
10
  import { KENDO_LABELS } from '@progress/kendo-angular-label';
11
11
  import { ReactiveFormsModule } from '@angular/forms';
12
12
  import { LocalizationService } from '@progress/kendo-angular-l10n';
13
- import { replaceMessagePlaceholder } from '../../utils';
13
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
14
14
  import * as i0 from "@angular/core";
15
15
  import * as i1 from "@progress/kendo-angular-l10n";
16
16
  import * as i2 from "@angular/forms";
@@ -89,7 +89,7 @@ export class FormFormFieldComponent {
89
89
  <kendo-formerror *ngFor="let err of control?.formControl?.errors | keyvalue">{{control.errors ? control.errors[err.key] : messageFor('formValidationError', err.key, control.name)}}</kendo-formerror>
90
90
  </ng-container>
91
91
  </kendo-formfield>
92
- `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: i4.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
92
+ `, isInline: true, dependencies: [{ kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: i3.FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: ["labelCssStyle", "labelCssClass", "id", "text", "optional"], outputs: ["positionChange"], exportAs: ["kendoFloatingLabel"] }, { kind: "component", type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors", "colSpan"] }, { kind: "component", type: i4.HintComponent, selector: "kendo-formhint", inputs: ["align"] }, { kind: "component", type: i4.ErrorComponent, selector: "kendo-formerror", inputs: ["align"] }, { kind: "component", type: i4.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "component", type: i4.CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: i5.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "adaptiveTitle", "adaptiveSubtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }] });
93
93
  }
94
94
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFormFieldComponent, decorators: [{
95
95
  type: Component,
@@ -79,6 +79,7 @@ export class InCellEditingDirective extends EditingDirectiveBase {
79
79
  this.editService.assignValues(dataItem, formGroup.value);
80
80
  this.editService.update(dataItem);
81
81
  }
82
+ this.cdr.markForCheck();
82
83
  }
83
84
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InCellEditingDirective, deps: [{ token: i1.GridComponent }, { token: i2.LocalDataChangesService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
84
85
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: InCellEditingDirective, isStandalone: true, selector: "[kendoGridInCellEditing]", inputs: { createFormGroup: ["kendoGridInCellEditing", "createFormGroup"] }, usesInheritance: true, ngImport: i0 });
@@ -5,13 +5,13 @@
5
5
  import { Component, ChangeDetectorRef } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { BooleanFilterComponent } from '../boolean-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FocusableDirective } from '../../navigation/focusable.directive';
12
11
  import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -5,13 +5,13 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { DateFilterComponent } from '../date-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FocusableDirective } from '../../navigation/focusable.directive';
12
11
  import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -4,11 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, Output, EventEmitter, HostBinding, ViewChild } from '@angular/core';
6
6
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
- import { Keys } from '@progress/kendo-angular-common';
7
+ import { Keys, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
8
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
9
9
  import { filterClearIcon, filterIcon } from '@progress/kendo-svg-icons';
10
10
  import { ContextService } from '../../common/provider.service';
11
- import { replaceMessagePlaceholder } from '../../utils';
12
11
  import { ColumnComponent } from '../../columns/column.component';
13
12
  import { FocusableDirective } from '../../navigation/focusable.directive';
14
13
  import { NgIf } from '@angular/common';
@@ -5,13 +5,13 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { NumericFilterComponent } from '../numeric-filter.component';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FilterInputDirective } from '../filter-input.directive';
12
11
  import { FocusableDirective } from '../../navigation/focusable.directive';
13
12
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
14
13
  import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../filter.service";
17
17
  import * as i2 from "../../common/provider.service";
@@ -5,7 +5,6 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { StringFilterComponent } from "../string-filter.component";
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { SizingOptionsService } from '../../layout/sizing-options.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FormsModule } from '@angular/forms';
@@ -13,6 +12,7 @@ import { FilterInputDirective } from '../filter-input.directive';
13
12
  import { FocusableDirective } from '../../navigation/focusable.directive';
14
13
  import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
15
14
  import { TextBoxComponent } from '@progress/kendo-angular-inputs';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../filter.service";
18
18
  import * as i2 from "../../common/provider.service";
@@ -5,11 +5,11 @@
5
5
  import { ColumnInfoService } from './../common/column-info.service';
6
6
  import { Component, Input, HostBinding } from '@angular/core';
7
7
  import { DetailTemplateDirective } from '../rendering/details/detail-template.directive';
8
- import { replaceMessagePlaceholder } from '../utils';
9
8
  import { ContextService } from '../common/provider.service';
10
9
  import { LogicalCellDirective } from '../navigation/logical-cell.directive';
11
10
  import { FilterCellComponent } from './cell/filter-cell.component';
12
11
  import { NgFor, NgIf, NgStyle, NgClass } from '@angular/common';
12
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
13
13
  import * as i0 from "@angular/core";
14
14
  import * as i1 from "../common/provider.service";
15
15
  import * as i2 from "./../common/column-info.service";
@@ -5,9 +5,8 @@
5
5
  import { Component, Input, HostBinding, QueryList, ViewChildren } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { BooleanFilterComponent } from '../boolean-filter.component';
8
- import { guid } from '@progress/kendo-angular-common';
8
+ import { guid, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
9
9
  import { BooleanFilterRadioButtonDirective } from './filter-radio-button.directive';
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { MenuTabbingService } from './menu-tabbing.service';
12
11
  import { ContextService } from '../../common/provider.service';
13
12
  import { NgFor } from '@angular/common';
@@ -9,10 +9,10 @@ import { FilterService } from '../filter.service';
9
9
  import { SinglePopupService } from '../../common/single-popup.service';
10
10
  import { filter } from 'rxjs/operators';
11
11
  import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
12
- import { replaceMessagePlaceholder } from '../../utils';
13
12
  import { ContextService } from '../../common/provider.service';
14
13
  import { FilterInputDirective } from '../filter-input.directive';
15
14
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/single-popup.service";
18
18
  import * as i2 from "../../common/provider.service";
@@ -7,12 +7,12 @@ import { Component, Input, HostBinding } from '@angular/core';
7
7
  import { FilterService } from '../filter.service';
8
8
  import { DateFilterComponent } from '../date-filter.component';
9
9
  import { setFilter, logicOperators } from '../base-filter-cell.component';
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { NgIf } from '@angular/common';
14
13
  import { DateFilterMenuInputComponent } from './date-filter-menu-input.component';
15
14
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/provider.service";
18
18
  /**
@@ -7,11 +7,11 @@ import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { MenuTabbingService } from './menu-tabbing.service';
8
8
  import { FilterService } from '../filter.service';
9
9
  import { FilterInputWrapperComponent } from "../filter-input-wrapper.component";
10
- import { replaceMessagePlaceholder } from '../../utils';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { AdaptiveGridService } from '../../common/adaptiveness.service';
14
13
  import { Subscription } from 'rxjs';
14
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "../../common/provider.service";
17
17
  import * as i2 from "../../common/adaptiveness.service";
@@ -8,13 +8,13 @@ import { FilterService } from "../filter.service";
8
8
  import { ColumnComponent } from '../../columns/column.component';
9
9
  import { SinglePopupService } from '../../common/single-popup.service';
10
10
  import { filtersByField } from '../base-filter-cell.component';
11
- import { replaceMessagePlaceholder } from '../../utils';
12
11
  import { filterIcon } from '@progress/kendo-svg-icons';
13
12
  import { ContextService } from '../../common/provider.service';
14
13
  import { IdService } from '../../common/id.service';
15
14
  import { FilterMenuContainerComponent } from './filter-menu-container.component';
16
15
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
17
16
  import { AdaptiveGridService } from '../../common/adaptiveness.service';
17
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
18
18
  import * as i0 from "@angular/core";
19
19
  import * as i1 from "../filter.service";
20
20
  import * as i2 from "../../common/single-popup.service";
@@ -5,12 +5,12 @@
5
5
  import { Component, Input } from '@angular/core';
6
6
  import { ColumnComponent } from "../../columns/column.component";
7
7
  import { FilterService } from '../filter.service';
8
- import { replaceMessagePlaceholder } from '../../utils';
9
8
  import { MenuTabbingService } from './menu-tabbing.service';
10
9
  import { ContextService } from '../../common/provider.service';
11
10
  import { FilterInputDirective } from '../filter-input.directive';
12
11
  import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
13
12
  import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
13
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
14
14
  import * as i0 from "@angular/core";
15
15
  import * as i1 from "../../common/provider.service";
16
16
  /**
@@ -6,13 +6,13 @@ import { Component, Input, HostBinding } from '@angular/core';
6
6
  import { FilterService } from '../filter.service';
7
7
  import { NumericFilterComponent } from '../numeric-filter.component';
8
8
  import { setFilter, logicOperators } from '../base-filter-cell.component';
9
- import { replaceMessagePlaceholder } from '../../utils';
10
9
  import { MenuTabbingService } from './menu-tabbing.service';
11
10
  import { ContextService } from '../../common/provider.service';
12
11
  import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
13
12
  import { NgIf } from '@angular/common';
14
13
  import { NumericFilterMenuInputComponent } from './numeric-filter-menu-input.component';
15
14
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
15
+ import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
16
16
  import * as i0 from "@angular/core";
17
17
  import * as i1 from "../../common/provider.service";
18
18
  /**