@progress/kendo-angular-grid 19.0.0-develop.17 → 19.0.0-develop.19
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/adaptiveness/adaptive-mode.d.ts +12 -0
- package/adaptiveness/adaptive-renderer.component.d.ts +84 -0
- package/column-menu/column-chooser.component.d.ts +4 -0
- package/column-menu/column-list.component.d.ts +9 -3
- package/column-menu/column-menu-item.component.d.ts +38 -2
- package/column-menu/column-menu-item.directive.d.ts +5 -2
- package/column-menu/column-menu.component.d.ts +4 -2
- package/common/adaptiveness.service.d.ts +50 -0
- package/common/single-popup.service.d.ts +3 -1
- package/directives.d.ts +1 -1
- package/editing-directives/external-editing.directive.d.ts +3 -1
- package/esm2022/adaptiveness/adaptive-mode.mjs +5 -0
- package/esm2022/adaptiveness/adaptive-renderer.component.mjs +1106 -0
- package/esm2022/column-menu/column-chooser.component.mjs +13 -11
- package/esm2022/column-menu/column-list.component.mjs +42 -8
- package/esm2022/column-menu/column-menu-autosize-all.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-autosize.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-chooser.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-container.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-filter.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-item.component.mjs +106 -11
- package/esm2022/column-menu/column-menu-item.directive.mjs +14 -5
- package/esm2022/column-menu/column-menu-lock.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-position.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-sort.component.mjs +1 -1
- package/esm2022/column-menu/column-menu-stick.component.mjs +1 -1
- package/esm2022/column-menu/column-menu.component.mjs +68 -44
- package/esm2022/common/adaptiveness.service.mjs +72 -0
- package/esm2022/common/single-popup.service.mjs +9 -3
- package/esm2022/directives.mjs +1 -1
- package/esm2022/editing-directives/external-editing.directive.mjs +28 -14
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +2 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +2 -0
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +4 -0
- package/esm2022/filtering/menu/filter-menu-container.component.mjs +21 -10
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +24 -4
- package/esm2022/filtering/menu/filter-menu.component.mjs +44 -29
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +4 -0
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +4 -0
- package/esm2022/grid.component.mjs +143 -28
- package/esm2022/grid.module.mjs +1 -1
- package/esm2022/index.mjs +1 -1
- package/esm2022/localization/messages.mjs +62 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/{column-menu → rendering/toolbar/tools}/column-chooser-tool.directive.mjs +50 -9
- package/esm2022/rendering/toolbar/tools/filter-command-tool.directive.mjs +39 -26
- package/esm2022/rendering/toolbar/tools/filter-tool-wrapper.component.mjs +19 -7
- package/esm2022/rendering/toolbar/tools/filter-toolbar-tool.component.mjs +26 -4
- package/esm2022/rendering/toolbar/tools/sort-command-tool.directive.mjs +21 -8
- package/esm2022/rendering/toolbar/tools/sort-toolbar-tool.component.mjs +16 -3
- package/esm2022/utils.mjs +0 -13
- package/fesm2022/progress-kendo-angular-grid.mjs +2947 -1344
- package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/filter-menu-container.component.d.ts +14 -4
- package/filtering/menu/filter-menu-input-wrapper.component.d.ts +8 -3
- package/filtering/menu/filter-menu.component.d.ts +6 -3
- package/grid.component.d.ts +30 -3
- package/grid.module.d.ts +1 -1
- package/index.d.ts +1 -1
- package/localization/messages.d.ts +42 -2
- package/package.json +21 -20
- package/{column-menu → rendering/toolbar/tools}/column-chooser-tool.directive.d.ts +13 -3
- package/rendering/toolbar/tools/filter-command-tool.directive.d.ts +3 -1
- package/rendering/toolbar/tools/filter-tool-wrapper.component.d.ts +5 -5
- package/rendering/toolbar/tools/filter-toolbar-tool.component.d.ts +4 -1
- package/rendering/toolbar/tools/sort-command-tool.directive.d.ts +3 -1
- package/rendering/toolbar/tools/sort-toolbar-tool.component.d.ts +4 -0
- package/schematics/ngAdd/index.js +4 -4
- package/utils.d.ts +0 -4
|
@@ -4,19 +4,29 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuTabbingService } from './menu-tabbing.service';
|
|
6
6
|
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
7
|
-
import { CompositeFilterDescriptor } from "@progress/kendo-data-query";
|
|
7
|
+
import { CompositeFilterDescriptor, FilterDescriptor } from "@progress/kendo-data-query";
|
|
8
8
|
import { ColumnComponent } from "../../columns/column.component";
|
|
9
9
|
import { FilterService } from "../filter.service";
|
|
10
10
|
import { ContextService } from '../../common/provider.service';
|
|
11
|
+
import { AdaptiveGridService } from '../../common/adaptiveness.service';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare const validFilters: ({ value, operator }: FilterDescriptor) => boolean;
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
export declare const parentLogicOfDefault: (filter: any, field: any, def?: string) => any;
|
|
12
21
|
/**
|
|
13
22
|
* @hidden
|
|
14
23
|
*/
|
|
15
24
|
export declare class FilterMenuContainerComponent implements OnInit, OnDestroy {
|
|
16
25
|
protected parentService: FilterService;
|
|
17
26
|
childService: FilterService;
|
|
18
|
-
|
|
27
|
+
ctx: ContextService;
|
|
19
28
|
protected cd: ChangeDetectorRef;
|
|
29
|
+
private adaptiveGridService;
|
|
20
30
|
close: EventEmitter<any>;
|
|
21
31
|
/**
|
|
22
32
|
* The column with which the filter is associated.
|
|
@@ -52,7 +62,7 @@ export declare class FilterMenuContainerComponent implements OnInit, OnDestroy {
|
|
|
52
62
|
private subscription;
|
|
53
63
|
private _templateContext;
|
|
54
64
|
private _filter;
|
|
55
|
-
constructor(parentService: FilterService, childService: FilterService, ctx: ContextService, cd: ChangeDetectorRef, menuTabbingService: MenuTabbingService);
|
|
65
|
+
constructor(parentService: FilterService, childService: FilterService, ctx: ContextService, cd: ChangeDetectorRef, menuTabbingService: MenuTabbingService, adaptiveGridService: AdaptiveGridService);
|
|
56
66
|
ngOnInit(): void;
|
|
57
67
|
ngAfterViewChecked(): void;
|
|
58
68
|
ngOnDestroy(): void;
|
|
@@ -64,6 +74,6 @@ export declare class FilterMenuContainerComponent implements OnInit, OnDestroy {
|
|
|
64
74
|
onTab(e: Event, buttonType: string): void;
|
|
65
75
|
get clearText(): string;
|
|
66
76
|
get filterText(): string;
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuContainerComponent, [{ skipSelf: true; }, null, null, null, null]>;
|
|
77
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuContainerComponent, [{ skipSelf: true; }, null, null, null, null, null]>;
|
|
68
78
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterMenuContainerComponent, "kendo-grid-filter-menu-container", never, { "column": { "alias": "column"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "menuTabbingService": { "alias": "menuTabbingService"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "actionsClass": { "alias": "actionsClass"; "required": false; }; }, { "close": "close"; }, never, never, true, never>;
|
|
69
79
|
}
|
|
@@ -2,29 +2,34 @@
|
|
|
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 { OnDestroy } from '@angular/core';
|
|
5
6
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
6
7
|
import { CompositeFilterDescriptor, FilterDescriptor } from "@progress/kendo-data-query";
|
|
7
8
|
import { MenuTabbingService } from './menu-tabbing.service';
|
|
8
9
|
import { FilterService } from '../filter.service';
|
|
9
10
|
import { FilterInputWrapperComponent } from "../filter-input-wrapper.component";
|
|
10
11
|
import { ContextService } from '../../common/provider.service';
|
|
12
|
+
import { AdaptiveGridService } from '../../common/adaptiveness.service';
|
|
11
13
|
import * as i0 from "@angular/core";
|
|
12
14
|
/**
|
|
13
15
|
* @hidden
|
|
14
16
|
*/
|
|
15
|
-
export declare class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent {
|
|
16
|
-
|
|
17
|
+
export declare class FilterMenuInputWrapperComponent extends FilterInputWrapperComponent implements OnDestroy {
|
|
18
|
+
ctx: ContextService;
|
|
19
|
+
private adaptiveGridService;
|
|
17
20
|
filterService: FilterService;
|
|
18
21
|
isFirstDropDown: boolean;
|
|
19
22
|
menuTabbingService: MenuTabbingService;
|
|
20
23
|
firstOperatorDropDown: DropDownListComponent;
|
|
21
24
|
private _currentFilter;
|
|
25
|
+
private subs;
|
|
22
26
|
/**
|
|
23
27
|
* @hidden
|
|
24
28
|
*/
|
|
25
29
|
get hostClasses(): boolean;
|
|
26
|
-
constructor(ctx: ContextService);
|
|
30
|
+
constructor(ctx: ContextService, adaptiveGridService: AdaptiveGridService);
|
|
27
31
|
ngAfterViewInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
28
33
|
operatorChange(dataItem: any): void;
|
|
29
34
|
protected filterChange(filter: CompositeFilterDescriptor): void;
|
|
30
35
|
/**
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NavigationService } from './../../navigation/navigation.service';
|
|
6
|
-
import { ChangeDetectorRef, ElementRef, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
|
6
|
+
import { ChangeDetectorRef, ElementRef, NgZone, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
|
7
7
|
import { FilterService } from "../filter.service";
|
|
8
8
|
import { CompositeFilterDescriptor } from "@progress/kendo-data-query";
|
|
9
9
|
import { ColumnComponent } from '../../columns/column.component';
|
|
@@ -12,6 +12,7 @@ import { PopupRef } from '@progress/kendo-angular-popup';
|
|
|
12
12
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
13
13
|
import { ContextService } from '../../common/provider.service';
|
|
14
14
|
import { IdService } from '../../common/id.service';
|
|
15
|
+
import { AdaptiveGridService } from '../../common/adaptiveness.service';
|
|
15
16
|
import * as i0 from "@angular/core";
|
|
16
17
|
/**
|
|
17
18
|
* @hidden
|
|
@@ -23,6 +24,8 @@ export declare class FilterMenuComponent implements OnDestroy {
|
|
|
23
24
|
protected navigationService: NavigationService;
|
|
24
25
|
protected renderer: Renderer2;
|
|
25
26
|
protected cdr: ChangeDetectorRef;
|
|
27
|
+
adaptiveGridService: AdaptiveGridService;
|
|
28
|
+
private zone;
|
|
26
29
|
protected idService: IdService;
|
|
27
30
|
filterIcon: SVGIcon;
|
|
28
31
|
/**
|
|
@@ -40,7 +43,7 @@ export declare class FilterMenuComponent implements OnDestroy {
|
|
|
40
43
|
tabIndex: string;
|
|
41
44
|
popupRef: PopupRef;
|
|
42
45
|
private popupSubs;
|
|
43
|
-
constructor(filterService: FilterService, popupService: SinglePopupService, ctx: ContextService, navigationService: NavigationService, renderer: Renderer2, cdr: ChangeDetectorRef, idService: IdService);
|
|
46
|
+
constructor(filterService: FilterService, popupService: SinglePopupService, ctx: ContextService, navigationService: NavigationService, renderer: Renderer2, cdr: ChangeDetectorRef, adaptiveGridService: AdaptiveGridService, zone: NgZone, idService: IdService);
|
|
44
47
|
ngOnDestroy(): void;
|
|
45
48
|
get hasFilters(): boolean;
|
|
46
49
|
/**
|
|
@@ -56,6 +59,6 @@ export declare class FilterMenuComponent implements OnDestroy {
|
|
|
56
59
|
private updateAria;
|
|
57
60
|
private cleanUp;
|
|
58
61
|
private focusRoot;
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuComponent, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
60
63
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterMenuComponent, "kendo-grid-filter-menu", never, { "column": { "alias": "column"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, true, never>;
|
|
61
64
|
}
|
package/grid.component.d.ts
CHANGED
|
@@ -76,13 +76,16 @@ import { GridNavigableSettings } from './navigation/navigable-settings';
|
|
|
76
76
|
import { GridSize } from './common/size-options';
|
|
77
77
|
import { SizingOptionsService } from './layout/sizing-options.service';
|
|
78
78
|
import { RowReorderEvent } from './row-reordering/types';
|
|
79
|
-
import { DragTargetContainerDirective, DragTargetDataFn, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
79
|
+
import { AdaptiveService, DragTargetContainerDirective, DragTargetDataFn, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
80
80
|
import { RowReorderService } from './row-reordering/row-reorder.service';
|
|
81
81
|
import { StatusBarTemplateDirective } from './aggregates/status-bar-template.directive';
|
|
82
82
|
import { PagerTemplateDirective } from '@progress/kendo-angular-pager';
|
|
83
83
|
import { GridResizableSettings } from './common/resizable-settings';
|
|
84
84
|
import { GridState } from './state-management/grid-state.models';
|
|
85
85
|
import { UndoRedoService } from './state-management/undo-redo.service';
|
|
86
|
+
import { AdaptiveGridService } from './common/adaptiveness.service';
|
|
87
|
+
import { AdaptiveMode } from './adaptiveness/adaptive-mode';
|
|
88
|
+
import { AdaptiveRendererComponent } from './adaptiveness/adaptive-renderer.component';
|
|
86
89
|
import * as i0 from "@angular/core";
|
|
87
90
|
/**
|
|
88
91
|
* Represents the Kendo UI for Angular Data Grid component.
|
|
@@ -120,6 +123,8 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
120
123
|
private localization;
|
|
121
124
|
private ctx;
|
|
122
125
|
private sizingService;
|
|
126
|
+
private adaptiveService;
|
|
127
|
+
adaptiveGridService: AdaptiveGridService;
|
|
123
128
|
rowReorderService: RowReorderService;
|
|
124
129
|
/**
|
|
125
130
|
* Sets the data of the Grid. If an array is provided, the Grid automatically gets the total count
|
|
@@ -153,6 +158,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
153
158
|
* Set the `rowHeight` option to the exact pixels as the height of the `tr` element appears in the DOM.
|
|
154
159
|
*/
|
|
155
160
|
rowHeight: number;
|
|
161
|
+
/**
|
|
162
|
+
* Enables or disables the adaptive mode. By default, adaptive rendering is disabled.
|
|
163
|
+
*/
|
|
164
|
+
adaptiveMode: AdaptiveMode;
|
|
156
165
|
/**
|
|
157
166
|
* Represent the actual height of each Grid detail row (`tr`) element in the DOM.
|
|
158
167
|
* Required by the [virtual scrolling functionality]({% slug scrollmmodes_grid %}).
|
|
@@ -249,6 +258,20 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
249
258
|
* @hidden
|
|
250
259
|
*/
|
|
251
260
|
get marqueeSelection(): boolean;
|
|
261
|
+
/**
|
|
262
|
+
* @hidden
|
|
263
|
+
*/
|
|
264
|
+
get isAdaptiveModeEnabled(): boolean;
|
|
265
|
+
/**
|
|
266
|
+
* @hidden
|
|
267
|
+
*
|
|
268
|
+
* The `isOpen` property is used to determine if a Grid Popup or ActionSheet is open.
|
|
269
|
+
*/
|
|
270
|
+
get isOpen(): boolean;
|
|
271
|
+
/**
|
|
272
|
+
* @hidden
|
|
273
|
+
*/
|
|
274
|
+
get isActionSheetExpanded(): boolean;
|
|
252
275
|
/**
|
|
253
276
|
* @hidden
|
|
254
277
|
*/
|
|
@@ -583,6 +606,10 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
583
606
|
dragTargetContainer: DragTargetContainerDirective;
|
|
584
607
|
dropTargetContainer: DropTargetContainerDirective;
|
|
585
608
|
dialogContainer: ViewContainerRef;
|
|
609
|
+
/**
|
|
610
|
+
* @hidden
|
|
611
|
+
*/
|
|
612
|
+
adaptiveRenderer: AdaptiveRendererComponent;
|
|
586
613
|
get scrollbarWidth(): number;
|
|
587
614
|
get headerPadding(): any;
|
|
588
615
|
columnMenuOptions: any;
|
|
@@ -682,7 +709,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
682
709
|
private rowReorderSubscription;
|
|
683
710
|
private rtl;
|
|
684
711
|
private _rowSticky;
|
|
685
|
-
constructor(supportService: BrowserSupportService, selectionService: SelectionService, cellSelectionService: CellSelectionService, wrapper: ElementRef, groupInfoService: GroupInfoService, groupsService: GroupsService, changeNotification: ChangeNotificationService, detailsService: DetailsService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, localization: LocalizationService, ctx: ContextService, sizingService: SizingOptionsService, rowReorderService: RowReorderService);
|
|
712
|
+
constructor(supportService: BrowserSupportService, selectionService: SelectionService, cellSelectionService: CellSelectionService, wrapper: ElementRef, groupInfoService: GroupInfoService, groupsService: GroupsService, changeNotification: ChangeNotificationService, detailsService: DetailsService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, localization: LocalizationService, ctx: ContextService, sizingService: SizingOptionsService, adaptiveService: AdaptiveService, adaptiveGridService: AdaptiveGridService, rowReorderService: RowReorderService);
|
|
686
713
|
/**
|
|
687
714
|
* Expands the specified master row ([see example]({% slug hierarchy_grid %})).
|
|
688
715
|
*
|
|
@@ -963,5 +990,5 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
963
990
|
private shouldResetSelection;
|
|
964
991
|
private notifyReorderContainers;
|
|
965
992
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
966
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "kendo-grid", ["kendoGrid"], { "data": { "alias": "data"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "group": { "alias": "group"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "gridResizable": { "alias": "gridResizable"; "required": false; }; "rowReorderable": { "alias": "rowReorderable"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "navigatable": { "alias": "navigatable"; "required": false; }; "autoSize": { "alias": "autoSize"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "isRowSelectable": { "alias": "isRowSelectable"; "required": false; }; "cellSelected": { "alias": "cellSelected"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showInactiveTools": { "alias": "showInactiveTools"; "required": false; }; "isDetailExpanded": { "alias": "isDetailExpanded"; "required": false; }; "isGroupExpanded": { "alias": "isGroupExpanded"; "required": false; }; }, { "filterChange": "filterChange"; "pageChange": "pageChange"; "groupChange": "groupChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; "dataStateChange": "dataStateChange"; "gridStateChange": "gridStateChange"; "groupExpand": "groupExpand"; "groupCollapse": "groupCollapse"; "detailExpand": "detailExpand"; "detailCollapse": "detailCollapse"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; "cellClose": "cellClose"; "cellClick": "cellClick"; "pdfExport": "pdfExport"; "excelExport": "excelExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
|
|
993
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "kendo-grid", ["kendoGrid"], { "data": { "alias": "data"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "height": { "alias": "height"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "group": { "alias": "group"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "gridResizable": { "alias": "gridResizable"; "required": false; }; "rowReorderable": { "alias": "rowReorderable"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "navigatable": { "alias": "navigatable"; "required": false; }; "autoSize": { "alias": "autoSize"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "isRowSelectable": { "alias": "isRowSelectable"; "required": false; }; "cellSelected": { "alias": "cellSelected"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showInactiveTools": { "alias": "showInactiveTools"; "required": false; }; "isDetailExpanded": { "alias": "isDetailExpanded"; "required": false; }; "isGroupExpanded": { "alias": "isGroupExpanded"; "required": false; }; }, { "filterChange": "filterChange"; "pageChange": "pageChange"; "groupChange": "groupChange"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowReorder": "rowReorder"; "dataStateChange": "dataStateChange"; "gridStateChange": "gridStateChange"; "groupExpand": "groupExpand"; "groupCollapse": "groupCollapse"; "detailExpand": "detailExpand"; "detailCollapse": "detailCollapse"; "edit": "edit"; "cancel": "cancel"; "save": "save"; "remove": "remove"; "add": "add"; "cellClose": "cellClose"; "cellClick": "cellClick"; "pdfExport": "pdfExport"; "excelExport": "excelExport"; "columnResize": "columnResize"; "columnReorder": "columnReorder"; "columnVisibilityChange": "columnVisibilityChange"; "columnLockedChange": "columnLockedChange"; "columnStickyChange": "columnStickyChange"; "scrollBottom": "scrollBottom"; "contentScroll": "contentScroll"; }, ["columns", "detailTemplateChildren", "cellLoadingTemplateChildren", "loadingTemplateChildren", "statusBarTemplateChildren", "noRecordsTemplateChildren", "pagerTemplateChildren", "toolbarTemplateChildren", "columnMenuTemplates"], ["kendo-toolbar"], true, never>;
|
|
967
994
|
}
|
package/grid.module.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ import * as i95 from "./filtering/menu/filter-radio-button.directive";
|
|
|
101
101
|
import * as i96 from "./column-menu/column-chooser-item-checked.directive";
|
|
102
102
|
import * as i97 from "./column-menu/column-list.component";
|
|
103
103
|
import * as i98 from "./column-menu/column-chooser.component";
|
|
104
|
-
import * as i99 from "./
|
|
104
|
+
import * as i99 from "./rendering/toolbar/tools/column-chooser-tool.directive";
|
|
105
105
|
import * as i100 from "./column-menu/column-menu-chooser.component";
|
|
106
106
|
import * as i101 from "./column-menu/column-menu-filter.component";
|
|
107
107
|
import * as i102 from "./column-menu/column-menu-item.component";
|
package/index.d.ts
CHANGED
|
@@ -201,7 +201,7 @@ export { SaveCommandDirective } from './editing/save-command.directive';
|
|
|
201
201
|
export { RemoveCommandDirective } from './editing/remove-command.directive';
|
|
202
202
|
export { AddCommandDirective } from './editing/add-command.directive';
|
|
203
203
|
export { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
|
|
204
|
-
export { ColumnChooserToolbarDirective } from './
|
|
204
|
+
export { ColumnChooserToolbarDirective } from './rendering/toolbar/tools/column-chooser-tool.directive';
|
|
205
205
|
export { SaveCommandToolbarDirective } from './editing/save-command-tool.directive';
|
|
206
206
|
export { EditCommandToolbarDirective } from './editing/edit-command-tool.directive';
|
|
207
207
|
export { RemoveCommandToolbarDirective } from './editing/remove-command-tool.directive';
|
|
@@ -215,6 +215,10 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
215
215
|
* The text of the `(All)` option for Boolean filter.
|
|
216
216
|
*/
|
|
217
217
|
filterBooleanAll: string;
|
|
218
|
+
/**
|
|
219
|
+
* The title that is displayed in the Operators ActionSheet.
|
|
220
|
+
*/
|
|
221
|
+
adaptiveFilterOperatorsTitle: any;
|
|
218
222
|
/**
|
|
219
223
|
* The text of the `AfterOrEqualTo` (**Is after or equal to**) date filter operator.
|
|
220
224
|
*/
|
|
@@ -239,6 +243,14 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
239
243
|
* The text of the **Clear filter** button.
|
|
240
244
|
*/
|
|
241
245
|
filterClearButton: string;
|
|
246
|
+
/**
|
|
247
|
+
* The title of the **Close** button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
|
|
248
|
+
*/
|
|
249
|
+
adaptiveCloseButtonTitle: string;
|
|
250
|
+
/**
|
|
251
|
+
* The title of the **Back** button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode.
|
|
252
|
+
*/
|
|
253
|
+
adaptiveBackButtonTitle: string;
|
|
242
254
|
/**
|
|
243
255
|
* The text of the `And` filter logic.
|
|
244
256
|
*/
|
|
@@ -280,6 +292,30 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
280
292
|
* The text for the Grid Column Chooser and Column Chooser toolbar tool.
|
|
281
293
|
*/
|
|
282
294
|
columns: string;
|
|
295
|
+
/**
|
|
296
|
+
* The subtitle for the adaptive Grid Column Chooser and Column Chooser toolbar tool.
|
|
297
|
+
*/
|
|
298
|
+
columnsSubtitle: string;
|
|
299
|
+
/**
|
|
300
|
+
* The title that is displayed in the adaptive Filter Toolbar Tool and Filter Menu.
|
|
301
|
+
*/
|
|
302
|
+
adaptiveFilterTitle: string;
|
|
303
|
+
/**
|
|
304
|
+
* The title that is displayed in the adaptive Sort Toolbar Tool.
|
|
305
|
+
*/
|
|
306
|
+
adaptiveSortTitle: string;
|
|
307
|
+
/**
|
|
308
|
+
* The text of the **Clear all filters** button located in the Filter Toolbar Tool and adaptive Filter Toolbar Tool.
|
|
309
|
+
*/
|
|
310
|
+
filterClearAllButton: string;
|
|
311
|
+
/**
|
|
312
|
+
* The text of the clear sort button located in the Sort Toolbar Tool and adaptive Sort Toolbar Tool.
|
|
313
|
+
*/
|
|
314
|
+
sortClearButton: string;
|
|
315
|
+
/**
|
|
316
|
+
* The text of the **Done** sort button.
|
|
317
|
+
*/
|
|
318
|
+
sortDoneButton: string;
|
|
283
319
|
/**
|
|
284
320
|
* The text that is displayed in the column menu for the lock item.
|
|
285
321
|
*/
|
|
@@ -480,9 +516,13 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
480
516
|
*/
|
|
481
517
|
removeConfirmationDialogRejectText: string;
|
|
482
518
|
/**
|
|
483
|
-
* The title of the external editing Dialog.
|
|
519
|
+
* The title of the external editing Dialog or ActionSheet when editing an item.
|
|
484
520
|
*/
|
|
485
521
|
externalEditingTitle: string;
|
|
522
|
+
/**
|
|
523
|
+
* The title of the external editing Dialog or ActionSheet when adding a new item.
|
|
524
|
+
*/
|
|
525
|
+
externalEditingAddTitle: string;
|
|
486
526
|
/**
|
|
487
527
|
* The text of the external editing Dialog <b>Save</b> button.
|
|
488
528
|
*/
|
|
@@ -492,5 +532,5 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
492
532
|
*/
|
|
493
533
|
externalEditingCancelText: string;
|
|
494
534
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
495
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
535
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
496
536
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "19.0.0-develop.
|
|
3
|
+
"version": "19.0.0-develop.19",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"package": {
|
|
27
27
|
"productName": "Kendo UI for Angular",
|
|
28
28
|
"productCode": "KENDOUIANGULAR",
|
|
29
|
-
"publishDate":
|
|
29
|
+
"publishDate": 1747400012,
|
|
30
30
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
@@ -39,28 +39,29 @@
|
|
|
39
39
|
"@progress/kendo-data-query": "^1.0.0",
|
|
40
40
|
"@progress/kendo-drawing": "^1.21.0",
|
|
41
41
|
"@progress/kendo-licensing": "^1.5.0",
|
|
42
|
-
"@progress/kendo-angular-buttons": "19.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "19.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "19.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-
|
|
47
|
-
"@progress/kendo-angular-
|
|
48
|
-
"@progress/kendo-angular-
|
|
49
|
-
"@progress/kendo-angular-
|
|
50
|
-
"@progress/kendo-angular-
|
|
51
|
-
"@progress/kendo-angular-
|
|
52
|
-
"@progress/kendo-angular-
|
|
53
|
-
"@progress/kendo-angular-
|
|
54
|
-
"@progress/kendo-angular-
|
|
55
|
-
"@progress/kendo-angular-
|
|
56
|
-
"@progress/kendo-angular-
|
|
57
|
-
"@progress/kendo-angular-
|
|
58
|
-
"@progress/kendo-angular-
|
|
42
|
+
"@progress/kendo-angular-buttons": "19.0.0-develop.19",
|
|
43
|
+
"@progress/kendo-angular-common": "19.0.0-develop.19",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "19.0.0-develop.19",
|
|
45
|
+
"@progress/kendo-angular-layout": "19.0.0-develop.19",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.0.0-develop.19",
|
|
47
|
+
"@progress/kendo-angular-dropdowns": "19.0.0-develop.19",
|
|
48
|
+
"@progress/kendo-angular-excel-export": "19.0.0-develop.19",
|
|
49
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.19",
|
|
50
|
+
"@progress/kendo-angular-inputs": "19.0.0-develop.19",
|
|
51
|
+
"@progress/kendo-angular-indicators": "19.0.0-develop.19",
|
|
52
|
+
"@progress/kendo-angular-intl": "19.0.0-develop.19",
|
|
53
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.19",
|
|
54
|
+
"@progress/kendo-angular-label": "19.0.0-develop.19",
|
|
55
|
+
"@progress/kendo-angular-pager": "19.0.0-develop.19",
|
|
56
|
+
"@progress/kendo-angular-pdf-export": "19.0.0-develop.19",
|
|
57
|
+
"@progress/kendo-angular-popup": "19.0.0-develop.19",
|
|
58
|
+
"@progress/kendo-angular-toolbar": "19.0.0-develop.19",
|
|
59
|
+
"@progress/kendo-angular-utils": "19.0.0-develop.19",
|
|
59
60
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
63
|
"tslib": "^2.3.1",
|
|
63
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
|
64
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.19",
|
|
64
65
|
"@progress/kendo-common": "^1.0.1",
|
|
65
66
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
66
67
|
},
|
|
@@ -5,8 +5,10 @@
|
|
|
5
5
|
import { NgZone, Renderer2, AfterViewInit, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
7
7
|
import { RefreshService, ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
|
|
8
|
-
import { ContextService } from '
|
|
9
|
-
import {
|
|
8
|
+
import { ContextService } from '../../../common/provider.service';
|
|
9
|
+
import { AdaptiveGridService } from '../../../common/adaptiveness.service';
|
|
10
|
+
import { ColumnInfoService } from '../../../common/column-info.service';
|
|
11
|
+
import { ToolbarToolBase } from '../../../common/toolbar-tool-base.directive';
|
|
10
12
|
import * as i0 from "@angular/core";
|
|
11
13
|
/**
|
|
12
14
|
* Represents the `column-chooser` toolbar tool of the Grid.
|
|
@@ -29,6 +31,8 @@ export declare class ColumnChooserToolbarDirective extends ToolbarToolBase imple
|
|
|
29
31
|
ctx: ContextService;
|
|
30
32
|
zone: NgZone;
|
|
31
33
|
private refresh;
|
|
34
|
+
private adaptiveGridService;
|
|
35
|
+
private columnInfoService;
|
|
32
36
|
/**
|
|
33
37
|
* Specifies if the changes in the visibility of the column will be immediately applied.
|
|
34
38
|
*
|
|
@@ -41,16 +45,22 @@ export declare class ColumnChooserToolbarDirective extends ToolbarToolBase imple
|
|
|
41
45
|
* @default true
|
|
42
46
|
*/
|
|
43
47
|
allowHideAll: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*/
|
|
51
|
+
get columns(): any;
|
|
44
52
|
private popupRef;
|
|
45
53
|
private subs;
|
|
46
54
|
private nextId;
|
|
47
|
-
constructor(renderer: Renderer2, popupSerivce: PopupService, host: ToolBarButtonComponent, ctx: ContextService, zone: NgZone, refresh: RefreshService, cdr: ChangeDetectorRef);
|
|
55
|
+
constructor(renderer: Renderer2, popupSerivce: PopupService, host: ToolBarButtonComponent, ctx: ContextService, zone: NgZone, refresh: RefreshService, adaptiveGridService: AdaptiveGridService, columnInfoService: ColumnInfoService, cdr: ChangeDetectorRef);
|
|
56
|
+
ngOnInit(): void;
|
|
48
57
|
ngAfterViewInit(): void;
|
|
49
58
|
ngOnDestroy(): void;
|
|
50
59
|
/**
|
|
51
60
|
* @hidden
|
|
52
61
|
*/
|
|
53
62
|
onClick(e: any): void;
|
|
63
|
+
private togglePopup;
|
|
54
64
|
private closePopup;
|
|
55
65
|
private get buttonElement();
|
|
56
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnChooserToolbarDirective, never>;
|
|
@@ -8,6 +8,7 @@ import { PopupService } from '@progress/kendo-angular-popup';
|
|
|
8
8
|
import { ContextService } from '../../../common/provider.service';
|
|
9
9
|
import { ColumnInfoService } from '../../../common/column-info.service';
|
|
10
10
|
import { FilterService } from '../../../filtering/filter.service';
|
|
11
|
+
import { AdaptiveGridService } from '../../../common/adaptiveness.service';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
/**
|
|
13
14
|
* Represents the toolbar tool for filtering columns of the Grid.
|
|
@@ -34,12 +35,13 @@ export declare class FilterCommandToolbarDirective implements AfterViewInit, OnD
|
|
|
34
35
|
private columnInfoService;
|
|
35
36
|
private ngZone;
|
|
36
37
|
private renderer;
|
|
38
|
+
private adaptiveGridService;
|
|
37
39
|
private popupRef;
|
|
38
40
|
private nextId;
|
|
39
41
|
private toolSubs;
|
|
40
42
|
private popupSubs;
|
|
41
43
|
private removeClickListener;
|
|
42
|
-
constructor(host: ToolBarButtonComponent, popupService: PopupService, ctx: ContextService, filterService: FilterService, columnInfoService: ColumnInfoService, ngZone: NgZone, renderer: Renderer2);
|
|
44
|
+
constructor(host: ToolBarButtonComponent, popupService: PopupService, ctx: ContextService, filterService: FilterService, columnInfoService: ColumnInfoService, ngZone: NgZone, renderer: Renderer2, adaptiveGridService: AdaptiveGridService);
|
|
43
45
|
ngOnInit(): void;
|
|
44
46
|
ngAfterViewInit(): void;
|
|
45
47
|
ngOnDestroy(): void;
|
|
@@ -23,16 +23,16 @@ export declare class FilterToolWrapperComponent {
|
|
|
23
23
|
hostButton: ToolBarButtonComponent;
|
|
24
24
|
clearIcon: SVGIcon;
|
|
25
25
|
columnInfoService: ColumnInfoService;
|
|
26
|
-
private popupRef;
|
|
27
|
-
private filter;
|
|
28
|
-
private subscriptions;
|
|
29
|
-
private _ctx;
|
|
30
26
|
set ctx(ctx: ContextService);
|
|
31
27
|
get ctx(): ContextService;
|
|
32
|
-
private _filterService;
|
|
33
28
|
set filterService(filterService: FilterService);
|
|
34
29
|
get filterService(): FilterService;
|
|
35
30
|
columnMenuService: ColumnMenuService;
|
|
31
|
+
private popupRef;
|
|
32
|
+
private filter;
|
|
33
|
+
private subscriptions;
|
|
34
|
+
private _ctx;
|
|
35
|
+
private _filterService;
|
|
36
36
|
constructor(injector: Injector);
|
|
37
37
|
ngOnDestroy(): void;
|
|
38
38
|
clear(): void;
|
|
@@ -11,6 +11,7 @@ import { FilterService } from '../../../filtering/filter.service';
|
|
|
11
11
|
import { ColumnMenuService } from '../../../column-menu/column-menu.service';
|
|
12
12
|
import { ColumnMenuItemComponent } from '../../../column-menu/column-menu-item.component';
|
|
13
13
|
import { ColumnInfoService } from '../../../common/column-info.service';
|
|
14
|
+
import { AdaptiveGridService } from '../../../common/adaptiveness.service';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
/**
|
|
16
17
|
* @hidden
|
|
@@ -20,6 +21,7 @@ export declare class FilterToolbarToolComponent implements AfterViewInit, OnDest
|
|
|
20
21
|
private filterService;
|
|
21
22
|
private ctx;
|
|
22
23
|
private columnInfoService;
|
|
24
|
+
adaptiveGridService: AdaptiveGridService;
|
|
23
25
|
filterItems: QueryList<ElementRef>;
|
|
24
26
|
menuItems: QueryList<ColumnMenuItemComponent>;
|
|
25
27
|
filterContainers: QueryList<FilterMenuContainerComponent>;
|
|
@@ -31,10 +33,11 @@ export declare class FilterToolbarToolComponent implements AfterViewInit, OnDest
|
|
|
31
33
|
columns: Array<ColumnBase>;
|
|
32
34
|
filter: any;
|
|
33
35
|
private subscriptions;
|
|
34
|
-
constructor(element: ElementRef, filterService: FilterService, ctx: ContextService, columnInfoService: ColumnInfoService);
|
|
36
|
+
constructor(element: ElementRef, filterService: FilterService, ctx: ContextService, columnInfoService: ColumnInfoService, adaptiveGridService: AdaptiveGridService);
|
|
35
37
|
ngOnInit(): void;
|
|
36
38
|
ngAfterViewInit(): void;
|
|
37
39
|
ngOnDestroy(): void;
|
|
40
|
+
navigateView(column: any): void;
|
|
38
41
|
getColumnComponent(column: ColumnBase): ColumnComponent;
|
|
39
42
|
handleClose(filterItem: ColumnMenuItemComponent): void;
|
|
40
43
|
toggleItem(event: any, index: number): void;
|
|
@@ -8,6 +8,7 @@ import { PopupService } from '@progress/kendo-angular-popup';
|
|
|
8
8
|
import { ContextService } from '../../../common/provider.service';
|
|
9
9
|
import { SortService } from '../../../common/sort.service';
|
|
10
10
|
import { ColumnInfoService } from '../../../common/column-info.service';
|
|
11
|
+
import { AdaptiveGridService } from '../../../common/adaptiveness.service';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
/**
|
|
13
14
|
* Represents the toolbar tool for sorting columns of the Grid.
|
|
@@ -34,12 +35,13 @@ export declare class SortCommandToolbarDirective implements AfterViewInit, OnDes
|
|
|
34
35
|
private columnInfoService;
|
|
35
36
|
private ngZone;
|
|
36
37
|
private renderer;
|
|
38
|
+
private adaptiveGridService;
|
|
37
39
|
private popupRef;
|
|
38
40
|
private nextId;
|
|
39
41
|
private toolSubs;
|
|
40
42
|
private popupSubs;
|
|
41
43
|
private removeClickListener;
|
|
42
|
-
constructor(host: ToolBarButtonComponent, popupService: PopupService, ctx: ContextService, sortService: SortService, columnInfoService: ColumnInfoService, ngZone: NgZone, renderer: Renderer2);
|
|
44
|
+
constructor(host: ToolBarButtonComponent, popupService: PopupService, ctx: ContextService, sortService: SortService, columnInfoService: ColumnInfoService, ngZone: NgZone, renderer: Renderer2, adaptiveGridService: AdaptiveGridService);
|
|
43
45
|
ngOnInit(): void;
|
|
44
46
|
ngAfterViewInit(): void;
|
|
45
47
|
ngOnDestroy(): void;
|
|
@@ -11,6 +11,10 @@ import { SortDescriptor } from '@progress/kendo-data-query';
|
|
|
11
11
|
import { SVGIcon } from '@progress/kendo-angular-icons';
|
|
12
12
|
import { ColumnInfoService } from '../../../common/column-info.service';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export declare const directions: (initialDirection: any) => string[];
|
|
14
18
|
/**
|
|
15
19
|
* @hidden
|
|
16
20
|
*/
|