@progress/kendo-angular-grid 21.2.0-develop.1 → 21.2.0-develop.10
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/codemods/utils.js +805 -394
- package/codemods/v20/grid-kendogridgroupbinding.js +8 -11
- package/esm2022/column-menu/column-list.component.mjs +2 -2
- package/esm2022/databinding.directive.mjs +1 -0
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +8 -7
- package/esm2022/filtering/menu/filter-menu-container.component.mjs +18 -3
- package/esm2022/grouping/group-panel.component.mjs +2 -2
- package/esm2022/index.mjs +1 -0
- package/esm2022/navigation/navigation.service.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/header/header.component.mjs +2 -2
- package/esm2022/rendering/list.component.mjs +2 -2
- package/esm2022/rendering/toolbar/tools/group-toolbar-tool.component.mjs +3 -3
- package/fesm2022/progress-kendo-angular-grid.mjs +38 -22
- package/filtering/menu/date-filter-menu-input.component.d.ts +1 -2
- package/filtering/menu/filter-menu-container.component.d.ts +2 -2
- package/index.d.ts +1 -0
- package/package.json +25 -26
- package/schematics/ngAdd/index.js +7 -7
- package/codemods/template-transformer/index.js +0 -93
|
@@ -28,24 +28,21 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
30
|
exports.default = default_1;
|
|
31
|
-
const index_1 = require("../template-transformer/index");
|
|
32
31
|
const utils_1 = require("../utils");
|
|
33
32
|
const fs = __importStar(require("fs"));
|
|
34
33
|
function default_1(fileInfo, api) {
|
|
35
34
|
const filePath = fileInfo.path;
|
|
35
|
+
// Handle HTML files and inline templates
|
|
36
|
+
const htmlResult = (0, utils_1.htmlTransformer)(fileInfo, api, (templateContent) => (0, utils_1.attributeNameUpdate)(templateContent, 'kendo-grid', 'kendoGridGroupBinding', 'kendoGridBinding'));
|
|
36
37
|
if (filePath.endsWith('.html')) {
|
|
37
|
-
if (
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// Only write to file once after all transformations
|
|
41
|
-
fs.writeFileSync(filePath, updatedContent, 'utf-8');
|
|
38
|
+
if (htmlResult && htmlResult !== fileInfo.source) {
|
|
39
|
+
fs.writeFileSync(filePath, htmlResult, 'utf-8');
|
|
40
|
+
return htmlResult;
|
|
42
41
|
}
|
|
43
|
-
return;
|
|
42
|
+
return fileInfo.source; // Return original source if no changes
|
|
44
43
|
}
|
|
44
|
+
// Handle TypeScript property transformations
|
|
45
45
|
const j = api.jscodeshift;
|
|
46
|
-
const rootSource = j(fileInfo.source);
|
|
47
|
-
(0, index_1.templateTransformer)(rootSource, j, (root) => {
|
|
48
|
-
(0, utils_1.templateAttributeTransformer)(root, 'kendo-grid', 'kendoGridGroupBinding', 'kendoGridBinding');
|
|
49
|
-
});
|
|
46
|
+
const rootSource = j(htmlResult || fileInfo.source);
|
|
50
47
|
return rootSource.toSource();
|
|
51
48
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { Component, HostBinding, Input, ElementRef, NgZone, Renderer2, Output, EventEmitter, ViewChildren, QueryList, Optional, ChangeDetectorRef } from '@angular/core';
|
|
6
6
|
import { ColumnMenuService } from './column-menu.service';
|
|
7
7
|
import { ColumnListKeyboardNavigation } from './column-list-kb-nav.service';
|
|
8
|
-
import { Keys,
|
|
8
|
+
import { Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
9
9
|
import { Subscription } from 'rxjs';
|
|
10
10
|
import { CheckBoxComponent } from '@progress/kendo-angular-inputs';
|
|
11
11
|
import { take } from 'rxjs/operators';
|
|
@@ -227,7 +227,7 @@ export class ColumnListComponent {
|
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
229
|
onKeydown = (e) => {
|
|
230
|
-
const code =
|
|
230
|
+
const code = normalizeKeys(e);
|
|
231
231
|
if (code !== Keys.Tab) {
|
|
232
232
|
e.preventDefault();
|
|
233
233
|
}
|
|
@@ -195,6 +195,7 @@ export class DataBindingDirective {
|
|
|
195
195
|
}
|
|
196
196
|
this.grid.data = this.process(this.state);
|
|
197
197
|
this.grid.updateNavigationMetadata();
|
|
198
|
+
this.grid.ngDoCheck();
|
|
198
199
|
this.dataChanged = false;
|
|
199
200
|
}
|
|
200
201
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataBindingDirective, deps: [{ token: i1.GridComponent }, { token: i0.ChangeDetectorRef }, { token: i2.LocalDataChangesService }, { token: i3.RowReorderService }, { token: i4.ContextService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -7,7 +7,7 @@ import { Component, Input } from '@angular/core';
|
|
|
7
7
|
import { ColumnComponent } from "../../columns/column.component";
|
|
8
8
|
import { FilterService } from '../filter.service';
|
|
9
9
|
import { SinglePopupService } from '../../common/single-popup.service';
|
|
10
|
-
import {
|
|
10
|
+
import { take } from 'rxjs/operators';
|
|
11
11
|
import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
|
|
12
12
|
import { ContextService } from '../../common/provider.service';
|
|
13
13
|
import { FilterInputDirective } from '../filter-input.directive';
|
|
@@ -49,9 +49,12 @@ export class DateFilterMenuInputComponent {
|
|
|
49
49
|
this.subscription.unsubscribe();
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
open(
|
|
52
|
+
open() {
|
|
53
|
+
if (this.subscription) {
|
|
54
|
+
this.subscription.unsubscribe();
|
|
55
|
+
}
|
|
53
56
|
this.subscription = this.popupService.onClose
|
|
54
|
-
.pipe(
|
|
57
|
+
.pipe(take(1))
|
|
55
58
|
.subscribe(e => e.preventDefault());
|
|
56
59
|
}
|
|
57
60
|
messageFor(key) {
|
|
@@ -74,13 +77,12 @@ export class DateFilterMenuInputComponent {
|
|
|
74
77
|
[isFirstDropDown]="isFirstDropDown"
|
|
75
78
|
[menuTabbingService]="menuTabbingService">
|
|
76
79
|
<kendo-datepicker
|
|
77
|
-
#picker
|
|
78
80
|
kendoFilterInput
|
|
79
81
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
80
82
|
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
81
83
|
[columnLabel]="columnLabel"
|
|
82
84
|
[filterDelay]="0"
|
|
83
|
-
(open)="open(
|
|
85
|
+
(open)="open()"
|
|
84
86
|
[value]="currentFilter?.value"
|
|
85
87
|
[placeholder]="placeholder"
|
|
86
88
|
[formatPlaceholder]="formatPlaceholder"
|
|
@@ -114,13 +116,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
114
116
|
[isFirstDropDown]="isFirstDropDown"
|
|
115
117
|
[menuTabbingService]="menuTabbingService">
|
|
116
118
|
<kendo-datepicker
|
|
117
|
-
#picker
|
|
118
119
|
kendoFilterInput
|
|
119
120
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
120
121
|
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
121
122
|
[columnLabel]="columnLabel"
|
|
122
123
|
[filterDelay]="0"
|
|
123
|
-
(open)="open(
|
|
124
|
+
(open)="open()"
|
|
124
125
|
[value]="currentFilter?.value"
|
|
125
126
|
[placeholder]="placeholder"
|
|
126
127
|
[formatPlaceholder]="formatPlaceholder"
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { MenuTabbingService } from './menu-tabbing.service';
|
|
6
6
|
import { Component, Input, SkipSelf, Output, EventEmitter, ChangeDetectorRef, ElementRef, ViewChild } from '@angular/core';
|
|
7
|
+
import { isCompositeFilterDescriptor } from "@progress/kendo-data-query";
|
|
7
8
|
import { ColumnComponent } from "../../columns/column.component";
|
|
8
9
|
import { FilterService } from "../filter.service";
|
|
9
10
|
import { removeFilter, filtersByField } from "../base-filter-cell.component";
|
|
@@ -32,9 +33,23 @@ const isNoValueOperator = operator => (operator === "isnull"
|
|
|
32
33
|
* @hidden
|
|
33
34
|
*/
|
|
34
35
|
export const validFilters = ({ value, operator }) => !isNullOrEmptyString(value) || isNoValueOperator(operator);
|
|
35
|
-
const trimFilters = filter => {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
const trimFilters = (filter) => {
|
|
37
|
+
const trimComposite = (node) => {
|
|
38
|
+
const trimmed = [];
|
|
39
|
+
for (const f of node.filters || []) {
|
|
40
|
+
if (isCompositeFilterDescriptor(f)) {
|
|
41
|
+
const child = trimComposite(f);
|
|
42
|
+
if (child.filters.length) {
|
|
43
|
+
trimmed.push(child);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
else if (validFilters(f)) {
|
|
47
|
+
trimmed.push(f);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return { logic: node.logic || 'and', filters: trimmed };
|
|
51
|
+
};
|
|
52
|
+
return trimComposite(filter);
|
|
38
53
|
};
|
|
39
54
|
const findParent = (filters, field, parent) => {
|
|
40
55
|
return filters.reduce((acc, filter) => {
|
|
@@ -16,7 +16,7 @@ import { ContextService } from '../common/provider.service';
|
|
|
16
16
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
17
17
|
import { ChipComponent, ChipListComponent } from '@progress/kendo-angular-buttons';
|
|
18
18
|
import { closest } from '../rendering/common/dom-queries';
|
|
19
|
-
import { DraggableDirective, EventsOutsideAngularDirective, Keys,
|
|
19
|
+
import { DraggableDirective, EventsOutsideAngularDirective, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
20
20
|
import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
21
21
|
import { DraggableColumnDirective } from '../dragdrop/draggable-column.directive';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
@@ -175,7 +175,7 @@ export class GroupPanelComponent {
|
|
|
175
175
|
});
|
|
176
176
|
}
|
|
177
177
|
handleKeyDown = (e) => {
|
|
178
|
-
const code =
|
|
178
|
+
const code = normalizeKeys(e);
|
|
179
179
|
if (code === Keys.ArrowDown || code === Keys.ArrowUp) {
|
|
180
180
|
e.preventDefault();
|
|
181
181
|
const relatedItemType = e.target.matches(':first-child') ? 'next' : 'previous';
|
package/esm2022/index.mjs
CHANGED
|
@@ -218,3 +218,4 @@ export { GridTableDirective } from './rendering/grid-table.directive';
|
|
|
218
218
|
// Needed as it is an optional injection of the FilterService
|
|
219
219
|
export { MenuTabbingService } from './filtering/menu/menu-tabbing.service';
|
|
220
220
|
export * from './rendering/toolbar/tools/ai-assistant/models';
|
|
221
|
+
export { AdaptiveGridService } from './common/adaptiveness.service';
|
|
@@ -11,7 +11,7 @@ import { GridFocusableElement } from './grid-focusable-element';
|
|
|
11
11
|
import { NavigationCursor } from './navigation-cursor';
|
|
12
12
|
import { NavigationModel } from './navigation-model';
|
|
13
13
|
import { DomEventsService } from '../common/dom-events.service';
|
|
14
|
-
import { hasClasses, isDocumentAvailable, isPresent, Keys,
|
|
14
|
+
import { hasClasses, isDocumentAvailable, isPresent, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
15
15
|
import { EditService } from '../editing/edit.service';
|
|
16
16
|
import { GroupsService } from '../grouping/groups.service';
|
|
17
17
|
import { PagerContextService } from '@progress/kendo-angular-pager';
|
|
@@ -510,7 +510,7 @@ export class NavigationService {
|
|
|
510
510
|
}
|
|
511
511
|
const row = this.cursor.row;
|
|
512
512
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
513
|
-
const code =
|
|
513
|
+
const code = normalizeKeys(args);
|
|
514
514
|
// Handle row reordering keyboard shortcuts (Ctrl/Cmd + Shift + Up/Down Arrow)
|
|
515
515
|
if (modifier && args.shiftKey && (code === Keys.ArrowUp || code === Keys.ArrowDown)) {
|
|
516
516
|
if (this.handleRowReorderKeyboard(args, code, row)) {
|
|
@@ -704,7 +704,7 @@ export class NavigationService {
|
|
|
704
704
|
return;
|
|
705
705
|
}
|
|
706
706
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
707
|
-
const code =
|
|
707
|
+
const code = normalizeKeys(args);
|
|
708
708
|
const confirm = !args.defaultPrevented && code === Keys.Enter && isTextInput(args.target);
|
|
709
709
|
if (code === Keys.Escape || code === Keys.F2 || confirm) {
|
|
710
710
|
if (this.tableCellEntered && code === Keys.F2 && this.activeRow.dataRowIndex > -1) {
|
|
@@ -728,7 +728,7 @@ export class NavigationService {
|
|
|
728
728
|
onCellKeydown(args) {
|
|
729
729
|
if (this.editService.isEditingCell()) {
|
|
730
730
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
731
|
-
const code =
|
|
731
|
+
const code = normalizeKeys(args);
|
|
732
732
|
const confirm = code === Keys.Enter;
|
|
733
733
|
const cancel = code === Keys.Escape;
|
|
734
734
|
const navigate = isNavigationKey(code);
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '21.2.0-develop.
|
|
13
|
+
publishDate: 1764593065,
|
|
14
|
+
version: '21.2.0-develop.10',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -16,7 +16,7 @@ import { columnsToRender, sortColumns, isInSpanColumn } from "../../columns/colu
|
|
|
16
16
|
import { SinglePopupService } from '../../common/single-popup.service';
|
|
17
17
|
import { hasFilterMenu, hasFilterRow } from '../../filtering/filterable';
|
|
18
18
|
import { IdService } from '../../common/id.service';
|
|
19
|
-
import { DraggableDirective, isDocumentAvailable, Keys,
|
|
19
|
+
import { DraggableDirective, isDocumentAvailable, Keys, normalizeKeys, TemplateContextDirective } from '@progress/kendo-angular-common';
|
|
20
20
|
import { DropTargetDirective } from '../../dragdrop/drop-target.directive';
|
|
21
21
|
import { DraggableColumnDirective } from '../../dragdrop/draggable-column.directive';
|
|
22
22
|
import { DragHintService } from '../../dragdrop/drag-hint.service';
|
|
@@ -168,7 +168,7 @@ export class HeaderComponent {
|
|
|
168
168
|
this.sortColumn(toggledColumn);
|
|
169
169
|
}
|
|
170
170
|
onHeaderKeydown(column, args) {
|
|
171
|
-
const code =
|
|
171
|
+
const code = normalizeKeys(args);
|
|
172
172
|
if (code === Keys.ArrowDown && args.altKey && this.showFilterMenu && this.isFilterable(column)) {
|
|
173
173
|
args.preventDefault();
|
|
174
174
|
args.stopImmediatePropagation();
|
|
@@ -21,7 +21,7 @@ import { GroupsService } from "../grouping/groups.service";
|
|
|
21
21
|
import { expandColumns, sumColumnWidths } from "../columns/column-common";
|
|
22
22
|
import { ScrollSyncService } from "../scrolling/scroll-sync.service";
|
|
23
23
|
import { ResizeService } from "../layout/resize.service";
|
|
24
|
-
import { EventsOutsideAngularDirective, isDocumentAvailable,
|
|
24
|
+
import { EventsOutsideAngularDirective, isDocumentAvailable, normalizeKeys, ResizeSensorComponent } from "@progress/kendo-angular-common";
|
|
25
25
|
import { BrowserSupportService } from "../layout/browser-support.service";
|
|
26
26
|
import { EditService } from '../editing/edit.service';
|
|
27
27
|
import { NavigationService } from '../navigation/navigation.service';
|
|
@@ -463,7 +463,7 @@ export class ListComponent {
|
|
|
463
463
|
}
|
|
464
464
|
lockedKeydown(args) {
|
|
465
465
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
466
|
-
const code =
|
|
466
|
+
const code = normalizeKeys(args);
|
|
467
467
|
if (code === Keys.PageDown || code === Keys.PageUp) {
|
|
468
468
|
const dir = code === Keys.PageDown ? 1 : -1;
|
|
469
469
|
const element = this.container.nativeElement;
|
|
@@ -7,7 +7,7 @@ import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
|
7
7
|
import { chevronUpIcon, chevronDownIcon, xCircleIcon, plusCircleIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
8
8
|
import { KENDO_BUTTON } from '@progress/kendo-angular-buttons';
|
|
9
9
|
import { take } from 'rxjs/operators';
|
|
10
|
-
import { isPresent, Keys,
|
|
10
|
+
import { isPresent, Keys, normalizeKeys } from '@progress/kendo-angular-common';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
import * as i1 from "@progress/kendo-angular-buttons";
|
|
13
13
|
/**
|
|
@@ -171,7 +171,7 @@ export class GroupToolbarToolComponent {
|
|
|
171
171
|
this.currentFocusedItemIndex = currentIndex;
|
|
172
172
|
}
|
|
173
173
|
handleGroupedKeydown(column, index, ev) {
|
|
174
|
-
const code =
|
|
174
|
+
const code = normalizeKeys(ev);
|
|
175
175
|
if (code === Keys.Enter || code === Keys.Backspace || code === Keys.Delete) {
|
|
176
176
|
this.removeGroup(column, ev);
|
|
177
177
|
}
|
|
@@ -189,7 +189,7 @@ export class GroupToolbarToolComponent {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
handleUngroupedKeydown(column, index, ev) {
|
|
192
|
-
const code =
|
|
192
|
+
const code = normalizeKeys(ev);
|
|
193
193
|
if (code === Keys.Enter) {
|
|
194
194
|
this.addGroup(column, ev);
|
|
195
195
|
}
|
|
@@ -6,7 +6,7 @@ import * as i0 from '@angular/core';
|
|
|
6
6
|
import { EventEmitter, Injectable, SecurityContext, InjectionToken, Optional, Inject, Directive, SkipSelf, Input, isDevMode, QueryList, Component, ContentChildren, ContentChild, forwardRef, Host, Output, HostBinding, Pipe, TemplateRef, ChangeDetectionStrategy, ViewChildren, ViewChild, Self, NgZone, HostListener, ElementRef, ViewContainerRef, ViewEncapsulation, inject, Injector, NgModule } from '@angular/core';
|
|
7
7
|
import { merge, of, Subject, zip as zip$1, from, Subscription, interval, fromEvent, Observable, BehaviorSubject } from 'rxjs';
|
|
8
8
|
import * as i1$3 from '@progress/kendo-angular-common';
|
|
9
|
-
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1,
|
|
9
|
+
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1, normalizeKeys, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, replaceMessagePlaceholder, isChanged as isChanged$1, KendoInput, guid, areObjectsEqual, PrefixTemplateDirective, closest as closest$1, hasObservers, ResizeSensorComponent, isFirefox, firefoxMaxHeight, closestInScope as closestInScope$1, isFocusable as isFocusable$1, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i1 from '@angular/platform-browser';
|
|
11
11
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
12
12
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
@@ -3934,7 +3934,7 @@ class NavigationService {
|
|
|
3934
3934
|
}
|
|
3935
3935
|
const row = this.cursor.row;
|
|
3936
3936
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
3937
|
-
const code =
|
|
3937
|
+
const code = normalizeKeys(args);
|
|
3938
3938
|
// Handle row reordering keyboard shortcuts (Ctrl/Cmd + Shift + Up/Down Arrow)
|
|
3939
3939
|
if (modifier && args.shiftKey && (code === Keys.ArrowUp || code === Keys.ArrowDown)) {
|
|
3940
3940
|
if (this.handleRowReorderKeyboard(args, code, row)) {
|
|
@@ -4128,7 +4128,7 @@ class NavigationService {
|
|
|
4128
4128
|
return;
|
|
4129
4129
|
}
|
|
4130
4130
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
4131
|
-
const code =
|
|
4131
|
+
const code = normalizeKeys(args);
|
|
4132
4132
|
const confirm = !args.defaultPrevented && code === Keys.Enter && isTextInput(args.target);
|
|
4133
4133
|
if (code === Keys.Escape || code === Keys.F2 || confirm) {
|
|
4134
4134
|
if (this.tableCellEntered && code === Keys.F2 && this.activeRow.dataRowIndex > -1) {
|
|
@@ -4152,7 +4152,7 @@ class NavigationService {
|
|
|
4152
4152
|
onCellKeydown(args) {
|
|
4153
4153
|
if (this.editService.isEditingCell()) {
|
|
4154
4154
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
4155
|
-
const code =
|
|
4155
|
+
const code = normalizeKeys(args);
|
|
4156
4156
|
const confirm = code === Keys.Enter;
|
|
4157
4157
|
const cancel = code === Keys.Escape;
|
|
4158
4158
|
const navigate = isNavigationKey(code);
|
|
@@ -6314,7 +6314,7 @@ class GroupPanelComponent {
|
|
|
6314
6314
|
});
|
|
6315
6315
|
}
|
|
6316
6316
|
handleKeyDown = (e) => {
|
|
6317
|
-
const code =
|
|
6317
|
+
const code = normalizeKeys(e);
|
|
6318
6318
|
if (code === Keys.ArrowDown || code === Keys.ArrowUp) {
|
|
6319
6319
|
e.preventDefault();
|
|
6320
6320
|
const relatedItemType = e.target.matches(':first-child') ? 'next' : 'previous';
|
|
@@ -10237,9 +10237,12 @@ class DateFilterMenuInputComponent {
|
|
|
10237
10237
|
this.subscription.unsubscribe();
|
|
10238
10238
|
}
|
|
10239
10239
|
}
|
|
10240
|
-
open(
|
|
10240
|
+
open() {
|
|
10241
|
+
if (this.subscription) {
|
|
10242
|
+
this.subscription.unsubscribe();
|
|
10243
|
+
}
|
|
10241
10244
|
this.subscription = this.popupService.onClose
|
|
10242
|
-
.pipe(
|
|
10245
|
+
.pipe(take(1))
|
|
10243
10246
|
.subscribe(e => e.preventDefault());
|
|
10244
10247
|
}
|
|
10245
10248
|
messageFor(key) {
|
|
@@ -10262,13 +10265,12 @@ class DateFilterMenuInputComponent {
|
|
|
10262
10265
|
[isFirstDropDown]="isFirstDropDown"
|
|
10263
10266
|
[menuTabbingService]="menuTabbingService">
|
|
10264
10267
|
<kendo-datepicker
|
|
10265
|
-
#picker
|
|
10266
10268
|
kendoFilterInput
|
|
10267
10269
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
10268
10270
|
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
10269
10271
|
[columnLabel]="columnLabel"
|
|
10270
10272
|
[filterDelay]="0"
|
|
10271
|
-
(open)="open(
|
|
10273
|
+
(open)="open()"
|
|
10272
10274
|
[value]="currentFilter?.value"
|
|
10273
10275
|
[placeholder]="placeholder"
|
|
10274
10276
|
[formatPlaceholder]="formatPlaceholder"
|
|
@@ -10302,13 +10304,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
10302
10304
|
[isFirstDropDown]="isFirstDropDown"
|
|
10303
10305
|
[menuTabbingService]="menuTabbingService">
|
|
10304
10306
|
<kendo-datepicker
|
|
10305
|
-
#picker
|
|
10306
10307
|
kendoFilterInput
|
|
10307
10308
|
[adaptiveMode]="ctx.grid?.adaptiveMode"
|
|
10308
10309
|
[size]="ctx.grid?.isActionSheetExpanded ? 'large' : null"
|
|
10309
10310
|
[columnLabel]="columnLabel"
|
|
10310
10311
|
[filterDelay]="0"
|
|
10311
|
-
(open)="open(
|
|
10312
|
+
(open)="open()"
|
|
10312
10313
|
[value]="currentFilter?.value"
|
|
10313
10314
|
[placeholder]="placeholder"
|
|
10314
10315
|
[formatPlaceholder]="formatPlaceholder"
|
|
@@ -11222,9 +11223,23 @@ const isNoValueOperator = operator => (operator === "isnull"
|
|
|
11222
11223
|
* @hidden
|
|
11223
11224
|
*/
|
|
11224
11225
|
const validFilters = ({ value, operator }) => !isNullOrEmptyString(value) || isNoValueOperator(operator);
|
|
11225
|
-
const trimFilters = filter => {
|
|
11226
|
-
|
|
11227
|
-
|
|
11226
|
+
const trimFilters = (filter) => {
|
|
11227
|
+
const trimComposite = (node) => {
|
|
11228
|
+
const trimmed = [];
|
|
11229
|
+
for (const f of node.filters || []) {
|
|
11230
|
+
if (isCompositeFilterDescriptor(f)) {
|
|
11231
|
+
const child = trimComposite(f);
|
|
11232
|
+
if (child.filters.length) {
|
|
11233
|
+
trimmed.push(child);
|
|
11234
|
+
}
|
|
11235
|
+
}
|
|
11236
|
+
else if (validFilters(f)) {
|
|
11237
|
+
trimmed.push(f);
|
|
11238
|
+
}
|
|
11239
|
+
}
|
|
11240
|
+
return { logic: node.logic || 'and', filters: trimmed };
|
|
11241
|
+
};
|
|
11242
|
+
return trimComposite(filter);
|
|
11228
11243
|
};
|
|
11229
11244
|
const findParent = (filters, field, parent) => {
|
|
11230
11245
|
return filters.reduce((acc, filter) => {
|
|
@@ -12960,7 +12975,7 @@ class ColumnListComponent {
|
|
|
12960
12975
|
}
|
|
12961
12976
|
}
|
|
12962
12977
|
onKeydown = (e) => {
|
|
12963
|
-
const code =
|
|
12978
|
+
const code = normalizeKeys(e);
|
|
12964
12979
|
if (code !== Keys.Tab) {
|
|
12965
12980
|
e.preventDefault();
|
|
12966
12981
|
}
|
|
@@ -19388,7 +19403,7 @@ class HeaderComponent {
|
|
|
19388
19403
|
this.sortColumn(toggledColumn);
|
|
19389
19404
|
}
|
|
19390
19405
|
onHeaderKeydown(column, args) {
|
|
19391
|
-
const code =
|
|
19406
|
+
const code = normalizeKeys(args);
|
|
19392
19407
|
if (code === Keys.ArrowDown && args.altKey && this.showFilterMenu && this.isFilterable(column)) {
|
|
19393
19408
|
args.preventDefault();
|
|
19394
19409
|
args.stopImmediatePropagation();
|
|
@@ -23560,8 +23575,8 @@ const packageMetadata = {
|
|
|
23560
23575
|
productName: 'Kendo UI for Angular',
|
|
23561
23576
|
productCode: 'KENDOUIANGULAR',
|
|
23562
23577
|
productCodes: ['KENDOUIANGULAR'],
|
|
23563
|
-
publishDate:
|
|
23564
|
-
version: '21.2.0-develop.
|
|
23578
|
+
publishDate: 1764593065,
|
|
23579
|
+
version: '21.2.0-develop.10',
|
|
23565
23580
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
23566
23581
|
};
|
|
23567
23582
|
|
|
@@ -26349,7 +26364,7 @@ class ListComponent {
|
|
|
26349
26364
|
}
|
|
26350
26365
|
lockedKeydown(args) {
|
|
26351
26366
|
// on some keyboards arrow keys, PageUp/Down, and Home/End are mapped to Numpad keys
|
|
26352
|
-
const code =
|
|
26367
|
+
const code = normalizeKeys(args);
|
|
26353
26368
|
if (code === Keys.PageDown || code === Keys.PageUp) {
|
|
26354
26369
|
const dir = code === Keys.PageDown ? 1 : -1;
|
|
26355
26370
|
const element = this.container.nativeElement;
|
|
@@ -29126,7 +29141,7 @@ class GroupToolbarToolComponent {
|
|
|
29126
29141
|
this.currentFocusedItemIndex = currentIndex;
|
|
29127
29142
|
}
|
|
29128
29143
|
handleGroupedKeydown(column, index, ev) {
|
|
29129
|
-
const code =
|
|
29144
|
+
const code = normalizeKeys(ev);
|
|
29130
29145
|
if (code === Keys.Enter || code === Keys.Backspace || code === Keys.Delete) {
|
|
29131
29146
|
this.removeGroup(column, ev);
|
|
29132
29147
|
}
|
|
@@ -29144,7 +29159,7 @@ class GroupToolbarToolComponent {
|
|
|
29144
29159
|
}
|
|
29145
29160
|
}
|
|
29146
29161
|
handleUngroupedKeydown(column, index, ev) {
|
|
29147
|
-
const code =
|
|
29162
|
+
const code = normalizeKeys(ev);
|
|
29148
29163
|
if (code === Keys.Enter) {
|
|
29149
29164
|
this.addGroup(column, ev);
|
|
29150
29165
|
}
|
|
@@ -35270,6 +35285,7 @@ class DataBindingDirective {
|
|
|
35270
35285
|
}
|
|
35271
35286
|
this.grid.data = this.process(this.state);
|
|
35272
35287
|
this.grid.updateNavigationMetadata();
|
|
35288
|
+
this.grid.ngDoCheck();
|
|
35273
35289
|
this.dataChanged = false;
|
|
35274
35290
|
}
|
|
35275
35291
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DataBindingDirective, deps: [{ token: GridComponent }, { token: i0.ChangeDetectorRef }, { token: LocalDataChangesService }, { token: RowReorderService }, { token: ContextService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -40198,5 +40214,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
40198
40214
|
* Generated bundle index. Do not edit.
|
|
40199
40215
|
*/
|
|
40200
40216
|
|
|
40201
|
-
export { AIAssistantToolbarDirective, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, BrowserSupportService, CELL_CONTEXT, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_AI_REQUEST_OPTIONS, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
40217
|
+
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, BrowserSupportService, CELL_CONTEXT, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_AI_REQUEST_OPTIONS, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
40202
40218
|
|
|
@@ -8,7 +8,6 @@ import { FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-dat
|
|
|
8
8
|
import { ColumnComponent } from "../../columns/column.component";
|
|
9
9
|
import { FilterService } from '../filter.service';
|
|
10
10
|
import { SinglePopupService } from '../../common/single-popup.service';
|
|
11
|
-
import { DatePickerComponent } from '@progress/kendo-angular-dateinputs';
|
|
12
11
|
import { CalendarView, DateInputFormatPlaceholder } from '@progress/kendo-angular-dateinputs';
|
|
13
12
|
import { ContextService } from '../../common/provider.service';
|
|
14
13
|
import * as i0 from "@angular/core";
|
|
@@ -41,7 +40,7 @@ export declare class DateFilterMenuInputComponent implements OnDestroy {
|
|
|
41
40
|
private subscription;
|
|
42
41
|
constructor(popupService: SinglePopupService, ctx: ContextService);
|
|
43
42
|
ngOnDestroy(): void;
|
|
44
|
-
open(
|
|
43
|
+
open(): void;
|
|
45
44
|
messageFor(key: string): string;
|
|
46
45
|
get columnLabel(): string;
|
|
47
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterMenuInputComponent, never>;
|
|
@@ -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 { MenuTabbingService } from './menu-tabbing.service';
|
|
6
|
-
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
6
|
+
import { OnInit, EventEmitter, OnDestroy, ChangeDetectorRef, AfterViewChecked } from '@angular/core';
|
|
7
7
|
import { CompositeFilterDescriptor, FilterDescriptor } from "@progress/kendo-data-query";
|
|
8
8
|
import { ColumnComponent } from "../../columns/column.component";
|
|
9
9
|
import { FilterService } from "../filter.service";
|
|
@@ -21,7 +21,7 @@ export declare const parentLogicOfDefault: (filter: any, field: any, def?: strin
|
|
|
21
21
|
/**
|
|
22
22
|
* @hidden
|
|
23
23
|
*/
|
|
24
|
-
export declare class FilterMenuContainerComponent implements OnInit, OnDestroy {
|
|
24
|
+
export declare class FilterMenuContainerComponent implements AfterViewChecked, OnInit, OnDestroy {
|
|
25
25
|
protected parentService: FilterService;
|
|
26
26
|
childService: FilterService;
|
|
27
27
|
ctx: ContextService;
|
package/index.d.ts
CHANGED
|
@@ -260,3 +260,4 @@ export { SizingOptionsService } from './layout/sizing-options.service';
|
|
|
260
260
|
export { GridTableDirective } from './rendering/grid-table.directive';
|
|
261
261
|
export { MenuTabbingService } from './filtering/menu/menu-tabbing.service';
|
|
262
262
|
export * from './rendering/toolbar/tools/ai-assistant/models';
|
|
263
|
+
export { AdaptiveGridService } from './common/adaptiveness.service';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "21.2.0-develop.
|
|
3
|
+
"version": "21.2.0-develop.10",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1764593065,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,35 +86,34 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.0.0",
|
|
87
87
|
"@progress/kendo-drawing": "^1.21.0",
|
|
88
88
|
"@progress/kendo-licensing": "^1.7.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "21.2.0-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "21.2.0-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "21.2.0-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "21.2.0-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "21.2.0-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "21.2.0-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "21.2.0-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "21.2.0-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "21.2.0-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "21.2.0-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "21.2.0-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "21.2.0-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "21.2.0-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "21.2.0-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "21.2.0-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "21.2.0-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "21.2.0-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "21.2.0-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "21.2.0-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "21.2.0-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "21.2.0-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "21.2.0-develop.10",
|
|
90
|
+
"@progress/kendo-angular-common": "21.2.0-develop.10",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "21.2.0-develop.10",
|
|
92
|
+
"@progress/kendo-angular-layout": "21.2.0-develop.10",
|
|
93
|
+
"@progress/kendo-angular-navigation": "21.2.0-develop.10",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "21.2.0-develop.10",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "21.2.0-develop.10",
|
|
96
|
+
"@progress/kendo-angular-icons": "21.2.0-develop.10",
|
|
97
|
+
"@progress/kendo-angular-indicators": "21.2.0-develop.10",
|
|
98
|
+
"@progress/kendo-angular-inputs": "21.2.0-develop.10",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "21.2.0-develop.10",
|
|
100
|
+
"@progress/kendo-angular-intl": "21.2.0-develop.10",
|
|
101
|
+
"@progress/kendo-angular-l10n": "21.2.0-develop.10",
|
|
102
|
+
"@progress/kendo-angular-label": "21.2.0-develop.10",
|
|
103
|
+
"@progress/kendo-angular-menu": "21.2.0-develop.10",
|
|
104
|
+
"@progress/kendo-angular-pager": "21.2.0-develop.10",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "21.2.0-develop.10",
|
|
106
|
+
"@progress/kendo-angular-popup": "21.2.0-develop.10",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "21.2.0-develop.10",
|
|
108
|
+
"@progress/kendo-angular-upload": "21.2.0-develop.10",
|
|
109
|
+
"@progress/kendo-angular-utils": "21.2.0-develop.10",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "21.2.0-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "21.2.0-develop.10",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
|
-
"@progress/kendo-file-saver": "^1.0.0"
|
|
117
|
-
"node-html-parser": "^7.0.1"
|
|
116
|
+
"@progress/kendo-file-saver": "^1.0.0"
|
|
118
117
|
},
|
|
119
118
|
"schematics": "./schematics/collection.json",
|
|
120
119
|
"module": "fesm2022/progress-kendo-angular-grid.mjs",
|