@progress/kendo-angular-grid 18.0.0-develop.2 → 18.0.0-develop.4
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.
- package/columns/reorder-column.component.d.ts +20 -1
- package/directives.d.ts +5 -3
- package/esm2022/columns/reorder-column.component.mjs +32 -2
- package/esm2022/directives.mjs +4 -0
- package/esm2022/grid.component.mjs +27 -3
- package/esm2022/grid.module.mjs +104 -102
- package/esm2022/index.mjs +2 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/cell.component.mjs +17 -2
- package/esm2022/row-reordering/drag-handle-template.directive.mjs +45 -0
- package/esm2022/row-reordering/drag-hint-template.directive.mjs +44 -0
- package/esm2022/row-reordering/row-reorder.service.mjs +3 -0
- package/fesm2022/progress-kendo-angular-grid.mjs +172 -21
- package/grid.component.d.ts +8 -0
- package/grid.module.d.ts +104 -102
- package/index.d.ts +2 -0
- package/package.json +18 -18
- package/rendering/cell.component.d.ts +2 -0
- package/row-reordering/drag-handle-template.directive.d.ts +34 -0
- package/row-reordering/drag-hint-template.directive.d.ts +33 -0
- package/row-reordering/row-reorder.service.d.ts +1 -0
- package/schematics/ngAdd/index.js +4 -4
|
@@ -2,9 +2,12 @@
|
|
|
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 { QueryList, TemplateRef } from '@angular/core';
|
|
5
6
|
import { ColumnBase } from './column-base';
|
|
6
7
|
import { IdService } from '../common/id.service';
|
|
7
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
|
+
import { RowDragHandleTemplateDirective } from '../row-reordering/drag-handle-template.directive';
|
|
10
|
+
import { RowDragHintTemplateDirective } from '../row-reordering/drag-hint-template.directive';
|
|
8
11
|
import * as i0 from "@angular/core";
|
|
9
12
|
/**
|
|
10
13
|
* Represents the drag handle for reordering rows in the Grid ([see example](slug:reordering_rows_grid))
|
|
@@ -21,11 +24,27 @@ export declare class RowReorderColumnComponent extends ColumnBase {
|
|
|
21
24
|
* @hidden
|
|
22
25
|
*/
|
|
23
26
|
dragHandleSVGIcon: SVGIcon;
|
|
27
|
+
/**
|
|
28
|
+
* @hidden
|
|
29
|
+
*/
|
|
30
|
+
dragHandleTemplate: QueryList<RowDragHandleTemplateDirective>;
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
dragHintTemplate: QueryList<RowDragHintTemplateDirective>;
|
|
24
35
|
/**
|
|
25
36
|
* @hidden
|
|
26
37
|
*/
|
|
27
38
|
readonly isRowReorderColumn: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* @hidden
|
|
41
|
+
*/
|
|
42
|
+
get rowDragHandleTemplateRef(): TemplateRef<any>;
|
|
43
|
+
/**
|
|
44
|
+
* @hidden
|
|
45
|
+
*/
|
|
46
|
+
get rowDragHintTemplateRef(): TemplateRef<any>;
|
|
28
47
|
constructor(parent?: ColumnBase, idService?: IdService);
|
|
29
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowReorderColumnComponent, [{ optional: true; host: true; skipSelf: true; }, { optional: true; }]>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RowReorderColumnComponent, "kendo-grid-rowreorder-column", never, { "dragHandleIcon": { "alias": "dragHandleIcon"; "required": false; }; "dragHandleSVGIcon": { "alias": "dragHandleSVGIcon"; "required": false; }; }, {},
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowReorderColumnComponent, "kendo-grid-rowreorder-column", never, { "dragHandleIcon": { "alias": "dragHandleIcon"; "required": false; }; "dragHandleSVGIcon": { "alias": "dragHandleSVGIcon"; "required": false; }; }, {}, ["dragHandleTemplate", "dragHintTemplate"], never, true, never>;
|
|
31
50
|
}
|
package/directives.d.ts
CHANGED
|
@@ -135,6 +135,8 @@ import { TemplateContextDirective } from "@progress/kendo-angular-common";
|
|
|
135
135
|
import { PDFCommandToolbarDirective } from "./pdf/pdf-command-tool.directive";
|
|
136
136
|
import { ExcelCommandToolbarDirective } from "./excel/excel-command-tool.directive";
|
|
137
137
|
import { AddCommandToolbarDirective } from "./editing/add-command-tool.directive";
|
|
138
|
+
import { RowDragHandleTemplateDirective } from "./row-reordering/drag-handle-template.directive";
|
|
139
|
+
import { RowDragHintTemplateDirective } from "./row-reordering/drag-hint-template.directive";
|
|
138
140
|
/**
|
|
139
141
|
* @hidden
|
|
140
142
|
*
|
|
@@ -216,7 +218,7 @@ export declare const KENDO_GRID_FOOTER_EXPORTS: readonly [typeof FooterComponent
|
|
|
216
218
|
*
|
|
217
219
|
* Utility array that contains the Body module exports
|
|
218
220
|
*/
|
|
219
|
-
export declare const KENDO_GRID_BODY_EXPORTS: readonly [typeof CommandColumnComponent, typeof CheckboxColumnComponent, typeof SelectionCheckboxDirective, typeof CellTemplateDirective, typeof EditTemplateDirective, typeof TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent];
|
|
221
|
+
export declare const KENDO_GRID_BODY_EXPORTS: readonly [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 CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent];
|
|
220
222
|
/**
|
|
221
223
|
* @hidden
|
|
222
224
|
*
|
|
@@ -228,7 +230,7 @@ export declare const KENDO_GRID_DECLARATIONS: readonly [typeof GridComponent, ty
|
|
|
228
230
|
*
|
|
229
231
|
* Utility array that contains the Grid module exports
|
|
230
232
|
*/
|
|
231
|
-
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 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 TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, 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 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];
|
|
233
|
+
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 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 CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, 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 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];
|
|
232
234
|
/**
|
|
233
235
|
* @hidden
|
|
234
236
|
*
|
|
@@ -244,4 +246,4 @@ export declare const KENDO_GRID_PDF_EXPORT: readonly [typeof PDFComponent, typeo
|
|
|
244
246
|
/**
|
|
245
247
|
* Utility array that contains all `Grid` related components and directives
|
|
246
248
|
*/
|
|
247
|
-
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 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 TableBodyComponent, typeof NoRecordsTemplateDirective, typeof CellComponent, typeof EditCommandDirective, typeof CancelCommandDirective, typeof SaveCommandDirective, typeof RemoveCommandDirective, typeof AddCommandDirective, typeof AddCommandToolbarDirective, typeof CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, 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 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 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];
|
|
249
|
+
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 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 CellLoadingTemplateDirective, typeof LoadingTemplateDirective, typeof RowReorderColumnComponent, 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 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 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];
|
|
@@ -2,9 +2,11 @@
|
|
|
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 { Component, forwardRef, SkipSelf, Host, Optional, Input } from '@angular/core';
|
|
5
|
+
import { Component, forwardRef, SkipSelf, Host, Optional, Input, ContentChildren, QueryList } from '@angular/core';
|
|
6
6
|
import { ColumnBase } from './column-base';
|
|
7
7
|
import { IdService } from '../common/id.service';
|
|
8
|
+
import { RowDragHandleTemplateDirective } from '../row-reordering/drag-handle-template.directive';
|
|
9
|
+
import { RowDragHintTemplateDirective } from '../row-reordering/drag-hint-template.directive';
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
11
|
import * as i1 from "./column-base";
|
|
10
12
|
import * as i2 from "../common/id.service";
|
|
@@ -23,10 +25,32 @@ export class RowReorderColumnComponent extends ColumnBase {
|
|
|
23
25
|
* @hidden
|
|
24
26
|
*/
|
|
25
27
|
dragHandleSVGIcon;
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
dragHandleTemplate = new QueryList();
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*/
|
|
35
|
+
dragHintTemplate = new QueryList();
|
|
26
36
|
/**
|
|
27
37
|
* @hidden
|
|
28
38
|
*/
|
|
29
39
|
isRowReorderColumn = true;
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
get rowDragHandleTemplateRef() {
|
|
44
|
+
const rowTemplate = this.dragHandleTemplate.first;
|
|
45
|
+
return rowTemplate ? rowTemplate.templateRef : undefined;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* @hidden
|
|
49
|
+
*/
|
|
50
|
+
get rowDragHintTemplateRef() {
|
|
51
|
+
const rowTemplate = this.dragHintTemplate.first;
|
|
52
|
+
return rowTemplate ? rowTemplate.templateRef : undefined;
|
|
53
|
+
}
|
|
30
54
|
constructor(parent, idService) {
|
|
31
55
|
super(parent, idService);
|
|
32
56
|
this.parent = parent;
|
|
@@ -37,7 +61,7 @@ export class RowReorderColumnComponent extends ColumnBase {
|
|
|
37
61
|
provide: ColumnBase,
|
|
38
62
|
useExisting: forwardRef(() => RowReorderColumnComponent)
|
|
39
63
|
}
|
|
40
|
-
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
64
|
+
], queries: [{ propertyName: "dragHandleTemplate", predicate: RowDragHandleTemplateDirective }, { propertyName: "dragHintTemplate", predicate: RowDragHintTemplateDirective }], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
41
65
|
}
|
|
42
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RowReorderColumnComponent, decorators: [{
|
|
43
67
|
type: Component,
|
|
@@ -64,4 +88,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
64
88
|
type: Input
|
|
65
89
|
}], dragHandleSVGIcon: [{
|
|
66
90
|
type: Input
|
|
91
|
+
}], dragHandleTemplate: [{
|
|
92
|
+
type: ContentChildren,
|
|
93
|
+
args: [RowDragHandleTemplateDirective, { descendants: false }]
|
|
94
|
+
}], dragHintTemplate: [{
|
|
95
|
+
type: ContentChildren,
|
|
96
|
+
args: [RowDragHintTemplateDirective, { descendants: false }]
|
|
67
97
|
}] } });
|
package/esm2022/directives.mjs
CHANGED
|
@@ -143,6 +143,8 @@ import { TemplateContextDirective } from "@progress/kendo-angular-common";
|
|
|
143
143
|
import { PDFCommandToolbarDirective } from "./pdf/pdf-command-tool.directive";
|
|
144
144
|
import { ExcelCommandToolbarDirective } from "./excel/excel-command-tool.directive";
|
|
145
145
|
import { AddCommandToolbarDirective } from "./editing/add-command-tool.directive";
|
|
146
|
+
import { RowDragHandleTemplateDirective } from "./row-reordering/drag-handle-template.directive";
|
|
147
|
+
import { RowDragHintTemplateDirective } from "./row-reordering/drag-hint-template.directive";
|
|
146
148
|
/**
|
|
147
149
|
* @hidden
|
|
148
150
|
*
|
|
@@ -349,6 +351,8 @@ export const KENDO_GRID_BODY_EXPORTS = [
|
|
|
349
351
|
SelectionCheckboxDirective,
|
|
350
352
|
CellTemplateDirective,
|
|
351
353
|
EditTemplateDirective,
|
|
354
|
+
RowDragHandleTemplateDirective,
|
|
355
|
+
RowDragHintTemplateDirective,
|
|
352
356
|
TableBodyComponent,
|
|
353
357
|
NoRecordsTemplateDirective,
|
|
354
358
|
CellComponent,
|
|
@@ -200,6 +200,28 @@ export class GridComponent {
|
|
|
200
200
|
get hintText() {
|
|
201
201
|
return this.rowReorderService.getDefaultHintText(this.columnList, this.flatData);
|
|
202
202
|
}
|
|
203
|
+
/**
|
|
204
|
+
* @hidden
|
|
205
|
+
*/
|
|
206
|
+
get customHintTemplate() {
|
|
207
|
+
if (this.rowReorderable) {
|
|
208
|
+
const allColumns = this.columnList.toArray();
|
|
209
|
+
const rowReorderColumn = allColumns.find(column => column.isRowReorderColumn);
|
|
210
|
+
return rowReorderColumn.rowDragHintTemplateRef;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* @hidden
|
|
215
|
+
*/
|
|
216
|
+
get hintContext() {
|
|
217
|
+
if (this.customHintTemplate) {
|
|
218
|
+
const draggedRow = this.rowReorderService?.getDraggedRow(this.flatData);
|
|
219
|
+
return {
|
|
220
|
+
$implicit: draggedRow?.dataItem,
|
|
221
|
+
rowIndex: draggedRow?.rowIndex
|
|
222
|
+
};
|
|
223
|
+
}
|
|
224
|
+
}
|
|
203
225
|
/**
|
|
204
226
|
* Defines the page size used by the Grid pager.
|
|
205
227
|
* Required by the [paging]({% slug paging_grid %}) functionality.
|
|
@@ -2511,7 +2533,8 @@ export class GridComponent {
|
|
|
2511
2533
|
[dragTargetFilter]="getDefaultSelectors('dragTarget')"
|
|
2512
2534
|
[dropTargetFilter]="getDefaultSelectors('dropTarget')"
|
|
2513
2535
|
[dragHandle]="getDefaultSelectors('handle')"
|
|
2514
|
-
[hint]="{hintTemplate: defaultHint}"
|
|
2536
|
+
[hint]="{hintTemplate: customHintTemplate || defaultHint}"
|
|
2537
|
+
[hintContext]="hintContext"
|
|
2515
2538
|
(onPress)="handleReorderEvents($event, 'press')"
|
|
2516
2539
|
(onDragStart)="handleReorderEvents($event, 'dragStart')"
|
|
2517
2540
|
(onDrag)="handleReorderEvents($event, 'drag')"
|
|
@@ -2843,7 +2866,7 @@ export class GridComponent {
|
|
|
2843
2866
|
</kendo-pager-info>
|
|
2844
2867
|
</ng-template>
|
|
2845
2868
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
2846
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: GridToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: HeaderComponent, selector: "[kendoGridHeader]", inputs: ["totalColumnLevels", "columns", "groups", "detailTemplate", "scrollable", "filterable", "sort", "filter", "sortable", "groupable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns", "tabIndex", "size"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-grid-list", inputs: ["data", "groups", "total", "rowHeight", "stickyRowHeight", "detailRowHeight", "take", "skip", "columns", "detailTemplate", "noRecordsTemplate", "selectable", "groupable", "filterable", "rowClass", "rowSticky", "loading", "trackBy", "virtualColumns", "isVirtual", "cellLoadingTemplate", "loadingTemplate", "sort", "size"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode", "cursorStyle"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: GridMarqueeDirective, selector: "[kendoGridSelectionMarquee]" }, { kind: "component", type: FooterComponent, selector: "[kendoGridFooter]", inputs: ["columns", "groups", "detailTemplate", "scrollable", "lockedColumnsCount", "logicalRowIndex", "totalColumns"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "data", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "showGroupFooters", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoGridLoading]", inputs: ["loadingTemplate"] }, { kind: "component", type: StatusBarComponent, selector: "kendo-grid-status-bar", inputs: ["statusBarTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "component", type: i25.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i25.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i25.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["size"] }, { kind: "component", type: i25.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i25.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i25.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["pageSizes", "size"] }, { kind: "component", type: i25.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i25.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i25.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2869
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoGridLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: GridToolbarComponent, selector: "kendo-grid-toolbar", inputs: ["position", "size", "navigable"] }, { kind: "component", type: GroupPanelComponent, selector: "kendo-grid-group-panel", inputs: ["text", "navigable", "groups"], outputs: ["change"] }, { kind: "directive", type: TableDirective, selector: "[kendoGridResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "directive", type: GridTableDirective, selector: "[kendoGridTable]", inputs: ["size"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoGridColGroup]", inputs: ["columns", "groups", "detailTemplate", "sort"] }, { kind: "component", type: HeaderComponent, selector: "[kendoGridHeader]", inputs: ["totalColumnLevels", "columns", "groups", "detailTemplate", "scrollable", "filterable", "sort", "filter", "sortable", "groupable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns", "tabIndex", "size"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoGridResizableContainer]", inputs: ["lockedWidth", "kendoGridResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-grid-list", inputs: ["data", "groups", "total", "rowHeight", "stickyRowHeight", "detailRowHeight", "take", "skip", "columns", "detailTemplate", "noRecordsTemplate", "selectable", "groupable", "filterable", "rowClass", "rowSticky", "loading", "trackBy", "virtualColumns", "isVirtual", "cellLoadingTemplate", "loadingTemplate", "sort", "size"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode", "cursorStyle", "hintContext"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: GridMarqueeDirective, selector: "[kendoGridSelectionMarquee]" }, { kind: "component", type: FooterComponent, selector: "[kendoGridFooter]", inputs: ["columns", "groups", "detailTemplate", "scrollable", "lockedColumnsCount", "logicalRowIndex", "totalColumns"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoGridTableBody]", inputs: ["columns", "allColumns", "groups", "detailTemplate", "noRecordsTemplate", "data", "skip", "selectable", "filterable", "noRecordsText", "isLocked", "isLoading", "isVirtual", "cellLoadingTemplate", "skipGroupDecoration", "showGroupFooters", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "trackBy", "rowSticky", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoGridLoading]", inputs: ["loadingTemplate"] }, { kind: "component", type: StatusBarComponent, selector: "kendo-grid-status-bar", inputs: ["statusBarTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "component", type: i25.CustomMessagesComponent, selector: "kendo-datapager-messages, kendo-pager-messages" }, { kind: "component", type: i25.PagerInfoComponent, selector: "kendo-datapager-info, kendo-pager-info" }, { kind: "component", type: i25.PagerInputComponent, selector: "kendo-datapager-input, kendo-pager-input", inputs: ["size"] }, { kind: "component", type: i25.PagerNextButtonsComponent, selector: "kendo-datapager-next-buttons, kendo-pager-next-buttons", inputs: ["size"] }, { kind: "component", type: i25.PagerNumericButtonsComponent, selector: "kendo-datapager-numeric-buttons, kendo-pager-numeric-buttons", inputs: ["buttonCount", "size"] }, { kind: "component", type: i25.PagerPageSizesComponent, selector: "kendo-datapager-page-sizes, kendo-pager-page-sizes", inputs: ["pageSizes", "size"] }, { kind: "component", type: i25.PagerPrevButtonsComponent, selector: "kendo-datapager-prev-buttons, kendo-pager-prev-buttons", inputs: ["size"] }, { kind: "directive", type: i25.PagerTemplateDirective, selector: "[kendoDataPagerTemplate], [kendoPagerTemplate]" }, { kind: "component", type: i25.PagerComponent, selector: "kendo-datapager, kendo-pager", inputs: ["externalTemplate", "total", "skip", "pageSize", "buttonCount", "info", "type", "pageSizeValues", "previousNext", "navigable", "size", "responsive"], outputs: ["pageChange", "pageSizeChange"], exportAs: ["kendoDataPager", "kendoPager"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2847
2870
|
}
|
|
2848
2871
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridComponent, decorators: [{
|
|
2849
2872
|
type: Component,
|
|
@@ -3218,7 +3241,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3218
3241
|
[dragTargetFilter]="getDefaultSelectors('dragTarget')"
|
|
3219
3242
|
[dropTargetFilter]="getDefaultSelectors('dropTarget')"
|
|
3220
3243
|
[dragHandle]="getDefaultSelectors('handle')"
|
|
3221
|
-
[hint]="{hintTemplate: defaultHint}"
|
|
3244
|
+
[hint]="{hintTemplate: customHintTemplate || defaultHint}"
|
|
3245
|
+
[hintContext]="hintContext"
|
|
3222
3246
|
(onPress)="handleReorderEvents($event, 'press')"
|
|
3223
3247
|
(onDragStart)="handleReorderEvents($event, 'dragStart')"
|
|
3224
3248
|
(onDrag)="handleReorderEvents($event, 'drag')"
|
package/esm2022/grid.module.mjs
CHANGED
|
@@ -37,106 +37,108 @@ import * as i21 from "./columns/checkbox-column.component";
|
|
|
37
37
|
import * as i22 from "./selection/selection-checkbox.directive";
|
|
38
38
|
import * as i23 from "./rendering/cell-template.directive";
|
|
39
39
|
import * as i24 from "./editing/edit-template.directive";
|
|
40
|
-
import * as i25 from "./
|
|
41
|
-
import * as i26 from "./
|
|
42
|
-
import * as i27 from "./rendering/
|
|
43
|
-
import * as i28 from "./
|
|
44
|
-
import * as i29 from "./
|
|
45
|
-
import * as i30 from "./editing/
|
|
46
|
-
import * as i31 from "./editing/
|
|
47
|
-
import * as i32 from "./editing/
|
|
48
|
-
import * as i33 from "./editing/
|
|
49
|
-
import * as i34 from "./
|
|
50
|
-
import * as i35 from "./
|
|
51
|
-
import * as i36 from "./
|
|
52
|
-
import * as i37 from "./rendering/
|
|
53
|
-
import * as i38 from "./
|
|
54
|
-
import * as i39 from "./
|
|
55
|
-
import * as i40 from "./
|
|
56
|
-
import * as i41 from "./
|
|
57
|
-
import * as i42 from "
|
|
58
|
-
import * as i43 from "
|
|
59
|
-
import * as i44 from "
|
|
60
|
-
import * as i45 from "
|
|
61
|
-
import * as i46 from "./filtering/
|
|
62
|
-
import * as i47 from "./filtering/cell/
|
|
63
|
-
import * as i48 from "./filtering/cell/
|
|
64
|
-
import * as i49 from "./filtering/cell/
|
|
65
|
-
import * as i50 from "./filtering/cell/
|
|
66
|
-
import * as i51 from "./filtering/cell/filter-cell
|
|
67
|
-
import * as i52 from "./filtering/cell/filter-cell
|
|
68
|
-
import * as i53 from "./filtering/cell/
|
|
69
|
-
import * as i54 from "./filtering/cell/filter-cell-
|
|
70
|
-
import * as i55 from "./filtering/
|
|
71
|
-
import * as i56 from "./filtering/
|
|
72
|
-
import * as i57 from "./filtering/operators/
|
|
73
|
-
import * as i58 from "./filtering/operators/
|
|
74
|
-
import * as i59 from "./filtering/operators/
|
|
75
|
-
import * as i60 from "./filtering/operators/
|
|
76
|
-
import * as i61 from "./filtering/operators/is-
|
|
77
|
-
import * as i62 from "./filtering/operators/
|
|
78
|
-
import * as i63 from "./filtering/operators/
|
|
79
|
-
import * as i64 from "./filtering/operators/
|
|
80
|
-
import * as i65 from "./filtering/operators/
|
|
81
|
-
import * as i66 from "./filtering/operators/
|
|
82
|
-
import * as i67 from "./filtering/operators/
|
|
83
|
-
import * as i68 from "./filtering/operators/
|
|
84
|
-
import * as i69 from "./filtering/operators/
|
|
85
|
-
import * as i70 from "./filtering/operators/
|
|
86
|
-
import * as i71 from "./filtering/operators/
|
|
87
|
-
import * as i72 from "./filtering/operators/
|
|
88
|
-
import * as i73 from "./filtering/filter-
|
|
89
|
-
import * as i74 from "./filtering/
|
|
90
|
-
import * as i75 from "./filtering/
|
|
91
|
-
import * as i76 from "./filtering/menu/filter-menu
|
|
92
|
-
import * as i77 from "./filtering/menu/
|
|
93
|
-
import * as i78 from "./filtering/menu/
|
|
94
|
-
import * as i79 from "./filtering/menu/filter-menu-
|
|
95
|
-
import * as i80 from "./filtering/menu/
|
|
96
|
-
import * as i81 from "./filtering/menu/
|
|
97
|
-
import * as i82 from "./filtering/menu/
|
|
98
|
-
import * as i83 from "./filtering/menu/
|
|
99
|
-
import * as i84 from "./filtering/menu/filter-menu-
|
|
100
|
-
import * as i85 from "./filtering/menu/
|
|
101
|
-
import * as i86 from "./filtering/menu/filter-menu-
|
|
102
|
-
import * as i87 from "./filtering/menu/filter-
|
|
103
|
-
import * as i88 from "./
|
|
104
|
-
import * as i89 from "./
|
|
105
|
-
import * as i90 from "./column-menu/column-chooser.
|
|
106
|
-
import * as i91 from "./column-menu/column-
|
|
107
|
-
import * as i92 from "./column-menu/column-
|
|
108
|
-
import * as i93 from "./column-menu/column-menu-
|
|
109
|
-
import * as i94 from "./column-menu/column-menu-
|
|
110
|
-
import * as i95 from "./column-menu/column-menu-
|
|
111
|
-
import * as i96 from "./column-menu/column-menu.
|
|
112
|
-
import * as i97 from "./column-menu/column-menu-
|
|
113
|
-
import * as i98 from "./column-menu/column-menu
|
|
114
|
-
import * as i99 from "./column-menu/column-menu-
|
|
115
|
-
import * as i100 from "./column-menu/column-menu-
|
|
116
|
-
import * as i101 from "./column-menu/column-menu-
|
|
117
|
-
import * as i102 from "./column-menu/column-menu-
|
|
118
|
-
import * as i103 from "./column-menu/column-menu-
|
|
119
|
-
import * as i104 from "./column-menu/column-menu-
|
|
120
|
-
import * as i105 from "./
|
|
121
|
-
import * as i106 from "./
|
|
122
|
-
import * as i107 from "./
|
|
123
|
-
import * as i108 from "./
|
|
124
|
-
import * as i109 from "./
|
|
125
|
-
import * as i110 from "./
|
|
126
|
-
import * as i111 from "./
|
|
127
|
-
import * as i112 from "./
|
|
128
|
-
import * as i113 from "./
|
|
129
|
-
import * as i114 from "./
|
|
130
|
-
import * as i115 from "./editing-directives/
|
|
131
|
-
import * as i116 from "./
|
|
132
|
-
import * as i117 from "./
|
|
133
|
-
import * as i118 from "./
|
|
134
|
-
import * as i119 from "./
|
|
135
|
-
import * as i120 from "./
|
|
136
|
-
import * as i121 from "./
|
|
137
|
-
import * as i122 from "./
|
|
138
|
-
import * as i123 from "./
|
|
139
|
-
import * as i124 from "./
|
|
40
|
+
import * as i25 from "./row-reordering/drag-handle-template.directive";
|
|
41
|
+
import * as i26 from "./row-reordering/drag-hint-template.directive";
|
|
42
|
+
import * as i27 from "./rendering/table-body.component";
|
|
43
|
+
import * as i28 from "./rendering/no-records-template.directive";
|
|
44
|
+
import * as i29 from "./rendering/cell.component";
|
|
45
|
+
import * as i30 from "./editing/edit-command.directive";
|
|
46
|
+
import * as i31 from "./editing/cancel-command.directive";
|
|
47
|
+
import * as i32 from "./editing/save-command.directive";
|
|
48
|
+
import * as i33 from "./editing/remove-command.directive";
|
|
49
|
+
import * as i34 from "./editing/add-command.directive";
|
|
50
|
+
import * as i35 from "./editing/add-command-tool.directive";
|
|
51
|
+
import * as i36 from "./rendering/cell-loading.template.directive";
|
|
52
|
+
import * as i37 from "./rendering/loading-template.directive";
|
|
53
|
+
import * as i38 from "./columns/reorder-column.component";
|
|
54
|
+
import * as i39 from "./rendering/header/header.component";
|
|
55
|
+
import * as i40 from "./rendering/header/header-template.directive";
|
|
56
|
+
import * as i41 from "./column-resizing/column-handle.directive";
|
|
57
|
+
import * as i42 from "./selection/selectall-checkbox.directive";
|
|
58
|
+
import * as i43 from "./rendering/footer/footer.component";
|
|
59
|
+
import * as i44 from "@progress/kendo-angular-pager";
|
|
60
|
+
import * as i45 from "@progress/kendo-angular-toolbar";
|
|
61
|
+
import * as i46 from "./filtering/filter-row.component";
|
|
62
|
+
import * as i47 from "./filtering/cell/filter-cell.component";
|
|
63
|
+
import * as i48 from "./filtering/cell/filter-cell-template.directive";
|
|
64
|
+
import * as i49 from "./filtering/cell/string-filter-cell.component";
|
|
65
|
+
import * as i50 from "./filtering/cell/numeric-filter-cell.component";
|
|
66
|
+
import * as i51 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
67
|
+
import * as i52 from "./filtering/cell/boolean-filter-cell.component";
|
|
68
|
+
import * as i53 from "./filtering/cell/filter-cell-host.directive";
|
|
69
|
+
import * as i54 from "./filtering/cell/filter-cell-wrapper.component";
|
|
70
|
+
import * as i55 from "./filtering/cell/date-filter-cell.component";
|
|
71
|
+
import * as i56 from "./filtering/cell/filter-cell-operators.component";
|
|
72
|
+
import * as i57 from "./filtering/operators/contains-filter-operator.component";
|
|
73
|
+
import * as i58 from "./filtering/operators/not-contains-filter-operator.component";
|
|
74
|
+
import * as i59 from "./filtering/operators/ends-with-filter-operator.component";
|
|
75
|
+
import * as i60 from "./filtering/operators/eq-filter-operator.component";
|
|
76
|
+
import * as i61 from "./filtering/operators/is-empty-filter-operator.component";
|
|
77
|
+
import * as i62 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
78
|
+
import * as i63 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
79
|
+
import * as i64 from "./filtering/operators/isnull-filter-operator.component";
|
|
80
|
+
import * as i65 from "./filtering/operators/neq-filter-operator.component";
|
|
81
|
+
import * as i66 from "./filtering/operators/starts-with-filter-operator.component";
|
|
82
|
+
import * as i67 from "./filtering/operators/gt-filter-operator.component";
|
|
83
|
+
import * as i68 from "./filtering/operators/gte-filter-operator.component";
|
|
84
|
+
import * as i69 from "./filtering/operators/lt-filter-operator.component";
|
|
85
|
+
import * as i70 from "./filtering/operators/lte-filter-operator.component";
|
|
86
|
+
import * as i71 from "./filtering/operators/after-filter-operator.component";
|
|
87
|
+
import * as i72 from "./filtering/operators/after-eq-filter-operator.component";
|
|
88
|
+
import * as i73 from "./filtering/operators/before-eq-filter-operator.component";
|
|
89
|
+
import * as i74 from "./filtering/operators/before-filter-operator.component";
|
|
90
|
+
import * as i75 from "./filtering/filter-input.directive";
|
|
91
|
+
import * as i76 from "./filtering/menu/filter-menu.component";
|
|
92
|
+
import * as i77 from "./filtering/menu/filter-menu-container.component";
|
|
93
|
+
import * as i78 from "./filtering/menu/filter-menu-input-wrapper.component";
|
|
94
|
+
import * as i79 from "./filtering/menu/string-filter-menu-input.component";
|
|
95
|
+
import * as i80 from "./filtering/menu/string-filter-menu.component";
|
|
96
|
+
import * as i81 from "./filtering/menu/filter-menu-template.directive";
|
|
97
|
+
import * as i82 from "./filtering/menu/numeric-filter-menu.component";
|
|
98
|
+
import * as i83 from "./filtering/menu/numeric-filter-menu-input.component";
|
|
99
|
+
import * as i84 from "./filtering/menu/date-filter-menu-input.component";
|
|
100
|
+
import * as i85 from "./filtering/menu/date-filter-menu.component";
|
|
101
|
+
import * as i86 from "./filtering/menu/filter-menu-host.directive";
|
|
102
|
+
import * as i87 from "./filtering/menu/boolean-filter-menu.component";
|
|
103
|
+
import * as i88 from "./filtering/menu/filter-menu-dropdownlist.directive";
|
|
104
|
+
import * as i89 from "./filtering/menu/filter-radio-button.directive";
|
|
105
|
+
import * as i90 from "./column-menu/column-chooser-item-checked.directive";
|
|
106
|
+
import * as i91 from "./column-menu/column-list.component";
|
|
107
|
+
import * as i92 from "./column-menu/column-chooser.component";
|
|
108
|
+
import * as i93 from "./column-menu/column-menu-chooser.component";
|
|
109
|
+
import * as i94 from "./column-menu/column-menu-filter.component";
|
|
110
|
+
import * as i95 from "./column-menu/column-menu-item.component";
|
|
111
|
+
import * as i96 from "./column-menu/column-menu-item-content-template.directive";
|
|
112
|
+
import * as i97 from "./column-menu/column-menu-sort.component";
|
|
113
|
+
import * as i98 from "./column-menu/column-menu.component";
|
|
114
|
+
import * as i99 from "./column-menu/column-menu-lock.component";
|
|
115
|
+
import * as i100 from "./column-menu/column-menu-template.directive";
|
|
116
|
+
import * as i101 from "./column-menu/column-menu-container.component";
|
|
117
|
+
import * as i102 from "./column-menu/column-menu-item.directive";
|
|
118
|
+
import * as i103 from "./column-menu/column-menu-stick.component";
|
|
119
|
+
import * as i104 from "./column-menu/column-menu-position.component";
|
|
120
|
+
import * as i105 from "./column-menu/column-menu-autosize.component";
|
|
121
|
+
import * as i106 from "./column-menu/column-menu-autosize-all.component";
|
|
122
|
+
import * as i107 from "./grid.component";
|
|
123
|
+
import * as i108 from "./rendering/list.component";
|
|
124
|
+
import * as i109 from "./rendering/toolbar/toolbar.component";
|
|
125
|
+
import * as i110 from "./localization/localized-messages.directive";
|
|
126
|
+
import * as i111 from "./localization/custom-messages.component";
|
|
127
|
+
import * as i112 from "./databinding.directive";
|
|
128
|
+
import * as i113 from "./rendering/toolbar/toolbar-template.directive";
|
|
129
|
+
import * as i114 from "./selection/selection.directive";
|
|
130
|
+
import * as i115 from "./editing-directives/template-editing.directive";
|
|
131
|
+
import * as i116 from "./editing-directives/reactive-editing.directive";
|
|
132
|
+
import * as i117 from "./editing-directives/in-cell-editing.directive";
|
|
133
|
+
import * as i118 from "./rendering/details-expand.directive";
|
|
134
|
+
import * as i119 from "./rendering/groups-expand.directive";
|
|
135
|
+
import * as i120 from "./grouping/group-scroll-binding.directive";
|
|
136
|
+
import * as i121 from "./selection/marquee.directive";
|
|
137
|
+
import * as i122 from "./rendering/common/spacer.component";
|
|
138
|
+
import * as i123 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
139
|
+
import * as i124 from "./aggregates/status-bar.component";
|
|
140
|
+
import * as i125 from "./aggregates/status-bar-template.directive";
|
|
141
|
+
import * as i126 from "./common/clipboard.directive";
|
|
140
142
|
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
141
143
|
/**
|
|
142
144
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -161,7 +163,7 @@ import * as i124 from "./common/clipboard.directive";
|
|
|
161
163
|
*/
|
|
162
164
|
export class GridModule {
|
|
163
165
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
164
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GridModule, imports: [i1.GroupHeaderTemplateDirective, i2.GroupHeaderColumnTemplateDirective, i3.GroupFooterTemplateDirective, i4.GroupHeaderComponent, i5.GroupPanelComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i20.CommandColumnComponent, i21.CheckboxColumnComponent, i22.SelectionCheckboxDirective, i23.CellTemplateDirective, i24.EditTemplateDirective, i25.TableBodyComponent, i26.NoRecordsTemplateDirective, i27.CellComponent, i28.EditCommandDirective, i29.CancelCommandDirective, i30.SaveCommandDirective, i31.RemoveCommandDirective, i32.AddCommandDirective, i33.AddCommandToolbarDirective, i34.CellLoadingTemplateDirective, i35.LoadingTemplateDirective, i36.RowReorderColumnComponent, i37.HeaderComponent, i38.HeaderTemplateDirective, i39.ColumnHandleDirective, i40.SelectAllCheckboxDirective, i41.FooterComponent, i42.CustomMessagesComponent, i42.PagerFocusableDirective, i42.PagerInfoComponent, i42.PagerInputComponent, i42.PagerNextButtonsComponent, i42.PagerNumericButtonsComponent, i42.PagerPageSizesComponent, i42.PagerPrevButtonsComponent, i42.PagerTemplateDirective, i42.PagerComponent, i42.PagerSpacerComponent, i43.ToolBarComponent, i43.ToolbarCustomMessagesComponent, i43.ToolBarButtonComponent, i43.ToolBarButtonGroupComponent, i43.ToolBarDropDownButtonComponent, i43.ToolBarSeparatorComponent, i43.ToolBarSpacerComponent, i43.ToolBarSplitButtonComponent, i43.ToolBarToolComponent, i44.FilterRowComponent, i45.FilterCellComponent, i46.FilterCellTemplateDirective, i47.StringFilterCellComponent, i48.NumericFilterCellComponent, i49.AutoCompleteFilterCellComponent, i50.BooleanFilterCellComponent, i51.FilterCellHostDirective, i52.FilterCellWrapperComponent, i53.DateFilterCellComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i54.FilterCellOperatorsComponent, i55.ContainsFilterOperatorComponent, i56.DoesNotContainFilterOperatorComponent, i57.EndsWithFilterOperatorComponent, i58.EqualFilterOperatorComponent, i59.IsEmptyFilterOperatorComponent, i60.IsNotEmptyFilterOperatorComponent, i61.IsNotNullFilterOperatorComponent, i62.IsNullFilterOperatorComponent, i63.NotEqualFilterOperatorComponent, i64.StartsWithFilterOperatorComponent, i65.GreaterFilterOperatorComponent, i66.GreaterOrEqualToFilterOperatorComponent, i67.LessFilterOperatorComponent, i68.LessOrEqualToFilterOperatorComponent, i69.AfterFilterOperatorComponent, i70.AfterEqFilterOperatorComponent, i71.BeforeEqFilterOperatorComponent, i72.BeforeFilterOperatorComponent, i73.FilterInputDirective, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i54.FilterCellOperatorsComponent, i55.ContainsFilterOperatorComponent, i56.DoesNotContainFilterOperatorComponent, i57.EndsWithFilterOperatorComponent, i58.EqualFilterOperatorComponent, i59.IsEmptyFilterOperatorComponent, i60.IsNotEmptyFilterOperatorComponent, i61.IsNotNullFilterOperatorComponent, i62.IsNullFilterOperatorComponent, i63.NotEqualFilterOperatorComponent, i64.StartsWithFilterOperatorComponent, i65.GreaterFilterOperatorComponent, i66.GreaterOrEqualToFilterOperatorComponent, i67.LessFilterOperatorComponent, i68.LessOrEqualToFilterOperatorComponent, i69.AfterFilterOperatorComponent, i70.AfterEqFilterOperatorComponent, i71.BeforeEqFilterOperatorComponent, i72.BeforeFilterOperatorComponent, i73.FilterInputDirective, i74.FilterMenuComponent, i75.FilterMenuContainerComponent, i76.FilterMenuInputWrapperComponent, i77.StringFilterMenuInputComponent, i78.StringFilterMenuComponent, i79.FilterMenuTemplateDirective, i80.NumericFilterMenuComponent, i81.NumericFilterMenuInputComponent, i82.DateFilterMenuInputComponent, i83.DateFilterMenuComponent, i84.FilterMenuHostDirective, i85.BooleanFilterMenuComponent, i86.FilterMenuDropDownListDirective, i87.BooleanFilterRadioButtonDirective, i88.ColumnMenuChooserItemCheckedDirective, i89.ColumnListComponent, i90.ColumnChooserComponent, i91.ColumnMenuChooserComponent, i92.ColumnMenuFilterComponent, i93.ColumnMenuItemComponent, i94.ColumnMenuItemContentTemplateDirective, i95.ColumnMenuSortComponent, i96.ColumnMenuComponent, i97.ColumnMenuLockComponent, i98.ColumnMenuTemplateDirective, i99.ColumnMenuContainerComponent, i100.ColumnMenuItemDirective, i101.ColumnMenuStickComponent, i102.ColumnMenuPositionComponent, i103.ColumnMenuAutoSizeColumnComponent, i104.ColumnMenuAutoSizeAllColumnsComponent, i105.GridComponent, i106.ListComponent, i107.ToolbarComponent, i108.LocalizedMessagesDirective, i109.CustomMessagesComponent, i110.DataBindingDirective, i111.ToolbarTemplateDirective, i112.SelectionDirective, i113.TemplateEditingDirective, i114.ReactiveEditingDirective, i115.InCellEditingDirective, i116.ExpandDetailsDirective, i117.ExpandGroupDirective, i118.GroupBindingDirective, i119.GridMarqueeDirective, i120.GridSpacerComponent, i121.GridToolbarFocusableDirective, i122.StatusBarComponent, i123.StatusBarTemplateDirective, i124.GridClipboardDirective, i43.ToolBarComponent, i43.ToolbarCustomMessagesComponent, i43.ToolBarButtonComponent, i43.ToolBarButtonGroupComponent, i43.ToolBarDropDownButtonComponent, i43.ToolBarSeparatorComponent, i43.ToolBarSpacerComponent, i43.ToolBarSplitButtonComponent, i43.ToolBarToolComponent, TableDirective], exports: [i105.GridComponent, i111.ToolbarTemplateDirective, i107.ToolbarComponent, i120.GridSpacerComponent, i123.StatusBarTemplateDirective, i110.DataBindingDirective, i112.SelectionDirective, i109.CustomMessagesComponent, i118.GroupBindingDirective, i113.TemplateEditingDirective, i114.ReactiveEditingDirective, i115.InCellEditingDirective, i116.ExpandDetailsDirective, i117.ExpandGroupDirective, i121.GridToolbarFocusableDirective, i1.GroupHeaderTemplateDirective, i2.GroupHeaderColumnTemplateDirective, i3.GroupFooterTemplateDirective, i4.GroupHeaderComponent, i5.GroupPanelComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i20.CommandColumnComponent, i21.CheckboxColumnComponent, i22.SelectionCheckboxDirective, i23.CellTemplateDirective, i24.EditTemplateDirective, i25.TableBodyComponent, i26.NoRecordsTemplateDirective, i27.CellComponent, i28.EditCommandDirective, i29.CancelCommandDirective, i30.SaveCommandDirective, i31.RemoveCommandDirective, i32.AddCommandDirective, i33.AddCommandToolbarDirective, i34.CellLoadingTemplateDirective, i35.LoadingTemplateDirective, i36.RowReorderColumnComponent, i37.HeaderComponent, i38.HeaderTemplateDirective, i39.ColumnHandleDirective, i40.SelectAllCheckboxDirective, i44.FilterRowComponent, i45.FilterCellComponent, i46.FilterCellTemplateDirective, i47.StringFilterCellComponent, i48.NumericFilterCellComponent, i49.AutoCompleteFilterCellComponent, i50.BooleanFilterCellComponent, i51.FilterCellHostDirective, i52.FilterCellWrapperComponent, i53.DateFilterCellComponent, i54.FilterCellOperatorsComponent, i55.ContainsFilterOperatorComponent, i56.DoesNotContainFilterOperatorComponent, i57.EndsWithFilterOperatorComponent, i58.EqualFilterOperatorComponent, i59.IsEmptyFilterOperatorComponent, i60.IsNotEmptyFilterOperatorComponent, i61.IsNotNullFilterOperatorComponent, i62.IsNullFilterOperatorComponent, i63.NotEqualFilterOperatorComponent, i64.StartsWithFilterOperatorComponent, i65.GreaterFilterOperatorComponent, i66.GreaterOrEqualToFilterOperatorComponent, i67.LessFilterOperatorComponent, i68.LessOrEqualToFilterOperatorComponent, i69.AfterFilterOperatorComponent, i70.AfterEqFilterOperatorComponent, i71.BeforeEqFilterOperatorComponent, i72.BeforeFilterOperatorComponent, i74.FilterMenuComponent, i75.FilterMenuContainerComponent, i76.FilterMenuInputWrapperComponent, i77.StringFilterMenuInputComponent, i78.StringFilterMenuComponent, i79.FilterMenuTemplateDirective, i80.NumericFilterMenuComponent, i81.NumericFilterMenuInputComponent, i82.DateFilterMenuInputComponent, i83.DateFilterMenuComponent, i84.FilterMenuHostDirective, i85.BooleanFilterMenuComponent, i86.FilterMenuDropDownListDirective, i87.BooleanFilterRadioButtonDirective, i90.ColumnChooserComponent, i92.ColumnMenuFilterComponent, i93.ColumnMenuItemComponent, i94.ColumnMenuItemContentTemplateDirective, i95.ColumnMenuSortComponent, i97.ColumnMenuLockComponent, i101.ColumnMenuStickComponent, i102.ColumnMenuPositionComponent, i91.ColumnMenuChooserComponent, i98.ColumnMenuTemplateDirective, i99.ColumnMenuContainerComponent, i100.ColumnMenuItemDirective, i96.ColumnMenuComponent, i103.ColumnMenuAutoSizeColumnComponent, i104.ColumnMenuAutoSizeAllColumnsComponent, i124.GridClipboardDirective, i43.ToolBarComponent, i43.ToolbarCustomMessagesComponent, i43.ToolBarButtonComponent, i43.ToolBarButtonGroupComponent, i43.ToolBarDropDownButtonComponent, i43.ToolBarSeparatorComponent, i43.ToolBarSpacerComponent, i43.ToolBarSplitButtonComponent, i43.ToolBarToolComponent, i42.CustomMessagesComponent, i42.PagerFocusableDirective, i42.PagerInfoComponent, i42.PagerInputComponent, i42.PagerNextButtonsComponent, i42.PagerNumericButtonsComponent, i42.PagerPageSizesComponent, i42.PagerPrevButtonsComponent, i42.PagerTemplateDirective, i42.PagerComponent, i42.PagerSpacerComponent] });
|
|
166
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GridModule, imports: [i1.GroupHeaderTemplateDirective, i2.GroupHeaderColumnTemplateDirective, i3.GroupFooterTemplateDirective, i4.GroupHeaderComponent, i5.GroupPanelComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i20.CommandColumnComponent, i21.CheckboxColumnComponent, i22.SelectionCheckboxDirective, i23.CellTemplateDirective, i24.EditTemplateDirective, i25.RowDragHandleTemplateDirective, i26.RowDragHintTemplateDirective, i27.TableBodyComponent, i28.NoRecordsTemplateDirective, i29.CellComponent, i30.EditCommandDirective, i31.CancelCommandDirective, i32.SaveCommandDirective, i33.RemoveCommandDirective, i34.AddCommandDirective, i35.AddCommandToolbarDirective, i36.CellLoadingTemplateDirective, i37.LoadingTemplateDirective, i38.RowReorderColumnComponent, i39.HeaderComponent, i40.HeaderTemplateDirective, i41.ColumnHandleDirective, i42.SelectAllCheckboxDirective, i43.FooterComponent, i44.CustomMessagesComponent, i44.PagerFocusableDirective, i44.PagerInfoComponent, i44.PagerInputComponent, i44.PagerNextButtonsComponent, i44.PagerNumericButtonsComponent, i44.PagerPageSizesComponent, i44.PagerPrevButtonsComponent, i44.PagerTemplateDirective, i44.PagerComponent, i44.PagerSpacerComponent, i45.ToolBarComponent, i45.ToolbarCustomMessagesComponent, i45.ToolBarButtonComponent, i45.ToolBarButtonGroupComponent, i45.ToolBarDropDownButtonComponent, i45.ToolBarSeparatorComponent, i45.ToolBarSpacerComponent, i45.ToolBarSplitButtonComponent, i45.ToolBarToolComponent, i46.FilterRowComponent, i47.FilterCellComponent, i48.FilterCellTemplateDirective, i49.StringFilterCellComponent, i50.NumericFilterCellComponent, i51.AutoCompleteFilterCellComponent, i52.BooleanFilterCellComponent, i53.FilterCellHostDirective, i54.FilterCellWrapperComponent, i55.DateFilterCellComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i56.FilterCellOperatorsComponent, i57.ContainsFilterOperatorComponent, i58.DoesNotContainFilterOperatorComponent, i59.EndsWithFilterOperatorComponent, i60.EqualFilterOperatorComponent, i61.IsEmptyFilterOperatorComponent, i62.IsNotEmptyFilterOperatorComponent, i63.IsNotNullFilterOperatorComponent, i64.IsNullFilterOperatorComponent, i65.NotEqualFilterOperatorComponent, i66.StartsWithFilterOperatorComponent, i67.GreaterFilterOperatorComponent, i68.GreaterOrEqualToFilterOperatorComponent, i69.LessFilterOperatorComponent, i70.LessOrEqualToFilterOperatorComponent, i71.AfterFilterOperatorComponent, i72.AfterEqFilterOperatorComponent, i73.BeforeEqFilterOperatorComponent, i74.BeforeFilterOperatorComponent, i75.FilterInputDirective, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i56.FilterCellOperatorsComponent, i57.ContainsFilterOperatorComponent, i58.DoesNotContainFilterOperatorComponent, i59.EndsWithFilterOperatorComponent, i60.EqualFilterOperatorComponent, i61.IsEmptyFilterOperatorComponent, i62.IsNotEmptyFilterOperatorComponent, i63.IsNotNullFilterOperatorComponent, i64.IsNullFilterOperatorComponent, i65.NotEqualFilterOperatorComponent, i66.StartsWithFilterOperatorComponent, i67.GreaterFilterOperatorComponent, i68.GreaterOrEqualToFilterOperatorComponent, i69.LessFilterOperatorComponent, i70.LessOrEqualToFilterOperatorComponent, i71.AfterFilterOperatorComponent, i72.AfterEqFilterOperatorComponent, i73.BeforeEqFilterOperatorComponent, i74.BeforeFilterOperatorComponent, i75.FilterInputDirective, i76.FilterMenuComponent, i77.FilterMenuContainerComponent, i78.FilterMenuInputWrapperComponent, i79.StringFilterMenuInputComponent, i80.StringFilterMenuComponent, i81.FilterMenuTemplateDirective, i82.NumericFilterMenuComponent, i83.NumericFilterMenuInputComponent, i84.DateFilterMenuInputComponent, i85.DateFilterMenuComponent, i86.FilterMenuHostDirective, i87.BooleanFilterMenuComponent, i88.FilterMenuDropDownListDirective, i89.BooleanFilterRadioButtonDirective, i90.ColumnMenuChooserItemCheckedDirective, i91.ColumnListComponent, i92.ColumnChooserComponent, i93.ColumnMenuChooserComponent, i94.ColumnMenuFilterComponent, i95.ColumnMenuItemComponent, i96.ColumnMenuItemContentTemplateDirective, i97.ColumnMenuSortComponent, i98.ColumnMenuComponent, i99.ColumnMenuLockComponent, i100.ColumnMenuTemplateDirective, i101.ColumnMenuContainerComponent, i102.ColumnMenuItemDirective, i103.ColumnMenuStickComponent, i104.ColumnMenuPositionComponent, i105.ColumnMenuAutoSizeColumnComponent, i106.ColumnMenuAutoSizeAllColumnsComponent, i107.GridComponent, i108.ListComponent, i109.ToolbarComponent, i110.LocalizedMessagesDirective, i111.CustomMessagesComponent, i112.DataBindingDirective, i113.ToolbarTemplateDirective, i114.SelectionDirective, i115.TemplateEditingDirective, i116.ReactiveEditingDirective, i117.InCellEditingDirective, i118.ExpandDetailsDirective, i119.ExpandGroupDirective, i120.GroupBindingDirective, i121.GridMarqueeDirective, i122.GridSpacerComponent, i123.GridToolbarFocusableDirective, i124.StatusBarComponent, i125.StatusBarTemplateDirective, i126.GridClipboardDirective, i45.ToolBarComponent, i45.ToolbarCustomMessagesComponent, i45.ToolBarButtonComponent, i45.ToolBarButtonGroupComponent, i45.ToolBarDropDownButtonComponent, i45.ToolBarSeparatorComponent, i45.ToolBarSpacerComponent, i45.ToolBarSplitButtonComponent, i45.ToolBarToolComponent, TableDirective], exports: [i107.GridComponent, i113.ToolbarTemplateDirective, i109.ToolbarComponent, i122.GridSpacerComponent, i125.StatusBarTemplateDirective, i112.DataBindingDirective, i114.SelectionDirective, i111.CustomMessagesComponent, i120.GroupBindingDirective, i115.TemplateEditingDirective, i116.ReactiveEditingDirective, i117.InCellEditingDirective, i118.ExpandDetailsDirective, i119.ExpandGroupDirective, i123.GridToolbarFocusableDirective, i1.GroupHeaderTemplateDirective, i2.GroupHeaderColumnTemplateDirective, i3.GroupFooterTemplateDirective, i4.GroupHeaderComponent, i5.GroupPanelComponent, i6.ColumnComponent, i7.ColumnGroupComponent, i8.LogicalCellDirective, i9.LogicalRowDirective, i10.FocusableDirective, i11.FooterTemplateDirective, i12.ColGroupComponent, i13.ResizableContainerDirective, i14.TemplateContextDirective, i15.FieldAccessorPipe, i16.DetailTemplateDirective, i17.SpanColumnComponent, i18.LoadingComponent, i19.GridTableDirective, i20.CommandColumnComponent, i21.CheckboxColumnComponent, i22.SelectionCheckboxDirective, i23.CellTemplateDirective, i24.EditTemplateDirective, i25.RowDragHandleTemplateDirective, i26.RowDragHintTemplateDirective, i27.TableBodyComponent, i28.NoRecordsTemplateDirective, i29.CellComponent, i30.EditCommandDirective, i31.CancelCommandDirective, i32.SaveCommandDirective, i33.RemoveCommandDirective, i34.AddCommandDirective, i35.AddCommandToolbarDirective, i36.CellLoadingTemplateDirective, i37.LoadingTemplateDirective, i38.RowReorderColumnComponent, i39.HeaderComponent, i40.HeaderTemplateDirective, i41.ColumnHandleDirective, i42.SelectAllCheckboxDirective, i46.FilterRowComponent, i47.FilterCellComponent, i48.FilterCellTemplateDirective, i49.StringFilterCellComponent, i50.NumericFilterCellComponent, i51.AutoCompleteFilterCellComponent, i52.BooleanFilterCellComponent, i53.FilterCellHostDirective, i54.FilterCellWrapperComponent, i55.DateFilterCellComponent, i56.FilterCellOperatorsComponent, i57.ContainsFilterOperatorComponent, i58.DoesNotContainFilterOperatorComponent, i59.EndsWithFilterOperatorComponent, i60.EqualFilterOperatorComponent, i61.IsEmptyFilterOperatorComponent, i62.IsNotEmptyFilterOperatorComponent, i63.IsNotNullFilterOperatorComponent, i64.IsNullFilterOperatorComponent, i65.NotEqualFilterOperatorComponent, i66.StartsWithFilterOperatorComponent, i67.GreaterFilterOperatorComponent, i68.GreaterOrEqualToFilterOperatorComponent, i69.LessFilterOperatorComponent, i70.LessOrEqualToFilterOperatorComponent, i71.AfterFilterOperatorComponent, i72.AfterEqFilterOperatorComponent, i73.BeforeEqFilterOperatorComponent, i74.BeforeFilterOperatorComponent, i76.FilterMenuComponent, i77.FilterMenuContainerComponent, i78.FilterMenuInputWrapperComponent, i79.StringFilterMenuInputComponent, i80.StringFilterMenuComponent, i81.FilterMenuTemplateDirective, i82.NumericFilterMenuComponent, i83.NumericFilterMenuInputComponent, i84.DateFilterMenuInputComponent, i85.DateFilterMenuComponent, i86.FilterMenuHostDirective, i87.BooleanFilterMenuComponent, i88.FilterMenuDropDownListDirective, i89.BooleanFilterRadioButtonDirective, i92.ColumnChooserComponent, i94.ColumnMenuFilterComponent, i95.ColumnMenuItemComponent, i96.ColumnMenuItemContentTemplateDirective, i97.ColumnMenuSortComponent, i99.ColumnMenuLockComponent, i103.ColumnMenuStickComponent, i104.ColumnMenuPositionComponent, i93.ColumnMenuChooserComponent, i100.ColumnMenuTemplateDirective, i101.ColumnMenuContainerComponent, i102.ColumnMenuItemDirective, i98.ColumnMenuComponent, i105.ColumnMenuAutoSizeColumnComponent, i106.ColumnMenuAutoSizeAllColumnsComponent, i126.GridClipboardDirective, i45.ToolBarComponent, i45.ToolbarCustomMessagesComponent, i45.ToolBarButtonComponent, i45.ToolBarButtonGroupComponent, i45.ToolBarDropDownButtonComponent, i45.ToolBarSeparatorComponent, i45.ToolBarSpacerComponent, i45.ToolBarSplitButtonComponent, i45.ToolBarToolComponent, i44.CustomMessagesComponent, i44.PagerFocusableDirective, i44.PagerInfoComponent, i44.PagerInputComponent, i44.PagerNextButtonsComponent, i44.PagerNumericButtonsComponent, i44.PagerPageSizesComponent, i44.PagerPrevButtonsComponent, i44.PagerTemplateDirective, i44.PagerComponent, i44.PagerSpacerComponent] });
|
|
165
167
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, providers: [
|
|
166
168
|
PopupService,
|
|
167
169
|
ResizeBatchService,
|
|
@@ -176,7 +178,7 @@ export class GridModule {
|
|
|
176
178
|
MonthViewService,
|
|
177
179
|
YearViewService,
|
|
178
180
|
NavigationService
|
|
179
|
-
], imports: [i4.GroupHeaderComponent, i5.GroupPanelComponent,
|
|
181
|
+
], imports: [i4.GroupHeaderComponent, i5.GroupPanelComponent, i27.TableBodyComponent, i29.CellComponent, i30.EditCommandDirective, i31.CancelCommandDirective, i32.SaveCommandDirective, i33.RemoveCommandDirective, i34.AddCommandDirective, i39.HeaderComponent, i44.CustomMessagesComponent, i44.PagerInfoComponent, i44.PagerInputComponent, i44.PagerNextButtonsComponent, i44.PagerNumericButtonsComponent, i44.PagerPageSizesComponent, i44.PagerPrevButtonsComponent, i44.PagerComponent, i44.PagerSpacerComponent, i45.ToolBarComponent, i45.ToolbarCustomMessagesComponent, i45.ToolBarButtonComponent, i45.ToolBarButtonGroupComponent, i45.ToolBarDropDownButtonComponent, i45.ToolBarSeparatorComponent, i45.ToolBarSpacerComponent, i45.ToolBarSplitButtonComponent, i49.StringFilterCellComponent, i50.NumericFilterCellComponent, i51.AutoCompleteFilterCellComponent, i52.BooleanFilterCellComponent, i54.FilterCellWrapperComponent, i55.DateFilterCellComponent, i56.FilterCellOperatorsComponent, i56.FilterCellOperatorsComponent, i76.FilterMenuComponent, i77.FilterMenuContainerComponent, i78.FilterMenuInputWrapperComponent, i79.StringFilterMenuInputComponent, i80.StringFilterMenuComponent, i82.NumericFilterMenuComponent, i83.NumericFilterMenuInputComponent, i84.DateFilterMenuInputComponent, i85.DateFilterMenuComponent, i87.BooleanFilterMenuComponent, i91.ColumnListComponent, i92.ColumnChooserComponent, i93.ColumnMenuChooserComponent, i94.ColumnMenuFilterComponent, i95.ColumnMenuItemComponent, i97.ColumnMenuSortComponent, i98.ColumnMenuComponent, i99.ColumnMenuLockComponent, i103.ColumnMenuStickComponent, i104.ColumnMenuPositionComponent, i105.ColumnMenuAutoSizeColumnComponent, i106.ColumnMenuAutoSizeAllColumnsComponent, i107.GridComponent, i108.ListComponent, i45.ToolBarComponent, i45.ToolbarCustomMessagesComponent, i45.ToolBarButtonComponent, i45.ToolBarButtonGroupComponent, i45.ToolBarDropDownButtonComponent, i45.ToolBarSeparatorComponent, i45.ToolBarSpacerComponent, i45.ToolBarSplitButtonComponent] });
|
|
180
182
|
}
|
|
181
183
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GridModule, decorators: [{
|
|
182
184
|
type: NgModule,
|
package/esm2022/index.mjs
CHANGED
|
@@ -13,6 +13,8 @@ export { SpanColumnComponent } from './columns/span-column.component';
|
|
|
13
13
|
export { ColumnGroupComponent } from './columns/column-group.component';
|
|
14
14
|
export { CheckboxColumnComponent } from './columns/checkbox-column.component';
|
|
15
15
|
export { RowReorderColumnComponent } from './columns/reorder-column.component';
|
|
16
|
+
export { RowDragHandleTemplateDirective } from './row-reordering/drag-handle-template.directive';
|
|
17
|
+
export { RowDragHintTemplateDirective } from './row-reordering/drag-hint-template.directive';
|
|
16
18
|
export { ToolbarComponent } from './rendering/toolbar/toolbar.component';
|
|
17
19
|
export { ToolbarTemplateDirective } from './rendering/toolbar/toolbar-template.directive';
|
|
18
20
|
export { GridToolbarFocusableDirective } from './rendering/toolbar/toolbar-focusable.directive';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '18.0.0-develop.
|
|
12
|
+
publishDate: 1736354347,
|
|
13
|
+
version: '18.0.0-develop.4',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|